Skip to content
Snippets Groups Projects
Commit 7630850b authored by Marc Burnie [AWS]'s avatar Marc Burnie [AWS]
Browse files

adding support for EKS 1.23

parent 94c6f592
No related branches found
No related tags found
1 merge request!481Adding support for EKS 1.23
Pipeline #166130 failed
apiVersion: v2 apiVersion: v2
name: "os-indexer" name: "os-indexer"
version: __CHART_VERSION__ version: __CHART_VERSION__
kubeVersion: "v1.21.x-x-x" kubeVersion: ">= 1.21.x-x-x < 1.24.x-x-x"
description: Indexer Helm Chart for Kubernetes description: Indexer Helm Chart for Kubernetes
type: application type: application
appVersion: __VERSION__ appVersion: __VERSION__
dependencies: dependencies:
- name: osdu-aws-lib - name: osdu-aws-lib
version: 0.1.0 version: 0.2.0
repository: __HELM_REPO__/osdu-aws-lib/ repository: __HELM_REPO__/osdu-aws-lib/
deprecated: false deprecated: false
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "common.fullname" . }}-test-connection"
labels:
{{- include "common.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "common.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never
...@@ -6,10 +6,8 @@ ...@@ -6,10 +6,8 @@
"image", "image",
"imagePullPolicy", "imagePullPolicy",
"service", "service",
"podAnnotations",
"replicaCount", "replicaCount",
"serviceAccountRole", "serviceAccountRole"
"securityContext"
], ],
"properties": { "properties": {
"image": { "image": {
...@@ -262,10 +260,10 @@ ...@@ -262,10 +260,10 @@
"type": "string", "type": "string",
"title": "Allowed principal", "title": "Allowed principal",
"examples": [ "examples": [
"cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account", "cluster.local/ns/istio-system/sa/istio-ingressgateway",
"cluster.local/ns/osdu-services/sa/compliance-queue" "cluster.local/ns/osdu-services/sa/compliance-queue"
] ]
} }
} }
} }
} }
\ No newline at end of file
...@@ -64,8 +64,6 @@ environmentVariables: ...@@ -64,8 +64,6 @@ environmentVariables:
value: "true" value: "true"
- name: PARAMETER_MOUNT_PATH - name: PARAMETER_MOUNT_PATH
value: "/mnt/params" value: "/mnt/params"
podAnnotations:
seccomp.security.alpha.kubernetes.io/pod: "runtime/default"
# Resource Config # Resource Config
replicaCount: 1 replicaCount: 1
...@@ -92,8 +90,12 @@ securityContext: ...@@ -92,8 +90,12 @@ securityContext:
capabilities: capabilities:
drop: drop:
- ALL - ALL
podSecurityContext:
fsGroup: 1337
seccompProfile:
type: RuntimeDefault
allowedPrincipals: allowedPrincipals:
- cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account - cluster.local/ns/istio-system/sa/istio-ingressgateway
- cluster.local/ns/{{ .Release.Namespace }}/sa/indexer-queue - cluster.local/ns/{{ .Release.Namespace }}/sa/indexer-queue
- cluster.local/ns/aws-binary-dms/sa/binary-dms - cluster.local/ns/aws-binary-dms/sa/binary-dms
- cluster.local/ns/osdu-airflow/sa/airflow-dag-upload - cluster.local/ns/osdu-airflow/sa/airflow-dag-upload
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment