Skip to content

Commit 137f8e4

Browse files
committed
k8s: Point to GHCR image paths and version bump.
1 parent e93bf47 commit 137f8e4

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed

kubernetes/chart/zulip/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ dependencies:
3939
sources:
4040
- https://github.com/zulip/zulip
4141
- https://github.com/zulip/docker-zulip
42-
- https://hub.docker.com/r/zulip/docker-zulip
42+
- https://github.com/orgs/zulip/packages/container/package/zulip

kubernetes/chart/zulip/README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Now you're ready to follow [the installation instructions above](#installation).
7171
| affinity | object | `{}` | Affinity for pod assignment. Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity |
7272
| fullnameOverride | string | `""` | Fully override common.names.fullname template. |
7373
| image.pullPolicy | string | `"IfNotPresent"` | Pull policy for Zulip docker image. Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images |
74-
| image.repository | string | `"zulip/docker-zulip"` | Defaults to hub.docker.com/zulip/docker-zulip, but can be overwritten with a full HTTPS address. |
75-
| image.tag | string | `"6.1-0"` | Zulip image tag (immutable tags are recommended) |
74+
| image.repository | string | `"ghcr.io/zulip/zulip"` | Image repository. Override this only if using a forked or otherwise custom image. |
75+
| image.tag | string | `"6.1-1"` | Zulip image tag (immutable tags are recommended) |
7676
| imagePullSecrets | list | `[]` | Global Docker registry secret names as an array. |
7777
| ingress.annotations | object | `{}` | Can be used to add custom Ingress annotations. |
7878
| ingress.enabled | bool | `false` | Enable this to use an Ingress to reach the Zulip service. |
@@ -116,11 +116,12 @@ Now you're ready to follow [the installation instructions above](#installation).
116116
## About this helm chart
117117

118118
This helm chart sets up a StatefulSet that runs a Zulip pod, that in turn runs
119-
the [docker-zulip](https://hub.docker.com/r/zulip/docker-zulip/) Dockerized
120-
Zulip version. Configuration of Zulip happens through environment variables that
121-
are defined in the `values.yaml` under `zulip.environment`. These environment
122-
variables are forwarded to the Docker container, you can read more about
123-
configuring Zulip through environment variables
119+
the [Dockerized Zulip
120+
version](https://github.com/orgs/zulip/packages/container/package/zulip).
121+
Configuration of Zulip happens through environment variables that are defined
122+
in the `values.yaml` under `zulip.environment`. These environment variables are
123+
forwarded to the Docker container, you can read more about configuring Zulip
124+
through environment variables
124125
[here](https://github.com/zulip/docker-zulip/#configuration).
125126

126127
### Dependencies

kubernetes/chart/zulip/README.md.gotmpl

+6-5
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@ Now you're ready to follow [the installation instructions above](#installation).
6969
## About this helm chart
7070

7171
This helm chart sets up a StatefulSet that runs a Zulip pod, that in turn runs
72-
the [docker-zulip](https://hub.docker.com/r/zulip/docker-zulip/) Dockerized
73-
Zulip version. Configuration of Zulip happens through environment variables that
74-
are defined in the `values.yaml` under `zulip.environment`. These environment
75-
variables are forwarded to the Docker container, you can read more about
76-
configuring Zulip through environment variables
72+
the [Dockerized Zulip
73+
version](https://github.com/orgs/zulip/packages/container/package/zulip).
74+
Configuration of Zulip happens through environment variables that are defined
75+
in the `values.yaml` under `zulip.environment`. These environment variables are
76+
forwarded to the Docker container, you can read more about configuring Zulip
77+
through environment variables
7778
[here](https://github.com/zulip/docker-zulip/#configuration).
7879

7980
### Dependencies

kubernetes/chart/zulip/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
# ```
1010

1111
image:
12-
# -- Defaults to hub.docker.com/zulip/docker-zulip, but can be overwritten with a full HTTPS address.
13-
repository: zulip/docker-zulip
12+
# -- Override this only if using a forked or otherwise custom image. |
13+
repository: ghcr.io/zulip/zulip
1414
# -- Pull policy for Zulip docker image.
1515
# Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
1616
pullPolicy: IfNotPresent
1717
# -- Zulip image tag (immutable tags are recommended)
18-
tag: "6.1-0"
18+
tag: "6.1-1"
1919

2020
# -- Global Docker registry secret names as an array.
2121
imagePullSecrets: []

kubernetes/manual/zulip-rc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
- name: postgresql-persistent-storage
8787
mountPath: /var/lib/postgresql
8888
- name: zulip
89-
image: zulip/docker-zulip:6.1-0
89+
image: ghcr.io/zulip/zulip:6.1-1
9090
resources:
9191
limits:
9292
cpu: 100m

0 commit comments

Comments
 (0)