Skip to content

Commit d3c165a

Browse files
authored
Merge pull request #73 from manics/calico-3.24
Calico 3.24.0 (3.23 manifest URL is broken)
2 parents 8f7a8d7 + e74b367 commit d3c165a

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

CHANGELOG.md

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

3+
### v3.0.5 - 2022-08-21
4+
5+
#### Bugs fixed
6+
7+
- Calico 3.24.0 (3.23 manifest URL is broken) [#73](https://github.com/jupyterhub/action-k3s-helm/pull/73) ([@manics](https://github.com/manics))
8+
39
### v3.0.4 - 2022-08-18
410

511
#### Bugs fixed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
[![GitHub Action badge](https://github.com/jupyterhub/action-k3s-helm/workflows/Test/badge.svg)](https://github.com/jupyterhub/action-k3s-helm/actions)
44

5-
Creates a Kubernetes cluster using [K3s](https://k3s.io/) (1.17+) with
6-
[Calico](https://www.projectcalico.org/) (3.23) for
5+
Creates a Kubernetes cluster using [K3s](https://k3s.io/) (1.20+) with
6+
[Calico](https://www.projectcalico.org/) (3.24) for
77
[NetworkPolicy](https://kubernetes.io/docs/concepts/services-networking/network-policies/)
8-
enforcement, and installs [Helm](https://helm.sh/) (3.1+).
8+
enforcement, and installs [Helm 3](https://helm.sh/) (3.1+).
99

1010
## Optional input parameters
1111

12-
- `k3s-version` or `k3s-channel`: Specify a K3s [version](https://github.com/rancher/k3s/releases) or [release channel](https://update.k3s.io/v1-release/channels). Versions 1.16 and later are supported. Defaults to the stable channel.
12+
- `k3s-version` or `k3s-channel`: Specify a K3s [version](https://github.com/rancher/k3s/releases) or [release channel](https://update.k3s.io/v1-release/channels). Versions 1.20 and later are supported. Defaults to the stable channel.
1313
- `helm-version`: Specify a Helm [version](https://github.com/helm/helm/releases). Versions 3.1 and later are supported. Defaults to the latest version.
1414
- `metrics-enabled`: Enable or disable K3S metrics-server, `true` (default) or `false`.
1515
- `traefik-enabled`: Enable or disable K3S Traefik ingress, `true` (default) or `false`.
@@ -20,10 +20,10 @@ enforcement, and installs [Helm](https://helm.sh/) (3.1+).
2020

2121
- `kubeconfig`: The absolute path to the kubeconfig file (`$HOME/.kube/config`).
2222
The `KUBECONFIG` environment variable is also set by this action but may be removed in a future breaking release.
23-
- `k3s-version`: Installed k3s version, such as v1.20.0+k3s2
24-
- `k8s-version`: Installed k8s version, such as v1.20.0
25-
- `calico-version`: Installed calico version, such as v3.17.1
26-
- `helm-version`: Installed helm version, such as v3.4.2
23+
- `k3s-version`: Installed k3s version, such as v1.24.3+k3s1
24+
- `k8s-version`: Installed k8s version, such as v1.24.3
25+
- `calico-version`: Installed calico version, such as v3.24.0
26+
- `helm-version`: Installed helm version, such as v3.9.3
2727

2828
## Example
2929

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ runs:
203203
if [[ "${{ inputs.k3s-version }}${{ inputs.k3s-channel }}" == v1.20* ]]; then
204204
curl -sfL --output /tmp/calico.yaml https://docs.projectcalico.org/v3.21/manifests/calico.yaml
205205
else
206-
curl -sfL --output /tmp/calico.yaml https://projectcalico.docs.tigera.io/v3.23/manifests/calico.yaml
206+
curl -sfL --output /tmp/calico.yaml https://raw.githubusercontent.com/projectcalico/calico/v3.24.0/manifests/calico.yaml
207207
fi
208208
cat /tmp/calico.yaml \
209209
| sed '/"type": "calico"/a\

0 commit comments

Comments
 (0)