Skip to content

Commit

Permalink
Prepare release v3.0.0-beta.1
Browse files Browse the repository at this point in the history
Signed-off-by: Reinhard Naegele <[email protected]>
  • Loading branch information
unguiculus committed Dec 13, 2019
1 parent b9d4ad0 commit ee38d57
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
helm_version=v3.0.0
helm_version=v3.0.1
curl -sSLO "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz"
sudo mkdir -p "/usr/local/helm-$helm_version"
sudo tar -xzf "helm-$helm_version-linux-amd64.tar.gz" -C "/usr/local/helm-$helm_version"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$KUBECTL
mv kubectl /usr/local/bin/

# Install Helm
ARG HELM_VERSION=v3.0.0
ARG HELM_VERSION=v3.0.1
RUN curl -LO "https://get.helm.sh/helm-$HELM_VERSION-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$HELM_VERSION" && \
tar -xzf "helm-$HELM_VERSION-linux-amd64.tar.gz" -C "/usr/local/helm-$HELM_VERSION" && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Run the script specifying the version for the new release.
./tag.sh --tag <release_version>
```

Versions must start with a lower-case `v`, e. g. `v2.4.0`.
Versions must start with a lower-case `v`, e. g. `v3.0.0`.


## Supported versions
Expand Down
2 changes: 1 addition & 1 deletion examples/docker-for-mac/my_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail

readonly IMAGE_TAG=v2.4.0
readonly IMAGE_TAG=v3.0.0-beta.1
readonly IMAGE_REPOSITORY="quay.io/helmpack/chart-testing"

main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM quay.io/helmpack/chart-testing:v2.4.0
FROM quay.io/helmpack/chart-testing:v3.0.0-beta.1

ENV PATH /google-cloud-sdk/bin:$PATH
ARG CLOUD_SDK_VERSION=221.0.0
Expand Down
2 changes: 1 addition & 1 deletion examples/kind/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

lint-charts:
docker:
- image: quay.io/helmpack/chart-testing:v2.4.0
- image: quay.io/helmpack/chart-testing:v3.0.0-beta.1
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion examples/kind/test/e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -o errexit
set -o nounset
set -o pipefail

readonly CT_VERSION=v2.4.0
readonly CT_VERSION=v3.0.0-beta.1
readonly KIND_VERSION=v0.5.1
readonly CLUSTER_NAME=chart-testing
readonly K8S_VERSION=v1.15.3
Expand Down

0 comments on commit ee38d57

Please sign in to comment.