freescout: Remove unused reset-oidc-config.yaml
This commit is contained in:
		| @@ -1,50 +0,0 @@ | ||||
| --- | ||||
| apiVersion: batch/v1 | ||||
| kind: Job | ||||
| metadata: | ||||
|   name: reset-oidc-config | ||||
| spec: | ||||
|   template: | ||||
|     spec: | ||||
|       volumes: | ||||
|         - name: tmp | ||||
|           emptyDir: {} | ||||
|       initContainers: | ||||
|         - name: jq | ||||
|           image: alpine/k8s:1.24.16@sha256:06f8942d87fa17b40795bb9a8eff029a9be3fc3c9bcc13d62071de4cc3324153 | ||||
|           imagePullPolicy: IfNotPresent | ||||
|           volumeMounts: | ||||
|             - mountPath: /tmp | ||||
|               name: tmp | ||||
|           envFrom: | ||||
|             - secretRef: | ||||
|                 name: oidc-client-freescout-owner-secrets | ||||
|           command: | ||||
|             - /bin/bash | ||||
|             - -c | ||||
|             - rm -fv /tmp/update.sql; | ||||
|               jq '{"name":"oauth.client_id","value":$ENV.OIDC_CLIENT_ID} | "UPDATE options SET value=\(.value|tostring|@sh) WHERE name=\(.name|tostring|@sh) LIMIT 1;"' -n -r >> /tmp/update.sql; | ||||
|               jq '{"name":"oauth.client_secret","value":$ENV.OIDC_CLIENT_SECRET} | "UPDATE options SET value=\(.value|tostring|@sh) WHERE name=\(.name|tostring|@sh) LIMIT 1;"' -n -r >> /tmp/update.sql; | ||||
|               jq '{"name":"oauth.auth_url","value":$ENV.OIDC_GATEWAY_AUTH_URI} | "UPDATE options SET value=\(.value + "?scope=openid+profile" |tostring|@sh) WHERE name=\(.name|tostring|@sh) LIMIT 1;"' -n -r >> /tmp/update.sql; | ||||
|               jq '{"name":"oauth.token_url","value":$ENV.OIDC_GATEWAY_TOKEN_URI} | "UPDATE options SET value=\(.value|tostring|@sh) WHERE name=\(.name|tostring|@sh) LIMIT 1;"' -n -r >> /tmp/update.sql; | ||||
|               jq '{"name":"oauth.user_url","value":$ENV.OIDC_GATEWAY_USERINFO_URI} | "UPDATE options SET value=\(.value|tostring|@sh) WHERE name=\(.name|tostring|@sh) LIMIT 1;"' -n -r >> /tmp/update.sql; | ||||
|               cat /tmp/update.sql | ||||
|       containers: | ||||
|         - name: mysql | ||||
|           image: mysql | ||||
|           imagePullPolicy: IfNotPresent | ||||
|           volumeMounts: | ||||
|             - mountPath: /tmp | ||||
|               name: tmp | ||||
|           env: | ||||
|             - name: MYSQL_PWD | ||||
|               valueFrom: | ||||
|                 secretKeyRef: | ||||
|                   name: freescout-secrets | ||||
|                   key: DB_PASS | ||||
|           command: | ||||
|             - /bin/bash | ||||
|             - -c | ||||
|             - mysql -u kspace_freescout kspace_freescout -h 172.20.36.1 -p${MYSQL_PWD} < /tmp/update.sql | ||||
|       restartPolicy: OnFailure | ||||
|   backoffLimit: 4 | ||||
		Reference in New Issue
	
	Block a user