forked from ansibleplaybookbundle/kubevirt-apb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-org: Move openshift deployment to playbooks dir
- Custom variables per Openshift version can be declared under playbooks/cluster/openshift/vars/ - Use a static version for Openshift 3.9 (v3.9.0-alpha.4) - Rename deploy-openshift.yml to config.yml. - Add the prerequisites of openshift to config.yml - there is no reason to keep them in a separate file. - Add a global variable file at vars/global_vars.yml Signed-off-by: gbenhaim <[email protected]>
- Loading branch information
Showing
10 changed files
with
55 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash -ex | ||
|
||
export OPENSHIFT_IMAGE_TAG="v3.7.0" | ||
export OPENSHIFT_VER="3.7" | ||
export ANSIBLE_MODULES_VERSION="openshift-ansible-3.7.29-1" | ||
export OPENSHIFT_PLAYBOOK_PATH="playbooks/byo/config.yml" | ||
"${0%/*}/check-patch.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash -ex | ||
|
||
export OPENSHIFT_IMAGE_TAG="v3.9.0" | ||
export OPENSHIFT_VER="3.9" | ||
export ANSIBLE_MODULES_VERSION="openshift-ansible-3.9.0-0.40.0" | ||
export OPENSHIFT_PLAYBOOK_PATH="playbooks/deploy_cluster.yml" | ||
"${0%/*}/check-patch.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
- import_playbook: "{{ playbook_dir }}/deploy-with-{{ provider | default('lago') }}.yml" | ||
- import_playbook: "{{ playbook_dir }}/deploy-{{ cluster_type | default('openshift') }}.yml" | ||
- import_playbook: "{{ playbook_dir }}/playbooks/cluster/{{ cluster_type | default('openshift') }}/config.yml" | ||
- import_playbook: "{{ playbook_dir }}/install-kubevirt-release.yml" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
openshift_image_tag: v3.7.0 | ||
openshift_service_catalog_image_version: "{{ openshift_image_tag }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
openshift_image_tag: v3.9.0-alpha.4 | ||
openshift_service_catalog_image_version: "{{ openshift_image_tag }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
epel_release_rpm_url: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm |