Skip to content

Commit

Permalink
fix: Fix typo in developer guide doc
Browse files Browse the repository at this point in the history
  • Loading branch information
okozachenko1203 committed Nov 27, 2023
1 parent 4bd42f3 commit ff59cbb
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions docs/developer/testing-and-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ steps to be able to test and develop the project.
openstack coe cluster template create \
--image $(openstack image show ${IMAGE_NAME} -c id -f value) \
--external-network public \
--dns-nameserver 8.8.8.8 \
--master-lb-enabled \
--master-flavor m1.medium \
--flavor m1.medium \
--network-driver calico \
--docker-storage-driver overlay2 \
--coe kubernetes \
--label kube_tag=${version} \
d k8s-${version};
--dns-nameserver 8.8.8.8 \
--master-lb-enabled \
--master-flavor m1.medium \
--flavor m1.medium \
--network-driver calico \
--docker-storage-driver overlay2 \
--coe kubernetes \
--label kube_tag=${version} \
k8s-${version};
done;
popd
```
Expand All @@ -40,14 +40,14 @@ steps to be able to test and develop the project.

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

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

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

0 comments on commit ff59cbb

Please sign in to comment.