diff options
| -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 0000000..2c2a8c7 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: +  name: metricity +spec: +  replicas: 1 +  selector: +    matchLabels: +      app: metricity +  template: +    metadata: +      labels: +        app: metricity +    spec: +      containers: +        - name: metricity +          image: ghcr.io/python-discord/metricity:latest +          imagePullPolicy: "Always" +          envFrom: +            - secretRef: +                name: metricity-env  |