Skip to content

Commit bf0448a

Browse files
committed
Finished unforking mgmt deployment tasks and variables
1 parent 091a4c4 commit bf0448a

File tree

5 files changed

+70
-186
lines changed

5 files changed

+70
-186
lines changed

ansible/roles/wordpress-openshift-namespace/tasks/main.yml

-6
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,5 @@
3838
- ci.jenkinsfile
3939

4040
- name: "Management container (ssh server, PHP CLI)"
41-
when: not openshift_namespace == "wwp-int"
4241
import_tasks: mgmt.yml
4342
tags: mgmt
44-
45-
- name: wwp-int-mgmt-deployment
46-
when: openshift_namespace == "wwp-int"
47-
include_tasks:
48-
file: wwp-int-mgmt.yml
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
2+
13
- include_vars: mgmt-vars.yml
24
tags: always
35
- include_vars: ../../../vars/ssh-keys.yml # Required by mgmt-vars.yml
@@ -7,6 +9,7 @@
79
- include_vars: ../../../vars/persistent-ressources.yml
810
tags: always
911

12+
1013
- name: "PersistentVolumeClaim"
1114
connection: local
1215
openshift:
@@ -38,69 +41,89 @@
3841
name: "{{ mgmt_secret_name }}"
3942
namespace: "{{ openshift_namespace }}"
4043
labels:
41-
app: mgmt
44+
app: "{{mgmt_app_name}}"
4245
data:
4346
{{ mgmt_secret_contents | to_yaml | indent(width=2) }}
4447
45-
- name: mgmt DeploymentConfig
48+
- name: DeploymentConfigs
49+
connection: local
4650
openshift:
4751
state: latest
4852
content: |
4953
apiVersion: v1
5054
kind: DeploymentConfig
5155
metadata:
52-
name: mgmt
56+
name: "{{mgmt_app_name}}"
5357
namespace: "{{ openshift_namespace }}"
5458
labels:
55-
app: mgmt
59+
app: "{{mgmt_app_name}}"
5660
spec:
5761
replicas: 1
5862
selector:
59-
app: mgmt
60-
deploymentconfig: mgmt
63+
app: "{{mgmt_app_name}}"
64+
deploymentconfig: "{{mgmt_app_name}}"
6165
template:
6266
metadata:
6367
labels:
64-
app: mgmt
65-
deploymentconfig: mgmt
66-
spec:
68+
app: "{{mgmt_app_name}}"
69+
deploymentconfig: "{{mgmt_app_name}}"
70+
spec:
6771
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:
74107
- name: srv
75-
mountPath: /srv
108+
persistentVolumeClaim:
109+
claimName: '{{openshift_pvc_name}}'
76110
- 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) %}
79114
- 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 }}"
95117
{% endif %}
96118
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+

ansible/roles/wordpress-openshift-namespace/tasks/wwp-int-mgmt.yml

-136
This file was deleted.

ansible/roles/wordpress-openshift-namespace/vars/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
openshift_is_production: "{{ openshift_namespace == 'wwp' }}"
55
openshift_is_wp_int: "{{ openshift_namespace == 'wwp-int' }}"
6-
openshift_registry_tag: "{{ 'prod' if openshift_is_production else 'latest' }}"
6+
openshift_registry_tag: "{{ 'prod' if openshift_is_production or openshift_is_wp_int else 'latest' }}"
7+
openshift_backup_volume_name: "{{ 'backups-readonly' if openshift_is_wp_int else 'backup-0' }}"
78

89
# for imageStream authentification
910
#TODO: remove the need for authentification

ansible/roles/wordpress-openshift-namespace/vars/mgmt-vars.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# See also ssh keys and more in
22
# ../../../hosts-{dev,prod}/group_vars/openshift-namespaces-*
33

4+
mgmt_app_name: mgmt-test
5+
46
mgmt_service_account: "{{ openshift_namespace }}"
57

68
mgmt_access_list:

0 commit comments

Comments
 (0)