Skip to content

Commit d7583f1

Browse files
authored
Upgrade NATS go version (#2257)
Summary: Upgrade NATS go version Relevant Issues: N/A Type of change: /kind dependency Test Plan: Image builds successfully --------- Signed-off-by: Dom Del Nano <[email protected]>
1 parent 27bb8a4 commit d7583f1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

k8s/cloud_deps/base/nats/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ spec:
158158
containers:
159159
- name: pl-nats
160160
# yamllint disable-line rule:line-length
161-
image: ghcr.io/pixie-io/nats:2.9.25-scratch@sha256:869605f46ad21b76be1998e89345640671dbe46714105cf67676ddb0b78d3b85
161+
image: ghcr.io/pixie-io/nats:2.9.25-scratch-pl1@sha256:ac7228464fbc7154e91c9a00cba85b5da1df9a3ded6c784cdd6009cece85a1e3
162162
ports:
163163
- containerPort: 4222
164164
name: client

k8s/vizier_deps/base/nats/nats_statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ spec:
111111
containers:
112112
- name: pl-nats
113113
# yamllint disable-line rule:line-length
114-
image: ghcr.io/pixie-io/nats:2.9.25-scratch@sha256:869605f46ad21b76be1998e89345640671dbe46714105cf67676ddb0b78d3b85
114+
image: ghcr.io/pixie-io/nats:2.9.25-scratch-pl1@sha256:ac7228464fbc7154e91c9a00cba85b5da1df9a3ded6c784cdd6009cece85a1e3
115115
ports:
116116
- containerPort: 4222
117117
name: client

tools/docker/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ LINUX_HEADERS_GS_PATH := gs://pixie-dev-public/linux-headers/$(LINUX_HEADERS_REV
116116

117117
## NATS image parameters.
118118
NATS_IMAGE_VERSION := 2.9.25
119-
nats_image_tag := "ghcr.io/pixie-io/nats:$(NATS_IMAGE_VERSION)-scratch"
119+
NATS_IMAGE_REV := pl1
120+
nats_image_tag := "ghcr.io/pixie-io/nats:$(NATS_IMAGE_VERSION)-scratch-$(NATS_IMAGE_REV)"
120121

121122
## Ory image parameters.
122123
KRATOS_IMAGE_VERSION := 1.3.1

tools/docker/nats_image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616

17-
FROM --platform=$BUILDPLATFORM golang:1.20-alpine@sha256:fd9d9d7194ec40a9a6ae89fcaef3e47c47de7746dd5848ab5343695dbbd09f8c AS build
17+
FROM --platform=$BUILDPLATFORM golang:1.24-alpine@sha256:c8c5f95d64aa79b6547f3b626eb84b16a7ce18a139e3e9ca19a8c078b85ba80d AS build
1818

1919
ARG TARGETOS TARGETARCH
2020
ARG NATS_VERSION

0 commit comments

Comments
 (0)