Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c608056

Browse files
authoredMar 7, 2025
Kubernetes Enterprise Operator Release 1.32.0 (#304)
1 parent 4c709e6 commit c608056

File tree

156 files changed

+4873
-171
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+4873
-171
lines changed
 

‎.evergreen.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ variables:
22
- &go_env
33
XDG_CONFIG_HOME: ${go_base_path}${workdir}
44
GO111MODULE: "on"
5-
GOROOT: "/opt/golang/go1.23"
5+
GOROOT: "/opt/golang/go1.24"
66
functions:
77
"clone":
88
- command: subprocess.exec
@@ -34,7 +34,7 @@ functions:
3434
- notary_service_url
3535
script: |
3636
set -Eeu pipefail
37-
37+
3838
curl "${notary_service_url}" --output macos-notary.zip
3939
unzip -u macos-notary.zip
4040
chmod 755 ./linux_amd64/macnotary
@@ -72,14 +72,14 @@ functions:
7272
7373
tasks:
7474
- name: package_goreleaser
75-
allowed_requesters: [ "patch", "github_tag" ]
75+
allowed_requesters: ["patch", "github_tag"]
7676
tags: ["packaging"]
7777
commands:
7878
- func: "clone"
7979
- func: "install goreleaser"
8080
- func: "install macos notarization service"
8181
- func: "release"
82-
# add a noop task because if the only task in a variant is git_tag_only: true Evergreen doesn't start it at all
82+
# add a noop task because if the only task in a variant is git_tag_only: true Evergreen doesn't start it at all
8383
- name: noop
8484
commands:
8585
- command: shell.exec
@@ -88,11 +88,11 @@ tasks:
8888
script: echo "this is the noop task"
8989

9090
buildvariants:
91-
# This variant is run when a new tag is out similar to github actions.
92-
- name: release_mcli
93-
display_name: Release Go multi-cluster binary
94-
run_on:
95-
- ubuntu2204-small
96-
tasks:
97-
- name: package_goreleaser
98-
- name: noop
91+
# This variant is run when a new tag is out similar to github actions.
92+
- name: release_mcli
93+
display_name: Release Go multi-cluster binary
94+
run_on:
95+
- ubuntu2204-small
96+
tasks:
97+
- name: package_goreleaser
98+
- name: noop
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
kubectl apply --context "${K8S_CLUSTER_0_CONTEXT_NAME}" -n "${MDB_NAMESPACE}" -f - <<EOF
2+
apiVersion: cert-manager.io/v1
3+
kind: Certificate
4+
metadata:
5+
name: mdb-cert
6+
spec:
7+
dnsNames:
8+
- "*.${MDB_NAMESPACE}.svc.cluster.local"
9+
duration: 240h0m0s
10+
issuerRef:
11+
name: my-ca-issuer
12+
kind: ClusterIssuer
13+
renewBefore: 120h0m0s
14+
secretName: cert-prefix-mdb-cert
15+
usages:
16+
- server auth
17+
- client auth
18+
EOF

0 commit comments

Comments
 (0)
Please sign in to comment.