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

fix(doc): nit picking for README #153

Merged
merged 1 commit into from
Jul 5, 2023
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,21 @@ steps to be able to test and develop the project.
--label kube_tag=${version} \
k8s-${version};
done;
popd /tmp
popd
```

1. Spin up a new cluster using the Cluster API driver

```bash
openstack coe cluster create \
--cluster-template k8s-v1.25.3 \
--cluster-template k8s-v1.25.11 \
--master-count 3 \
--node-count 2 \
k8s-v1.25.3
k8s-v1.25.11
```

1. Once the cluster reaches `CREATE_COMPLETE` state, you can interact with it:

```bash
eval $(openstack coe cluster config k8s-cluster)
eval $(openstack coe cluster config k8s-v1.25.11)
```
Loading