From 37567eccf9f07395224a4f3c74d68854f16aef6e Mon Sep 17 00:00:00 2001 From: Erki Aas Date: Sat, 27 Jul 2024 21:29:55 +0300 Subject: [PATCH] migrate wiki to new passmower --- wiki/application.yml | 44 +++++++++++++++++++++++++++++++++++-- wiki/reset-oidc-config.yaml | 44 ------------------------------------- 2 files changed, 42 insertions(+), 46 deletions(-) delete mode 100644 wiki/reset-oidc-config.yaml diff --git a/wiki/application.yml b/wiki/application.yml index 65bda04..79a81d1 100644 --- a/wiki/application.yml +++ b/wiki/application.yml @@ -1,6 +1,6 @@ --- -apiVersion: codemowers.io/v1alpha1 -kind: OIDCGWClient +apiVersion: codemowers.cloud/v1beta1 +kind: OIDCClient metadata: name: wiki spec: @@ -20,6 +20,46 @@ spec: - profile tokenEndpointAuthMethod: client_secret_post pkce: false + secretRefreshPod: + apiVersion: v1 + kind: Pod + metadata: + name: reset-oidc-config + 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-wiki-owner-secrets + command: + - /bin/bash + - -c + - jq '{"strategyKey":"oidc","config":{"clientId":$ENV.OIDC_CLIENT_ID,"clientSecret":$ENV.OIDC_CLIENT_SECRET,"authorizationURL":$ENV.OIDC_IDP_AUTH_URI,"tokenURL":$ENV.OIDC_IDP_TOKEN_URI,"userInfoURL":$ENV.OIDC_IDP_USERINFO_URI,"skipUserProfile":false,"issuer":$ENV.OIDC_IDP_URI,"emailClaim":"email","displayNameClaim":"name","mapGroups":false,"groupsClaim":"groups","logoutURL":$ENV.OIDC_IDP_URI,"acrValues":""}} | "UPDATE authentication SET config=\(.config|tostring|@sh) WHERE strategyKey=\(.strategyKey|tostring|@sh) LIMIT 1"' -n -r > /tmp/update.sql + containers: + - name: mysql + image: mysql + imagePullPolicy: IfNotPresent + volumeMounts: + - mountPath: /tmp + name: tmp + env: + - name: MYSQL_PWD + valueFrom: + secretKeyRef: + name: wikijs-secrets + key: DB_PASS + command: + - /bin/bash + - -c + - mysql -u kspace_wiki kspace_wiki -h 172.20.36.1 -p${MYSQL_PWD} < /tmp/update.sql --- apiVersion: apps/v1 kind: StatefulSet diff --git a/wiki/reset-oidc-config.yaml b/wiki/reset-oidc-config.yaml deleted file mode 100644 index 86f4fbd..0000000 --- a/wiki/reset-oidc-config.yaml +++ /dev/null @@ -1,44 +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-wiki-owner-secrets - command: - - /bin/bash - - -c - - jq '{"strategyKey":"oidc","config":{"clientId":$ENV.OIDC_CLIENT_ID,"clientSecret":$ENV.OIDC_CLIENT_SECRET,"authorizationURL":$ENV.OIDC_GATEWAY_AUTH_URI,"tokenURL":$ENV.OIDC_GATEWAY_TOKEN_URI,"userInfoURL":$ENV.OIDC_GATEWAY_USERINFO_URI,"skipUserProfile":false,"issuer":$ENV.OIDC_GATEWAY_URI,"emailClaim":"email","displayNameClaim":"name","mapGroups":false,"groupsClaim":"groups","logoutURL":$ENV.OIDC_GATEWAY_URI,"acrValues":""}} | "UPDATE authentication SET config=\(.config|tostring|@sh) WHERE strategyKey=\(.strategyKey|tostring|@sh) LIMIT 1"' -n -r > /tmp/update.sql - containers: - - name: mysql - image: mysql - imagePullPolicy: IfNotPresent - volumeMounts: - - mountPath: /tmp - name: tmp - env: - - name: MYSQL_PWD - valueFrom: - secretKeyRef: - name: wikijs-secrets - key: DB_PASS - command: - - /bin/bash - - -c - - mysql -u kspace_wiki kspace_wiki -h 172.20.36.1 -p${MYSQL_PWD} < /tmp/update.sql - restartPolicy: OnFailure - backoffLimit: 4