apiVersion: apps/v1 kind: Deployment metadata: name: goma-gateway spec: selector: matchLabels: app: goma-gateway template: metadata: labels: app: goma-gateway spec: containers: - name: goma-gateway image: jkaninda/goma-gateway command: ["goma","server"] resources: limits: memory: "128Mi" cpu: "200m" ports: - containerPort: 8080 livenessProbe: httpGet: path: /health/live port: 8080 initialDelaySeconds: 15 periodSeconds: 30 timeoutSeconds: 10 readinessProbe: httpGet: path: /health/live port: 8080 initialDelaySeconds: 15 periodSeconds: 30 timeoutSeconds: 10 volumeMounts: - name: config mountPath: /etc/goma/ volumes: - name: config configMap: name: goma-config