Skip to content

Commit

Permalink
Update some dependencies (#447)
Browse files Browse the repository at this point in the history
* update dependencies

* prep 13.1 release

* Fix helm version
  • Loading branch information
sudermanjr authored Oct 5, 2023
1 parent b1bfc86 commit 0834e9d
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions bin/install-rok8s-requirements
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ else
PKG_INSTALL="${PKG_MANAGER} install -y"
fi

AWS_CLI_VERSION="${AWS_CLI_VERSION:-2.13.8}"
KUBECTL_VERSION="${KUBECTL_VERSION:-v1.25.12}"
HELM_VERSION="${HELM_VERSION:-v3.12.2}"
AWS_CLI_VERSION="${AWS_CLI_VERSION:-2.13.24}"
KUBECTL_VERSION="${KUBECTL_VERSION:-v1.25.14}"
HELM_VERSION="${HELM_VERSION:-v3.13.0}"
SOPS_VERSION="${SOPS_VERSION:-v3.7.3}"

# make sure sudo is installed
Expand Down
4 changes: 2 additions & 2 deletions ci-images/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.11-alpine3.18 as builder

ARG AWS_CLI_VERSION=2.11.15
ARG AWS_CLI_VERSION=2.13.24
RUN apk add --no-cache git unzip groff build-base libffi-dev cmake
RUN git clone --single-branch --depth 1 -b ${AWS_CLI_VERSION} https://github.com/aws/aws-cli.git

Expand All @@ -19,7 +19,7 @@ RUN find /usr/local/lib/aws-cli/awscli/botocore/data -name examples-1.json -dele
RUN (cd /usr/local/lib/aws-cli; for a in *.so*; do test -f /lib/$a && rm $a; done)


FROM docker:24.0.5
FROM docker:24.0.6

USER root

Expand Down
2 changes: 1 addition & 1 deletion docs/ci-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ meta:

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 Buster as our recommended starting points. The latest Debian Buster release can be pulled from `quay.io/reactiveops/ci-images:v13.0-buster`. 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 Buster as our recommended starting points. The latest Debian Buster release can be pulled from `quay.io/reactiveops/ci-images:v13.1-buster`. 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.

Expand Down
2 changes: 1 addition & 1 deletion examples/ci/bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: quay.io/reactiveops/ci-images:v13.0-buster
image: quay.io/reactiveops/ci-images:v13.1-buster

aliases:
- &initialize-env |
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal-sops-secrets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:v13.0-buster`,
We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v13.1-buster`,
to ensure rok8s-scripts and its dependencies are available during the build and deploy jobs.

## Try it out
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:v13.0-buster`,
We also use the rok8s-scripts CI image, `quay.io/reactiveops/ci-images:v13.1-buster`,
to ensure rok8s-scripts and its dependencies are available during the build and deploy jobs.

## Try it out
Expand Down
2 changes: 1 addition & 1 deletion orb/executors/ci-images.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
parameters:
version:
type: string
default: "v13.0-bullseye"
default: "v13.1-bullseye"
docker:
- image: quay.io/reactiveops/ci-images:<<parameters.version>>
2 changes: 1 addition & 1 deletion orb/executors/default.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
parameters:
version:
type: string
default: "v13.0-bullseye"
default: "v13.1-bullseye"
docker:
- image: quay.io/reactiveops/ci-images:<<parameters.version>>
2 changes: 1 addition & 1 deletion orb/jobs/kubernetes_e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ parameters:
command_runner_image:
description: "The image to execute commands from against the kind cluster. Also where the script gets executed."
type: string
default: "quay.io/reactiveops/ci-images:v13.0-alpine"
default: "quay.io/reactiveops/ci-images:v13.1-alpine"
pre_script:
description: "Script to run on the local machine before running script on command runner."
type: string
Expand Down

0 comments on commit 0834e9d

Please sign in to comment.