From 982f2734a8f0898046fbd73a35ef3d75342dba46 Mon Sep 17 00:00:00 2001 From: Luca Rospocher Date: Tue, 11 Aug 2026 12:18:33 +0200 Subject: [PATCH] feat: Production k8s deploy #WPB-27713 * Add values-prod.yaml * Double check how env vars are fetched from secrets for Redis and the SDK --- helm/githubapp/values-prod.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 helm/githubapp/values-prod.yaml diff --git a/helm/githubapp/values-prod.yaml b/helm/githubapp/values-prod.yaml new file mode 100644 index 0000000..efac7d4 --- /dev/null +++ b/helm/githubapp/values-prod.yaml @@ -0,0 +1,27 @@ +# Production environment overrides +image: + repository: quay.io/wire/github-app + tag: "sha-6bd8f51" +ingress: + enabled: true + className: nginx + annotations: + cert-manager.io/cluster-issuer: letsencrypt + hosts: + - host: github-app.apps-prod.wire.link + paths: + - path: / + pathType: Prefix + tls: + - hosts: + - github-app.apps-prod.wire.link + secretName: github-app-tls +env: +- name: WIRE_SDK_APP_ID + value: "fc3d344b-e9c3-474d-8431-48dc9139822a" +- name: WIRE_SDK_API_HOST + value: "https://prod-nginz-https.wire.com" +- name: GHAPP_API_HOST + value: "https://github-app.apps-prod.wire.link" +- name: GHAPP_SERVER_PORT + value: "8080"