From 798a116a9e427c10836bde41d00e7bdba9f6515b Mon Sep 17 00:00:00 2001 From: ricolin Date: Thu, 6 Jul 2023 01:02:52 +0800 Subject: [PATCH] fix(doc): nit picking for README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a9cb9288..d15aac6e 100644 --- a/README.md +++ b/README.md @@ -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) ```