File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
11
11
- name : Install Kind and Create Cluster
12
12
run : |
13
13
set -o errexit
14
- curl -o kind -L https://kind.sigs.k8s.io/dl/v0.17 .0/kind-linux-amd64
14
+ curl -o kind -L https://kind.sigs.k8s.io/dl/v0.23 .0/kind-linux-amd64
15
15
mkdir -p /opt/bin;
16
16
install kind /opt/bin/
17
- /opt/bin/kind create cluster --image "kindest/node:v1.25.3 "
17
+ /opt/bin/kind create cluster --image "kindest/node:v1.30.0 "
18
18
- name : Build Secret Agent Image
19
19
run : docker build -t controller:latest .
20
20
- name : Load Secret Agent Image To Kind
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ARG GO_VERSION="1.22.2"
5
5
ARG GO_PACKAGE_SHA256="5901c52b7a78002aeff14a21f93e0f064f74ce1360fce51c6ee68cd471216a17"
6
6
ARG KUBEBUILDER_VERSION="3.1.0"
7
7
8
- FROM openjdk:22 -ea-15-jdk-slim-bullseye as tester
8
+ FROM openjdk:23 -ea-15-jdk-slim-bullseye as tester
9
9
10
10
ARG GO_VERSION
11
11
ARG GO_PACKAGE_SHA256
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ ifndef DEFAULT_IMG_TAG
10
10
DEFAULT_IMG_TAG =latest
11
11
endif
12
12
IMG ?= controller:${DEFAULT_IMG_TAG}
13
+ # Uncomment below for deploying to a external cluster
14
+ # IMG=${DEFAULT_IMG_REGISTRY}/${DEFAULT_IMG_REPOSITORY}/controller:${DEFAULT_IMG_TAG}
13
15
VERSION =$(shell echo $(IMG ) | awk -F ':' '{print $$2}')
14
16
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
15
17
# CRD_OPTIONS ?= "crd:trivialVersions=false"
Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ spec:
170
170
items :
171
171
type : string
172
172
type : array
173
+ userId :
174
+ type : string
173
175
type : object
174
176
duration :
175
177
type : string
You can’t perform that action at this time.
0 commit comments