apiVersion: apps/v1 kind: Deployment metadata: name: bouncer-server labels: app: bouncer-server io.kompose.service: bouncer-server spec: replicas: 3 selector: matchLabels: app: bouncer-server template: metadata: labels: app: bouncer-server io.kompose.service: bouncer-server spec: containers: - name: bouncer-server image: bouncer command: [ "bouncer", "-c", "/etc/bouncer/config.yml", "server", "proxy", "run", ] imagePullPolicy: Always envFrom: - configMapRef: name: bouncer-server-env resources: {} ports: - name: bouncer-server containerPort: 8080 volumeMounts: - mountPath: /etc/bouncer/ name: bouncer-server-config volumes: - name: bouncer-server-config configMap: name: bouncer-server-config