Skip to content

Commit 3414691

Browse files
authored
Merge pull request #29 from bashtools/0.8.28
kubernetes 1.32.4
2 parents 7e8a474 + a62aae9 commit 3414691

9 files changed

Lines changed: 187 additions & 179 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.8.27
1+
VERSION = 0.8.28
22

33
.PHONY: all
44
all: mok.deploy tags

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
![image](https://github.com/user-attachments/assets/0750910e-d6da-4c65-92ea-f7bc64b116cc)
44

55

6-
Default kubernetes version: 1.32.3
6+
Default kubernetes version: 1.32.4
77

8-
Available kubernetes versions: 1.32.0, 1.32.1, 1.32.2, 1.32.3
8+
Available kubernetes versions: 1.32.0, 1.32.1, 1.32.2, 1.32.3, 1.32.4
99

1010
## TL;DR Quick Start
1111

mok-image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARG BASE_IMAGE=debian:bookworm-slim
2424
FROM $BASE_IMAGE AS base
2525

2626
ARG KUBERNETES_VERSION=v1.32
27-
ARG CRIO_VERSION=v1.31
27+
ARG CRIO_VERSION=v1.32
2828

2929
# copy in static files
3030
# all scripts and directories are 0755 (rwx r-x r-x)
@@ -134,7 +134,7 @@ RUN eval "$(gimme "${GO_VERSION}")" \
134134
# stage for building runc
135135
FROM go-build AS build-runc
136136
ARG TARGETARCH GO_VERSION
137-
ARG RUNC_VERSION="v1.2.4"
137+
ARG RUNC_VERSION="v1.2.6"
138138
ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc"
139139
RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
140140
&& cd /runc \

package/mok

Lines changed: 173 additions & 169 deletions
Large diffs are not rendered by default.

src/arch.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ set_arch() {
1717
elif [[ $(uname -m) == "arm64" ]]; then
1818
export __mokarch=arm64
1919
fi
20+
else
21+
printf 'ERROR: Unknown OS type: %s\n' "${__mokostype}" >"${STDERR}"
22+
exit "${ERROR}"
2023
fi
2124
}
2225

src/buildimage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ build image options:
4343
Flags:
4444
--get-prebuilt-image - Instead of building a 'node' image
4545
locally, download it from a container registry instead.
46-
--k8sver VERSION - The Kubernetes version, e.g. "1.32.0" or "1.32.1".
47-
A previous version cannot be built from scratch. This option
46+
--k8sver VERSION - The Kubernetes version, e.g. "1.32.0"
47+
A previous version cannot be built from scratch hence this option
4848
must be used with '--get-prebuilt-image'. To build a previous
4949
version of kubernetes it must be built with a previous version
5050
of mok.

src/createcluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ create cluster [flags] options:
137137
--with-lb - Add a haproxy load balancer. The software will be installed
138138
and set up to reverse proxy to the master node(s), unless
139139
--skiplbsetup is used.
140-
--k8sver VERSION - The Kubernetes version, e.g. "1.32.0" or "1.32.1".
140+
--k8sver VERSION - The Kubernetes version, e.g. "1.32.0".
141141
A previous version will need to be downloaded first with:
142142
mok build image --get-prebuilt-image --k8sver VERSION
143143
--masters NUM - The number of master containers to create.

src/globals.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# Args: None expected.
1111
_GL_new() {
1212

13-
declare -rg MOKVERSION="0.8.27"
14-
declare -rg K8SVERSION="1.32.3"
13+
declare -rg MOKVERSION="0.8.28"
14+
declare -rg K8SVERSION="1.32.4"
1515
declare -rg GO_VERSION="1.23.4"
1616

1717
# Returns, exit codes

src/main.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ MA_program_args() {
1717
# MA_arg_1 getter outputs the first argument sent by the user.
1818
# Used by _CU_podman_checks so it doesn't check for a podman machine
1919
# if we're running 'machine' commands
20+
# FIXME: The command might not be the first argument. It could be '-p'
2021
MA_arg_1() {
2122
printf '%s' "${_MA[arg_1]}"
2223
}

0 commit comments

Comments
 (0)