Skip to content

Commit 11ceede

Browse files
authored
chore: change image pull policy to always (#100)
Signed-off-by: Nic <[email protected]>
1 parent 623bade commit 11ceede

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

charts/api7/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.12.7
18+
version: 0.12.8
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/api7/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# api7ee3
22

3-
![Version: 0.12.7](https://img.shields.io/badge/Version-0.12.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 0.12.8](https://img.shields.io/badge/Version-0.12.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

@@ -18,7 +18,7 @@ A Helm chart for Kubernetes
1818
| affinity | object | `{}` | |
1919
| busybox.image.repository | string | `"docker.io/busybox"` | |
2020
| busybox.image.tag | float | `1.28` | |
21-
| dashboard.image.pullPolicy | string | `"IfNotPresent"` | |
21+
| dashboard.image.pullPolicy | string | `"Always"` | |
2222
| dashboard.image.repository | string | `"api7/api7-ee-3-integrated"` | |
2323
| dashboard.image.tag | string | `"v3.2.10.1"` | |
2424
| dashboard.keyCertSecret | string | `""` | |
@@ -47,7 +47,7 @@ A Helm chart for Kubernetes
4747
| dashboard_service.port | int | `7080` | |
4848
| dashboard_service.tlsPort | int | `7443` | |
4949
| dashboard_service.type | string | `"ClusterIP"` | |
50-
| dp_manager.image.pullPolicy | string | `"IfNotPresent"` | |
50+
| dp_manager.image.pullPolicy | string | `"Always"` | |
5151
| dp_manager.image.repository | string | `"api7/api7-ee-dp-manager"` | |
5252
| dp_manager.image.tag | string | `"v3.2.10.1"` | |
5353
| dp_manager.replicaCount | int | `1` | |

charts/api7/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ dashboard:
88
keyCertSecret: ""
99
image:
1010
repository: api7/api7-ee-3-integrated
11-
pullPolicy: IfNotPresent
11+
pullPolicy: Always
1212
# Overrides the image tag whose default is the chart appVersion.
1313
tag: "v3.2.10.1"
1414

1515
dp_manager:
1616
replicaCount: 1
1717
image:
1818
repository: api7/api7-ee-dp-manager
19-
pullPolicy: IfNotPresent
19+
pullPolicy: Always
2020
# Overrides the image tag whose default is the chart appVersion.
2121
tag: "v3.2.10.1"
2222

charts/gateway/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: 0.1.3
17+
version: 0.1.4
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to

charts/gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The command removes all the Kubernetes components associated with the chart and
6060
| apisix.extraEnvVars | list | `[]` | extraEnvVars An array to add extra env vars e.g: extraEnvVars: - name: FOO value: "bar" - name: FOO2 valueFrom: secretKeyRef: name: SECRET_NAME key: KEY |
6161
| apisix.hostNetwork | bool | `false` | |
6262
| apisix.httpRouter | string | `"radixtree_host_uri"` | Defines how apisix handles routing: - radixtree_uri: match route by uri(base on radixtree) - radixtree_host_uri: match route by host + uri(base on radixtree) - radixtree_uri_with_parameter: match route by uri with parameters |
63-
| apisix.image.pullPolicy | string | `"IfNotPresent"` | API7 Gateway image pull policy |
63+
| apisix.image.pullPolicy | string | `"Always"` | API7 Gateway image pull policy |
6464
| apisix.image.repository | string | `"api7/api7-ee-3-gateway"` | API7 Gateway image repository |
6565
| apisix.image.tag | string | `"3.2.7.1"` | API7 Gateway image tag Overrides the image tag whose default is the chart appVersion. |
6666
| apisix.kind | string | `"Deployment"` | Use a `DaemonSet` or `Deployment` |

charts/gateway/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ apisix:
6161
# -- API7 Gateway image repository
6262
repository: api7/api7-ee-3-gateway
6363
# -- API7 Gateway image pull policy
64-
pullPolicy: IfNotPresent
64+
pullPolicy: Always
6565
# -- API7 Gateway image tag
6666
# Overrides the image tag whose default is the chart appVersion.
6767
tag: 3.2.7.1

0 commit comments

Comments
 (0)