apiVersion: apps/v1 kind: Deployment metadata: name: homer namespace: services labels: app: homer spec: replicas: 1 selector: matchLabels: app: homer template: metadata: labels: app: homer spec: containers: - name: homer image: b4bz/homer:latest ports: - containerPort: 8080 volumeMounts: - name: config mountPath: /www/assets/config.yml subPath: config.yml volumes: - name: config configMap: name: homer-config