diff --git a/README.md b/README.md index 6ccc4fb5..472d5564 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ There are many valid ways to configure CI pipelines, but to help you get started Each new release of rok8s-scripts generates CI images for common workflows. These images include a set of common CI/CD dependencies, including Docker, Kubernetes, Helm, AWS, and Google Cloud client libraries. Starting with these images as a base for deployment workflows ensures that you don't need to spend any build time installing extra dependencies. -We currently include CI Images based on Alpine and Debian Stretch as our recommended starting points. The latest Debian Stretch release can be pulled from `quay.io/reactiveops/ci-images:v11.2-stretch`. A full list of image tags is available on our [Quay repository](https://quay.io/repository/reactiveops/ci-images). +We currently include CI Images based on Alpine and Debian Stretch as our recommended starting points. The latest Debian Stretch release can be pulled from `quay.io/reactiveops/ci-images:v11.3-stretch`. A full list of image tags is available on our [Quay repository](https://quay.io/repository/reactiveops/ci-images). **Deprecation Notice** As of v10 and onward, alpine and stretch will be the only available images. @@ -83,7 +83,7 @@ Here is a set of guidelines to follow when deciding what version of ci-images (a You want rok8s-scripts to be stable, and just keep working until you decide to upgrade. -In this scenario, you should pin to a minor version of rok8s-scripts such as `v11.2-alpine`. +In this scenario, you should pin to a minor version of rok8s-scripts such as `v11.3-alpine`. #### You like to live dangerously diff --git a/docs/index.md b/docs/index.md index ae4676f4..3515bc19 100644 --- a/docs/index.md +++ b/docs/index.md @@ -61,7 +61,7 @@ There are many valid ways to configure CI pipelines, but to help you get started Each new release of rok8s-scripts generates CI images for common workflows. These images include a set of common CI/CD dependencies, including Docker, Kubernetes, Helm, AWS, and Google Cloud client libraries. Starting with these images as a base for deployment workflows ensures that you don't need to spend any build time installing extra dependencies. -We currently include CI Images based on Alpine and Debian Stretch as our recommended starting points. The latest Debian Stretch release can be pulled from `quay.io/reactiveops/ci-images:v11.2-stretch`. A full list of image tags is available on our [Quay repository](https://quay.io/repository/reactiveops/ci-images). +We currently include CI Images based on Alpine and Debian Stretch as our recommended starting points. The latest Debian Stretch release can be pulled from `quay.io/reactiveops/ci-images:v11.3-stretch`. A full list of image tags is available on our [Quay repository](https://quay.io/repository/reactiveops/ci-images). **Deprecation Notice** As of v10 and onward, alpine and stretch will be the only available images. @@ -83,7 +83,7 @@ Here is a set of guidelines to follow when deciding what version of ci-images (a You want rok8s-scripts to be stable, and just keep working until you decide to upgrade. -In this scenario, you should pin to a minor version of rok8s-scripts such as `v11.2-alpine`. +In this scenario, you should pin to a minor version of rok8s-scripts such as `v11.3-alpine`. #### You like to live dangerously diff --git a/examples/ci/.circleci/config.yml b/examples/ci/.circleci/config.yml index 2a10b2c6..93a4ae2a 100644 --- a/examples/ci/.circleci/config.yml +++ b/examples/ci/.circleci/config.yml @@ -14,7 +14,7 @@ references: deploy_steps: &deploy_steps docker: - - image: quay.io/reactiveops/ci-images:v11.2-alpine + - image: quay.io/reactiveops/ci-images:v11.3-alpine steps: - checkout - *set_environment_variables @@ -24,7 +24,7 @@ references: jobs: imagebuild: docker: - - image: quay.io/reactiveops/ci-images:v11.2-alpine + - image: quay.io/reactiveops/ci-images:v11.3-alpine steps: - checkout - setup_remote_docker diff --git a/examples/ci/.gitlab-ci.yml b/examples/ci/.gitlab-ci.yml index d2f9db4a..675e2a2f 100644 --- a/examples/ci/.gitlab-ci.yml +++ b/examples/ci/.gitlab-ci.yml @@ -13,7 +13,7 @@ variables: DOCKER_HOST: tcp://localhost:2375 DOCKER_DRIVER: overlay2 -image: quay.io/reactiveops/ci-images:v11.2-alpine +image: quay.io/reactiveops/ci-images:v11.3-alpine services: - docker:dind diff --git a/examples/ci/bitbucket-pipelines.yml b/examples/ci/bitbucket-pipelines.yml index 0be71c68..e5b84f56 100644 --- a/examples/ci/bitbucket-pipelines.yml +++ b/examples/ci/bitbucket-pipelines.yml @@ -1,4 +1,4 @@ -image: quay.io/reactiveops/ci-images:v11.2-stretch +image: quay.io/reactiveops/ci-images:v11.3-stretch aliases: - &initialize-env | diff --git a/examples/ephemeral-environments/.circleci/config.yml b/examples/ephemeral-environments/.circleci/config.yml index c68e8a68..a22ec79f 100644 --- a/examples/ephemeral-environments/.circleci/config.yml +++ b/examples/ephemeral-environments/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - rok8s-scripts: fairwinds/rok8s-scripts@11.2 + rok8s-scripts: fairwinds/rok8s-scripts@11.3 jobs: deploy-ephemeral: diff --git a/examples/external-secrets-manager/.circleci/config.yml b/examples/external-secrets-manager/.circleci/config.yml index 5370fe16..a7be8317 100644 --- a/examples/external-secrets-manager/.circleci/config.yml +++ b/examples/external-secrets-manager/.circleci/config.yml @@ -21,7 +21,7 @@ references: jobs: deploy: docker: - - image: quay.io/reactiveops/ci-images:v11.2-stretch + - image: quay.io/reactiveops/ci-images:v11.3-stretch steps: - checkout - setup_remote_docker diff --git a/examples/minimal-sops-secrets/.circleci/config.yml b/examples/minimal-sops-secrets/.circleci/config.yml index aeb92ee5..2a786df7 100644 --- a/examples/minimal-sops-secrets/.circleci/config.yml +++ b/examples/minimal-sops-secrets/.circleci/config.yml @@ -30,7 +30,7 @@ references: jobs: build_image: docker: - - image: quay.io/reactiveops/ci-images:v11.2-stretch + - image: quay.io/reactiveops/ci-images:v11.3-stretch steps: - checkout - setup_remote_docker @@ -38,7 +38,7 @@ jobs: - *build_image deploy: docker: - - image: quay.io/reactiveops/ci-images:v11.2-stretch + - image: quay.io/reactiveops/ci-images:v11.3-stretch steps: - checkout - setup_remote_docker diff --git a/examples/minimal-sops-secrets/README.md b/examples/minimal-sops-secrets/README.md index 4928360c..9cbf53c1 100644 --- a/examples/minimal-sops-secrets/README.md +++ b/examples/minimal-sops-secrets/README.md @@ -19,7 +19,7 @@ we run some of the scripts provided by rok8s-scripts. In particular, we use: * `k8s-deploy-and-verify` to deploy our image to Kubernetes and make sure the deployment succeeded * This also calls the `k8s-deploy-secrets` script to decrypt and deploy secrets -We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v11.2-stretch`, +We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v11.3-stretch`, to ensure rok8s-scripts and its dependencies are available during the build and deploy jobs. ## Try it out diff --git a/examples/minimal/.circleci/config.yml b/examples/minimal/.circleci/config.yml index aeb92ee5..2a786df7 100644 --- a/examples/minimal/.circleci/config.yml +++ b/examples/minimal/.circleci/config.yml @@ -30,7 +30,7 @@ references: jobs: build_image: docker: - - image: quay.io/reactiveops/ci-images:v11.2-stretch + - image: quay.io/reactiveops/ci-images:v11.3-stretch steps: - checkout - setup_remote_docker @@ -38,7 +38,7 @@ jobs: - *build_image deploy: docker: - - image: quay.io/reactiveops/ci-images:v11.2-stretch + - image: quay.io/reactiveops/ci-images:v11.3-stretch steps: - checkout - setup_remote_docker diff --git a/examples/minimal/README.md b/examples/minimal/README.md index 55cef84c..318261fd 100644 --- a/examples/minimal/README.md +++ b/examples/minimal/README.md @@ -18,7 +18,7 @@ we run some of the scripts provided by rok8s-scripts. In particular, we use: * `prepare-kubectl` to configure the `kubectl` command to be able to deploy resources to our Kubernetes cluster * `k8s-deploy-and-verify` to deploy our image to Kubernetes and make sure the deployment succeeded -We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v11.2-stretch`, +We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v11.3-stretch`, to ensure rok8s-scripts and its dependencies are available during the build and deploy jobs. ## Try it out diff --git a/examples/production-ready/.circleci/config.yml b/examples/production-ready/.circleci/config.yml index eec11414..3e48b763 100644 --- a/examples/production-ready/.circleci/config.yml +++ b/examples/production-ready/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - rok8s-scripts: fairwinds/rok8s-scripts@11.2 + rok8s-scripts: fairwinds/rok8s-scripts@11.3 jobs: test: diff --git a/orb/executors/ci-images.yml b/orb/executors/ci-images.yml index 086c1094..ac35fa06 100644 --- a/orb/executors/ci-images.yml +++ b/orb/executors/ci-images.yml @@ -1,6 +1,6 @@ parameters: version: type: string - default: "v11.2-stretch" + default: "v11.3-stretch" docker: - image: quay.io/reactiveops/ci-images:<> diff --git a/orb/executors/default.yml b/orb/executors/default.yml index 086c1094..ac35fa06 100644 --- a/orb/executors/default.yml +++ b/orb/executors/default.yml @@ -1,6 +1,6 @@ parameters: version: type: string - default: "v11.2-stretch" + default: "v11.3-stretch" docker: - image: quay.io/reactiveops/ci-images:<>