fix(docs-k8s-helm): changed server's podAntiAffinity labelSelector example to match helm default values (#13140)

This commit is contained in:
Pascal Reeb 2022-01-03 20:13:54 +01:00 committed by GitHub
parent 2b43299c7c
commit 48dbe28b24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -522,8 +522,8 @@ and consider if they're appropriate for your deployment.
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchLabels:
app: {{ template "vault.name" . }}
release: "{{ .Release.Name }}"
app.kubernetes.io/name: {{ template "vault.name" . }}
app.kubernetes.io/instance: "{{ .Release.Name }}"
component: server
topologyKey: kubernetes.io/hostname
```