diff options
| author | 2020-11-21 03:04:41 +0200 | |
|---|---|---|
| committer | 2020-11-21 03:04:41 +0200 | |
| commit | c3a927569da782c24299c8ae75df28ae6cd3f2ba (patch) | |
| tree | 51f72457a0e7c8d97286de12aa2d594206d698b2 /deployment.yaml | |
| parent | Make `additional_info` non-optional. (diff) | |
| parent | Merge pull request #1287 from python-discord/help-channel-msg (diff) | |
Merge branch 'master' into superstar-fix
Diffstat (limited to 'deployment.yaml')
| -rw-r--r-- | deployment.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 000000000..ca5ff5941 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: bot +spec: + replicas: 1 + selector: + matchLabels: + app: bot + template: + metadata: + labels: + app: bot + spec: + containers: + - name: bot + image: ghcr.io/python-discord/bot:latest + imagePullPolicy: Always + envFrom: + - secretRef: + name: bot-env |