Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP][To Remove] Test Ansible scripts for spinning up clusters #7161

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/infra-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Create Stageing Cluster
uses: dawidd6/action-ansible-playbook@v2
env:
IC_API_KEY: ${{ secrets.IC_API_KEY }}
#IC_API_KEY: ${{ secrets.IC_API_KEY }}
# TODO: Changed by rm3l - IC_API_KEY secret does not seem to exist in the repo
IC_API_KEY: ${{ secrets.IBM_CLOUD_API_KEY }}
IC_REGION: 'eu-de'
SSHKEY: './ssh_key'
with:
Expand All @@ -45,4 +47,4 @@ jobs:
ibmcloud ks cluster config --cluster $ID --admin
CLUSTER=`ibmcloud ks cluster get -c odo-test-kubernetes-cluster --output json `
ID=$(echo $CLUSTER | jq -r '.id')
ibmcloud ks cluster config --cluster $ID --admin
ibmcloud ks cluster config --cluster $ID --admin
4 changes: 2 additions & 2 deletions scripts/ansible/Cluster/openshift-cluster/vars.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
total_ipv4_address_count: 256
kube_version: 4.12.13_openshift # command to list all supported k8s/openshift `ibmcloud ks versions`
node_flavor: bx2.4x16
kube_version: 4.13_openshift # command to list all supported k8s/openshift `ibmcloud ks versions`
node_flavor: b3c.4x16
workers: 3
nfs_image: ibm-ubuntu-20-04-2-minimal-amd64-1
Loading