From cb2c481e17c0f316da5cb5d18354649f689a2b3f Mon Sep 17 00:00:00 2001 From: Angel Nunez Mencias Date: Tue, 22 Jun 2021 18:50:25 +0200 Subject: [PATCH] [multus] Fix imagePullPolicy (#1051) --- charts/stable/multus/Chart.yaml | 2 +- charts/stable/multus/README.md | 8 +++++++- charts/stable/multus/README_CHANGELOG.md.gotmpl | 6 ++++++ charts/stable/multus/templates/common.yaml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/charts/stable/multus/Chart.yaml b/charts/stable/multus/Chart.yaml index 4c823523..290f5d05 100644 --- a/charts/stable/multus/Chart.yaml +++ b/charts/stable/multus/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.7.1 description: multus CNI allows multiple NICs per pod name: multus -version: 2.0.0 +version: 2.0.1 kubeVersion: ">=1.16.0-0" keywords: - multus diff --git a/charts/stable/multus/README.md b/charts/stable/multus/README.md index fbb7b00d..af57a2c6 100644 --- a/charts/stable/multus/README.md +++ b/charts/stable/multus/README.md @@ -1,6 +1,6 @@ # multus -![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![AppVersion: v3.7.1](https://img.shields.io/badge/AppVersion-v3.7.1-informational?style=flat-square) +![Version: 2.0.1](https://img.shields.io/badge/Version-2.0.1-informational?style=flat-square) ![AppVersion: v3.7.1](https://img.shields.io/badge/AppVersion-v3.7.1-informational?style=flat-square) multus CNI allows multiple NICs per pod @@ -107,6 +107,12 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [2.0.1] + +#### Changed + +- Fix `pullPolicy`to `imagePullPolicy` in init container + ### [2.0.0] #### Changed diff --git a/charts/stable/multus/README_CHANGELOG.md.gotmpl b/charts/stable/multus/README_CHANGELOG.md.gotmpl index cb37b47c..93c1ebe3 100644 --- a/charts/stable/multus/README_CHANGELOG.md.gotmpl +++ b/charts/stable/multus/README_CHANGELOG.md.gotmpl @@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [2.0.1] + +#### Changed + +- Fix `pullPolicy`to `imagePullPolicy` in init container + ### [2.0.0] #### Changed diff --git a/charts/stable/multus/templates/common.yaml b/charts/stable/multus/templates/common.yaml index 75fb9026..837637e1 100644 --- a/charts/stable/multus/templates/common.yaml +++ b/charts/stable/multus/templates/common.yaml @@ -12,7 +12,7 @@ initContainers: - name: cni-installer # -- CNI installer image image: {{ .Values.cni.image.repository }}:{{ .Values.cni.image.tag }} - pullPolicy: {{ .Values.cni.image.pullPolicy }} + imagePullPolicy: {{ .Values.cni.image.pullPolicy }} # -- Mounts host CNI binary folder volumeMounts: - name: cnibin