OPENSHIFT-NIGHTLY-IPV6-CI #572
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
name: OPENSHIFT-NIGHTLY-IPV6-CI | |
on: | |
schedule: | |
- cron: '23 21 * * *' | |
env: | |
HOME: /root | |
PYTHONUNBUFFERED: true | |
CLUSTER: ci-ipv6 | |
PULLSECRET: /root/openshift_pull.json | |
CLUSTERPROFILE: "sample-openshift-ipv6" | |
EXTRAPARAMS: "" | |
NETWORK: ipv6-network | |
NETWORK_CIDR: 2620:52:0:1306::/64 | |
VERSION: stable | |
TAG: "4.17" | |
jobs: | |
deploy-openshift: | |
if: github.repository == 'karmab/kcli' | |
runs-on: u08 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git pull origin ${GITHUB_REF##*/} | |
- name: Install kcli | |
run: curl https://raw.githubusercontent.com/karmab/kcli/main/install.sh | bash | |
- name: Deploy network if needed | |
run: kcli create network -c $NETWORK_CIDR $NETWORK || true | |
- name: Deploy Openshift on ipv6 | |
run: kcli create cluster openshift -P clusterprofile=$CLUSTERPROFILE -P network=$NETWORK -P pull_secret=$PULLSECRET -P version=$VERSION -P tag="$TAG" $EXTRAPARAMS $CLUSTER --force | |
- name: Clean everything | |
if: always() | |
run: kcli delete plan --yes $CLUSTER |