Skip to content

Commit

Permalink
fix k8s deployment typo (#441)
Browse files Browse the repository at this point in the history
* fix k8s deployment typo

* fix k8s deployment typo
  • Loading branch information
LokiWager authored Nov 21, 2023
1 parent 2fb0dde commit 52a53a2
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions docs/Deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ metadata:
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: easeprobe
template:
metadata:
labels:
Expand All @@ -319,18 +322,16 @@ spec:
image: megaease/easeprobe
ports:
- containerPort: 8181
volumeMounts:
- mountPath: /opt/config.yaml
name: configmap-volume-0
subPath: config.yaml
- mountPath: /opt/data
name: pvc-volume-easeprobe-pvc
volumes:
- configMap:
name: configmap-volume-0
name: easeprobe
volumeMounts:
- mountPath: /opt/config.yaml
name: configmap-volume-0
subPath: config.yaml
- mountPath: /opt/data
name: pvc-volume-easeprobe-pvc
volumes:
- name: configmap-volume-0
configMap:
name: easeprobe-conf
items:
- key: config.yaml
path: config.yaml
Expand Down Expand Up @@ -384,4 +385,4 @@ helm install [RELEASE_NAME] easeprobe/easeprobe
**Uninstall**
```
helm uninstall [RELEASE_NAME]
```
```

0 comments on commit 52a53a2

Please sign in to comment.