Skip to content

Commit b9a0294

Browse files
chore: update microk8s (#1206)
* chore: update microk8s * chore: add changelog
1 parent c911e7a commit b9a0294

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

.github/workflows/ci-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
python-version: "3.10"
169169
- name: run install_microk8s.sh
170170
run: |
171-
sudo snap install microk8s --classic --channel=1.30/stable
171+
sudo snap install microk8s --classic --channel=1.33/stable
172172
sudo apt-get install snmp -y
173173
sudo apt-get install python3-dev -y
174174
- name: run automatic_setup_microk8s.sh

.github/workflows/ci-ui-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: install microk8s
7474
run: |
75-
sudo snap install microk8s --classic --channel=1.30/stable
75+
sudo snap install microk8s --classic --channel=1.33/stable
7676
sudo apt-get install snmp -y
7777
sudo apt-get install python3-dev -y
7878

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Changed
66
- implemented mTLS for Splunk 10
7+
- update default microk8s to 1.33
78

89
### Fixed
910

docs/microk8s/enable-ipv6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ microk8s start
3535
```
3636

3737
## Metallb
38-
As of version `1.30` of microk8s, Metallb add-on does not support passing the IPv6 addresses in enable command. To
38+
As of version `1.33` of microk8s, Metallb add-on does not support passing the IPv6 addresses in enable command. To
3939
add the IPv6 addresses to your Metallb configuration, you can prepare the yaml file with configuration like below:
4040
```
4141
# addresspool.yaml

docs/microk8s/mk8s/k8s-microk8s-scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ microk8s add-node
3939
1. Installing microk8s on replica node:
4040

4141
```bash
42-
sudo snap install microk8s --classic --channel=1.30/stable
42+
sudo snap install microk8s --classic --channel=1.33/stable
4343
sudo usermod -a -G microk8s $USER
4444
sudo chown -f -R $USER ~/.kube
4545
su - $USER

docs/microk8s/mk8s/k8s-microk8s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ IPv6](../enable-ipv6.md).
2828
## Install MicroK8s using Snap
2929

3030
```bash
31-
sudo snap install microk8s --classic --channel=1.30/stable
31+
sudo snap install microk8s --classic --channel=1.33/stable
3232
```
3333

3434
Add a user to the microk8s group so the `sudo` command is no longer necessary:

integration_tests/automatic_setup_microk8s.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ sudo docker run -d -p 1165:161/udp tandrup/snmpsim
110110
sudo docker run -d -p 1166:161/udp -v $(pwd)/snmpsim/data:/usr/local/snmpsim/data -e EXTRA_FLAGS="--variation-modules-dir=/usr/local/snmpsim/variation --data-dir=/usr/local/snmpsim/data" tandrup/snmpsim
111111

112112
sudo microk8s enable helm3
113-
sudo microk8s enable storage
113+
sudo microk8s enable hostpath-storage
114114
sudo microk8s enable dns
115115
sudo microk8s enable rbac
116116
sudo microk8s enable community

integration_tests/install_microk8s.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ setup_kube_roles() {
88
}
99

1010
install_dependencies_on_ubuntu() {
11-
sudo snap install microk8s --classic --channel=1.30/stable
11+
sudo snap install microk8s --classic --channel=1.33/stable
1212
sudo snap install docker
1313
sudo apt-get install snmp -y
1414
sudo apt-get install python3-dev -y

0 commit comments

Comments
 (0)