Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions chart/kube-arangodb/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
You have installed Kubernetes ArangoDB Operator in version {{ .Chart.Version }}

To access ArangoDeployments you can use:

kubectl --namespace "{{ .Release.Namespace }}" get arangodeployments

More details can be found on https://github.com/arangodb/kube-arangodb/tree/{{ .Chart.Version }}/docs
12 changes: 9 additions & 3 deletions chart/kube-arangodb/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ spec:
operator: In
values:
- amd64
hostNetwork: false
hostPID: false
hostIPC: false
containers:
- name: operator
imagePullPolicy: {{ .Values.operator.imagePullPolicy }}
Expand Down Expand Up @@ -78,9 +81,12 @@ spec:
- name: metrics
containerPort: 8528
securityContext:
capabilities:
drop:
- 'ALL'
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- 'ALL'
{{- if .Values.operator.resources }}
resources:
{{ toYaml .Values.operator.resources | indent 22 }}
Expand Down
12 changes: 9 additions & 3 deletions manifests/arango-deployment-replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ spec:
operator: In
values:
- amd64
hostNetwork: false
hostPID: false
hostIPC: false
containers:
- name: operator
imagePullPolicy: Always
Expand All @@ -192,9 +195,12 @@ spec:
- name: metrics
containerPort: 8528
securityContext:
capabilities:
drop:
- 'ALL'
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- 'ALL'
livenessProbe:
httpGet:
path: /health
Expand Down
12 changes: 9 additions & 3 deletions manifests/arango-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ spec:
operator: In
values:
- amd64
hostNetwork: false
hostPID: false
hostIPC: false
containers:
- name: operator
imagePullPolicy: Always
Expand All @@ -236,9 +239,12 @@ spec:
- name: metrics
containerPort: 8528
securityContext:
capabilities:
drop:
- 'ALL'
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- 'ALL'
livenessProbe:
httpGet:
path: /health
Expand Down
12 changes: 9 additions & 3 deletions manifests/arango-storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ spec:
operator: In
values:
- amd64
hostNetwork: false
hostPID: false
hostIPC: false
containers:
- name: operator
imagePullPolicy: Always
Expand All @@ -224,9 +227,12 @@ spec:
- name: metrics
containerPort: 8528
securityContext:
capabilities:
drop:
- 'ALL'
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- 'ALL'
livenessProbe:
httpGet:
path: /health
Expand Down