diff options
-rw-r--r-- | .github/.github/FUNDING.yml | 2 | ||||
-rw-r--r-- | deployment.yaml | 20 |
2 files changed, 20 insertions, 2 deletions
diff --git a/.github/.github/FUNDING.yml b/.github/.github/FUNDING.yml deleted file mode 100644 index 6d9919e..0000000 --- a/.github/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -patreon: python_discord -custom: https://www.redbubble.com/people/pythondiscord diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 0000000..a390a12 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: snekbox +spec: + replicas: 1 + selector: + matchLabels: + app: snekbox + template: + metadata: + labels: + app: snekbox + spec: + containers: + - name: snekbox + image: ghcr.io/python-discord/snekbox:latest + imagePullPolicy: Always + ports: + - containerPort: 8060 |