diff options
Diffstat (limited to 'kubernetes/namespaces/tooling')
7 files changed, 14 insertions, 14 deletions
diff --git a/kubernetes/namespaces/tooling/bitwarden/README.md b/kubernetes/namespaces/tooling/bitwarden/README.md index 37f01eb..68b1176 100644 --- a/kubernetes/namespaces/tooling/bitwarden/README.md +++ b/kubernetes/namespaces/tooling/bitwarden/README.md @@ -1,6 +1,6 @@ # BitWarden -Our internal password manager, used by the admins to share passwords for our services. Hosted at https://bitwarden.pythondiscord.com +Our internal password manager, used by the admins to share passwords for our services. Hosted at https://bitwarden.pydis.wtf To deploy this, first set up the secrets (see below) and then run `kubectl apply -f .` in this folder. diff --git a/kubernetes/namespaces/tooling/bitwarden/configmap.yaml b/kubernetes/namespaces/tooling/bitwarden/configmap.yaml index 29b9a84..3b8c62d 100644 --- a/kubernetes/namespaces/tooling/bitwarden/configmap.yaml +++ b/kubernetes/namespaces/tooling/bitwarden/configmap.yaml @@ -5,7 +5,7 @@ metadata: namespace: tooling data: # Domain to access bitwarden by - DOMAIN: "https://bitwarden.pythondiscord.com" + DOMAIN: "https://bitwarden.pydis.wtf" # Password hint must be sent to an email when this is false. # When it's true, it'll be shown right on the page. diff --git a/kubernetes/namespaces/tooling/bitwarden/ingress.yaml b/kubernetes/namespaces/tooling/bitwarden/ingress.yaml index e7eab59..a1f7d16 100644 --- a/kubernetes/namespaces/tooling/bitwarden/ingress.yaml +++ b/kubernetes/namespaces/tooling/bitwarden/ingress.yaml @@ -10,10 +10,10 @@ metadata: spec: tls: - hosts: - - "*.pythondiscord.com" - secretName: pythondiscord.com-tls + - "*.pydis.wtf" + secretName: pydis.wtf-tls rules: - - host: bitwarden.pythondiscord.com + - host: bitwarden.pydis.wtf http: paths: - path: / diff --git a/kubernetes/namespaces/tooling/metabase/ingress.yaml b/kubernetes/namespaces/tooling/metabase/ingress.yaml index b29bdd8..c2c5436 100644 --- a/kubernetes/namespaces/tooling/metabase/ingress.yaml +++ b/kubernetes/namespaces/tooling/metabase/ingress.yaml @@ -10,10 +10,10 @@ metadata: spec: tls: - hosts: - - "*.pythondiscord.com" - secretName: pythondiscord.com-tls + - "*.pydis.wtf" + secretName: pydis.wtf-tls rules: - - host: metabase.pythondiscord.com + - host: metabase.pydis.wtf http: paths: - path: / diff --git a/kubernetes/namespaces/tooling/policy-bot/README.md b/kubernetes/namespaces/tooling/policy-bot/README.md index ed44a63..392d50f 100644 --- a/kubernetes/namespaces/tooling/policy-bot/README.md +++ b/kubernetes/namespaces/tooling/policy-bot/README.md @@ -5,7 +5,7 @@ Actual review policy is stored inside our GitHub repositories in the `.github/re ## GitHub Configuration -Follow the instructions in the [repository](https://github.com/palantir/policy-bot#deployment) to provision a GitHub application. Our manifests are configured to run the policy bot at https://policy-bot.pythondiscord.com/. +Follow the instructions in the [repository](https://github.com/palantir/policy-bot#deployment) to provision a GitHub application. Our manifests are configured to run the policy bot at https://policy-bot.pydis.wtf/. ## Secrets @@ -21,4 +21,4 @@ This app requires a `policy-bot-defaults` secret with the following entries: Run `kubectl apply -f .` inside this directory to apply the the configuration. -Access the running application over [policy-bot.pythondiscord.com]([https://policy-bot.pythondiscord.com/])! +Access the running application over [policy-bot.pydis.wtf]([https://policy-bot.pydis.wtf/])! diff --git a/kubernetes/namespaces/tooling/policy-bot/configmap.yaml b/kubernetes/namespaces/tooling/policy-bot/configmap.yaml index c3e3660..ec56f26 100644 --- a/kubernetes/namespaces/tooling/policy-bot/configmap.yaml +++ b/kubernetes/namespaces/tooling/policy-bot/configmap.yaml @@ -11,7 +11,7 @@ data: address: "0.0.0.0" port: 8080 # The public URL, used for URL generation when the server is behind a proxy - public_url: https://policy-bot.pythondiscord.com/ + public_url: https://policy-bot.pydis.wtf/ # Options for logging output logging: diff --git a/kubernetes/namespaces/tooling/policy-bot/ingress.yaml b/kubernetes/namespaces/tooling/policy-bot/ingress.yaml index 79c2f74..cd7d529 100644 --- a/kubernetes/namespaces/tooling/policy-bot/ingress.yaml +++ b/kubernetes/namespaces/tooling/policy-bot/ingress.yaml @@ -10,10 +10,10 @@ metadata: spec: tls: - hosts: - - "*.pythondiscord.com" - secretName: pythondiscord.com-tls + - "*.pydis.wtf" + secretName: pydis.wtf-tls rules: - - host: policy-bot.pythondiscord.com + - host: policy-bot.pydis.wtf http: paths: - path: / |