1
+ ---
2
+
1
3
- include_vars : mgmt-vars.yml
2
4
tags : always
3
5
- include_vars : ../../../vars/ssh-keys.yml # Required by mgmt-vars.yml
7
9
- include_vars : ../../../vars/persistent-ressources.yml
8
10
tags : always
9
11
12
+
10
13
- name : " PersistentVolumeClaim"
11
14
connection : local
12
15
openshift :
38
41
name: "{{ mgmt_secret_name }}"
39
42
namespace: "{{ openshift_namespace }}"
40
43
labels:
41
- app: mgmt
44
+ app: "{{mgmt_app_name}}"
42
45
data:
43
46
{{ mgmt_secret_contents | to_yaml | indent(width=2) }}
44
47
45
- - name : mgmt DeploymentConfig
48
+ - name : DeploymentConfigs
49
+ connection : local
46
50
openshift :
47
51
state : latest
48
52
content : |
49
53
apiVersion: v1
50
54
kind: DeploymentConfig
51
55
metadata:
52
- name: mgmt
56
+ name: "{{mgmt_app_name}}"
53
57
namespace: "{{ openshift_namespace }}"
54
58
labels:
55
- app: mgmt
59
+ app: "{{mgmt_app_name}}"
56
60
spec:
57
61
replicas: 1
58
62
selector:
59
- app: mgmt
60
- deploymentconfig: mgmt
63
+ app: "{{mgmt_app_name}}"
64
+ deploymentconfig: "{{mgmt_app_name}}"
61
65
template:
62
66
metadata:
63
67
labels:
64
- app: mgmt
65
- deploymentconfig: mgmt
66
- spec:
68
+ app: "{{mgmt_app_name}}"
69
+ deploymentconfig: "{{mgmt_app_name}}"
70
+ spec:
67
71
containers:
68
- - name: mgmt
69
- imagePullPolicy: Always
70
- ports:
71
- - containerPort: 22
72
- protocol: TCP
73
- volumeMounts:
72
+ - name: "{{mgmt_app_name}}"
73
+ imagePullPolicy: Always
74
+ ports:
75
+ - containerPort: 22
76
+ protocol: TCP
77
+ {% if openshift_is_wp_int %}
78
+ env:
79
+ - name: DB_HOST
80
+ valueFrom:
81
+ secretKeyRef:
82
+ key: host
83
+ name: database-access
84
+ - name: DB_USER
85
+ valueFrom:
86
+ secretKeyRef:
87
+ key: username
88
+ name: database-access
89
+ - name: DB_PASS
90
+ valueFrom:
91
+ secretKeyRef:
92
+ key: password
93
+ name: database-access
94
+ {% endif %}
95
+ volumeMounts:
96
+ - name: srv
97
+ mountPath: /srv
98
+ - name: ssh
99
+ mountPath: /var/lib/secrets/ssh
100
+ {% if (openshift_is_production or openshift_is_wp_int) %}
101
+ - name: backups
102
+ mountPath: /backups
103
+ {% endif %}
104
+ serviceAccount: "{{ mgmt_service_account }}"
105
+ serviceAccountName: "{{ mgmt_service_account }}"
106
+ volumes:
74
107
- name: srv
75
- mountPath: /srv
108
+ persistentVolumeClaim:
109
+ claimName: '{{openshift_pvc_name}}'
76
110
- name: ssh
77
- mountPath: /var/lib/secrets/ssh
78
- {% if openshift_is_production %}
111
+ secret:
112
+ secretName: "{{ mgmt_secret_name }}"
113
+ {% if (openshift_is_production or openshift_is_wp_int) %}
79
114
- name: backups
80
- mountPath: /backups
81
- {% endif %}
82
- serviceAccount: {{ mgmt_service_account }}
83
- serviceAccountName: {{ mgmt_service_account }}
84
- volumes:
85
- - name: srv
86
- persistentVolumeClaim:
87
- claimName: wordpress-0
88
- - name: ssh
89
- secret:
90
- secretName: "{{ mgmt_secret_name }}"
91
- {% if openshift_is_production %}
92
- - name: backups
93
- persistentVolumeClaim:
94
- claimName: backups-0
115
+ persistentVolumeClaim:
116
+ claimName: "{{ openshift_backup_volume_name }}"
95
117
{% endif %}
96
118
triggers:
97
- - type: ConfigChange
98
- - type: ImageChange
99
- imageChangeParams:
100
- automatic: true
101
- containerNames:
102
- - mgmt
103
- from:
104
- kind: ImageStreamTag
105
- name: "{{ mgmt_image_name }}:{{ openshift_registry_tag }}"
106
- namespace: "{{ openshift_namespace }}"
119
+ - type: ConfigChange
120
+ - type: ImageChange
121
+ imageChangeParams:
122
+ automatic: true
123
+ containerNames:
124
+ - "{{mgmt_app_name}}"
125
+ from:
126
+ kind: ImageStreamTag
127
+ name: "{{ mgmt_image_name }}:{{ openshift_registry_tag }}"
128
+ namespace: "{{ openshift_namespace }}"
129
+
0 commit comments