|
@@ -8,15 +8,25 @@ all:
|
|
ansible_user: lab
|
|
ansible_user: lab
|
|
bastion.lab.example.com:
|
|
bastion.lab.example.com:
|
|
ansible_user: root
|
|
ansible_user: root
|
|
|
|
+
|
|
vars:
|
|
vars:
|
|
# OpenShift versions.
|
|
# OpenShift versions.
|
|
- ocp_maj: "4.10"
|
|
|
|
|
|
+ ocp_maj: "4.10" # XXX unused
|
|
ocp_z: "4.10.3"
|
|
ocp_z: "4.10.3"
|
|
- # Various AMQ versions.
|
|
|
|
- eap_v: "7.4"
|
|
|
|
|
|
+
|
|
|
|
+ # Various EAP versions.
|
|
|
|
+ eap_v: "7.4" # XXX unused
|
|
eap_z: "7.4.12"
|
|
eap_z: "7.4.12"
|
|
|
|
+ eap_xp: "4.0"
|
|
|
|
+ wf_s2i: "1.1.3-jdk17"
|
|
|
|
+ wf_old: "29.0.1.Final-jdk17" # XXX unused
|
|
eap_ch: "stable"
|
|
eap_ch: "stable"
|
|
|
|
|
|
|
|
+ # We need this operator CSV.
|
|
|
|
+ op_cat: redhat-operators
|
|
|
|
+ op_pkg: eap
|
|
|
|
+ desired_csv: eap-operator.v2.4.2
|
|
|
|
+
|
|
# These are the tools we need, some also need to be downloaded.
|
|
# These are the tools we need, some also need to be downloaded.
|
|
tools:
|
|
tools:
|
|
oc:
|
|
oc:
|
|
@@ -27,4 +37,25 @@ all:
|
|
# The list of OpenShift clusters check-env will try to connect to.
|
|
# The list of OpenShift clusters check-env will try to connect to.
|
|
clusters:
|
|
clusters:
|
|
- ocp4
|
|
- ocp4
|
|
|
|
+
|
|
|
|
+ # The list of images we need to pull to workstation.
|
|
|
|
+ pull_images:
|
|
|
|
+ - name: registry.redhat.io/jboss-eap-7/eap74-openjdk17-openshift-rhel8:{{ eap_z }}
|
|
|
|
+ tag_latest: yes
|
|
|
|
+ auth_file: registry-rh-auth
|
|
|
|
+ - name: registry.redhat.io/jboss-eap-7/eap74-openjdk17-runtime-openshift-rhel8:{{ eap_z }}
|
|
|
|
+ tag_latest: yes
|
|
|
|
+ auth_file: registry-rh-auth
|
|
|
|
+# - name: registry.redhat.io/jboss-eap-7/eap-xp4-openjdk17-openshift-rhel8:{{ eap_xp }}
|
|
|
|
+# tag_latest: yes
|
|
|
|
+# auth_file: registry-rh-auth
|
|
|
|
+# - name: registry.redhat.io/jboss-eap-7/eap-xp4-openjdk17-runtime-openshift-rhel8:{{ eap_xp }}
|
|
|
|
+# tag_latest: yes
|
|
|
|
+# auth_file: registry-rh-auth
|
|
|
|
+ - name: quay.io/wildfly/wildfly-s2i:{{ wf_s2i }}
|
|
|
|
+ tag_latest: yes
|
|
|
|
+ - name: quay.io/wildfly/wildfly-runtime:{{ wf_s2i }}
|
|
|
|
+ tag_latest: yes
|
|
|
|
+# - name: quay.io/wildfly/wildfly:{{ wf_old }}
|
|
|
|
+# tag_latest: yes
|
|
...
|
|
...
|