apiVersion: apps/v1 kind: Deployment metadata: name: authservice labels: app: authservice spec: selector: matchLabels: app: authservice template: metadata: labels: app: authservice spec: serviceAccountName: ea-authservice-sa automountServiceAccountToken: true containers: - name: authservice image: bzl://cmd/sds/emergencyaccess/authservice:container_push ports: - name: authservice containerPort: 8080 envFrom: - configMapRef: name: authservice resources: limits: cpu: "100m" memory: "100Mi" requests: cpu: "100m" memory: "100Mi" livenessProbe: httpGet: port: authservice path: /health initialDelaySeconds: 3 readinessProbe: httpGet: port: authservice path: /ready initialDelaySeconds: 3 imagePullPolicy: IfNotPresent volumes: - name: authservice configMap: name: authservice imagePullSecrets: - name: edge-docker-pull-secret --- apiVersion: v1 kind: Service metadata: name: authservice spec: selector: app: authservice ports: - name: authservice protocol: TCP port: 80 targetPort: authservice