diff options
| author | 2020-11-20 13:08:23 -0600 | |
|---|---|---|
| committer | 2020-11-20 13:08:23 -0600 | |
| commit | fb7ca02f512da6072e52888546e93da123822e01 (patch) | |
| tree | 71d7f5342d86498a5703eee1381391a4a992d883 /deployment.yaml | |
| parent | Cover Unicode emojis catching as antispam rule with test cases (diff) | |
| parent | Checkout code so we can deploy (diff) | |
Merge branch 'master' into emojis-filter
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  |