diff --git a/roles/openshift-apps/the-new-hotness/files/deploymentconfig.yml b/roles/openshift-apps/the-new-hotness/files/deploymentconfig.yml index 55aa8fbacc..27b17b2fff 100644 --- a/roles/openshift-apps/the-new-hotness/files/deploymentconfig.yml +++ b/roles/openshift-apps/the-new-hotness/files/deploymentconfig.yml @@ -1,3 +1,5 @@ +apiVersion: v1 +items: - apiVersion: v1 kind: DeploymentConfig metadata: @@ -22,39 +24,39 @@ deploymentconfig: the-new-hotness spec: containers: - - name: the-new-hotness - image: the-new-hotness/the-new-hotness:latest - command: ["fedora-messaging", "consume"] - volumeMounts: - - name: config-volume - mountPath: /etc/fedora-messaging - readOnly: true -# - name: fedmsg-key-volume -# mountPath: /etc/pki/fedmsg/key -# readOnly: true -# - name: fedmsg-crt-volume -# mountPath: /etc/pki/fedmsg/crt -# readOnly: true + - name: the-new-hotness + image: the-new-hotness/the-new-hotness:latest + command: ["fedora-messaging", "consume"] + volumeMounts: + - name: config-volume + mountPath: /etc/fedora-messaging + readOnly: true +# - name: fedmsg-key-volume +# mountPath: /etc/pki/fedmsg/key +# readOnly: true +# - name: fedmsg-crt-volume +# mountPath: /etc/pki/fedmsg/crt +# readOnly: true volumes: - - name: config-volume - configMap: - name: the-new-hotness-configmap -# - name: fedmsg-key-volume -# secret: -# secretName: release-monitoring-fedmsg-key -# - name: fedmsg-crt-volume -# secret: -# secretName: release-monitoring-fedmsg-cert + - name: config-volume + configMap: + name: the-new-hotness-configmap +# - name: fedmsg-key-volume +# secret: +# secretName: release-monitoring-fedmsg-key +# - name: fedmsg-crt-volume +# secret: +# secretName: release-monitoring-fedmsg-cert triggers: - - imageChangeParams: - automatic: true - containerNames: - - the-new-hotness - from: - kind: ImageStreamTag - name: the-new-hotness:latest - namespace: the-new-hotness - type: ImageChange - - type: ConfigChange + - imageChangeParams: + automatic: true + containerNames: + - the-new-hotness + from: + kind: ImageStreamTag + name: the-new-hotness:latest + namespace: the-new-hotness + type: ImageChange + - type: ConfigChange kind: List metadata: {}