diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-18T15·48+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-18T15·48+0000 |
commit | 61830ebc5bfbfedee9e3fb37a5d89f530595dca0 (patch) | |
tree | e95822ee90d14e71eef82eb20d47b54fd0e3d816 /ops | |
parent | af63d2604ef4bf0867609206fa373f6613489b17 (diff) |
feat(ops/infra/k8s): Add sourcehut configuration to sync-gcsr r/408
Diffstat (limited to 'ops')
-rw-r--r-- | ops/infra/kubernetes/cgit/config.yaml | 9 | ||||
-rw-r--r-- | ops/secrets/sr.ht-token | bin | 0 -> 114 bytes |
2 files changed, 8 insertions, 1 deletions
diff --git a/ops/infra/kubernetes/cgit/config.yaml b/ops/infra/kubernetes/cgit/config.yaml index 43bfe9d7fb45..73392adaad81 100644 --- a/ops/infra/kubernetes/cgit/config.yaml +++ b/ops/infra/kubernetes/cgit/config.yaml @@ -8,6 +8,8 @@ data: username: "Z2l0LXRhemppbi5nbWFpbC5jb20=" # This credential is a GCSR 'gitcookie' token. password: '{{ passLookup "gcsr-tazjin-password" | b64enc }}' + # This credential is an OAuth token for builds.sr.ht + sourcehut: '{{ passLookup "sr.ht-token" | b64enc }}' --- apiVersion: apps/v1 kind: Deployment @@ -16,7 +18,7 @@ metadata: labels: app: cgit spec: - replicas: 2 + replicas: 1 selector: matchLabels: app: cgit @@ -53,6 +55,11 @@ spec: secretKeyRef: name: gcsr-secrets key: password + - name: SRHT_TOKEN + valueFrom: + secretKeyRef: + name: gcsr-secrets + key: sourcehut volumeMounts: - name: git-volume mountPath: /git diff --git a/ops/secrets/sr.ht-token b/ops/secrets/sr.ht-token new file mode 100644 index 000000000000..53eb0d16b0e1 --- /dev/null +++ b/ops/secrets/sr.ht-token Binary files differ |