diff options
-rw-r--r-- | kubernetes/namespaces/tooling/policy-bot/README.md | 4 | ||||
-rw-r--r-- | kubernetes/namespaces/tooling/policy-bot/configmap.yaml | 2 | ||||
-rw-r--r-- | kubernetes/namespaces/tooling/policy-bot/ingress.yaml | 6 |
3 files changed, 6 insertions, 6 deletions
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: / |