diff options
author | wutianwei <wutianwei1@huawei.com> | 2018-11-28 19:12:02 -0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2018-11-28 19:21:49 -0800 |
commit | 963fa93ae151779ce7240656e6f1302a0336244d (patch) | |
tree | d43c9d4146927f0b4e166a6d99a6dfb44975f081 /docs | |
parent | adf4c7d34840acbc4676d895075d7098c0064f9c (diff) |
Upgrade spinnaker to suppport helm deploy
JIRA: CLOVER-99
1. Upgrade the spinnaker to 1.10.5 from 1.7.0
2. Enable the artifact featuer and add s3 artifact
3. Add the user guide to deploy helm charts.
Change-Id: Ic44a88525cc609f3a24d3873b796f064436a57bf
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release/configguide/imgs/spinnaker-bake.png | bin | 0 -> 61742 bytes | |||
-rw-r--r-- | docs/release/configguide/imgs/spinnaker-deploy.png | bin | 0 -> 62381 bytes | |||
-rw-r--r-- | docs/release/configguide/imgs/spinnaker-expected-artifacts.png | bin | 0 -> 37564 bytes | |||
-rw-r--r-- | docs/release/configguide/imgs/spinnaker-produces-artifact.png | bin | 0 -> 17589 bytes | |||
-rw-r--r-- | docs/release/configguide/spinnaker_config_guide.rst | 63 |
5 files changed, 63 insertions, 0 deletions
diff --git a/docs/release/configguide/imgs/spinnaker-bake.png b/docs/release/configguide/imgs/spinnaker-bake.png Binary files differnew file mode 100644 index 0000000..86e853a --- /dev/null +++ b/docs/release/configguide/imgs/spinnaker-bake.png diff --git a/docs/release/configguide/imgs/spinnaker-deploy.png b/docs/release/configguide/imgs/spinnaker-deploy.png Binary files differnew file mode 100644 index 0000000..44b4e92 --- /dev/null +++ b/docs/release/configguide/imgs/spinnaker-deploy.png diff --git a/docs/release/configguide/imgs/spinnaker-expected-artifacts.png b/docs/release/configguide/imgs/spinnaker-expected-artifacts.png Binary files differnew file mode 100644 index 0000000..f8204f7 --- /dev/null +++ b/docs/release/configguide/imgs/spinnaker-expected-artifacts.png diff --git a/docs/release/configguide/imgs/spinnaker-produces-artifact.png b/docs/release/configguide/imgs/spinnaker-produces-artifact.png Binary files differnew file mode 100644 index 0000000..ba6ab65 --- /dev/null +++ b/docs/release/configguide/imgs/spinnaker-produces-artifact.png diff --git a/docs/release/configguide/spinnaker_config_guide.rst b/docs/release/configguide/spinnaker_config_guide.rst index f4a3e12..3c46e82 100644 --- a/docs/release/configguide/spinnaker_config_guide.rst +++ b/docs/release/configguide/spinnaker_config_guide.rst @@ -240,3 +240,66 @@ Deleting the kubernetes provider in spinnaker: .. code-block:: bash $ cloverctl delete provider kubernetes -n my-kubernetes + +Deploy Helm Charts +================== + +Currently, spinnaker support to deploy applications with the helm chart. More information please refer to `Deploy Helm Charts <https://www.spinnaker.io/guides/user/kubernetes-v2/deploy-helm/>`_. + +Upload helm charts to artifacts +------------------------------- + +Before doing this, please package the helm chart first. how to package the chart, refer to `helm documentation <https://docs.helm.sh/helm/#helm_package>`_. + +.. code-block:: bash + + $ wget https://dl.minio.io/client/mc/release/linux-amd64/mc + $ chmod +x mc + $ ./mc config host add my_minio http://{minio-service-ip}:9000 dont-use-this for-production S3v4 + $ ./mc mb my_minio/s3-account + $ ./mc cp test-0.1.0.tgz my_minio/s3-account/test-0.1.0.tgz + +**NOTE:** the minio-service-ip is 10.233.21.175 in this example + +Configure Pipeline +------------------ + +This pipeline include three stages,configuration, bake and deploy. + +Configuration stage +::::::::::::::::::: + +We can configure Automated triggers and expected artifacts in this stage. +We just declare expected artifacts and trigger the pipeline manually. + +.. image:: imgs/spinnaker-expected-artifacts.png + :align: center + :scale: 100% + +**NOTE:** We need to enable "Use Default Artifact", when we need trigger the pipeline manually + +Bake Manifest stage +::::::::::::::::::: + +For example, we have a test "Bake(Manifest)" stage below + +.. image:: imgs/spinnaker-bake.png + :align: center + :scale: 100% + +Spinnaker has automatically created an embedded/base64 artifact that is bound when the stage completes, representing the fully baked manifest set to be deployed downstream. + +.. image:: imgs/spinnaker-produces-artifact.png + :align: center + :scale: 100% + +Deploy Manifest stage +::::::::::::::::::::: + +After the chart was baked by helm, we can configure a "Deploy(Manifest)" stage to deploy the manifest produced by previous stage as shown below. + +.. image:: imgs/spinnaker-deploy.png + :align: center + :scale: 100% + +Once this pipeline runs completely, you can see every resource in your Helm chart get deployed. |