apiVersion: apps/v1 kind: Deployment metadata: name: triage-party spec: template: spec: containers: - name: triage-party # manually pushed to workloads until they cut a release # aj18259 update: manually pushed update with jquery version updated per security's # request. image: us-east1-docker.pkg.dev/ret-edge-pltf-infra/workloads/triageparty/triage-party:jquery-update ports: - name: http containerPort: 8080 env: - name: GITHUB_TOKEN valueFrom: secretKeyRef: name: triage-party-github-token key: token volumeMounts: - name: config mountPath: /app/config readinessProbe: failureThreshold: 3 httpGet: port: http path: /healthz scheme: HTTP initialDelaySeconds: 5 periodSeconds: 5 successThreshold: 1 timeoutSeconds: 1 imagePullPolicy: Always volumes: - name: config configMap: name: triage-party-config