diff options
| author | 2020-11-21 01:49:09 +0200 | |
|---|---|---|
| committer | 2020-11-21 01:49:09 +0200 | |
| commit | a8bf8ce7b947b3ec6150953196c1af20cef32dec (patch) | |
| tree | 7666141f4ffda8acae03d2c0a654578c855981fb /deployment.yaml | |
| parent | Remove duplicate checkmark (diff) | |
| parent | Merge pull request #1293 from ks129/emojis-filter (diff) | |
Merge branch 'master' into help-channel-msg
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  |