Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: update manifest and helm charts for v1.5.1 #480

Merged
merged 5 commits into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- create-release
env:
REGISTRY: ${{ needs.export-registry.outputs.registry }}
INIT_IMG_TAG : 0.1.0
INIT_IMG_TAG : 0.2.0
runs-on: ubuntu-20.04
steps:
- id: get-tag
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ TEST_CREDENTIALS_JSON ?= $(TEST_CREDENTIALS_DIR)/credentials.json
TEST_LOGANALYTICS_JSON ?= $(TEST_CREDENTIALS_DIR)/loganalytics.json
export TEST_CREDENTIALS_JSON TEST_LOGANALYTICS_JSON

VERSION ?= v1.5.0
VERSION ?= v1.5.1
REGISTRY ?= ghcr.io
IMG_NAME ?= virtual-kubelet
INIT_IMG_NAME ?= init-validation
Expand All @@ -34,7 +34,7 @@ E2E_CLUSTER_NAME := $(CLUSTER_NAME)
OUTPUT_TYPE ?= type=docker
BUILDPLATFORM ?= linux/amd64
IMG_TAG ?= $(subst v,,$(VERSION))
INIT_IMG_TAG ?= 0.1.0
INIT_IMG_TAG ?= 0.2.0
K8S_VERSION ?= 1.23.12

BUILD_DATE ?= $(shell date '+%Y-%m-%dT%H:%M:%S')
Expand Down
2 changes: 1 addition & 1 deletion charts/virtual-kubelet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ maintainers:
name: virtual-kubelet-azure-aci
sources:
- https://github.com/virtual-kubelet/azure-aci
version: 1.5.0
version: 1.5.1

4 changes: 2 additions & 2 deletions charts/virtual-kubelet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $ cd helm
2. Install chart using Helm v3.0+

```shell
$ export RELEASE_TAG=1.5.0
$ export RELEASE_TAG=1.5.1
$ export CHART_NAME=virtual-kubelet-azure-aci
$ export VK_RELEASE=$CHART_NAME-$RELEASE_TAG
$ export NODE_NAME=virtual-kubelet-aci
Expand Down Expand Up @@ -62,7 +62,7 @@ The following table lists the configurable parameters of the azure-aci chart and
| image.tag | Image release version/tag. | `latest` |
| image.pullPolicy | Image pull policy. | `Always` |
| initImage.name | Init container image name. | `oss/virtual-kubelet/init-validation` |
| initImage.initTag | Init container image release version/tag. | `0.1.0` |
| initImage.initTag | Init container image release version/tag. | `0.2.0` |
| initImage.pullPolicy | Init container image pull policy. | `Always` |
| nodeName | The node name that will be assigned to be the VK one. | `virtual-node-aci-linux-helm` |
| nodeOsType | The node/VM type. Values should be `Windows` or `Linux`. | `Linux` |
Expand Down
4 changes: 2 additions & 2 deletions charts/virtual-kubelet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ image:
secretName: virtual-kubelet-aci-acr
repository: mcr.microsoft.com
name: oss/virtual-kubelet/virtual-kubelet
tag: 1.5.0
tag: 1.5.1
pullPolicy: Always

initImage:
repository: mcr.microsoft.com
name: oss/virtual-kubelet/init-validation
initTag: 0.1.0
initTag: 0.2.0
pullPolicy: Always

namespace: vk-azure-aci
Expand Down
2 changes: 1 addition & 1 deletion docs/UPGRADE-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install [Helm](https://helm.sh/docs/intro/quickstart/#install-helm)
### Clone the project

```shell
$ export RELEASE_TAG=1.5.0
$ export RELEASE_TAG=1.5.1
$ git clone https://github.com/virtual-kubelet/azure-aci.git
$ cd azure-aci
$ git checkout v$RELEASE_TAG
Expand Down