diff options
author | 2024-04-15 12:41:13 +0100 | |
---|---|---|
committer | 2024-04-15 12:41:13 +0100 | |
commit | ee52b8bb839654559064e5a155bb7e90e51b619c (patch) | |
tree | 5fe8c3d44560c82677bc62bbafe29954aa215665 /kubernetes/namespaces/default/pixels/deployment.yaml | |
parent | Move blackbox to databases ns (diff) |
Move pixels to pixels namespace
Also add a pull secret for the new namespace
Diffstat (limited to 'kubernetes/namespaces/default/pixels/deployment.yaml')
-rw-r--r-- | kubernetes/namespaces/default/pixels/deployment.yaml | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/kubernetes/namespaces/default/pixels/deployment.yaml b/kubernetes/namespaces/default/pixels/deployment.yaml deleted file mode 100644 index 34e7b50..0000000 --- a/kubernetes/namespaces/default/pixels/deployment.yaml +++ /dev/null @@ -1,44 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: pixels -spec: - replicas: 1 - selector: - matchLabels: - app: pixels - template: - metadata: - labels: - app: pixels - spec: - containers: - - name: pixels - image: ghcr.io/python-discord/pixels:latest - imagePullPolicy: Always - ports: - - containerPort: 8000 - envFrom: - - secretRef: - name: pixels-env - - configMapRef: - name: pixels-config-env - startupProbe: - httpGet: - path: /health - port: 8000 - httpHeaders: - - name: Host - value: pixels.pythondiscord.com - failureThreshold: 15 - periodSeconds: 2 - timeoutSeconds: 5 - initialDelaySeconds: 10 - securityContext: - readOnlyRootFilesystem: true - imagePullSecrets: - - name: ghcr-pull-secret - securityContext: - fsGroup: 2000 - runAsUser: 1000 - runAsNonRoot: true |