mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
[multus] Fix imagePullPolicy (#1051)
This commit is contained in:
parent
6a388c870b
commit
cb2c481e17
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v3.7.1
|
appVersion: v3.7.1
|
||||||
description: multus CNI allows multiple NICs per pod
|
description: multus CNI allows multiple NICs per pod
|
||||||
name: multus
|
name: multus
|
||||||
version: 2.0.0
|
version: 2.0.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- multus
|
- multus
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# multus
|
# 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
|
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).
|
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]
|
### [2.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -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).
|
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]
|
### [2.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -12,7 +12,7 @@ initContainers:
|
|||||||
- name: cni-installer
|
- name: cni-installer
|
||||||
# -- CNI installer image
|
# -- CNI installer image
|
||||||
image: {{ .Values.cni.image.repository }}:{{ .Values.cni.image.tag }}
|
image: {{ .Values.cni.image.repository }}:{{ .Values.cni.image.tag }}
|
||||||
pullPolicy: {{ .Values.cni.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.cni.image.pullPolicy }}
|
||||||
# -- Mounts host CNI binary folder
|
# -- Mounts host CNI binary folder
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: cnibin
|
- name: cnibin
|
||||||
|
Loading…
Reference in New Issue
Block a user