Skip to content

Commit

Permalink
Update all components
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Gozdek <[email protected]>
  • Loading branch information
invidian committed Jun 4, 2024
1 parent 33234aa commit 2b0872b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine3.19
FROM golang:1.22-alpine3.20

# Enable go modules
ENV GO111MODULE=on
Expand Down
4 changes: 2 additions & 2 deletions e2e/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.22-alpine3.19
FROM golang:1.22-alpine3.20

RUN apk add -U make bash bash-completion vim coreutils

RUN wget https://get.helm.sh/helm-v3.14.3-linux-amd64.tar.gz -O- | tar -xzvf - -C /usr/local/bin --strip-components=1 linux-amd64/helm
RUN wget https://get.helm.sh/helm-v3.15.1-linux-amd64.tar.gz -O- | tar -xzvf - -C /usr/local/bin --strip-components=1 linux-amd64/helm

RUN wget -O /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(wget -q -O- https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl && \
Expand Down
6 changes: 3 additions & 3 deletions e2e/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ func defaultE2EConfig(t *testing.T) e2eConfig {
Charts: charts{
KubeAPIServer: chart{
Source: "flexkube/kube-apiserver",
Version: "0.9.3",
Version: "0.10.0",
},
Kubernetes: chart{
Source: "flexkube/kubernetes",
Version: "0.10.3",
Version: "0.11.0",
},
KubeProxy: chart{
Source: "flexkube/kube-proxy",
Version: "0.9.3",
Version: "0.10.0",
},
TLSBootstrapping: chart{
Source: "flexkube/tls-bootstrapping",
Expand Down
2 changes: 1 addition & 1 deletion integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine3.19
FROM golang:1.22-alpine3.20

# Install dependencies:
# - docker for spawning further Docker containers
Expand Down
12 changes: 6 additions & 6 deletions pkg/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ package defaults

const (
// EtcdImage points to a default Docker image, which will be used for running etcd.
EtcdImage = "quay.io/coreos/etcd:v3.5.13"
EtcdImage = "quay.io/coreos/etcd:v3.5.14"

// KubeAPIServerImage points to a default Docker image, which will be used for
// running kube-apiserver.
KubeAPIServerImage = "registry.k8s.io/kube-apiserver:v1.29.3"
KubeAPIServerImage = "registry.k8s.io/kube-apiserver:v1.30.1"

// KubeControllerManagerImage points to a default Docker image, which will be used for
// running kube-apiserver.
KubeControllerManagerImage = "registry.k8s.io/kube-controller-manager:v1.29.3"
KubeControllerManagerImage = "registry.k8s.io/kube-controller-manager:v1.30.1"

// KubeSchedulerImage points to a default Docker image, which will be used for
// running kube-apiserver.
KubeSchedulerImage = "registry.k8s.io/kube-scheduler:v1.29.3"
KubeSchedulerImage = "registry.k8s.io/kube-scheduler:v1.30.1"

// KubeletImage points to a default Docker image, which will be used for
// running kube-apiserver.
KubeletImage = "quay.io/flexkube/kubelet:v1.29.3"
KubeletImage = "quay.io/flexkube/kubelet:v1.30.1"

// HAProxyImage is a default container image for APILoadBalancer.
HAProxyImage = "haproxy:2.9.6-alpine"
HAProxyImage = "haproxy:2.9.7-alpine"

// DockerAPIVersion is a default API version used when talking to Docker runtime.
DockerAPIVersion = "v1.38"
Expand Down

0 comments on commit 2b0872b

Please sign in to comment.