From 2d1693f005b703ba6b3efd6dd7c43d5c619cd469 Mon Sep 17 00:00:00 2001 From: Cameron Steele Date: Fri, 9 Feb 2024 12:15:29 -0600 Subject: [PATCH] Add gliderbot to k8s --- kustomization.yaml | 4 ++++ manifests/gliderbot.yaml | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 manifests/gliderbot.yaml diff --git a/kustomization.yaml b/kustomization.yaml index bcf8229..7faedd9 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -39,6 +39,10 @@ images: newName: quay.io/oauth2-proxy/oauth2-proxy newTag: v7.4.0 +- name: gliderbot + newName: ghcr.io/thelab-ms/gliderbot + newTag: latest + resources: - manifests/access-controller-controller.yaml - manifests/docuseal.yaml diff --git a/manifests/gliderbot.yaml b/manifests/gliderbot.yaml new file mode 100644 index 0000000..fe256e9 --- /dev/null +++ b/manifests/gliderbot.yaml @@ -0,0 +1,23 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gliderbot + labels: + app: gliderbot +spec: + replicas: 1 + selector: + matchLabels: + app: gliderbot + template: + metadata: + labels: + app: gliderbot + spec: + containers: + - name: svc + env: + - name: DISCORD_TOKEN + - name: DISCORD_GUILD + - name: DISCORD_CLIENT +