[multus] Fix imagePullPolicy (#1051)

This commit is contained in:
Angel Nunez Mencias 2021-06-22 18:50:25 +02:00 committed by GitHub
parent 6a388c870b
commit cb2c481e17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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