Files
fedora-infra_ansible/roles/openshift-apps/bugzilla2fedmsg/templates/deploymentconfig.yml
Aurélien Bompard cd23763ac4 The full path is required
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2020-04-24 21:34:19 +02:00

84 lines
2.5 KiB
YAML

---
apiVersion: v1
kind: DeploymentConfig
metadata:
name: bugzilla2fedmsg
labels:
app: bugzilla2fedmsg
service: bugzilla2fedmsg
spec:
replicas: 1
selector:
app: bugzilla2fedmsg
deploymentconfig: bugzilla2fedmsg
strategy:
resources: {}
template:
metadata:
labels:
app: bugzilla2fedmsg
deploymentconfig: bugzilla2fedmsg
spec:
containers:
- name: bugzilla2fedmsg
image: bugzilla2fedmsg:latest
env:
- name: APP_SCRIPT
value: "/opt/app-root/bin/bugzilla2fedmsg"
# - name: FEDORA_MESSAGING_CONF
# value: "/etc/fedora-messaging/config.toml"
volumeMounts:
- name: fedora-messaging-config-volume
mountPath: /etc/fedora-messaging
readOnly: true
- name: fedora-messaging-ca-volume
mountPath: /etc/pki/fedora-messaging/cacert.pem
subPath: cacert.pem
readOnly: true
- name: fedora-messaging-crt-volume
mountPath: /etc/pki/fedora-messaging/bugzilla2fedmsg-cert.pem
subPath: bugzilla2fedmsg-cert.pem
readOnly: true
- name: fedora-messaging-key-volume
mountPath: /etc/pki/fedora-messaging/bugzilla2fedmsg-key.pem
subPath: bugzilla2fedmsg-key.pem
readOnly: true
- name: stomp-crt-volume
mountPath: /etc/pki/stomp/msg-client-fedora-prod.crt
subPath: msg-client-fedora-prod.crt
readOnly: true
- name: stomp-key-volume
mountPath: /etc/pki/stomp/msg-client-fedora-prod.key
subPath: msg-client-fedora-prod.key
readOnly: true
volumes:
- name: fedora-messaging-config-volume
configMap:
name: fedora-messaging-configmap
- name: fedora-messaging-ca-volume
secret:
secretName: fedora-messaging-ca
- name: fedora-messaging-crt-volume
secret:
secretName: fedora-messaging-crt
- name: fedora-messaging-key-volume
secret:
secretName: fedora-messaging-key
- name: stomp-crt-volume
secret:
secretName: stomp-crt
- name: stomp-key-volume
secret:
secretName: stomp-key
triggers:
- type: ConfigChange
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- bugzilla2fedmsg
from:
kind: ImageStreamTag
name: bugzilla2fedmsg:latest