Skip to content
Open
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
33 changes: 22 additions & 11 deletions source/plugins/cloudstack-kubernetes-service.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,26 +61,37 @@ Eg: To generate the latest kubernetes iso

.. parsed-literal::

1.27.2, kubernetes version, see https://github.com/kubernetes/kubernetes/releases
1.3.0, CNI version, see https://github.com/containernetworking/plugins/releases
1.27.0, cri-tools version, see https://github.com/kubernetes-sigs/cri-tools/releases
1.11, weave addon for kubernetes, see https://github.com/weaveworks/weave/tree/master/prog/weave-kube
2.7.0, kubernetes dashboard version, see https://github.com/kubernetes/dashboard/release
1.30.1, kubernetes version, see https://github.com/kubernetes/kubernetes/releases
1.5.0, CNI version, see https://github.com/containernetworking/plugins/releases
1.30.0, cri-tools version, see https://github.com/kubernetes-sigs/cri-tools/releases
3.28.0, CNI addon for kubernetes, see https://raw.githubusercontent.com/projectcalico/calico/v3.28.0/manifests/calico.yaml
2.7.0, kubernetes dashboard version, see https://github.com/kubernetes/dashboard/releases

Usage:

.. parsed-literal::
::

# ./create-kubernetes-binaries-iso.sh OUTPUT_PATH KUBERNETES_VERSION CNI_VERSION CRICTL_VERSION WEAVENET_NETWORK_YAML_CONFIG DASHBOARD_YAML_CONFIG [OPTIONAL_OUTPUT_FILENAME]
# ./create-kubernetes-binaries-iso.sh OUTPUT_PATH \
KUBERNETES_VERSION CNI_VERSION CRICTL_VERSION \
CNI_NETWORK_YAML_CONFIG \
DASHBOARD_YAML_CONFIG \
[OPTIONAL_OUTPUT_FILENAME]

Eg:

.. parsed-literal::
::

# ./create-kubernetes-binaries-iso.sh ./ 1.27.2 1.3.0 1.27.0 https://raw.githubusercontent.com/weaveworks/weave/master/prog/weave-kube/weave-daemonset-k8s-1.11.yaml https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml setup-v1.27.2
# ./create-kubernetes-binaries-iso.sh ./ \
1.30.1 1.5.0 1.30.0 \
https://raw.githubusercontent.com/projectcalico/calico/v3.28.0/manifests/calico.yaml \
https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml \
setup-1.30.1-calico-3.28.0

.. note::
From ACS 4.16 onwards, Kubernetes versions >= 1.20.x are only supported (https://endoflife.date/kubernetes).
.. note::
Kubernetes dashboard versions >= 7.0.0 are not supported, as they support only Helm-based installation.

**NOTE:**
From ACS 4.16 onwards, Kubernetes versions >= 1.20.x are only supported (https://endoflife.date/kubernetes).

Working with Kubernetes supported version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down