diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 14a810ecd..1dcf0edc5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,13 +12,13 @@ jobs:
build:
name: Build
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
steps:
- - name: Set up Go 1.21
+ - name: Set up Go 1.23
uses: actions/setup-go@v1
with:
- go-version: '1.21'
+ go-version: '1.23'
id: go
- name: Check out code into the Go module directory
diff --git a/.github/workflows/release-tracker.yml b/.github/workflows/release-tracker.yml
index 95308eafe..440a934a0 100644
--- a/.github/workflows/release-tracker.yml
+++ b/.github/workflows/release-tracker.yml
@@ -6,7 +6,7 @@ on:
jobs:
build:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
diff --git a/Makefile b/Makefile
index 466ed8f20..f097cfe7b 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
BASEIMAGE_PROD ?= gcr.io/distroless/static-debian11
BASEIMAGE_DBG ?= debian:bullseye
-GO_VERSION ?= 1.22
+GO_VERSION ?= 1.23
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
OUTBIN = bin/$(OS)_$(ARCH)/$(BIN)
diff --git a/go.mod b/go.mod
index f72063229..5d4aadaa0 100644
--- a/go.mod
+++ b/go.mod
@@ -22,7 +22,7 @@ require (
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.19.1
github.com/spf13/pflag v1.0.5
- golang.org/x/net v0.25.0
+ golang.org/x/net v0.26.0
gomodules.xyz/encoding v0.0.8
gomodules.xyz/sets v0.2.1
helm.sh/helm/v3 v3.15.0
@@ -35,10 +35,10 @@ require (
k8s.io/kube-aggregator v0.30.1
k8s.io/kubectl v0.30.1
kmodules.xyz/apply v0.29.0
- kmodules.xyz/client-go v0.30.0
- kmodules.xyz/resource-metadata v0.18.6-0.20240519125927-d558ba96f4da
+ kmodules.xyz/client-go v0.30.11
+ kmodules.xyz/resource-metadata v0.18.10
sigs.k8s.io/cli-utils v0.36.0
- sigs.k8s.io/controller-runtime v0.18.2
+ sigs.k8s.io/controller-runtime v0.18.4
sigs.k8s.io/yaml v1.4.0
x-helm.dev/apimachinery v0.0.16
)
@@ -46,8 +46,8 @@ require (
require (
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2 // indirect
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
+ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 // indirect
+ github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
@@ -179,13 +179,13 @@ require (
go.opentelemetry.io/otel/metric v1.21.0 // indirect
go.opentelemetry.io/otel/trace v1.21.0 // indirect
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
- golang.org/x/crypto v0.23.0 // indirect
+ golang.org/x/crypto v0.24.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/oauth2 v0.19.0 // indirect
golang.org/x/sync v0.7.0 // indirect
- golang.org/x/sys v0.20.0 // indirect
- golang.org/x/term v0.20.0 // indirect
- golang.org/x/text v0.15.0 // indirect
+ golang.org/x/sys v0.21.0 // indirect
+ golang.org/x/term v0.21.0 // indirect
+ golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
gomodules.xyz/mergo v0.3.13 // indirect
@@ -204,8 +204,8 @@ require (
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect
kmodules.xyz/apiversion v0.2.0 // indirect
kmodules.xyz/go-containerregistry v0.0.12 // indirect
- kmodules.xyz/offshoot-api v0.29.0 // indirect
- kmodules.xyz/resource-metrics v0.29.5 // indirect
+ kmodules.xyz/offshoot-api v0.29.4 // indirect
+ kmodules.xyz/resource-metrics v0.30.1 // indirect
oras.land/oras-go v1.2.4 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/kustomize/api v0.16.0 // indirect
diff --git a/go.sum b/go.sum
index 284a5200a..fa1e98cb6 100644
--- a/go.sum
+++ b/go.sum
@@ -3,10 +3,10 @@ github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 h1:bvDV9
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo=
-github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2 h1:FDif4R1+UUR+00q6wquyX90K7A8dN+R5E8GEadoP7sU=
-github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2/go.mod h1:aiYBYui4BJ/BJCAIKs92XiPyQfTaBWqvHujDwKb6CBU=
-github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ=
-github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2/go.mod h1:yInRyqWXAuaPrgI7p70+lDDgh3mlBohis29jGMISnmc=
+github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 h1:U2rTu3Ef+7w9FHKIAXM6ZyqF3UOWJZ12zIm8zECAFfg=
+github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0/go.mod h1:9kIvujWAA58nmPmWB1m23fyWic1kYZMxD9CxaWn4Qpg=
+github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 h1:jBQA3cKT4L2rWMpgE7Yt3Hwh2aUj8KXjIGLxjHeYNNo=
+github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0/go.mod h1:4OG6tQ9EOP/MT0NMjDlRzWoVFxfu9rN9B2X+tlSVktg=
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8=
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 h1:XHOnouVk1mxXfQidrMEnLlPk9UMeRtyBTnEFtxkV0kU=
@@ -117,8 +117,6 @@ github.com/distribution/distribution/v3 v3.0.0-alpha.1 h1:jn7I1gvjOvmLztH1+1cLiU
github.com/distribution/distribution/v3 v3.0.0-alpha.1/go.mod h1:LCp4JZp1ZalYg0W/TN05jarCQu+h4w7xc7ZfQF4Y/cY=
github.com/distribution/reference v0.5.0 h1:/FUIFXtfc/x2gpa5/VGfiGLuOIdYa1t65IKK2OFGvA0=
github.com/distribution/reference v0.5.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
-github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI=
-github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ=
github.com/docker/cli v26.1.3+incompatible h1:bUpXT/N0kDE3VUHI2r5VMsYQgi38kYuoC0oL9yt3lqc=
github.com/docker/cli v26.1.3+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
@@ -447,8 +445,8 @@ github.com/redis/go-redis/extra/redisotel/v9 v9.0.5 h1:EfpWLLCyXw8PSM2/XNJLjI3Pb
github.com/redis/go-redis/extra/redisotel/v9 v9.0.5/go.mod h1:WZjPDy7VNzn77AAfnAfVjZNvfJTYfPetfZk5yoSTLaQ=
github.com/redis/go-redis/v9 v9.1.0 h1:137FnGdk+EQdCbye1FW+qOEcY5S+SpY9T0NiuqvtfMY=
github.com/redis/go-redis/v9 v9.1.0/go.mod h1:urWj3He21Dj5k4TK1y59xH8Uj6ATueP8AH1cY3lZl4c=
-github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
-github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
+github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
+github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
github.com/rubenv/sql-migrate v1.5.2 h1:bMDqOnrJVV/6JQgQ/MxOpU+AdO8uzYYA/TxFUBzFtS0=
github.com/rubenv/sql-migrate v1.5.2/go.mod h1:H38GW8Vqf8F0Su5XignRyaRcbXbJunSWxs+kmzlg0Is=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
@@ -559,8 +557,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
-golang.org/x/crypto v0.23.0 h1:dIJU/v2J8Mdglj/8rJ6UUOM3Zc9zLZxVZwwxMooUSAI=
-golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
+golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI=
+golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 h1:GoHiUyI/Tp2nVkLI2mCxVkOjsbSXD66ic0XW0js0R9g=
golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k=
@@ -585,8 +583,8 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
-golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
-golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
+golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ=
+golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg=
golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8=
@@ -617,20 +615,20 @@ golang.org/x/sys v0.0.0-20220906165534-d0df966e6959/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
-golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
+golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
-golang.org/x/term v0.20.0 h1:VnkxpohqXaOBYJtBmEppKUG6mXpi+4O6purfc2+sMhw=
-golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
+golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA=
+golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
-golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk=
-golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
+golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
+golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -642,8 +640,8 @@ golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtn
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
-golang.org/x/tools v0.20.0 h1:hz/CVckiOxybQvFw6h7b/q80NTr9IUQb4s1IIzW7KNY=
-golang.org/x/tools v0.20.0/go.mod h1:WvitBU7JJf6A4jOdg4S1tviW9bhUxkgeCui/0JHctQg=
+golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
+golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
@@ -739,22 +737,22 @@ kmodules.xyz/apiversion v0.2.0 h1:vAQYqZFm4xu4pbB1cAdHbFEPES6EQkcR4wc06xdTOWk=
kmodules.xyz/apiversion v0.2.0/go.mod h1:oPX8g8LvlPdPX3Yc5YvCzJHQnw3YF/X4/jdW0b1am80=
kmodules.xyz/apply v0.29.0 h1:0OXGfE2IPuvXHk6uI9zp6KCYdBibx8mK4PEl0g3LZ44=
kmodules.xyz/apply v0.29.0/go.mod h1:bwToXErB+DC7/EEWjQVARCSbJBjGx5hIEuV1n0tC73g=
-kmodules.xyz/client-go v0.30.0 h1:sEGX5DRXQwJiMxcN2DkDtXz9WsSA6fs9ye86RgbAxeo=
-kmodules.xyz/client-go v0.30.0/go.mod h1:ekDSUC0UFLI0Jq3A62myW7VG8TYLBqCwMjqWJM1SrqU=
+kmodules.xyz/client-go v0.30.11 h1:2UFIu18O5xwKyKbmAn+vs8CIcnfogu0IACurgR2HAmU=
+kmodules.xyz/client-go v0.30.11/go.mod h1:XL3PDQIXG4s3xNRL2SSxIvi8b2WyMGpn26dFnOBz0j4=
kmodules.xyz/go-containerregistry v0.0.12 h1:Tl32QGmSqRVm9PUEb/f3dgDeu9zW5fVzt3qmAFIE37I=
kmodules.xyz/go-containerregistry v0.0.12/go.mod h1:KgeNg0hDsgeda+qc0NzWk0iVRdF0+ZIg/oRzGoYh78I=
-kmodules.xyz/offshoot-api v0.29.0 h1:GHLhxxT9jU1N8+FvOCCeJNyU5g0duYS46UGrs6AHNLY=
-kmodules.xyz/offshoot-api v0.29.0/go.mod h1:5NxhBblXoDHWStx9HCDJR2KFTwYjEZ7i1Id3jelIunw=
-kmodules.xyz/resource-metadata v0.18.6-0.20240519125927-d558ba96f4da h1:srCqtb/wfooHdaHgIwXrk8tAzHXkZZDd0CigEjX/sa0=
-kmodules.xyz/resource-metadata v0.18.6-0.20240519125927-d558ba96f4da/go.mod h1:WKwJXM00EFKeDXDF+fjEMwxyZnKs/1SXMj9nt0VbDHs=
-kmodules.xyz/resource-metrics v0.29.5 h1:ciuvRXuXsloLNW/JwkubqbYySsvHvHr6/nhkTL5Sf1o=
-kmodules.xyz/resource-metrics v0.29.5/go.mod h1:OuG/QobZ7o8GFHl/u3lqaUR0fDZDegxtV8Vdh+MNBD4=
+kmodules.xyz/offshoot-api v0.29.4 h1:WQV2BIUIoVKKiqZNmZ4gAy367jEdwBhEl3dFCLZM1qA=
+kmodules.xyz/offshoot-api v0.29.4/go.mod h1:e+NQ0s4gW/YTPWBWEfdISZcmk+tlTq8IjvP5SLdqvko=
+kmodules.xyz/resource-metadata v0.18.10 h1:B0DAMsJJBuSOGCKzptZvB8AWcbxzDdUm+3CIE7g9ftE=
+kmodules.xyz/resource-metadata v0.18.10/go.mod h1:PXyZXif1b1QRpe0Pwr92OeOveptZricB0jLssCjsYTc=
+kmodules.xyz/resource-metrics v0.30.1 h1:o7mVY8ZwSe5iEILy1eMG4EPZCli7mXZCkgQONjoY9uU=
+kmodules.xyz/resource-metrics v0.30.1/go.mod h1:UYcQQLN+3o8rNPQJwJa2D9bt5ihJCeo5bCDuQ4O3MPY=
oras.land/oras-go v1.2.4 h1:djpBY2/2Cs1PV87GSJlxv4voajVOMZxqqtq9AB8YNvY=
oras.land/oras-go v1.2.4/go.mod h1:DYcGfb3YF1nKjcezfX2SNlDAeQFKSXmf+qrFmrh4324=
sigs.k8s.io/cli-utils v0.36.0 h1:k7GM6LmIMydtvM6Ad91XuqKk0QEVL9bVbaiX1uvWIrA=
sigs.k8s.io/cli-utils v0.36.0/go.mod h1:uCFC3BPXB3xHFQyKkWUlTrncVDCKzbdDfqZqRTCrk24=
-sigs.k8s.io/controller-runtime v0.18.2 h1:RqVW6Kpeaji67CY5nPEfRz6ZfFMk0lWQlNrLqlNpx+Q=
-sigs.k8s.io/controller-runtime v0.18.2/go.mod h1:tuAt1+wbVsXIT8lPtk5RURxqAnq7xkpv2Mhttslg7Hw=
+sigs.k8s.io/controller-runtime v0.18.4 h1:87+guW1zhvuPLh1PHybKdYFLU0YJp4FhJRmiHvm5BZw=
+sigs.k8s.io/controller-runtime v0.18.4/go.mod h1:TVoGrfdpbA9VRFaRnKgk9P5/atA0pMwq+f+msb9M8Sg=
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
sigs.k8s.io/kustomize/api v0.16.0 h1:/zAR4FOQDCkgSDmVzV2uiFbuy9bhu3jEzthrHCuvm1g=
diff --git a/pkg/internal/helm/repository/oci_chart_repository.go b/pkg/internal/helm/repository/oci_chart_repository.go
index 367288ed4..0511383fe 100644
--- a/pkg/internal/helm/repository/oci_chart_repository.go
+++ b/pkg/internal/helm/repository/oci_chart_repository.go
@@ -208,7 +208,7 @@ func (r *OCIChartRepository) DownloadChart(chart *repo.ChartVersion) (*bytes.Buf
t := transport.NewOrIdle(r.tlsConfig)
clientOpts := append(r.Options, getter.WithTransport(t))
- defer transport.Release(t)
+ defer transport.Release(t) //nolint:errcheck
// trim the oci scheme prefix if needed
return r.Client.Get(strings.TrimPrefix(u.String(), fmt.Sprintf("%s://", registry.OCIScheme)), clientOpts...)
diff --git a/pkg/internal/helm/repository/utils_test.go b/pkg/internal/helm/repository/utils_test.go
index 3ee77606d..3d5b2eb17 100644
--- a/pkg/internal/helm/repository/utils_test.go
+++ b/pkg/internal/helm/repository/utils_test.go
@@ -18,53 +18,62 @@ package repository
import (
"testing"
-
- . "github.com/onsi/gomega"
)
func TestNormalizeURL(t *testing.T) {
tests := []struct {
- name string
- url string
- want string
+ name string
+ url string
+ want string
+ wantErr bool
}{
{
- name: "with slash",
- url: "http://example.com/",
- want: "http://example.com/",
+ name: "with slash",
+ url: "http://example.com/",
+ want: "http://example.com/",
+ wantErr: false,
},
{
- name: "without slash",
- url: "http://example.com",
- want: "http://example.com/",
+ name: "without slash",
+ url: "http://example.com",
+ want: "http://example.com/",
+ wantErr: false,
},
{
- name: "double slash",
- url: "http://example.com//",
- want: "http://example.com/",
+ name: "double slash",
+ url: "http://example.com//",
+ want: "http://example.com/",
+ wantErr: false,
},
{
- name: "empty",
- url: "",
- want: "",
+ name: "empty",
+ url: "",
+ want: "",
+ wantErr: false,
},
{
- name: "oci with slash",
- url: "oci://example.com/",
- want: "oci://example.com",
+ name: "oci with slash",
+ url: "oci://example.com/",
+ want: "oci://example.com",
+ wantErr: false,
},
{
- name: "oci double slash",
- url: "oci://example.com//",
- want: "oci://example.com",
+ name: "oci double slash",
+ url: "oci://example.com//",
+ want: "oci://example.com",
+ wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
- g := NewWithT(t)
-
- got := NormalizeURL(tt.url)
- g.Expect(got).To(Equal(tt.want))
+ got, err := NormalizeURL(tt.url)
+ if (err != nil) != tt.wantErr {
+ t.Errorf("NormalizeURL() error = %v, wantErr %v", err, tt.wantErr)
+ return
+ }
+ if got != tt.want {
+ t.Errorf("NormalizeURL() got = %v, want %v", got, tt.want)
+ }
})
}
}
diff --git a/pkg/kube/client.go b/pkg/kube/client.go
index 6f31f3d5f..8035a80fe 100644
--- a/pkg/kube/client.go
+++ b/pkg/kube/client.go
@@ -171,7 +171,7 @@ func (c *Client) Update(original_nee_current, target kube.ResourceList, force bo
case err != nil:
return res, err
case len(updateErrors) != 0:
- return res, errors.Errorf(strings.Join(updateErrors, " && "))
+ return res, errors.New(strings.Join(updateErrors, " && "))
}
for _, info := range original_nee_current.Difference(target) {
diff --git a/pkg/repo/oci.go b/pkg/repo/oci.go
index 8579126e5..713d0349d 100644
--- a/pkg/repo/oci.go
+++ b/pkg/repo/oci.go
@@ -126,7 +126,7 @@ func (r *Registry) getFluxChart(obj releasesapi.ChartSourceRef) (*ChartExtended,
if err != nil {
return nil, fmt.Errorf("failed to login to OCI registry: %w", err)
}
- defer ociChartRepo.Logout()
+ defer ociChartRepo.Logout() //nolint:errcheck
}
chartRepo = ociChartRepo
diff --git a/pkg/repo/registry.go b/pkg/repo/registry.go
index ec5e9e9a5..17f6caaa4 100644
--- a/pkg/repo/registry.go
+++ b/pkg/repo/registry.go
@@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
+// nolint:unused
package repo
import (
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore
new file mode 100644
index 000000000..8cdb91036
--- /dev/null
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore
@@ -0,0 +1,4 @@
+# live test artifacts
+Dockerfile
+k8s.yaml
+sshkey*
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/CHANGELOG.md b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/CHANGELOG.md
index f6749c030..6d4b6feb8 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/CHANGELOG.md
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/CHANGELOG.md
@@ -1,5 +1,35 @@
# Release History
+## 1.6.0 (2024-06-10)
+
+### Features Added
+* `NewOnBehalfOfCredentialWithClientAssertions` creates an on-behalf-of credential
+ that authenticates with client assertions such as federated credentials
+
+### Breaking Changes
+> These changes affect only code written against a beta version such as v1.6.0-beta.4
+* Removed `AzurePipelinesCredential` and the persistent token caching API.
+ They will return in v1.7.0-beta.1
+
+### Bugs Fixed
+* Managed identity bug fixes
+
+## 1.6.0-beta.4 (2024-05-14)
+
+### Features Added
+* `AzurePipelinesCredential` authenticates an Azure Pipeline service connection with
+ workload identity federation
+
+## 1.6.0-beta.3 (2024-04-09)
+
+### Breaking Changes
+* `DefaultAzureCredential` now sends a probe request with no retries for IMDS managed identity
+ environments to avoid excessive retry delays when the IMDS endpoint is not available. This
+ should improve credential chain resolution for local development scenarios.
+
+### Bugs Fixed
+* `ManagedIdentityCredential` now specifies resource IDs correctly for Azure Container Instances
+
## 1.5.2 (2024-04-09)
### Bugs Fixed
@@ -9,6 +39,28 @@
* Restored v1.4.0 error behavior for empty tenant IDs
* Upgraded dependencies
+## 1.6.0-beta.2 (2024-02-06)
+
+### Breaking Changes
+> These changes affect only code written against a beta version such as v1.6.0-beta.1
+* Replaced `ErrAuthenticationRequired` with `AuthenticationRequiredError`, a struct
+ type that carries the `TokenRequestOptions` passed to the `GetToken` call which
+ returned the error.
+
+### Bugs Fixed
+* Fixed more cases in which credential chains like `DefaultAzureCredential`
+ should try their next credential after attempting managed identity
+ authentication in a Docker Desktop container
+
+### Other Changes
+* `AzureCLICredential` uses the CLI's `expires_on` value for token expiration
+
+## 1.6.0-beta.1 (2024-01-17)
+
+### Features Added
+* Restored persistent token caching API first added in v1.5.0-beta.1
+* Added `AzureCLICredentialOptions.Subscription`
+
## 1.5.1 (2024-01-17)
### Bugs Fixed
@@ -135,7 +187,7 @@
### Features Added
* By default, credentials set client capability "CP1" to enable support for
- [Continuous Access Evaluation (CAE)](https://docs.microsoft.com/azure/active-directory/develop/app-resilience-continuous-access-evaluation).
+ [Continuous Access Evaluation (CAE)](https://learn.microsoft.com/entra/identity-platform/app-resilience-continuous-access-evaluation).
This indicates to Microsoft Entra ID that your application can handle CAE claims challenges.
You can disable this behavior by setting the environment variable "AZURE_IDENTITY_DISABLE_CP1" to "true".
* `InteractiveBrowserCredentialOptions.LoginHint` enables pre-populating the login
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/MIGRATION.md b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/MIGRATION.md
index 1a6492023..4404be824 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/MIGRATION.md
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/MIGRATION.md
@@ -1,6 +1,6 @@
# Migrating from autorest/adal to azidentity
-`azidentity` provides Microsoft Entra ID ([formerly Azure Active Directory](https://learn.microsoft.com/azure/active-directory/fundamentals/new-name)) authentication for the newest Azure SDK modules (`github.com/azure-sdk-for-go/sdk/...`). Older Azure SDK packages (`github.com/azure-sdk-for-go/services/...`) use types from `github.com/go-autorest/autorest/adal` instead.
+`azidentity` provides Microsoft Entra ID ([formerly Azure Active Directory](https://learn.microsoft.com/entra/fundamentals/new-name)) authentication for the newest Azure SDK modules (`github.com/azure-sdk-for-go/sdk/...`). Older Azure SDK packages (`github.com/azure-sdk-for-go/services/...`) use types from `github.com/go-autorest/autorest/adal` instead.
This guide shows common authentication code using `autorest/adal` and its equivalent using `azidentity`.
@@ -284,7 +284,7 @@ if err == nil {
}
```
-Note that `azidentity` credentials use the Microsoft Entra endpoint, which requires OAuth 2 scopes instead of the resource identifiers `autorest/adal` expects. For more information, see [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/develop/permissions-consent-overview).
+Note that `azidentity` credentials use the Microsoft Entra endpoint, which requires OAuth 2 scopes instead of the resource identifiers `autorest/adal` expects. For more information, see [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity-platform/permissions-consent-overview).
## Use azidentity credentials with older packages
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/README.md b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/README.md
index b6ad2d39f..b5acff0e6 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/README.md
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/README.md
@@ -1,9 +1,9 @@
# Azure Identity Client Module for Go
-The Azure Identity module provides Microsoft Entra ID ([formerly Azure Active Directory](https://learn.microsoft.com/azure/active-directory/fundamentals/new-name)) token authentication support across the Azure SDK. It includes a set of `TokenCredential` implementations, which can be used with Azure SDK clients supporting token authentication.
+The Azure Identity module provides Microsoft Entra ID ([formerly Azure Active Directory](https://learn.microsoft.com/entra/fundamentals/new-name)) token authentication support across the Azure SDK. It includes a set of `TokenCredential` implementations, which can be used with Azure SDK clients supporting token authentication.
[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/azidentity)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity)
-| [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/)
+| [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity/)
| [Source code](https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/azidentity)
# Getting started
@@ -30,7 +30,7 @@ When debugging and executing code locally, developers typically use their own ac
#### Authenticating via the Azure CLI
`DefaultAzureCredential` and `AzureCLICredential` can authenticate as the user
-signed in to the [Azure CLI](https://docs.microsoft.com/cli/azure). To sign in to the Azure CLI, run `az login`. On a system with a default web browser, the Azure CLI will launch the browser to authenticate a user.
+signed in to the [Azure CLI](https://learn.microsoft.com/cli/azure). To sign in to the Azure CLI, run `az login`. On a system with a default web browser, the Azure CLI will launch the browser to authenticate a user.
When no default browser is available, `az login` will use the device code
authentication flow. This can also be selected manually by running `az login --use-device-code`.
@@ -69,14 +69,14 @@ The `azidentity` module focuses on OAuth authentication with Microsoft Entra ID.
## Managed Identity
`DefaultAzureCredential` and `ManagedIdentityCredential` support
-[managed identity authentication](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview)
+[managed identity authentication](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/overview)
in any hosting environment which supports managed identities, such as (this list is not exhaustive):
-* [Azure App Service](https://docs.microsoft.com/azure/app-service/overview-managed-identity)
-* [Azure Arc](https://docs.microsoft.com/azure/azure-arc/servers/managed-identity-authentication)
-* [Azure Cloud Shell](https://docs.microsoft.com/azure/cloud-shell/msi-authorization)
-* [Azure Kubernetes Service](https://docs.microsoft.com/azure/aks/use-managed-identity)
-* [Azure Service Fabric](https://docs.microsoft.com/azure/service-fabric/concepts-managed-identity)
-* [Azure Virtual Machines](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token)
+* [Azure App Service](https://learn.microsoft.com/azure/app-service/overview-managed-identity)
+* [Azure Arc](https://learn.microsoft.com/azure/azure-arc/servers/managed-identity-authentication)
+* [Azure Cloud Shell](https://learn.microsoft.com/azure/cloud-shell/msi-authorization)
+* [Azure Kubernetes Service](https://learn.microsoft.com/azure/aks/use-managed-identity)
+* [Azure Service Fabric](https://learn.microsoft.com/azure/service-fabric/concepts-managed-identity)
+* [Azure Virtual Machines](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/how-to-use-vm-token)
## Examples
@@ -207,7 +207,7 @@ For more details, see the [token caching documentation](https://aka.ms/azsdk/go/
Credentials return an `error` when they fail to authenticate or lack data they require to authenticate. For guidance on resolving errors from specific credential types, see the [troubleshooting guide](https://aka.ms/azsdk/go/identity/troubleshoot).
-For more details on handling specific Microsoft Entra errors, see the Microsoft Entra [error code documentation](https://learn.microsoft.com/azure/active-directory/develop/reference-error-codes).
+For more details on handling specific Microsoft Entra errors, see the Microsoft Entra [error code documentation](https://learn.microsoft.com/entra/identity-platform/reference-error-codes).
### Logging
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TOKEN_CACHING.MD b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TOKEN_CACHING.MD
index c0d660146..f9cc48943 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TOKEN_CACHING.MD
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TOKEN_CACHING.MD
@@ -45,7 +45,7 @@ With persistent disk token caching enabled, the library first determines if a va
#### Example code
-See the [package documentation](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity@v1.5.0-beta.1#pkg-overview) for code examples demonstrating how to configure persistent caching and access cached data.
+See the [package documentation](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity@v1.6.0-beta.2#pkg-overview) for example code demonstrating how to configure persistent caching and access cached data.
### Credentials supporting token caching
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TROUBLESHOOTING.md b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TROUBLESHOOTING.md
index 832c599eb..3564e685e 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TROUBLESHOOTING.md
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/TROUBLESHOOTING.md
@@ -58,7 +58,7 @@ This error contains several pieces of information:
- __Failing Credential Type__: The type of credential that failed to authenticate. This can be helpful when diagnosing issues with chained credential types such as `DefaultAzureCredential` or `ChainedTokenCredential`.
-- __Microsoft Entra ID Error Code and Message__: The error code and message returned by Microsoft Entra ID. This can give insight into the specific reason the request failed. For instance, in this case authentication failed because the provided client secret is incorrect. [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/develop/reference-error-codes#aadsts-error-codes) has more information on AADSTS error codes.
+- __Microsoft Entra ID Error Code and Message__: The error code and message returned by Microsoft Entra ID. This can give insight into the specific reason the request failed. For instance, in this case authentication failed because the provided client secret is incorrect. [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity-platform/reference-error-codes#aadsts-error-codes) has more information on AADSTS error codes.
- __Correlation ID and Timestamp__: The correlation ID and timestamp identify the request in server-side logs. This information can be useful to support engineers diagnosing unexpected Microsoft Entra failures.
@@ -97,17 +97,17 @@ azlog.SetEvents(azidentity.EventAuthentication)
| Error Code | Issue | Mitigation |
|---|---|---|
-|AADSTS7000215|An invalid client secret was provided.|Ensure the secret provided to the credential constructor is valid. If unsure, create a new client secret using the Azure portal. Details on creating a new client secret are in [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#option-2-create-a-new-application-secret).|
-|AADSTS7000222|An expired client secret was provided.|Create a new client secret using the Azure portal. Details on creating a new client secret are in [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#option-2-create-a-new-application-secret).|
-|AADSTS700016|The specified application wasn't found in the specified tenant.|Ensure the client and tenant IDs provided to the credential constructor are correct for your application registration. For multi-tenant apps, ensure the application has been added to the desired tenant by a tenant admin. To add a new application in the desired tenant, follow the [Microsoft Entra ID instructions](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).|
+|AADSTS7000215|An invalid client secret was provided.|Ensure the secret provided to the credential constructor is valid. If unsure, create a new client secret using the Azure portal. Details on creating a new client secret are in [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity-platform/howto-create-service-principal-portal#option-2-create-a-new-application-secret).|
+|AADSTS7000222|An expired client secret was provided.|Create a new client secret using the Azure portal. Details on creating a new client secret are in [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity-platform/howto-create-service-principal-portal#option-2-create-a-new-application-secret).|
+|AADSTS700016|The specified application wasn't found in the specified tenant.|Ensure the client and tenant IDs provided to the credential constructor are correct for your application registration. For multi-tenant apps, ensure the application has been added to the desired tenant by a tenant admin. To add a new application in the desired tenant, follow the [Microsoft Entra ID instructions](https://learn.microsoft.com/entra/identity-platform/howto-create-service-principal-portal).|
## Troubleshoot ClientCertificateCredential authentication issues
| Error Code | Description | Mitigation |
|---|---|---|
-|AADSTS700027|Client assertion contains an invalid signature.|Ensure the specified certificate has been uploaded to the application registration as described in [Microsoft Entra ID documentation](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#option-1-upload-a-certificate).|
-|AADSTS700016|The specified application wasn't found in the specified tenant.|Ensure the client and tenant IDs provided to the credential constructor are correct for your application registration. For multi-tenant apps, ensure the application has been added to the desired tenant by a tenant admin. To add a new application in the desired tenant, follow the [Microsoft Entra ID instructions](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).|
+|AADSTS700027|Client assertion contains an invalid signature.|Ensure the specified certificate has been uploaded to the application registration as described in [Microsoft Entra ID documentation](https://learn.microsoft.com/entra/identity-platform/howto-create-service-principal-portal#option-1-upload-a-certificate).|
+|AADSTS700016|The specified application wasn't found in the specified tenant.|Ensure the client and tenant IDs provided to the credential constructor are correct for your application registration. For multi-tenant apps, ensure the application has been added to the desired tenant by a tenant admin. To add a new application in the desired tenant, follow the [Microsoft Entra ID instructions](https://learn.microsoft.com/entra/identity-platform/howto-create-service-principal-portal).|
## Troubleshoot UsernamePasswordCredential authentication issues
@@ -123,20 +123,20 @@ azlog.SetEvents(azidentity.EventAuthentication)
|Host Environment| | |
|---|---|---|
-|Azure Virtual Machines and Scale Sets|[Configuration](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm)|[Troubleshooting](#azure-virtual-machine-managed-identity)|
-|Azure App Service and Azure Functions|[Configuration](https://docs.microsoft.com/azure/app-service/overview-managed-identity)|[Troubleshooting](#azure-app-service-and-azure-functions-managed-identity)|
+|Azure Virtual Machines and Scale Sets|[Configuration](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/qs-configure-portal-windows-vm)|[Troubleshooting](#azure-virtual-machine-managed-identity)|
+|Azure App Service and Azure Functions|[Configuration](https://learn.microsoft.com/azure/app-service/overview-managed-identity)|[Troubleshooting](#azure-app-service-and-azure-functions-managed-identity)|
|Azure Kubernetes Service|[Configuration](https://azure.github.io/aad-pod-identity/docs/)|[Troubleshooting](#azure-kubernetes-service-managed-identity)|
-|Azure Arc|[Configuration](https://docs.microsoft.com/azure/azure-arc/servers/managed-identity-authentication)||
-|Azure Service Fabric|[Configuration](https://docs.microsoft.com/azure/service-fabric/concepts-managed-identity)||
+|Azure Arc|[Configuration](https://learn.microsoft.com/azure/azure-arc/servers/managed-identity-authentication)||
+|Azure Service Fabric|[Configuration](https://learn.microsoft.com/azure/service-fabric/concepts-managed-identity)||
### Azure Virtual Machine managed identity
| Error Message |Description| Mitigation |
|---|---|---|
-|The requested identity hasn’t been assigned to this resource.|The IMDS endpoint responded with a status code of 400, indicating the requested identity isn’t assigned to the VM.|If using a user assigned identity, ensure the specified ID is correct.
If using a system assigned identity, make sure it has been enabled as described in [managed identity documentation](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm#enable-system-assigned-managed-identity-on-an-existing-vm).|
+|The requested identity hasn’t been assigned to this resource.|The IMDS endpoint responded with a status code of 400, indicating the requested identity isn’t assigned to the VM.|If using a user assigned identity, ensure the specified ID is correct.If using a system assigned identity, make sure it has been enabled as described in [managed identity documentation](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/qs-configure-portal-windows-vm#enable-system-assigned-managed-identity-on-an-existing-vm).|
|The request failed due to a gateway error.|The request to the IMDS endpoint failed due to a gateway error, 502 or 504 status code.|IMDS doesn't support requests via proxy or gateway. Disable proxies or gateways running on the VM for requests to the IMDS endpoint `http://169.254.169.254`|
-|No response received from the managed identity endpoint.|No response was received for the request to IMDS or the request timed out.|- Ensure the VM is configured for managed identity as described in [managed identity documentation](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm).
- Verify the IMDS endpoint is reachable on the VM. See [below](#verify-imds-is-available-on-the-vm) for instructions.
|
-|Multiple attempts failed to obtain a token from the managed identity endpoint.|The credential has exhausted its retries for a token request.|- Refer to the error message for more details on specific failures.
- Ensure the VM is configured for managed identity as described in [managed identity documentation](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm).
- Verify the IMDS endpoint is reachable on the VM. See [below](#verify-imds-is-available-on-the-vm) for instructions.
|
+|No response received from the managed identity endpoint.|No response was received for the request to IMDS or the request timed out.|- Ensure the VM is configured for managed identity as described in [managed identity documentation](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/qs-configure-portal-windows-vm).
- Verify the IMDS endpoint is reachable on the VM. See [below](#verify-imds-is-available-on-the-vm) for instructions.
|
+|Multiple attempts failed to obtain a token from the managed identity endpoint.|The credential has exhausted its retries for a token request.|- Refer to the error message for more details on specific failures.
- Ensure the VM is configured for managed identity as described in [managed identity documentation](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/qs-configure-portal-windows-vm).
- Verify the IMDS endpoint is reachable on the VM. See [below](#verify-imds-is-available-on-the-vm) for instructions.
|
#### Verify IMDS is available on the VM
@@ -152,7 +152,7 @@ curl 'http://169.254.169.254/metadata/identity/oauth2/token?resource=https://man
| Error Message |Description| Mitigation |
|---|---|---|
-|Get "`http://169.254.169.254/...`" i/o timeout|The App Service host hasn't set environment variables for managed identity configuration.|- Ensure the App Service is configured for managed identity as described in [App Service documentation](https://docs.microsoft.com/azure/app-service/overview-managed-identity).
- Verify the App Service environment is properly configured and the managed identity endpoint is available. See [below](#verify-the-app-service-managed-identity-endpoint-is-available) for instructions.
|
+|Get "`http://169.254.169.254/...`" i/o timeout|The App Service host hasn't set environment variables for managed identity configuration.|- Ensure the App Service is configured for managed identity as described in [App Service documentation](https://learn.microsoft.com/azure/app-service/overview-managed-identity).
- Verify the App Service environment is properly configured and the managed identity endpoint is available. See [below](#verify-the-app-service-managed-identity-endpoint-is-available) for instructions.
|
#### Verify the App Service managed identity endpoint is available
@@ -177,8 +177,8 @@ curl "$IDENTITY_ENDPOINT?resource=https://management.core.windows.net&api-versio
| Error Message |Description| Mitigation |
|---|---|---|
-|Azure CLI not found on path|The Azure CLI isn’t installed or isn't on the application's path.|- Ensure the Azure CLI is installed as described in [Azure CLI documentation](https://docs.microsoft.com/cli/azure/install-azure-cli).
- Validate the installation location is in the application's `PATH` environment variable.
|
-|Please run 'az login' to set up account|No account is currently logged into the Azure CLI, or the login has expired.|- Run `az login` to log into the Azure CLI. More information about Azure CLI authentication is available in the [Azure CLI documentation](https://docs.microsoft.com/cli/azure/authenticate-azure-cli).
- Verify that the Azure CLI can obtain tokens. See [below](#verify-the-azure-cli-can-obtain-tokens) for instructions.
|
+|Azure CLI not found on path|The Azure CLI isn’t installed or isn't on the application's path.|- Ensure the Azure CLI is installed as described in [Azure CLI documentation](https://learn.microsoft.com/cli/azure/install-azure-cli).
- Validate the installation location is in the application's `PATH` environment variable.
|
+|Please run 'az login' to set up account|No account is currently logged into the Azure CLI, or the login has expired.|- Run `az login` to log into the Azure CLI. More information about Azure CLI authentication is available in the [Azure CLI documentation](https://learn.microsoft.com/cli/azure/authenticate-azure-cli).
- Verify that the Azure CLI can obtain tokens. See [below](#verify-the-azure-cli-can-obtain-tokens) for instructions.
|
#### Verify the Azure CLI can obtain tokens
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/assets.json b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/assets.json
index 1be55a4bd..bff0c44da 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/assets.json
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/assets.json
@@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "go",
"TagPrefix": "go/azidentity",
- "Tag": "go/azidentity_98074050dc"
+ "Tag": "go/azidentity_087379b475"
}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_cli_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_cli_credential.go
index 43577ab3c..b9976f5fe 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_cli_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_cli_credential.go
@@ -35,9 +35,9 @@ type AzureCLICredentialOptions struct {
// logged in account can access.
AdditionallyAllowedTenants []string
- // subscription is the name or ID of a subscription. Set this to acquire tokens for an account other
+ // Subscription is the name or ID of a subscription. Set this to acquire tokens for an account other
// than the Azure CLI's current account.
- subscription string
+ Subscription string
// TenantID identifies the tenant the credential should authenticate in.
// Defaults to the CLI's default tenant, which is typically the home tenant of the logged in user.
@@ -68,9 +68,9 @@ func NewAzureCLICredential(options *AzureCLICredentialOptions) (*AzureCLICredent
if options != nil {
cp = *options
}
- for _, r := range cp.subscription {
+ for _, r := range cp.Subscription {
if !(alphanumeric(r) || r == '-' || r == '_' || r == ' ' || r == '.') {
- return nil, fmt.Errorf("%s: invalid Subscription %q", credNameAzureCLI, cp.subscription)
+ return nil, fmt.Errorf("%s: invalid Subscription %q", credNameAzureCLI, cp.Subscription)
}
}
if cp.TenantID != "" && !validTenantID(cp.TenantID) {
@@ -97,7 +97,7 @@ func (c *AzureCLICredential) GetToken(ctx context.Context, opts policy.TokenRequ
}
c.mu.Lock()
defer c.mu.Unlock()
- b, err := c.opts.tokenProvider(ctx, opts.Scopes, tenant, c.opts.subscription)
+ b, err := c.opts.tokenProvider(ctx, opts.Scopes, tenant, c.opts.Subscription)
if err == nil {
at, err = c.createAccessToken(b)
}
@@ -163,26 +163,21 @@ var defaultAzTokenProvider azTokenProvider = func(ctx context.Context, scopes []
func (c *AzureCLICredential) createAccessToken(tk []byte) (azcore.AccessToken, error) {
t := struct {
- AccessToken string `json:"accessToken"`
- Authority string `json:"_authority"`
- ClientID string `json:"_clientId"`
- ExpiresOn string `json:"expiresOn"`
- IdentityProvider string `json:"identityProvider"`
- IsMRRT bool `json:"isMRRT"`
- RefreshToken string `json:"refreshToken"`
- Resource string `json:"resource"`
- TokenType string `json:"tokenType"`
- UserID string `json:"userId"`
+ AccessToken string `json:"accessToken"`
+ Expires_On int64 `json:"expires_on"`
+ ExpiresOn string `json:"expiresOn"`
}{}
err := json.Unmarshal(tk, &t)
if err != nil {
return azcore.AccessToken{}, err
}
- // the Azure CLI's "expiresOn" is local time
- exp, err := time.ParseInLocation("2006-01-02 15:04:05.999999", t.ExpiresOn, time.Local)
- if err != nil {
- return azcore.AccessToken{}, fmt.Errorf("Error parsing token expiration time %q: %v", t.ExpiresOn, err)
+ exp := time.Unix(t.Expires_On, 0)
+ if t.Expires_On == 0 {
+ exp, err = time.ParseInLocation("2006-01-02 15:04:05.999999", t.ExpiresOn, time.Local)
+ if err != nil {
+ return azcore.AccessToken{}, fmt.Errorf("%s: error parsing token expiration time %q: %v", credNameAzureCLI, t.ExpiresOn, err)
+ }
}
converted := azcore.AccessToken{
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_pipelines_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_pipelines_credential.go
new file mode 100644
index 000000000..2655543ae
--- /dev/null
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/azure_pipelines_credential.go
@@ -0,0 +1,130 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package azidentity
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "net/http"
+ "os"
+
+ "github.com/Azure/azure-sdk-for-go/sdk/azcore"
+ "github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
+ "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
+)
+
+const (
+ credNameAzurePipelines = "AzurePipelinesCredential"
+ oidcAPIVersion = "7.1"
+ systemAccessToken = "SYSTEM_ACCESSTOKEN"
+ systemOIDCRequestURI = "SYSTEM_OIDCREQUESTURI"
+)
+
+// azurePipelinesCredential authenticates with workload identity federation in an Azure Pipeline. See
+// [Azure Pipelines documentation] for more information.
+//
+// [Azure Pipelines documentation]: https://learn.microsoft.com/azure/devops/pipelines/library/connect-to-azure?view=azure-devops#create-an-azure-resource-manager-service-connection-that-uses-workload-identity-federation
+type azurePipelinesCredential struct {
+ connectionID, oidcURI, systemAccessToken string
+ cred *ClientAssertionCredential
+}
+
+// azurePipelinesCredentialOptions contains optional parameters for AzurePipelinesCredential.
+type azurePipelinesCredentialOptions struct {
+ azcore.ClientOptions
+
+ // AdditionallyAllowedTenants specifies additional tenants for which the credential may acquire tokens.
+ // Add the wildcard value "*" to allow the credential to acquire tokens for any tenant in which the
+ // application is registered.
+ AdditionallyAllowedTenants []string
+
+ // DisableInstanceDiscovery should be set true only by applications authenticating in disconnected clouds, or
+ // private clouds such as Azure Stack. It determines whether the credential requests Microsoft Entra instance metadata
+ // from https://login.microsoft.com before authenticating. Setting this to true will skip this request, making
+ // the application responsible for ensuring the configured authority is valid and trustworthy.
+ DisableInstanceDiscovery bool
+}
+
+// newAzurePipelinesCredential is the constructor for AzurePipelinesCredential. In addition to its required arguments,
+// it reads a security token for the running build, which is required to authenticate the service connection, from the
+// environment variable SYSTEM_ACCESSTOKEN. See the [Azure Pipelines documentation] for an example showing how to set
+// this variable in build job YAML.
+//
+// [Azure Pipelines documentation]: https://learn.microsoft.com/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#systemaccesstoken
+func newAzurePipelinesCredential(tenantID, clientID, serviceConnectionID string, options *azurePipelinesCredentialOptions) (*azurePipelinesCredential, error) {
+ if options == nil {
+ options = &azurePipelinesCredentialOptions{}
+ }
+ u := os.Getenv(systemOIDCRequestURI)
+ if u == "" {
+ return nil, fmt.Errorf("no value for environment variable %s. This should be set by Azure Pipelines", systemOIDCRequestURI)
+ }
+ sat := os.Getenv(systemAccessToken)
+ if sat == "" {
+ return nil, errors.New("no value for environment variable " + systemAccessToken)
+ }
+ a := azurePipelinesCredential{
+ connectionID: serviceConnectionID,
+ oidcURI: u,
+ systemAccessToken: sat,
+ }
+ caco := ClientAssertionCredentialOptions{
+ AdditionallyAllowedTenants: options.AdditionallyAllowedTenants,
+ ClientOptions: options.ClientOptions,
+ DisableInstanceDiscovery: options.DisableInstanceDiscovery,
+ }
+ cred, err := NewClientAssertionCredential(tenantID, clientID, a.getAssertion, &caco)
+ if err != nil {
+ return nil, err
+ }
+ cred.client.name = credNameAzurePipelines
+ a.cred = cred
+ return &a, nil
+}
+
+// GetToken requests an access token from Microsoft Entra ID. Azure SDK clients call this method automatically.
+func (a *azurePipelinesCredential) GetToken(ctx context.Context, opts policy.TokenRequestOptions) (azcore.AccessToken, error) {
+ var err error
+ ctx, endSpan := runtime.StartSpan(ctx, credNameAzurePipelines+"."+traceOpGetToken, a.cred.client.azClient.Tracer(), nil)
+ defer func() { endSpan(err) }()
+ tk, err := a.cred.GetToken(ctx, opts)
+ return tk, err
+}
+
+func (a *azurePipelinesCredential) getAssertion(ctx context.Context) (string, error) {
+ url := a.oidcURI + "?api-version=" + oidcAPIVersion + "&serviceConnectionId=" + a.connectionID
+ url, err := runtime.EncodeQueryParams(url)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameAzurePipelines, "couldn't encode OIDC URL: "+err.Error(), nil, nil)
+ }
+ req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, nil)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameAzurePipelines, "couldn't create OIDC token request: "+err.Error(), nil, nil)
+ }
+ req.Header.Set("Authorization", "Bearer "+a.systemAccessToken)
+ res, err := doForClient(a.cred.client.azClient, req)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameAzurePipelines, "couldn't send OIDC token request: "+err.Error(), nil, nil)
+ }
+ if res.StatusCode != http.StatusOK {
+ msg := res.Status + " response from the OIDC endpoint. Check service connection ID and Pipeline configuration"
+ // include the response because its body, if any, probably contains an error message.
+ // OK responses aren't included with errors because they probably contain secrets
+ return "", newAuthenticationFailedError(credNameAzurePipelines, msg, res, nil)
+ }
+ b, err := runtime.Payload(res)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameAzurePipelines, "couldn't read OIDC response content: "+err.Error(), nil, nil)
+ }
+ var r struct {
+ OIDCToken string `json:"oidcToken"`
+ }
+ err = json.Unmarshal(b, &r)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameAzurePipelines, "unexpected response from OIDC endpoint", nil, nil)
+ }
+ return r.OIDCToken, nil
+}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/chained_token_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/chained_token_credential.go
index dc855edf7..6c35a941b 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/chained_token_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/chained_token_credential.go
@@ -86,7 +86,7 @@ func (c *ChainedTokenCredential) GetToken(ctx context.Context, opts policy.Token
errs []error
successfulCredential azcore.TokenCredential
token azcore.AccessToken
- unavailableErr *credentialUnavailableError
+ unavailableErr credentialUnavailable
)
for _, cred := range c.sources {
token, err = cred.GetToken(ctx, opts)
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/ci.yml b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/ci.yml
index d077682c5..4cd8c5144 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/ci.yml
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/ci.yml
@@ -8,7 +8,7 @@ trigger:
- release/*
paths:
include:
- - sdk/azidentity/
+ - sdk/azidentity/
pr:
branches:
@@ -19,17 +19,28 @@ pr:
- release/*
paths:
include:
- - sdk/azidentity/
+ - sdk/azidentity/
-stages:
-- template: /eng/pipelines/templates/jobs/archetype-sdk-client.yml
- parameters:
- RunLiveTests: true
- UsePipelineProxy: false
- ServiceDirectory: 'azidentity'
- CloudConfig:
- Public:
- SubscriptionConfigurations:
- - $(sub-config-azure-cloud-test-resources)
- # Contains alternate tenant, AAD app and cert info for testing
- - $(sub-config-identity-test-resources)
+extends:
+ template: /eng/pipelines/templates/jobs/archetype-sdk-client.yml
+ parameters:
+ CloudConfig:
+ Public:
+ SubscriptionConfigurations:
+ - $(sub-config-azure-cloud-test-resources)
+ - $(sub-config-identity-test-resources)
+ EnvVars:
+ SYSTEM_ACCESSTOKEN: $(System.AccessToken)
+ RunLiveTests: true
+ ServiceDirectory: azidentity
+ UsePipelineProxy: false
+
+ ${{ if endsWith(variables['Build.DefinitionName'], 'weekly') }}:
+ MatrixConfigs:
+ - Name: managed_identity_matrix
+ GenerateVMJobs: true
+ Path: sdk/azidentity/managed-identity-matrix.json
+ Selection: sparse
+ MatrixReplace:
+ - Pool=.*LINUXPOOL.*/azsdk-pool-mms-ubuntu-2204-identitymsi
+ - OSVmImage=.*LINUXNEXTVMIMAGE.*/azsdk-pool-mms-ubuntu-2204-1espt
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_assertion_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_assertion_credential.go
index fc3df68eb..b588750ef 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_assertion_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_assertion_credential.go
@@ -23,7 +23,7 @@ const credNameAssertion = "ClientAssertionCredential"
// the most common assertion scenario, authenticating a service principal with a certificate. See
// [Microsoft Entra ID documentation] for details of the assertion format.
//
-// [Microsoft Entra ID documentation]: https://learn.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#assertion-format
+// [Microsoft Entra ID documentation]: https://learn.microsoft.com/entra/identity-platform/certificate-credentials#assertion-format
type ClientAssertionCredential struct {
client *confidentialClient
}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_certificate_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_certificate_credential.go
index 607533f48..80cd96b56 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_certificate_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/client_certificate_credential.go
@@ -51,7 +51,8 @@ type ClientCertificateCredential struct {
client *confidentialClient
}
-// NewClientCertificateCredential constructs a ClientCertificateCredential. Pass nil for options to accept defaults.
+// NewClientCertificateCredential constructs a ClientCertificateCredential. Pass nil for options to accept defaults. See
+// [ParseCertificates] for help loading a certificate.
func NewClientCertificateCredential(tenantID string, clientID string, certs []*x509.Certificate, key crypto.PrivateKey, options *ClientCertificateCredentialOptions) (*ClientCertificateCredential, error) {
if len(certs) == 0 {
return nil, errors.New("at least one certificate is required")
@@ -86,8 +87,10 @@ func (c *ClientCertificateCredential) GetToken(ctx context.Context, opts policy.
return tk, err
}
-// ParseCertificates loads certificates and a private key, in PEM or PKCS12 format, for use with NewClientCertificateCredential.
-// Pass nil for password if the private key isn't encrypted. This function can't decrypt keys in PEM format.
+// ParseCertificates loads certificates and a private key, in PEM or PKCS#12 format, for use with [NewClientCertificateCredential].
+// Pass nil for password if the private key isn't encrypted. This function has limitations, for example it can't decrypt keys in
+// PEM format or PKCS#12 certificates that use SHA256 for message authentication. If you encounter such limitations, consider
+// using another module to load the certificate and private key.
func ParseCertificates(certData []byte, password []byte) ([]*x509.Certificate, crypto.PrivateKey, error) {
var blocks []*pem.Block
var err error
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/confidential_client.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/confidential_client.go
index 854267bdb..3bd08c685 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/confidential_client.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/confidential_client.go
@@ -91,7 +91,7 @@ func (c *confidentialClient) GetToken(ctx context.Context, tro policy.TokenReque
}
tro.TenantID = tenant
}
- client, mu, err := c.client(ctx, tro)
+ client, mu, err := c.client(tro)
if err != nil {
return azcore.AccessToken{}, err
}
@@ -109,7 +109,7 @@ func (c *confidentialClient) GetToken(ctx context.Context, tro policy.TokenReque
if err != nil {
// We could get a credentialUnavailableError from managed identity authentication because in that case the error comes from our code.
// We return it directly because it affects the behavior of credential chains. Otherwise, we return AuthenticationFailedError.
- var unavailableErr *credentialUnavailableError
+ var unavailableErr credentialUnavailable
if !errors.As(err, &unavailableErr) {
res := getResponseFromError(err)
err = newAuthenticationFailedError(c.name, err.Error(), res, err)
@@ -121,7 +121,7 @@ func (c *confidentialClient) GetToken(ctx context.Context, tro policy.TokenReque
return azcore.AccessToken{Token: ar.AccessToken, ExpiresOn: ar.ExpiresOn.UTC()}, err
}
-func (c *confidentialClient) client(ctx context.Context, tro policy.TokenRequestOptions) (msalConfidentialClient, *sync.Mutex, error) {
+func (c *confidentialClient) client(tro policy.TokenRequestOptions) (msalConfidentialClient, *sync.Mutex, error) {
c.clientMu.Lock()
defer c.clientMu.Unlock()
if tro.EnableCAE {
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/default_azure_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/default_azure_credential.go
index 35aeef867..551d31994 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/default_azure_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/default_azure_credential.go
@@ -8,10 +8,8 @@ package azidentity
import (
"context"
- "errors"
"os"
"strings"
- "time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
@@ -98,13 +96,13 @@ func NewDefaultAzureCredential(options *DefaultAzureCredentialOptions) (*Default
creds = append(creds, &defaultCredentialErrorReporter{credType: credNameWorkloadIdentity, err: err})
}
- o := &ManagedIdentityCredentialOptions{ClientOptions: options.ClientOptions}
+ o := &ManagedIdentityCredentialOptions{ClientOptions: options.ClientOptions, dac: true}
if ID, ok := os.LookupEnv(azureClientID); ok {
o.ID = ClientID(ID)
}
miCred, err := NewManagedIdentityCredential(o)
if err == nil {
- creds = append(creds, &timeoutWrapper{mic: miCred, timeout: time.Second})
+ creds = append(creds, miCred)
} else {
errorMessages = append(errorMessages, credNameManagedIdentity+": "+err.Error())
creds = append(creds, &defaultCredentialErrorReporter{credType: credNameManagedIdentity, err: err})
@@ -158,51 +156,10 @@ type defaultCredentialErrorReporter struct {
}
func (d *defaultCredentialErrorReporter) GetToken(ctx context.Context, opts policy.TokenRequestOptions) (azcore.AccessToken, error) {
- if _, ok := d.err.(*credentialUnavailableError); ok {
+ if _, ok := d.err.(credentialUnavailable); ok {
return azcore.AccessToken{}, d.err
}
return azcore.AccessToken{}, newCredentialUnavailableError(d.credType, d.err.Error())
}
var _ azcore.TokenCredential = (*defaultCredentialErrorReporter)(nil)
-
-// timeoutWrapper prevents a potentially very long timeout when managed identity isn't available
-type timeoutWrapper struct {
- mic *ManagedIdentityCredential
- // timeout applies to all auth attempts until one doesn't time out
- timeout time.Duration
-}
-
-// GetToken wraps DefaultAzureCredential's initial managed identity auth attempt with a short timeout
-// because managed identity may not be available and connecting to IMDS can take several minutes to time out.
-func (w *timeoutWrapper) GetToken(ctx context.Context, opts policy.TokenRequestOptions) (azcore.AccessToken, error) {
- var tk azcore.AccessToken
- var err error
- // no need to synchronize around this value because it's written only within ChainedTokenCredential's critical section
- if w.timeout > 0 {
- c, cancel := context.WithTimeout(ctx, w.timeout)
- defer cancel()
- tk, err = w.mic.GetToken(c, opts)
- if isAuthFailedDueToContext(err) {
- err = newCredentialUnavailableError(credNameManagedIdentity, "managed identity timed out. See https://aka.ms/azsdk/go/identity/troubleshoot#dac for more information")
- } else {
- // some managed identity implementation is available, so don't apply the timeout to future calls
- w.timeout = 0
- }
- } else {
- tk, err = w.mic.GetToken(ctx, opts)
- }
- return tk, err
-}
-
-// unwraps nested AuthenticationFailedErrors to get the root error
-func isAuthFailedDueToContext(err error) bool {
- for {
- var authFailedErr *AuthenticationFailedError
- if !errors.As(err, &authFailedErr) {
- break
- }
- err = authFailedErr.err
- }
- return errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded)
-}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/developer_credential_util.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/developer_credential_util.go
index d8b952f53..be963d3a2 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/developer_credential_util.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/developer_credential_util.go
@@ -19,7 +19,7 @@ const cliTimeout = 10 * time.Second
// the next credential in its chain (another developer credential).
func unavailableIfInChain(err error, inDefaultChain bool) error {
if err != nil && inDefaultChain {
- var unavailableErr *credentialUnavailableError
+ var unavailableErr credentialUnavailable
if !errors.As(err, &unavailableErr) {
err = newCredentialUnavailableError(credNameAzureDeveloperCLI, err.Error())
}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/device_code_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/device_code_credential.go
index 1b7a28370..cd30bedd5 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/device_code_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/device_code_credential.go
@@ -34,8 +34,8 @@ type DeviceCodeCredentialOptions struct {
ClientID string
// disableAutomaticAuthentication prevents the credential from automatically prompting the user to authenticate.
- // When this option is true, [DeviceCodeCredential.GetToken] will return [ErrAuthenticationRequired] when user
- // interaction is necessary to acquire a token.
+ // When this option is true, GetToken will return authenticationRequiredError when user interaction is necessary
+ // to acquire a token.
disableAutomaticAuthentication bool
// DisableInstanceDiscovery should be set true only by applications authenticating in disconnected clouds, or
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/environment_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/environment_credential.go
index 42f84875e..b30f5474f 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/environment_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/environment_credential.go
@@ -57,6 +57,9 @@ type EnvironmentCredentialOptions struct {
//
// AZURE_CLIENT_CERTIFICATE_PASSWORD: (optional) password for the certificate file.
//
+// Note that this credential uses [ParseCertificates] to load the certificate and key from the file. If this
+// function isn't able to parse your certificate, use [ClientCertificateCredential] instead.
+//
// # User with username and password
//
// AZURE_TENANT_ID: (optional) tenant to authenticate in. Defaults to "organizations".
@@ -121,7 +124,7 @@ func NewEnvironmentCredential(options *EnvironmentCredentialOptions) (*Environme
}
certs, key, err := ParseCertificates(certData, password)
if err != nil {
- return nil, fmt.Errorf(`failed to load certificate from "%s": %v`, certPath, err)
+ return nil, fmt.Errorf("failed to parse %q due to error %q. This may be due to a limitation of this module's certificate loader. Consider calling NewClientCertificateCredential instead", certPath, err.Error())
}
o := &ClientCertificateCredentialOptions{
AdditionallyAllowedTenants: additionalTenants,
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/errors.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/errors.go
index 335d2b7dc..698650bbb 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/errors.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/errors.go
@@ -13,15 +13,12 @@ import (
"fmt"
"net/http"
+ "github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
"github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo"
msal "github.com/AzureAD/microsoft-authentication-library-for-go/apps/errors"
)
-// errAuthenticationRequired indicates a credential's Authenticate method must be called to acquire a token
-// because user interaction is required and the credential is configured not to automatically prompt the user.
-var errAuthenticationRequired error = &credentialUnavailableError{"can't acquire a token without user interaction. Call Authenticate to interactively authenticate a user"}
-
// getResponseFromError retrieves the response carried by
// an AuthenticationFailedError or MSAL CallErr, if any
func getResponseFromError(err error) *http.Response {
@@ -56,7 +53,7 @@ func (e *AuthenticationFailedError) Error() string {
return e.credType + ": " + e.message
}
msg := &bytes.Buffer{}
- fmt.Fprintf(msg, e.credType+" authentication failed\n")
+ fmt.Fprintf(msg, "%s authentication failed. %s\n", e.credType, e.message)
if e.RawResponse.Request != nil {
fmt.Fprintf(msg, "%s %s://%s%s\n", e.RawResponse.Request.Method, e.RawResponse.Request.URL.Scheme, e.RawResponse.Request.URL.Host, e.RawResponse.Request.URL.Path)
} else {
@@ -110,8 +107,34 @@ func (*AuthenticationFailedError) NonRetriable() {
var _ errorinfo.NonRetriable = (*AuthenticationFailedError)(nil)
-// credentialUnavailableError indicates a credential can't attempt authentication because it lacks required
-// data or state
+// authenticationRequiredError indicates a credential's Authenticate method must be called to acquire a token
+// because the credential requires user interaction and is configured not to request it automatically.
+type authenticationRequiredError struct {
+ credentialUnavailableError
+
+ // TokenRequestOptions for the required token. Pass this to the credential's Authenticate method.
+ TokenRequestOptions policy.TokenRequestOptions
+}
+
+func newauthenticationRequiredError(credType string, tro policy.TokenRequestOptions) error {
+ return &authenticationRequiredError{
+ credentialUnavailableError: credentialUnavailableError{
+ credType + " can't acquire a token without user interaction. Call Authenticate to authenticate a user interactively",
+ },
+ TokenRequestOptions: tro,
+ }
+}
+
+var (
+ _ credentialUnavailable = (*authenticationRequiredError)(nil)
+ _ errorinfo.NonRetriable = (*authenticationRequiredError)(nil)
+)
+
+type credentialUnavailable interface {
+ error
+ credentialUnavailable()
+}
+
type credentialUnavailableError struct {
message string
}
@@ -135,6 +158,11 @@ func (e *credentialUnavailableError) Error() string {
}
// NonRetriable is a marker method indicating this error should not be retried. It has no implementation.
-func (e *credentialUnavailableError) NonRetriable() {}
+func (*credentialUnavailableError) NonRetriable() {}
+
+func (*credentialUnavailableError) credentialUnavailable() {}
-var _ errorinfo.NonRetriable = (*credentialUnavailableError)(nil)
+var (
+ _ credentialUnavailable = (*credentialUnavailableError)(nil)
+ _ errorinfo.NonRetriable = (*credentialUnavailableError)(nil)
+)
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work.sum b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work.sum
index 65bcba7df..c592f283b 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work.sum
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work.sum
@@ -3,12 +3,20 @@ github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0-beta.1/go.mod h1:3Ug6Qzto9an
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0 h1:fb8kj/Dh4CSwgsOzHeZY4Xh68cFVbzXx+ONXGMY//4w=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0/go.mod h1:uReU2sSxZExRPBAg3qKzmAucSi51+SP1OhohieR821Q=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM=
+github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2/go.mod h1:yInRyqWXAuaPrgI7p70+lDDgh3mlBohis29jGMISnmc=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
+github.com/keybase/dbus v0.0.0-20220506165403-5aa21ea2c23a/go.mod h1:YPNKjjE7Ubp9dTbnWvsP3HT+hYnY6TfXzubYTBeUxc8=
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
+github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow=
+github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
+github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
+github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
@@ -16,14 +24,19 @@ github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
+github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc=
golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
+golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
+golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
+golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
+golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@@ -35,7 +48,13 @@ golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=
golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U=
golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0=
golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
+golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk=
+golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
+golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0=
golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
+golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
+golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
+gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/interactive_browser_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/interactive_browser_credential.go
index bd8296983..056785a8a 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/interactive_browser_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/interactive_browser_credential.go
@@ -33,8 +33,8 @@ type InteractiveBrowserCredentialOptions struct {
ClientID string
// disableAutomaticAuthentication prevents the credential from automatically prompting the user to authenticate.
- // When this option is true, [InteractiveBrowserCredential.GetToken] will return [ErrAuthenticationRequired] when
- // user interaction is necessary to acquire a token.
+ // When this option is true, GetToken will return authenticationRequiredError when user interaction is necessary
+ // to acquire a token.
disableAutomaticAuthentication bool
// DisableInstanceDiscovery should be set true only by applications authenticating in disconnected clouds, or
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed-identity-matrix.json b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed-identity-matrix.json
new file mode 100644
index 000000000..1c3791777
--- /dev/null
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed-identity-matrix.json
@@ -0,0 +1,17 @@
+{
+ "include": [
+ {
+ "Agent": {
+ "msi_image": {
+ "ArmTemplateParameters": "@{deployResources = $true}",
+ "OSVmImage": "env:LINUXNEXTVMIMAGE",
+ "Pool": "env:LINUXPOOL"
+ }
+ },
+ "GoVersion": [
+ "1.22.1"
+ ],
+ "IDENTITY_IMDS_AVAILABLE": "1"
+ }
+ ]
+}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_client.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_client.go
index d129a1e91..6122cc700 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_client.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_client.go
@@ -14,13 +14,15 @@ import (
"net/http"
"net/url"
"os"
+ "path/filepath"
+ "runtime"
"strconv"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
- "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
+ azruntime "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming"
"github.com/Azure/azure-sdk-for-go/sdk/internal/log"
"github.com/AzureAD/microsoft-authentication-library-for-go/apps/confidential"
@@ -44,6 +46,8 @@ const (
serviceFabricAPIVersion = "2019-07-01-preview"
)
+var imdsProbeTimeout = time.Second
+
type msiType int
const (
@@ -55,13 +59,28 @@ const (
msiTypeServiceFabric
)
-// managedIdentityClient provides the base for authenticating in managed identity environments
-// This type includes an runtime.Pipeline and TokenCredentialOptions.
type managedIdentityClient struct {
- azClient *azcore.Client
- msiType msiType
- endpoint string
- id ManagedIDKind
+ azClient *azcore.Client
+ endpoint string
+ id ManagedIDKind
+ msiType msiType
+ probeIMDS bool
+}
+
+// arcKeyDirectory returns the directory expected to contain Azure Arc keys
+var arcKeyDirectory = func() (string, error) {
+ switch runtime.GOOS {
+ case "linux":
+ return "/var/opt/azcmagent/tokens", nil
+ case "windows":
+ pd := os.Getenv("ProgramData")
+ if pd == "" {
+ return "", errors.New("environment variable ProgramData has no value")
+ }
+ return filepath.Join(pd, "AzureConnectedMachineAgent", "Tokens"), nil
+ default:
+ return "", fmt.Errorf("unsupported OS %q", runtime.GOOS)
+ }
}
type wrappedNumber json.Number
@@ -88,7 +107,7 @@ func setIMDSRetryOptionDefaults(o *policy.RetryOptions) {
if o.StatusCodes == nil {
o.StatusCodes = []int{
// IMDS docs recommend retrying 404, 410, 429 and 5xx
- // https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token#error-handling
+ // https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/how-to-use-vm-token#error-handling
http.StatusNotFound, // 404
http.StatusGone, // 410
http.StatusTooManyRequests, // 429
@@ -147,11 +166,12 @@ func newManagedIdentityClient(options *ManagedIdentityCredentialOptions) (*manag
c.msiType = msiTypeCloudShell
}
} else {
+ c.probeIMDS = options.dac
setIMDSRetryOptionDefaults(&cp.Retry)
}
- client, err := azcore.NewClient(module, version, runtime.PipelineOptions{
- Tracing: runtime.TracingOptions{
+ client, err := azcore.NewClient(module, version, azruntime.PipelineOptions{
+ Tracing: azruntime.TracingOptions{
Namespace: traceNamespace,
},
}, &cp)
@@ -180,6 +200,27 @@ func (c *managedIdentityClient) provideToken(ctx context.Context, params confide
// authenticate acquires an access token
func (c *managedIdentityClient) authenticate(ctx context.Context, id ManagedIDKind, scopes []string) (azcore.AccessToken, error) {
+ // no need to synchronize around this value because it's true only when DefaultAzureCredential constructed the client,
+ // and in that case ChainedTokenCredential.GetToken synchronizes goroutines that would execute this block
+ if c.probeIMDS {
+ cx, cancel := context.WithTimeout(ctx, imdsProbeTimeout)
+ defer cancel()
+ cx = policy.WithRetryOptions(cx, policy.RetryOptions{MaxRetries: -1})
+ req, err := azruntime.NewRequest(cx, http.MethodGet, c.endpoint)
+ if err == nil {
+ _, err = c.azClient.Pipeline().Do(req)
+ }
+ if err != nil {
+ msg := err.Error()
+ if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
+ msg = "managed identity timed out. See https://aka.ms/azsdk/go/identity/troubleshoot#dac for more information"
+ }
+ return azcore.AccessToken{}, newCredentialUnavailableError(credNameManagedIdentity, msg)
+ }
+ // send normal token requests from now on because something responded
+ c.probeIMDS = false
+ }
+
msg, err := c.createAuthRequest(ctx, id, scopes)
if err != nil {
return azcore.AccessToken{}, err
@@ -190,7 +231,7 @@ func (c *managedIdentityClient) authenticate(ctx context.Context, id ManagedIDKi
return azcore.AccessToken{}, newAuthenticationFailedError(credNameManagedIdentity, err.Error(), nil, err)
}
- if runtime.HasStatusCode(resp, http.StatusOK, http.StatusCreated) {
+ if azruntime.HasStatusCode(resp, http.StatusOK, http.StatusCreated) {
return c.createAccessToken(resp)
}
@@ -201,15 +242,15 @@ func (c *managedIdentityClient) authenticate(ctx context.Context, id ManagedIDKi
return azcore.AccessToken{}, newAuthenticationFailedError(credNameManagedIdentity, "the requested identity isn't assigned to this resource", resp, nil)
}
msg := "failed to authenticate a system assigned identity"
- if body, err := runtime.Payload(resp); err == nil && len(body) > 0 {
+ if body, err := azruntime.Payload(resp); err == nil && len(body) > 0 {
msg += fmt.Sprintf(". The endpoint responded with %s", body)
}
return azcore.AccessToken{}, newCredentialUnavailableError(credNameManagedIdentity, msg)
case http.StatusForbidden:
// Docker Desktop runs a proxy that responds 403 to IMDS token requests. If we get that response,
// we return credentialUnavailableError so credential chains continue to their next credential
- body, err := runtime.Payload(resp)
- if err == nil && strings.Contains(string(body), "A socket operation was attempted to an unreachable network") {
+ body, err := azruntime.Payload(resp)
+ if err == nil && strings.Contains(string(body), "unreachable") {
return azcore.AccessToken{}, newCredentialUnavailableError(credNameManagedIdentity, fmt.Sprintf("unexpected response %q", string(body)))
}
}
@@ -226,7 +267,7 @@ func (c *managedIdentityClient) createAccessToken(res *http.Response) (azcore.Ac
ExpiresIn wrappedNumber `json:"expires_in,omitempty"` // this field should always return the number of seconds for which a token is valid
ExpiresOn interface{} `json:"expires_on,omitempty"` // the value returned in this field varies between a number and a date string
}{}
- if err := runtime.UnmarshalAsJSON(res, &value); err != nil {
+ if err := azruntime.UnmarshalAsJSON(res, &value); err != nil {
return azcore.AccessToken{}, fmt.Errorf("internal AccessToken: %v", err)
}
if value.ExpiresIn != "" {
@@ -276,7 +317,7 @@ func (c *managedIdentityClient) createAuthRequest(ctx context.Context, id Manage
}
func (c *managedIdentityClient) createIMDSAuthRequest(ctx context.Context, id ManagedIDKind, scopes []string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return nil, err
}
@@ -296,7 +337,7 @@ func (c *managedIdentityClient) createIMDSAuthRequest(ctx context.Context, id Ma
}
func (c *managedIdentityClient) createAppServiceAuthRequest(ctx context.Context, id ManagedIDKind, scopes []string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return nil, err
}
@@ -316,7 +357,7 @@ func (c *managedIdentityClient) createAppServiceAuthRequest(ctx context.Context,
}
func (c *managedIdentityClient) createAzureMLAuthRequest(ctx context.Context, id ManagedIDKind, scopes []string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return nil, err
}
@@ -339,7 +380,7 @@ func (c *managedIdentityClient) createAzureMLAuthRequest(ctx context.Context, id
}
func (c *managedIdentityClient) createServiceFabricAuthRequest(ctx context.Context, id ManagedIDKind, scopes []string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return nil, err
}
@@ -362,7 +403,7 @@ func (c *managedIdentityClient) createServiceFabricAuthRequest(ctx context.Conte
func (c *managedIdentityClient) getAzureArcSecretKey(ctx context.Context, resources []string) (string, error) {
// create the request to retreive the secret key challenge provided by the HIMDS service
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return "", err
}
@@ -384,22 +425,36 @@ func (c *managedIdentityClient) getAzureArcSecretKey(ctx context.Context, resour
}
header := response.Header.Get("WWW-Authenticate")
if len(header) == 0 {
- return "", errors.New("did not receive a value from WWW-Authenticate header")
+ return "", newAuthenticationFailedError(credNameManagedIdentity, "HIMDS response has no WWW-Authenticate header", nil, nil)
}
// the WWW-Authenticate header is expected in the following format: Basic realm=/some/file/path.key
- pos := strings.LastIndex(header, "=")
- if pos == -1 {
- return "", fmt.Errorf("did not receive a correct value from WWW-Authenticate header: %s", header)
+ _, p, found := strings.Cut(header, "=")
+ if !found {
+ return "", newAuthenticationFailedError(credNameManagedIdentity, "unexpected WWW-Authenticate header from HIMDS: "+header, nil, nil)
+ }
+ expected, err := arcKeyDirectory()
+ if err != nil {
+ return "", err
+ }
+ if filepath.Dir(p) != expected || !strings.HasSuffix(p, ".key") {
+ return "", newAuthenticationFailedError(credNameManagedIdentity, "unexpected file path from HIMDS service: "+p, nil, nil)
+ }
+ f, err := os.Stat(p)
+ if err != nil {
+ return "", newAuthenticationFailedError(credNameManagedIdentity, fmt.Sprintf("could not stat %q: %v", p, err), nil, nil)
+ }
+ if s := f.Size(); s > 4096 {
+ return "", newAuthenticationFailedError(credNameManagedIdentity, fmt.Sprintf("key is too large (%d bytes)", s), nil, nil)
}
- key, err := os.ReadFile(header[pos+1:])
+ key, err := os.ReadFile(p)
if err != nil {
- return "", fmt.Errorf("could not read file (%s) contents: %v", header[pos+1:], err)
+ return "", newAuthenticationFailedError(credNameManagedIdentity, fmt.Sprintf("could not read %q: %v", p, err), nil, nil)
}
return string(key), nil
}
func (c *managedIdentityClient) createAzureArcAuthRequest(ctx context.Context, id ManagedIDKind, resources []string, key string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodGet, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodGet, c.endpoint)
if err != nil {
return nil, err
}
@@ -421,7 +476,7 @@ func (c *managedIdentityClient) createAzureArcAuthRequest(ctx context.Context, i
}
func (c *managedIdentityClient) createCloudShellAuthRequest(ctx context.Context, id ManagedIDKind, scopes []string) (*policy.Request, error) {
- request, err := runtime.NewRequest(ctx, http.MethodPost, c.endpoint)
+ request, err := azruntime.NewRequest(ctx, http.MethodPost, c.endpoint)
if err != nil {
return nil, err
}
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_credential.go
index dcd278bef..13c043d8e 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/managed_identity_credential.go
@@ -64,12 +64,19 @@ type ManagedIdentityCredentialOptions struct {
// instead of the hosting environment's default. The value may be the identity's client ID or resource ID, but note that
// some platforms don't accept resource IDs.
ID ManagedIDKind
+
+ // dac indicates whether the credential is part of DefaultAzureCredential. When true, and the environment doesn't have
+ // configuration for a specific managed identity API, the credential tries to determine whether IMDS is available before
+ // sending its first token request. It does this by sending a malformed request with a short timeout. Any response to that
+ // request is taken to mean IMDS is available, in which case the credential will send ordinary token requests thereafter
+ // with no special timeout. The purpose of this behavior is to prevent a very long timeout when IMDS isn't available.
+ dac bool
}
// ManagedIdentityCredential authenticates an Azure managed identity in any hosting environment supporting managed identities.
// This credential authenticates a system-assigned identity by default. Use ManagedIdentityCredentialOptions.ID to specify a
// user-assigned identity. See Microsoft Entra ID documentation for more information about managed identities:
-// https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview
+// https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/overview
type ManagedIdentityCredential struct {
client *confidentialClient
mic *managedIdentityClient
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/on_behalf_of_credential.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/on_behalf_of_credential.go
index 5e67cf021..9dcc82f01 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/on_behalf_of_credential.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/on_behalf_of_credential.go
@@ -10,6 +10,7 @@ import (
"context"
"crypto"
"crypto/x509"
+ "errors"
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
@@ -24,7 +25,7 @@ const credNameOBO = "OnBehalfOfCredential"
// is not an interactive authentication flow, an application using it must have admin consent for any delegated
// permissions before requesting tokens for them. See [Microsoft Entra ID documentation] for more details.
//
-// [Microsoft Entra ID documentation]: https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow
+// [Microsoft Entra ID documentation]: https://learn.microsoft.com/entra/identity-platform/v2-oauth2-on-behalf-of-flow
type OnBehalfOfCredential struct {
client *confidentialClient
}
@@ -60,6 +61,19 @@ func NewOnBehalfOfCredentialWithCertificate(tenantID, clientID, userAssertion st
return newOnBehalfOfCredential(tenantID, clientID, userAssertion, cred, options)
}
+// NewOnBehalfOfCredentialWithClientAssertions constructs an OnBehalfOfCredential that authenticates with client assertions.
+// userAssertion is the user's access token for the application. The getAssertion function should return client assertions
+// that authenticate the application to Microsoft Entra ID, such as federated credentials.
+func NewOnBehalfOfCredentialWithClientAssertions(tenantID, clientID, userAssertion string, getAssertion func(context.Context) (string, error), options *OnBehalfOfCredentialOptions) (*OnBehalfOfCredential, error) {
+ if getAssertion == nil {
+ return nil, errors.New("getAssertion can't be nil. It must be a function that returns client assertions")
+ }
+ cred := confidential.NewCredFromAssertionCallback(func(ctx context.Context, _ confidential.AssertionRequestOptions) (string, error) {
+ return getAssertion(ctx)
+ })
+ return newOnBehalfOfCredential(tenantID, clientID, userAssertion, cred, options)
+}
+
// NewOnBehalfOfCredentialWithSecret constructs an OnBehalfOfCredential that authenticates with a client secret.
func NewOnBehalfOfCredentialWithSecret(tenantID, clientID, userAssertion, clientSecret string, options *OnBehalfOfCredentialOptions) (*OnBehalfOfCredential, error) {
cred, err := confidential.NewCredFromSecret(clientSecret)
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/public_client.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/public_client.go
index 63c31190d..b3d22dbf3 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/public_client.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/public_client.go
@@ -152,7 +152,7 @@ func (p *publicClient) GetToken(ctx context.Context, tro policy.TokenRequestOpti
return p.token(ar, err)
}
if p.opts.DisableAutomaticAuthentication {
- return azcore.AccessToken{}, errAuthenticationRequired
+ return azcore.AccessToken{}, newauthenticationRequiredError(p.name, tro)
}
at, err := p.reqToken(ctx, client, tro)
if err == nil {
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-post.ps1 b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-post.ps1
new file mode 100644
index 000000000..a69bbce34
--- /dev/null
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-post.ps1
@@ -0,0 +1,112 @@
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License.
+
+# IMPORTANT: Do not invoke this file directly. Please instead run eng/common/TestResources/New-TestResources.ps1 from the repository root.
+
+param (
+ [hashtable] $AdditionalParameters = @{},
+ [hashtable] $DeploymentOutputs
+)
+
+$ErrorActionPreference = 'Stop'
+$PSNativeCommandUseErrorActionPreference = $true
+
+if ($CI) {
+ if (!$AdditionalParameters['deployResources']) {
+ Write-Host "Skipping post-provisioning script because resources weren't deployed"
+ return
+ }
+ az login --service-principal -u $DeploymentOutputs['AZIDENTITY_CLIENT_ID'] -p $DeploymentOutputs['AZIDENTITY_CLIENT_SECRET'] --tenant $DeploymentOutputs['AZIDENTITY_TENANT_ID']
+ az account set --subscription $DeploymentOutputs['AZIDENTITY_SUBSCRIPTION_ID']
+}
+
+Write-Host "Building container"
+$image = "$($DeploymentOutputs['AZIDENTITY_ACR_LOGIN_SERVER'])/azidentity-managed-id-test"
+Set-Content -Path "$PSScriptRoot/Dockerfile" -Value @"
+FROM mcr.microsoft.com/oss/go/microsoft/golang:latest as builder
+ENV GOARCH=amd64 GOWORK=off
+COPY . /azidentity
+WORKDIR /azidentity/testdata/managed-id-test
+RUN go mod tidy
+RUN go build -o /build/managed-id-test .
+RUN GOOS=windows go build -o /build/managed-id-test.exe .
+
+FROM mcr.microsoft.com/mirror/docker/library/alpine:3.16
+RUN apk add gcompat
+COPY --from=builder /build/* .
+RUN chmod +x managed-id-test
+CMD ["./managed-id-test"]
+"@
+# build from sdk/azidentity because we need that dir in the context (because the test app uses local azidentity)
+docker build -t $image "$PSScriptRoot"
+az acr login -n $DeploymentOutputs['AZIDENTITY_ACR_NAME']
+docker push $image
+
+$rg = $DeploymentOutputs['AZIDENTITY_RESOURCE_GROUP']
+
+# ACI is easier to provision here than in the bicep file because the image isn't available before now
+Write-Host "Deploying Azure Container Instance"
+$aciName = "azidentity-test"
+az container create -g $rg -n $aciName --image $image `
+ --acr-identity $($DeploymentOutputs['AZIDENTITY_USER_ASSIGNED_IDENTITY']) `
+ --assign-identity [system] $($DeploymentOutputs['AZIDENTITY_USER_ASSIGNED_IDENTITY']) `
+ --role "Storage Blob Data Reader" `
+ --scope $($DeploymentOutputs['AZIDENTITY_STORAGE_ID']) `
+ -e AZIDENTITY_STORAGE_NAME=$($DeploymentOutputs['AZIDENTITY_STORAGE_NAME']) `
+ AZIDENTITY_STORAGE_NAME_USER_ASSIGNED=$($DeploymentOutputs['AZIDENTITY_STORAGE_NAME_USER_ASSIGNED']) `
+ AZIDENTITY_USER_ASSIGNED_IDENTITY=$($DeploymentOutputs['AZIDENTITY_USER_ASSIGNED_IDENTITY']) `
+ FUNCTIONS_CUSTOMHANDLER_PORT=80
+Write-Host "##vso[task.setvariable variable=AZIDENTITY_ACI_NAME;]$aciName"
+
+# Azure Functions deployment: copy the Windows binary from the Docker image, deploy it in a zip
+Write-Host "Deploying to Azure Functions"
+$container = docker create $image
+docker cp ${container}:managed-id-test.exe "$PSScriptRoot/testdata/managed-id-test/"
+docker rm -v $container
+Compress-Archive -Path "$PSScriptRoot/testdata/managed-id-test/*" -DestinationPath func.zip -Force
+az functionapp deploy -g $rg -n $DeploymentOutputs['AZIDENTITY_FUNCTION_NAME'] --src-path func.zip --type zip
+
+Write-Host "Creating federated identity"
+$aksName = $DeploymentOutputs['AZIDENTITY_AKS_NAME']
+$idName = $DeploymentOutputs['AZIDENTITY_USER_ASSIGNED_IDENTITY_NAME']
+$issuer = az aks show -g $rg -n $aksName --query "oidcIssuerProfile.issuerUrl" -otsv
+$podName = "azidentity-test"
+$serviceAccountName = "workload-identity-sa"
+az identity federated-credential create -g $rg --identity-name $idName --issuer $issuer --name $idName --subject system:serviceaccount:default:$serviceAccountName
+Write-Host "Deploying to AKS"
+az aks get-credentials -g $rg -n $aksName
+az aks update --attach-acr $DeploymentOutputs['AZIDENTITY_ACR_NAME'] -g $rg -n $aksName
+Set-Content -Path "$PSScriptRoot/k8s.yaml" -Value @"
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+ annotations:
+ azure.workload.identity/client-id: $($DeploymentOutputs['AZIDENTITY_USER_ASSIGNED_IDENTITY_CLIENT_ID'])
+ name: $serviceAccountName
+ namespace: default
+---
+apiVersion: v1
+kind: Pod
+metadata:
+ name: $podName
+ namespace: default
+ labels:
+ app: $podName
+ azure.workload.identity/use: "true"
+spec:
+ serviceAccountName: $serviceAccountName
+ containers:
+ - name: $podName
+ image: $image
+ env:
+ - name: AZIDENTITY_STORAGE_NAME
+ value: $($DeploymentOutputs['AZIDENTITY_STORAGE_NAME_USER_ASSIGNED'])
+ - name: AZIDENTITY_USE_WORKLOAD_IDENTITY
+ value: "true"
+ - name: FUNCTIONS_CUSTOMHANDLER_PORT
+ value: "80"
+ nodeSelector:
+ kubernetes.io/os: linux
+"@
+kubectl apply -f "$PSScriptRoot/k8s.yaml"
+Write-Host "##vso[task.setvariable variable=AZIDENTITY_POD_NAME;]$podName"
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-pre.ps1 b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-pre.ps1
index fe0183add..58766d0a0 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-pre.ps1
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources-pre.ps1
@@ -1,36 +1,44 @@
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License.
+
+# IMPORTANT: Do not invoke this file directly. Please instead run eng/common/TestResources/New-TestResources.ps1 from the repository root.
+
[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')]
param (
+ [hashtable] $AdditionalParameters = @{},
+
# Captures any arguments from eng/New-TestResources.ps1 not declared here (no parameter errors).
[Parameter(ValueFromRemainingArguments = $true)]
$RemainingArguments
)
+if (-not (Test-Path "$PSScriptRoot/sshkey.pub")) {
+ ssh-keygen -t rsa -b 4096 -f "$PSScriptRoot/sshkey" -N '' -C ''
+}
+$templateFileParameters['sshPubKey'] = Get-Content "$PSScriptRoot/sshkey.pub"
+
if (!$CI) {
# TODO: Remove this once auto-cloud config downloads are supported locally
Write-Host "Skipping cert setup in local testing mode"
return
}
-if ($EnvironmentVariables -eq $null -or $EnvironmentVariables.Count -eq 0) {
+if ($null -eq $EnvironmentVariables -or $EnvironmentVariables.Count -eq 0) {
throw "EnvironmentVariables must be set in the calling script New-TestResources.ps1"
}
$tmp = $env:TEMP ? $env:TEMP : [System.IO.Path]::GetTempPath()
$pfxPath = Join-Path $tmp "test.pfx"
$pemPath = Join-Path $tmp "test.pem"
-$sniPath = Join-Path $tmp "testsni.pfx"
-Write-Host "Creating identity test files: $pfxPath $pemPath $sniPath"
+Write-Host "Creating identity test files: $pfxPath $pemPath"
[System.Convert]::FromBase64String($EnvironmentVariables['PFX_CONTENTS']) | Set-Content -Path $pfxPath -AsByteStream
Set-Content -Path $pemPath -Value $EnvironmentVariables['PEM_CONTENTS']
-[System.Convert]::FromBase64String($EnvironmentVariables['SNI_CONTENTS']) | Set-Content -Path $sniPath -AsByteStream
# Set for pipeline
Write-Host "##vso[task.setvariable variable=IDENTITY_SP_CERT_PFX;]$pfxPath"
Write-Host "##vso[task.setvariable variable=IDENTITY_SP_CERT_PEM;]$pemPath"
-Write-Host "##vso[task.setvariable variable=IDENTITY_SP_CERT_SNI;]$sniPath"
# Set for local
$env:IDENTITY_SP_CERT_PFX = $pfxPath
$env:IDENTITY_SP_CERT_PEM = $pemPath
-$env:IDENTITY_SP_CERT_SNI = $sniPath
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources.bicep b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources.bicep
index b3490d3b5..2a2165293 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources.bicep
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources.bicep
@@ -1 +1,219 @@
-param baseName string
+// Copyright (c) Microsoft Corporation.
+// Licensed under the MIT License.
+
+@description('Kubernetes cluster admin user name.')
+param adminUser string = 'azureuser'
+
+@minLength(6)
+@maxLength(23)
+@description('The base resource name.')
+param baseName string = resourceGroup().name
+
+@description('Whether to deploy resources. When set to false, this file deploys nothing.')
+param deployResources bool = false
+
+param sshPubKey string = ''
+
+@description('The location of the resource. By default, this is the same as the resource group.')
+param location string = resourceGroup().location
+
+// https://learn.microsoft.com/azure/role-based-access-control/built-in-roles
+var acrPull = subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '7f951dda-4ed3-4680-a7ca-43fe172d538d')
+var blobReader = subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '2a2b9908-6ea1-4ae2-8e65-a410df84e7d1')
+
+resource sa 'Microsoft.Storage/storageAccounts@2021-08-01' = if (deployResources) {
+ kind: 'StorageV2'
+ location: location
+ name: 'sa${uniqueString(baseName)}'
+ properties: {
+ accessTier: 'Hot'
+ }
+ sku: {
+ name: 'Standard_LRS'
+ }
+}
+
+resource saUserAssigned 'Microsoft.Storage/storageAccounts@2021-08-01' = if (deployResources) {
+ kind: 'StorageV2'
+ location: location
+ name: 'sa2${uniqueString(baseName)}'
+ properties: {
+ accessTier: 'Hot'
+ }
+ sku: {
+ name: 'Standard_LRS'
+ }
+}
+
+resource usermgdid 'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30' = if (deployResources) {
+ location: location
+ name: baseName
+}
+
+resource acrPullContainerInstance 'Microsoft.Authorization/roleAssignments@2022-04-01' = if (deployResources) {
+ name: guid(resourceGroup().id, acrPull, 'containerInstance')
+ properties: {
+ principalId: deployResources ? usermgdid.properties.principalId : ''
+ principalType: 'ServicePrincipal'
+ roleDefinitionId: acrPull
+ }
+ scope: containerRegistry
+}
+
+resource blobRoleUserAssigned 'Microsoft.Authorization/roleAssignments@2022-04-01' = if (deployResources) {
+ scope: saUserAssigned
+ name: guid(resourceGroup().id, blobReader, usermgdid.id)
+ properties: {
+ principalId: deployResources ? usermgdid.properties.principalId : ''
+ principalType: 'ServicePrincipal'
+ roleDefinitionId: blobReader
+ }
+}
+
+resource blobRoleFunc 'Microsoft.Authorization/roleAssignments@2022-04-01' = if (deployResources) {
+ name: guid(resourceGroup().id, blobReader, 'azfunc')
+ properties: {
+ principalId: deployResources ? azfunc.identity.principalId : ''
+ roleDefinitionId: blobReader
+ principalType: 'ServicePrincipal'
+ }
+ scope: sa
+}
+
+resource containerRegistry 'Microsoft.ContainerRegistry/registries@2023-01-01-preview' = if (deployResources) {
+ location: location
+ name: uniqueString(resourceGroup().id)
+ properties: {
+ adminUserEnabled: true
+ }
+ sku: {
+ name: 'Basic'
+ }
+}
+
+resource farm 'Microsoft.Web/serverfarms@2021-03-01' = if (deployResources) {
+ kind: 'app'
+ location: location
+ name: '${baseName}_asp'
+ properties: {}
+ sku: {
+ capacity: 1
+ family: 'B'
+ name: 'B1'
+ size: 'B1'
+ tier: 'Basic'
+ }
+}
+
+resource azfunc 'Microsoft.Web/sites@2021-03-01' = if (deployResources) {
+ identity: {
+ type: 'SystemAssigned, UserAssigned'
+ userAssignedIdentities: {
+ '${deployResources ? usermgdid.id : ''}': {}
+ }
+ }
+ kind: 'functionapp'
+ location: location
+ name: '${baseName}func'
+ properties: {
+ enabled: true
+ httpsOnly: true
+ keyVaultReferenceIdentity: 'SystemAssigned'
+ serverFarmId: farm.id
+ siteConfig: {
+ alwaysOn: true
+ appSettings: [
+ {
+ name: 'AZIDENTITY_STORAGE_NAME'
+ value: deployResources ? sa.name : null
+ }
+ {
+ name: 'AZIDENTITY_STORAGE_NAME_USER_ASSIGNED'
+ value: deployResources ? saUserAssigned.name : null
+ }
+ {
+ name: 'AZIDENTITY_USER_ASSIGNED_IDENTITY'
+ value: deployResources ? usermgdid.id : null
+ }
+ {
+ name: 'AzureWebJobsStorage'
+ value: 'DefaultEndpointsProtocol=https;AccountName=${deployResources ? sa.name : ''};EndpointSuffix=${deployResources ? environment().suffixes.storage : ''};AccountKey=${deployResources ? sa.listKeys().keys[0].value : ''}'
+ }
+ {
+ name: 'FUNCTIONS_EXTENSION_VERSION'
+ value: '~4'
+ }
+ {
+ name: 'FUNCTIONS_WORKER_RUNTIME'
+ value: 'custom'
+ }
+ {
+ name: 'WEBSITE_CONTENTAZUREFILECONNECTIONSTRING'
+ value: 'DefaultEndpointsProtocol=https;AccountName=${deployResources ? sa.name : ''};EndpointSuffix=${deployResources ? environment().suffixes.storage : ''};AccountKey=${deployResources ? sa.listKeys().keys[0].value : ''}'
+ }
+ {
+ name: 'WEBSITE_CONTENTSHARE'
+ value: toLower('${baseName}-func')
+ }
+ ]
+ http20Enabled: true
+ minTlsVersion: '1.2'
+ }
+ }
+}
+
+resource aks 'Microsoft.ContainerService/managedClusters@2023-06-01' = if (deployResources) {
+ name: baseName
+ location: location
+ identity: {
+ type: 'SystemAssigned'
+ }
+ properties: {
+ agentPoolProfiles: [
+ {
+ count: 1
+ enableAutoScaling: false
+ kubeletDiskType: 'OS'
+ mode: 'System'
+ name: 'agentpool'
+ osDiskSizeGB: 128
+ osDiskType: 'Managed'
+ osSKU: 'Ubuntu'
+ osType: 'Linux'
+ type: 'VirtualMachineScaleSets'
+ vmSize: 'Standard_D2s_v3'
+ }
+ ]
+ dnsPrefix: 'identitytest'
+ enableRBAC: true
+ linuxProfile: {
+ adminUsername: adminUser
+ ssh: {
+ publicKeys: [
+ {
+ keyData: sshPubKey
+ }
+ ]
+ }
+ }
+ oidcIssuerProfile: {
+ enabled: true
+ }
+ securityProfile: {
+ workloadIdentity: {
+ enabled: true
+ }
+ }
+ }
+}
+
+output AZIDENTITY_ACR_LOGIN_SERVER string = deployResources ? containerRegistry.properties.loginServer : ''
+output AZIDENTITY_ACR_NAME string = deployResources ? containerRegistry.name : ''
+output AZIDENTITY_AKS_NAME string = deployResources ? aks.name : ''
+output AZIDENTITY_FUNCTION_NAME string = deployResources ? azfunc.name : ''
+output AZIDENTITY_STORAGE_ID string = deployResources ? sa.id : ''
+output AZIDENTITY_STORAGE_NAME string = deployResources ? sa.name : ''
+output AZIDENTITY_STORAGE_NAME_USER_ASSIGNED string = deployResources ? saUserAssigned.name : ''
+output AZIDENTITY_USER_ASSIGNED_IDENTITY string = deployResources ? usermgdid.id : ''
+output AZIDENTITY_USER_ASSIGNED_IDENTITY_CLIENT_ID string = deployResources ? usermgdid.properties.clientId : ''
+output AZIDENTITY_USER_ASSIGNED_IDENTITY_NAME string = deployResources ? usermgdid.name : ''
diff --git a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/version.go b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/version.go
index 9b9d7ae0d..459ef64c6 100644
--- a/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/version.go
+++ b/vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/version.go
@@ -14,5 +14,5 @@ const (
module = "github.com/Azure/azure-sdk-for-go/sdk/" + component
// Version is the semantic version (see http://semver.org) of this module.
- version = "v1.5.2"
+ version = "v1.6.0"
)
diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go
index 6f2df2818..003e649f3 100644
--- a/vendor/golang.org/x/net/http2/http2.go
+++ b/vendor/golang.org/x/net/http2/http2.go
@@ -17,6 +17,7 @@ package http2 // import "golang.org/x/net/http2"
import (
"bufio"
+ "context"
"crypto/tls"
"fmt"
"io"
@@ -26,6 +27,7 @@ import (
"strconv"
"strings"
"sync"
+ "time"
"golang.org/x/net/http/httpguts"
)
@@ -210,12 +212,6 @@ type stringWriter interface {
WriteString(s string) (n int, err error)
}
-// A gate lets two goroutines coordinate their activities.
-type gate chan struct{}
-
-func (g gate) Done() { g <- struct{}{} }
-func (g gate) Wait() { <-g }
-
// A closeWaiter is like a sync.WaitGroup but only goes 1 to 0 (open to closed).
type closeWaiter chan struct{}
@@ -383,3 +379,14 @@ func validPseudoPath(v string) bool {
// makes that struct also non-comparable, and generally doesn't add
// any size (as long as it's first).
type incomparable [0]func()
+
+// synctestGroupInterface is the methods of synctestGroup used by Server and Transport.
+// It's defined as an interface here to let us keep synctestGroup entirely test-only
+// and not a part of non-test builds.
+type synctestGroupInterface interface {
+ Join()
+ Now() time.Time
+ NewTimer(d time.Duration) timer
+ AfterFunc(d time.Duration, f func()) timer
+ ContextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc)
+}
diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go
index c5d081081..6c349f3ec 100644
--- a/vendor/golang.org/x/net/http2/server.go
+++ b/vendor/golang.org/x/net/http2/server.go
@@ -154,6 +154,39 @@ type Server struct {
// so that we don't embed a Mutex in this struct, which will make the
// struct non-copyable, which might break some callers.
state *serverInternalState
+
+ // Synchronization group used for testing.
+ // Outside of tests, this is nil.
+ group synctestGroupInterface
+}
+
+func (s *Server) markNewGoroutine() {
+ if s.group != nil {
+ s.group.Join()
+ }
+}
+
+func (s *Server) now() time.Time {
+ if s.group != nil {
+ return s.group.Now()
+ }
+ return time.Now()
+}
+
+// newTimer creates a new time.Timer, or a synthetic timer in tests.
+func (s *Server) newTimer(d time.Duration) timer {
+ if s.group != nil {
+ return s.group.NewTimer(d)
+ }
+ return timeTimer{time.NewTimer(d)}
+}
+
+// afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
+func (s *Server) afterFunc(d time.Duration, f func()) timer {
+ if s.group != nil {
+ return s.group.AfterFunc(d, f)
+ }
+ return timeTimer{time.AfterFunc(d, f)}
}
func (s *Server) initialConnRecvWindowSize() int32 {
@@ -400,6 +433,10 @@ func (o *ServeConnOpts) handler() http.Handler {
//
// The opts parameter is optional. If nil, default values are used.
func (s *Server) ServeConn(c net.Conn, opts *ServeConnOpts) {
+ s.serveConn(c, opts, nil)
+}
+
+func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverConn)) {
baseCtx, cancel := serverConnBaseContext(c, opts)
defer cancel()
@@ -426,6 +463,9 @@ func (s *Server) ServeConn(c net.Conn, opts *ServeConnOpts) {
pushEnabled: true,
sawClientPreface: opts.SawClientPreface,
}
+ if newf != nil {
+ newf(sc)
+ }
s.state.registerConn(sc)
defer s.state.unregisterConn(sc)
@@ -599,8 +639,8 @@ type serverConn struct {
inFrameScheduleLoop bool // whether we're in the scheduleFrameWrite loop
needToSendGoAway bool // we need to schedule a GOAWAY frame write
goAwayCode ErrCode
- shutdownTimer *time.Timer // nil until used
- idleTimer *time.Timer // nil if unused
+ shutdownTimer timer // nil until used
+ idleTimer timer // nil if unused
// Owned by the writeFrameAsync goroutine:
headerWriteBuf bytes.Buffer
@@ -649,12 +689,12 @@ type stream struct {
flow outflow // limits writing from Handler to client
inflow inflow // what the client is allowed to POST/etc to us
state streamState
- resetQueued bool // RST_STREAM queued for write; set by sc.resetStream
- gotTrailerHeader bool // HEADER frame for trailers was seen
- wroteHeaders bool // whether we wrote headers (not status 100)
- readDeadline *time.Timer // nil if unused
- writeDeadline *time.Timer // nil if unused
- closeErr error // set before cw is closed
+ resetQueued bool // RST_STREAM queued for write; set by sc.resetStream
+ gotTrailerHeader bool // HEADER frame for trailers was seen
+ wroteHeaders bool // whether we wrote headers (not status 100)
+ readDeadline timer // nil if unused
+ writeDeadline timer // nil if unused
+ closeErr error // set before cw is closed
trailer http.Header // accumulated trailers
reqTrailer http.Header // handler's Request.Trailer
@@ -811,8 +851,9 @@ type readFrameResult struct {
// consumer is done with the frame.
// It's run on its own goroutine.
func (sc *serverConn) readFrames() {
- gate := make(gate)
- gateDone := gate.Done
+ sc.srv.markNewGoroutine()
+ gate := make(chan struct{})
+ gateDone := func() { gate <- struct{}{} }
for {
f, err := sc.framer.ReadFrame()
select {
@@ -843,6 +884,7 @@ type frameWriteResult struct {
// At most one goroutine can be running writeFrameAsync at a time per
// serverConn.
func (sc *serverConn) writeFrameAsync(wr FrameWriteRequest, wd *writeData) {
+ sc.srv.markNewGoroutine()
var err error
if wd == nil {
err = wr.write.writeFrame(sc)
@@ -922,13 +964,13 @@ func (sc *serverConn) serve() {
sc.setConnState(http.StateIdle)
if sc.srv.IdleTimeout > 0 {
- sc.idleTimer = time.AfterFunc(sc.srv.IdleTimeout, sc.onIdleTimer)
+ sc.idleTimer = sc.srv.afterFunc(sc.srv.IdleTimeout, sc.onIdleTimer)
defer sc.idleTimer.Stop()
}
go sc.readFrames() // closed by defer sc.conn.Close above
- settingsTimer := time.AfterFunc(firstSettingsTimeout, sc.onSettingsTimer)
+ settingsTimer := sc.srv.afterFunc(firstSettingsTimeout, sc.onSettingsTimer)
defer settingsTimer.Stop()
loopNum := 0
@@ -1057,10 +1099,10 @@ func (sc *serverConn) readPreface() error {
errc <- nil
}
}()
- timer := time.NewTimer(prefaceTimeout) // TODO: configurable on *Server?
+ timer := sc.srv.newTimer(prefaceTimeout) // TODO: configurable on *Server?
defer timer.Stop()
select {
- case <-timer.C:
+ case <-timer.C():
return errPrefaceTimeout
case err := <-errc:
if err == nil {
@@ -1425,7 +1467,7 @@ func (sc *serverConn) goAway(code ErrCode) {
func (sc *serverConn) shutDownIn(d time.Duration) {
sc.serveG.check()
- sc.shutdownTimer = time.AfterFunc(d, sc.onShutdownTimer)
+ sc.shutdownTimer = sc.srv.afterFunc(d, sc.onShutdownTimer)
}
func (sc *serverConn) resetStream(se StreamError) {
@@ -1639,7 +1681,7 @@ func (sc *serverConn) closeStream(st *stream, err error) {
delete(sc.streams, st.id)
if len(sc.streams) == 0 {
sc.setConnState(http.StateIdle)
- if sc.srv.IdleTimeout > 0 {
+ if sc.srv.IdleTimeout > 0 && sc.idleTimer != nil {
sc.idleTimer.Reset(sc.srv.IdleTimeout)
}
if h1ServerKeepAlivesDisabled(sc.hs) {
@@ -1661,6 +1703,7 @@ func (sc *serverConn) closeStream(st *stream, err error) {
}
}
st.closeErr = err
+ st.cancelCtx()
st.cw.Close() // signals Handler's CloseNotifier, unblocks writes, etc
sc.writeSched.CloseStream(st.id)
}
@@ -2021,7 +2064,7 @@ func (sc *serverConn) processHeaders(f *MetaHeadersFrame) error {
// (in Go 1.8), though. That's a more sane option anyway.
if sc.hs.ReadTimeout > 0 {
sc.conn.SetReadDeadline(time.Time{})
- st.readDeadline = time.AfterFunc(sc.hs.ReadTimeout, st.onReadTimeout)
+ st.readDeadline = sc.srv.afterFunc(sc.hs.ReadTimeout, st.onReadTimeout)
}
return sc.scheduleHandler(id, rw, req, handler)
@@ -2119,7 +2162,7 @@ func (sc *serverConn) newStream(id, pusherID uint32, state streamState) *stream
st.flow.add(sc.initialStreamSendWindowSize)
st.inflow.init(sc.srv.initialStreamRecvWindowSize())
if sc.hs.WriteTimeout > 0 {
- st.writeDeadline = time.AfterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)
+ st.writeDeadline = sc.srv.afterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)
}
sc.streams[id] = st
@@ -2343,6 +2386,7 @@ func (sc *serverConn) handlerDone() {
// Run on its own goroutine.
func (sc *serverConn) runHandler(rw *responseWriter, req *http.Request, handler func(http.ResponseWriter, *http.Request)) {
+ sc.srv.markNewGoroutine()
defer sc.sendServeMsg(handlerDoneMsg)
didPanic := true
defer func() {
@@ -2639,7 +2683,7 @@ func (rws *responseWriterState) writeChunk(p []byte) (n int, err error) {
var date string
if _, ok := rws.snapHeader["Date"]; !ok {
// TODO(bradfitz): be faster here, like net/http? measure.
- date = time.Now().UTC().Format(http.TimeFormat)
+ date = rws.conn.srv.now().UTC().Format(http.TimeFormat)
}
for _, v := range rws.snapHeader["Trailer"] {
@@ -2761,7 +2805,7 @@ func (rws *responseWriterState) promoteUndeclaredTrailers() {
func (w *responseWriter) SetReadDeadline(deadline time.Time) error {
st := w.rws.stream
- if !deadline.IsZero() && deadline.Before(time.Now()) {
+ if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) {
// If we're setting a deadline in the past, reset the stream immediately
// so writes after SetWriteDeadline returns will fail.
st.onReadTimeout()
@@ -2777,9 +2821,9 @@ func (w *responseWriter) SetReadDeadline(deadline time.Time) error {
if deadline.IsZero() {
st.readDeadline = nil
} else if st.readDeadline == nil {
- st.readDeadline = time.AfterFunc(deadline.Sub(time.Now()), st.onReadTimeout)
+ st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout)
} else {
- st.readDeadline.Reset(deadline.Sub(time.Now()))
+ st.readDeadline.Reset(deadline.Sub(sc.srv.now()))
}
})
return nil
@@ -2787,7 +2831,7 @@ func (w *responseWriter) SetReadDeadline(deadline time.Time) error {
func (w *responseWriter) SetWriteDeadline(deadline time.Time) error {
st := w.rws.stream
- if !deadline.IsZero() && deadline.Before(time.Now()) {
+ if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) {
// If we're setting a deadline in the past, reset the stream immediately
// so writes after SetWriteDeadline returns will fail.
st.onWriteTimeout()
@@ -2803,9 +2847,9 @@ func (w *responseWriter) SetWriteDeadline(deadline time.Time) error {
if deadline.IsZero() {
st.writeDeadline = nil
} else if st.writeDeadline == nil {
- st.writeDeadline = time.AfterFunc(deadline.Sub(time.Now()), st.onWriteTimeout)
+ st.writeDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onWriteTimeout)
} else {
- st.writeDeadline.Reset(deadline.Sub(time.Now()))
+ st.writeDeadline.Reset(deadline.Sub(sc.srv.now()))
}
})
return nil
diff --git a/vendor/golang.org/x/net/http2/testsync.go b/vendor/golang.org/x/net/http2/testsync.go
deleted file mode 100644
index 61075bd16..000000000
--- a/vendor/golang.org/x/net/http2/testsync.go
+++ /dev/null
@@ -1,331 +0,0 @@
-// Copyright 2024 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-package http2
-
-import (
- "context"
- "sync"
- "time"
-)
-
-// testSyncHooks coordinates goroutines in tests.
-//
-// For example, a call to ClientConn.RoundTrip involves several goroutines, including:
-// - the goroutine running RoundTrip;
-// - the clientStream.doRequest goroutine, which writes the request; and
-// - the clientStream.readLoop goroutine, which reads the response.
-//
-// Using testSyncHooks, a test can start a RoundTrip and identify when all these goroutines
-// are blocked waiting for some condition such as reading the Request.Body or waiting for
-// flow control to become available.
-//
-// The testSyncHooks also manage timers and synthetic time in tests.
-// This permits us to, for example, start a request and cause it to time out waiting for
-// response headers without resorting to time.Sleep calls.
-type testSyncHooks struct {
- // active/inactive act as a mutex and condition variable.
- //
- // - neither chan contains a value: testSyncHooks is locked.
- // - active contains a value: unlocked, and at least one goroutine is not blocked
- // - inactive contains a value: unlocked, and all goroutines are blocked
- active chan struct{}
- inactive chan struct{}
-
- // goroutine counts
- total int // total goroutines
- condwait map[*sync.Cond]int // blocked in sync.Cond.Wait
- blocked []*testBlockedGoroutine // otherwise blocked
-
- // fake time
- now time.Time
- timers []*fakeTimer
-
- // Transport testing: Report various events.
- newclientconn func(*ClientConn)
- newstream func(*clientStream)
-}
-
-// testBlockedGoroutine is a blocked goroutine.
-type testBlockedGoroutine struct {
- f func() bool // blocked until f returns true
- ch chan struct{} // closed when unblocked
-}
-
-func newTestSyncHooks() *testSyncHooks {
- h := &testSyncHooks{
- active: make(chan struct{}, 1),
- inactive: make(chan struct{}, 1),
- condwait: map[*sync.Cond]int{},
- }
- h.inactive <- struct{}{}
- h.now = time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)
- return h
-}
-
-// lock acquires the testSyncHooks mutex.
-func (h *testSyncHooks) lock() {
- select {
- case <-h.active:
- case <-h.inactive:
- }
-}
-
-// waitInactive waits for all goroutines to become inactive.
-func (h *testSyncHooks) waitInactive() {
- for {
- <-h.inactive
- if !h.unlock() {
- break
- }
- }
-}
-
-// unlock releases the testSyncHooks mutex.
-// It reports whether any goroutines are active.
-func (h *testSyncHooks) unlock() (active bool) {
- // Look for a blocked goroutine which can be unblocked.
- blocked := h.blocked[:0]
- unblocked := false
- for _, b := range h.blocked {
- if !unblocked && b.f() {
- unblocked = true
- close(b.ch)
- } else {
- blocked = append(blocked, b)
- }
- }
- h.blocked = blocked
-
- // Count goroutines blocked on condition variables.
- condwait := 0
- for _, count := range h.condwait {
- condwait += count
- }
-
- if h.total > condwait+len(blocked) {
- h.active <- struct{}{}
- return true
- } else {
- h.inactive <- struct{}{}
- return false
- }
-}
-
-// goRun starts a new goroutine.
-func (h *testSyncHooks) goRun(f func()) {
- h.lock()
- h.total++
- h.unlock()
- go func() {
- defer func() {
- h.lock()
- h.total--
- h.unlock()
- }()
- f()
- }()
-}
-
-// blockUntil indicates that a goroutine is blocked waiting for some condition to become true.
-// It waits until f returns true before proceeding.
-//
-// Example usage:
-//
-// h.blockUntil(func() bool {
-// // Is the context done yet?
-// select {
-// case <-ctx.Done():
-// default:
-// return false
-// }
-// return true
-// })
-// // Wait for the context to become done.
-// <-ctx.Done()
-//
-// The function f passed to blockUntil must be non-blocking and idempotent.
-func (h *testSyncHooks) blockUntil(f func() bool) {
- if f() {
- return
- }
- ch := make(chan struct{})
- h.lock()
- h.blocked = append(h.blocked, &testBlockedGoroutine{
- f: f,
- ch: ch,
- })
- h.unlock()
- <-ch
-}
-
-// broadcast is sync.Cond.Broadcast.
-func (h *testSyncHooks) condBroadcast(cond *sync.Cond) {
- h.lock()
- delete(h.condwait, cond)
- h.unlock()
- cond.Broadcast()
-}
-
-// broadcast is sync.Cond.Wait.
-func (h *testSyncHooks) condWait(cond *sync.Cond) {
- h.lock()
- h.condwait[cond]++
- h.unlock()
-}
-
-// newTimer creates a new fake timer.
-func (h *testSyncHooks) newTimer(d time.Duration) timer {
- h.lock()
- defer h.unlock()
- t := &fakeTimer{
- hooks: h,
- when: h.now.Add(d),
- c: make(chan time.Time),
- }
- h.timers = append(h.timers, t)
- return t
-}
-
-// afterFunc creates a new fake AfterFunc timer.
-func (h *testSyncHooks) afterFunc(d time.Duration, f func()) timer {
- h.lock()
- defer h.unlock()
- t := &fakeTimer{
- hooks: h,
- when: h.now.Add(d),
- f: f,
- }
- h.timers = append(h.timers, t)
- return t
-}
-
-func (h *testSyncHooks) contextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) {
- ctx, cancel := context.WithCancel(ctx)
- t := h.afterFunc(d, cancel)
- return ctx, func() {
- t.Stop()
- cancel()
- }
-}
-
-func (h *testSyncHooks) timeUntilEvent() time.Duration {
- h.lock()
- defer h.unlock()
- var next time.Time
- for _, t := range h.timers {
- if next.IsZero() || t.when.Before(next) {
- next = t.when
- }
- }
- if d := next.Sub(h.now); d > 0 {
- return d
- }
- return 0
-}
-
-// advance advances time and causes synthetic timers to fire.
-func (h *testSyncHooks) advance(d time.Duration) {
- h.lock()
- defer h.unlock()
- h.now = h.now.Add(d)
- timers := h.timers[:0]
- for _, t := range h.timers {
- t := t // remove after go.mod depends on go1.22
- t.mu.Lock()
- switch {
- case t.when.After(h.now):
- timers = append(timers, t)
- case t.when.IsZero():
- // stopped timer
- default:
- t.when = time.Time{}
- if t.c != nil {
- close(t.c)
- }
- if t.f != nil {
- h.total++
- go func() {
- defer func() {
- h.lock()
- h.total--
- h.unlock()
- }()
- t.f()
- }()
- }
- }
- t.mu.Unlock()
- }
- h.timers = timers
-}
-
-// A timer wraps a time.Timer, or a synthetic equivalent in tests.
-// Unlike time.Timer, timer is single-use: The timer channel is closed when the timer expires.
-type timer interface {
- C() <-chan time.Time
- Stop() bool
- Reset(d time.Duration) bool
-}
-
-// timeTimer implements timer using real time.
-type timeTimer struct {
- t *time.Timer
- c chan time.Time
-}
-
-// newTimeTimer creates a new timer using real time.
-func newTimeTimer(d time.Duration) timer {
- ch := make(chan time.Time)
- t := time.AfterFunc(d, func() {
- close(ch)
- })
- return &timeTimer{t, ch}
-}
-
-// newTimeAfterFunc creates an AfterFunc timer using real time.
-func newTimeAfterFunc(d time.Duration, f func()) timer {
- return &timeTimer{
- t: time.AfterFunc(d, f),
- }
-}
-
-func (t timeTimer) C() <-chan time.Time { return t.c }
-func (t timeTimer) Stop() bool { return t.t.Stop() }
-func (t timeTimer) Reset(d time.Duration) bool { return t.t.Reset(d) }
-
-// fakeTimer implements timer using fake time.
-type fakeTimer struct {
- hooks *testSyncHooks
-
- mu sync.Mutex
- when time.Time // when the timer will fire
- c chan time.Time // closed when the timer fires; mutually exclusive with f
- f func() // called when the timer fires; mutually exclusive with c
-}
-
-func (t *fakeTimer) C() <-chan time.Time { return t.c }
-
-func (t *fakeTimer) Stop() bool {
- t.mu.Lock()
- defer t.mu.Unlock()
- stopped := t.when.IsZero()
- t.when = time.Time{}
- return stopped
-}
-
-func (t *fakeTimer) Reset(d time.Duration) bool {
- if t.c != nil || t.f == nil {
- panic("fakeTimer only supports Reset on AfterFunc timers")
- }
- t.mu.Lock()
- defer t.mu.Unlock()
- t.hooks.lock()
- defer t.hooks.unlock()
- active := !t.when.IsZero()
- t.when = t.hooks.now.Add(d)
- if !active {
- t.hooks.timers = append(t.hooks.timers, t)
- }
- return active
-}
diff --git a/vendor/golang.org/x/net/http2/timer.go b/vendor/golang.org/x/net/http2/timer.go
new file mode 100644
index 000000000..0b1c17b81
--- /dev/null
+++ b/vendor/golang.org/x/net/http2/timer.go
@@ -0,0 +1,20 @@
+// Copyright 2024 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+package http2
+
+import "time"
+
+// A timer is a time.Timer, as an interface which can be replaced in tests.
+type timer = interface {
+ C() <-chan time.Time
+ Reset(d time.Duration) bool
+ Stop() bool
+}
+
+// timeTimer adapts a time.Timer to the timer interface.
+type timeTimer struct {
+ *time.Timer
+}
+
+func (t timeTimer) C() <-chan time.Time { return t.Timer.C }
diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go
index 2fa49490c..98a49c6b6 100644
--- a/vendor/golang.org/x/net/http2/transport.go
+++ b/vendor/golang.org/x/net/http2/transport.go
@@ -185,7 +185,45 @@ type Transport struct {
connPoolOnce sync.Once
connPoolOrDef ClientConnPool // non-nil version of ConnPool
- syncHooks *testSyncHooks
+ *transportTestHooks
+}
+
+// Hook points used for testing.
+// Outside of tests, t.transportTestHooks is nil and these all have minimal implementations.
+// Inside tests, see the testSyncHooks function docs.
+
+type transportTestHooks struct {
+ newclientconn func(*ClientConn)
+ group synctestGroupInterface
+}
+
+func (t *Transport) markNewGoroutine() {
+ if t != nil && t.transportTestHooks != nil {
+ t.transportTestHooks.group.Join()
+ }
+}
+
+// newTimer creates a new time.Timer, or a synthetic timer in tests.
+func (t *Transport) newTimer(d time.Duration) timer {
+ if t.transportTestHooks != nil {
+ return t.transportTestHooks.group.NewTimer(d)
+ }
+ return timeTimer{time.NewTimer(d)}
+}
+
+// afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
+func (t *Transport) afterFunc(d time.Duration, f func()) timer {
+ if t.transportTestHooks != nil {
+ return t.transportTestHooks.group.AfterFunc(d, f)
+ }
+ return timeTimer{time.AfterFunc(d, f)}
+}
+
+func (t *Transport) contextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) {
+ if t.transportTestHooks != nil {
+ return t.transportTestHooks.group.ContextWithTimeout(ctx, d)
+ }
+ return context.WithTimeout(ctx, d)
}
func (t *Transport) maxHeaderListSize() uint32 {
@@ -352,60 +390,6 @@ type ClientConn struct {
werr error // first write error that has occurred
hbuf bytes.Buffer // HPACK encoder writes into this
henc *hpack.Encoder
-
- syncHooks *testSyncHooks // can be nil
-}
-
-// Hook points used for testing.
-// Outside of tests, cc.syncHooks is nil and these all have minimal implementations.
-// Inside tests, see the testSyncHooks function docs.
-
-// goRun starts a new goroutine.
-func (cc *ClientConn) goRun(f func()) {
- if cc.syncHooks != nil {
- cc.syncHooks.goRun(f)
- return
- }
- go f()
-}
-
-// condBroadcast is cc.cond.Broadcast.
-func (cc *ClientConn) condBroadcast() {
- if cc.syncHooks != nil {
- cc.syncHooks.condBroadcast(cc.cond)
- }
- cc.cond.Broadcast()
-}
-
-// condWait is cc.cond.Wait.
-func (cc *ClientConn) condWait() {
- if cc.syncHooks != nil {
- cc.syncHooks.condWait(cc.cond)
- }
- cc.cond.Wait()
-}
-
-// newTimer creates a new time.Timer, or a synthetic timer in tests.
-func (cc *ClientConn) newTimer(d time.Duration) timer {
- if cc.syncHooks != nil {
- return cc.syncHooks.newTimer(d)
- }
- return newTimeTimer(d)
-}
-
-// afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
-func (cc *ClientConn) afterFunc(d time.Duration, f func()) timer {
- if cc.syncHooks != nil {
- return cc.syncHooks.afterFunc(d, f)
- }
- return newTimeAfterFunc(d, f)
-}
-
-func (cc *ClientConn) contextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) {
- if cc.syncHooks != nil {
- return cc.syncHooks.contextWithTimeout(ctx, d)
- }
- return context.WithTimeout(ctx, d)
}
// clientStream is the state for a single HTTP/2 stream. One of these
@@ -487,7 +471,7 @@ func (cs *clientStream) abortStreamLocked(err error) {
// TODO(dneil): Clean up tests where cs.cc.cond is nil.
if cs.cc.cond != nil {
// Wake up writeRequestBody if it is waiting on flow control.
- cs.cc.condBroadcast()
+ cs.cc.cond.Broadcast()
}
}
@@ -497,7 +481,7 @@ func (cs *clientStream) abortRequestBodyWrite() {
defer cc.mu.Unlock()
if cs.reqBody != nil && cs.reqBodyClosed == nil {
cs.closeReqBodyLocked()
- cc.condBroadcast()
+ cc.cond.Broadcast()
}
}
@@ -507,10 +491,11 @@ func (cs *clientStream) closeReqBodyLocked() {
}
cs.reqBodyClosed = make(chan struct{})
reqBodyClosed := cs.reqBodyClosed
- cs.cc.goRun(func() {
+ go func() {
+ cs.cc.t.markNewGoroutine()
cs.reqBody.Close()
close(reqBodyClosed)
- })
+ }()
}
type stickyErrWriter struct {
@@ -626,21 +611,7 @@ func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Res
backoff := float64(uint(1) << (uint(retry) - 1))
backoff += backoff * (0.1 * mathrand.Float64())
d := time.Second * time.Duration(backoff)
- var tm timer
- if t.syncHooks != nil {
- tm = t.syncHooks.newTimer(d)
- t.syncHooks.blockUntil(func() bool {
- select {
- case <-tm.C():
- case <-req.Context().Done():
- default:
- return false
- }
- return true
- })
- } else {
- tm = newTimeTimer(d)
- }
+ tm := t.newTimer(d)
select {
case <-tm.C():
t.vlogf("RoundTrip retrying after failure: %v", roundTripErr)
@@ -725,8 +696,8 @@ func canRetryError(err error) bool {
}
func (t *Transport) dialClientConn(ctx context.Context, addr string, singleUse bool) (*ClientConn, error) {
- if t.syncHooks != nil {
- return t.newClientConn(nil, singleUse, t.syncHooks)
+ if t.transportTestHooks != nil {
+ return t.newClientConn(nil, singleUse)
}
host, _, err := net.SplitHostPort(addr)
if err != nil {
@@ -736,7 +707,7 @@ func (t *Transport) dialClientConn(ctx context.Context, addr string, singleUse b
if err != nil {
return nil, err
}
- return t.newClientConn(tconn, singleUse, nil)
+ return t.newClientConn(tconn, singleUse)
}
func (t *Transport) newTLSConfig(host string) *tls.Config {
@@ -802,10 +773,10 @@ func (t *Transport) maxEncoderHeaderTableSize() uint32 {
}
func (t *Transport) NewClientConn(c net.Conn) (*ClientConn, error) {
- return t.newClientConn(c, t.disableKeepAlives(), nil)
+ return t.newClientConn(c, t.disableKeepAlives())
}
-func (t *Transport) newClientConn(c net.Conn, singleUse bool, hooks *testSyncHooks) (*ClientConn, error) {
+func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, error) {
cc := &ClientConn{
t: t,
tconn: c,
@@ -820,16 +791,12 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool, hooks *testSyncHoo
wantSettingsAck: true,
pings: make(map[[8]byte]chan struct{}),
reqHeaderMu: make(chan struct{}, 1),
- syncHooks: hooks,
}
- if hooks != nil {
- hooks.newclientconn(cc)
+ if t.transportTestHooks != nil {
+ t.markNewGoroutine()
+ t.transportTestHooks.newclientconn(cc)
c = cc.tconn
}
- if d := t.idleConnTimeout(); d != 0 {
- cc.idleTimeout = d
- cc.idleTimer = cc.afterFunc(d, cc.onIdleTimeout)
- }
if VerboseLogs {
t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr())
}
@@ -893,7 +860,13 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool, hooks *testSyncHoo
return nil, cc.werr
}
- cc.goRun(cc.readLoop)
+ // Start the idle timer after the connection is fully initialized.
+ if d := t.idleConnTimeout(); d != 0 {
+ cc.idleTimeout = d
+ cc.idleTimer = t.afterFunc(d, cc.onIdleTimeout)
+ }
+
+ go cc.readLoop()
return cc, nil
}
@@ -901,7 +874,7 @@ func (cc *ClientConn) healthCheck() {
pingTimeout := cc.t.pingTimeout()
// We don't need to periodically ping in the health check, because the readLoop of ClientConn will
// trigger the healthCheck again if there is no frame received.
- ctx, cancel := cc.contextWithTimeout(context.Background(), pingTimeout)
+ ctx, cancel := cc.t.contextWithTimeout(context.Background(), pingTimeout)
defer cancel()
cc.vlogf("http2: Transport sending health check")
err := cc.Ping(ctx)
@@ -1144,7 +1117,8 @@ func (cc *ClientConn) Shutdown(ctx context.Context) error {
// Wait for all in-flight streams to complete or connection to close
done := make(chan struct{})
cancelled := false // guarded by cc.mu
- cc.goRun(func() {
+ go func() {
+ cc.t.markNewGoroutine()
cc.mu.Lock()
defer cc.mu.Unlock()
for {
@@ -1156,9 +1130,9 @@ func (cc *ClientConn) Shutdown(ctx context.Context) error {
if cancelled {
break
}
- cc.condWait()
+ cc.cond.Wait()
}
- })
+ }()
shutdownEnterWaitStateHook()
select {
case <-done:
@@ -1168,7 +1142,7 @@ func (cc *ClientConn) Shutdown(ctx context.Context) error {
cc.mu.Lock()
// Free the goroutine above
cancelled = true
- cc.condBroadcast()
+ cc.cond.Broadcast()
cc.mu.Unlock()
return ctx.Err()
}
@@ -1206,7 +1180,7 @@ func (cc *ClientConn) closeForError(err error) {
for _, cs := range cc.streams {
cs.abortStreamLocked(err)
}
- cc.condBroadcast()
+ cc.cond.Broadcast()
cc.mu.Unlock()
cc.closeConn()
}
@@ -1321,23 +1295,30 @@ func (cc *ClientConn) roundTrip(req *http.Request, streamf func(*clientStream))
respHeaderRecv: make(chan struct{}),
donec: make(chan struct{}),
}
- cc.goRun(func() {
- cs.doRequest(req)
- })
+
+ // TODO(bradfitz): this is a copy of the logic in net/http. Unify somewhere?
+ if !cc.t.disableCompression() &&
+ req.Header.Get("Accept-Encoding") == "" &&
+ req.Header.Get("Range") == "" &&
+ !cs.isHead {
+ // Request gzip only, not deflate. Deflate is ambiguous and
+ // not as universally supported anyway.
+ // See: https://zlib.net/zlib_faq.html#faq39
+ //
+ // Note that we don't request this for HEAD requests,
+ // due to a bug in nginx:
+ // http://trac.nginx.org/nginx/ticket/358
+ // https://golang.org/issue/5522
+ //
+ // We don't request gzip if the request is for a range, since
+ // auto-decoding a portion of a gzipped document will just fail
+ // anyway. See https://golang.org/issue/8923
+ cs.requestedGzip = true
+ }
+
+ go cs.doRequest(req, streamf)
waitDone := func() error {
- if cc.syncHooks != nil {
- cc.syncHooks.blockUntil(func() bool {
- select {
- case <-cs.donec:
- case <-ctx.Done():
- case <-cs.reqCancel:
- default:
- return false
- }
- return true
- })
- }
select {
case <-cs.donec:
return nil
@@ -1398,24 +1379,7 @@ func (cc *ClientConn) roundTrip(req *http.Request, streamf func(*clientStream))
return err
}
- if streamf != nil {
- streamf(cs)
- }
-
for {
- if cc.syncHooks != nil {
- cc.syncHooks.blockUntil(func() bool {
- select {
- case <-cs.respHeaderRecv:
- case <-cs.abort:
- case <-ctx.Done():
- case <-cs.reqCancel:
- default:
- return false
- }
- return true
- })
- }
select {
case <-cs.respHeaderRecv:
return handleResponseHeaders()
@@ -1445,8 +1409,9 @@ func (cc *ClientConn) roundTrip(req *http.Request, streamf func(*clientStream))
// doRequest runs for the duration of the request lifetime.
//
// It sends the request and performs post-request cleanup (closing Request.Body, etc.).
-func (cs *clientStream) doRequest(req *http.Request) {
- err := cs.writeRequest(req)
+func (cs *clientStream) doRequest(req *http.Request, streamf func(*clientStream)) {
+ cs.cc.t.markNewGoroutine()
+ err := cs.writeRequest(req, streamf)
cs.cleanupWriteRequest(err)
}
@@ -1457,7 +1422,7 @@ func (cs *clientStream) doRequest(req *http.Request) {
//
// It returns non-nil if the request ends otherwise.
// If the returned error is StreamError, the error Code may be used in resetting the stream.
-func (cs *clientStream) writeRequest(req *http.Request) (err error) {
+func (cs *clientStream) writeRequest(req *http.Request, streamf func(*clientStream)) (err error) {
cc := cs.cc
ctx := cs.ctx
@@ -1471,21 +1436,6 @@ func (cs *clientStream) writeRequest(req *http.Request) (err error) {
if cc.reqHeaderMu == nil {
panic("RoundTrip on uninitialized ClientConn") // for tests
}
- var newStreamHook func(*clientStream)
- if cc.syncHooks != nil {
- newStreamHook = cc.syncHooks.newstream
- cc.syncHooks.blockUntil(func() bool {
- select {
- case cc.reqHeaderMu <- struct{}{}:
- <-cc.reqHeaderMu
- case <-cs.reqCancel:
- case <-ctx.Done():
- default:
- return false
- }
- return true
- })
- }
select {
case cc.reqHeaderMu <- struct{}{}:
case <-cs.reqCancel:
@@ -1510,28 +1460,8 @@ func (cs *clientStream) writeRequest(req *http.Request) (err error) {
}
cc.mu.Unlock()
- if newStreamHook != nil {
- newStreamHook(cs)
- }
-
- // TODO(bradfitz): this is a copy of the logic in net/http. Unify somewhere?
- if !cc.t.disableCompression() &&
- req.Header.Get("Accept-Encoding") == "" &&
- req.Header.Get("Range") == "" &&
- !cs.isHead {
- // Request gzip only, not deflate. Deflate is ambiguous and
- // not as universally supported anyway.
- // See: https://zlib.net/zlib_faq.html#faq39
- //
- // Note that we don't request this for HEAD requests,
- // due to a bug in nginx:
- // http://trac.nginx.org/nginx/ticket/358
- // https://golang.org/issue/5522
- //
- // We don't request gzip if the request is for a range, since
- // auto-decoding a portion of a gzipped document will just fail
- // anyway. See https://golang.org/issue/8923
- cs.requestedGzip = true
+ if streamf != nil {
+ streamf(cs)
}
continueTimeout := cc.t.expectContinueTimeout()
@@ -1594,7 +1524,7 @@ func (cs *clientStream) writeRequest(req *http.Request) (err error) {
var respHeaderTimer <-chan time.Time
var respHeaderRecv chan struct{}
if d := cc.responseHeaderTimeout(); d != 0 {
- timer := cc.newTimer(d)
+ timer := cc.t.newTimer(d)
defer timer.Stop()
respHeaderTimer = timer.C()
respHeaderRecv = cs.respHeaderRecv
@@ -1603,21 +1533,6 @@ func (cs *clientStream) writeRequest(req *http.Request) (err error) {
// or until the request is aborted (via context, error, or otherwise),
// whichever comes first.
for {
- if cc.syncHooks != nil {
- cc.syncHooks.blockUntil(func() bool {
- select {
- case <-cs.peerClosed:
- case <-respHeaderTimer:
- case <-respHeaderRecv:
- case <-cs.abort:
- case <-ctx.Done():
- case <-cs.reqCancel:
- default:
- return false
- }
- return true
- })
- }
select {
case <-cs.peerClosed:
return nil
@@ -1766,7 +1681,7 @@ func (cc *ClientConn) awaitOpenSlotForStreamLocked(cs *clientStream) error {
return nil
}
cc.pendingRequests++
- cc.condWait()
+ cc.cond.Wait()
cc.pendingRequests--
select {
case <-cs.abort:
@@ -2028,7 +1943,7 @@ func (cs *clientStream) awaitFlowControl(maxBytes int) (taken int32, err error)
cs.flow.take(take)
return take, nil
}
- cc.condWait()
+ cc.cond.Wait()
}
}
@@ -2311,7 +2226,7 @@ func (cc *ClientConn) forgetStreamID(id uint32) {
}
// Wake up writeRequestBody via clientStream.awaitFlowControl and
// wake up RoundTrip if there is a pending request.
- cc.condBroadcast()
+ cc.cond.Broadcast()
closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
if closeOnIdle && cc.streamsReserved == 0 && len(cc.streams) == 0 {
@@ -2333,6 +2248,7 @@ type clientConnReadLoop struct {
// readLoop runs in its own goroutine and reads and dispatches frames.
func (cc *ClientConn) readLoop() {
+ cc.t.markNewGoroutine()
rl := &clientConnReadLoop{cc: cc}
defer rl.cleanup()
cc.readerErr = rl.run()
@@ -2399,7 +2315,7 @@ func (rl *clientConnReadLoop) cleanup() {
cs.abortStreamLocked(err)
}
}
- cc.condBroadcast()
+ cc.cond.Broadcast()
cc.mu.Unlock()
}
@@ -2436,7 +2352,7 @@ func (rl *clientConnReadLoop) run() error {
readIdleTimeout := cc.t.ReadIdleTimeout
var t timer
if readIdleTimeout != 0 {
- t = cc.afterFunc(readIdleTimeout, cc.healthCheck)
+ t = cc.t.afterFunc(readIdleTimeout, cc.healthCheck)
}
for {
f, err := cc.fr.ReadFrame()
@@ -3034,7 +2950,7 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {
for _, cs := range cc.streams {
cs.flow.add(delta)
}
- cc.condBroadcast()
+ cc.cond.Broadcast()
cc.initialWindowSize = s.Val
case SettingHeaderTableSize:
@@ -3089,7 +3005,7 @@ func (rl *clientConnReadLoop) processWindowUpdate(f *WindowUpdateFrame) error {
return ConnectionError(ErrCodeFlowControl)
}
- cc.condBroadcast()
+ cc.cond.Broadcast()
return nil
}
@@ -3133,7 +3049,8 @@ func (cc *ClientConn) Ping(ctx context.Context) error {
}
var pingError error
errc := make(chan struct{})
- cc.goRun(func() {
+ go func() {
+ cc.t.markNewGoroutine()
cc.wmu.Lock()
defer cc.wmu.Unlock()
if pingError = cc.fr.WritePing(false, p); pingError != nil {
@@ -3144,20 +3061,7 @@ func (cc *ClientConn) Ping(ctx context.Context) error {
close(errc)
return
}
- })
- if cc.syncHooks != nil {
- cc.syncHooks.blockUntil(func() bool {
- select {
- case <-c:
- case <-errc:
- case <-ctx.Done():
- case <-cc.readerDone:
- default:
- return false
- }
- return true
- })
- }
+ }()
select {
case <-c:
return nil
diff --git a/vendor/golang.org/x/net/http2/writesched_priority.go b/vendor/golang.org/x/net/http2/writesched_priority.go
index 0a242c669..f6783339d 100644
--- a/vendor/golang.org/x/net/http2/writesched_priority.go
+++ b/vendor/golang.org/x/net/http2/writesched_priority.go
@@ -443,8 +443,8 @@ func (ws *priorityWriteScheduler) addClosedOrIdleNode(list *[]*priorityNode, max
}
func (ws *priorityWriteScheduler) removeNode(n *priorityNode) {
- for k := n.kids; k != nil; k = k.next {
- k.setParent(n.parent)
+ for n.kids != nil {
+ n.kids.setParent(n.parent)
}
n.setParent(nil)
delete(ws.nodes, n.id)
diff --git a/vendor/golang.org/x/net/proxy/per_host.go b/vendor/golang.org/x/net/proxy/per_host.go
index 573fe79e8..d7d4b8b6e 100644
--- a/vendor/golang.org/x/net/proxy/per_host.go
+++ b/vendor/golang.org/x/net/proxy/per_host.go
@@ -137,9 +137,7 @@ func (p *PerHost) AddNetwork(net *net.IPNet) {
// AddZone specifies a DNS suffix that will use the bypass proxy. A zone of
// "example.com" matches "example.com" and all of its subdomains.
func (p *PerHost) AddZone(zone string) {
- if strings.HasSuffix(zone, ".") {
- zone = zone[:len(zone)-1]
- }
+ zone = strings.TrimSuffix(zone, ".")
if !strings.HasPrefix(zone, ".") {
zone = "." + zone
}
@@ -148,8 +146,6 @@ func (p *PerHost) AddZone(zone string) {
// AddHost specifies a host name that will use the bypass proxy.
func (p *PerHost) AddHost(host string) {
- if strings.HasSuffix(host, ".") {
- host = host[:len(host)-1]
- }
+ host = strings.TrimSuffix(host, ".")
p.bypassHosts = append(p.bypassHosts, host)
}
diff --git a/vendor/golang.org/x/net/websocket/hybi.go b/vendor/golang.org/x/net/websocket/hybi.go
index 48a069e19..dda743466 100644
--- a/vendor/golang.org/x/net/websocket/hybi.go
+++ b/vendor/golang.org/x/net/websocket/hybi.go
@@ -16,7 +16,6 @@ import (
"encoding/binary"
"fmt"
"io"
- "io/ioutil"
"net/http"
"net/url"
"strings"
@@ -279,7 +278,7 @@ func (handler *hybiFrameHandler) HandleFrame(frame frameReader) (frameReader, er
}
}
if header := frame.HeaderReader(); header != nil {
- io.Copy(ioutil.Discard, header)
+ io.Copy(io.Discard, header)
}
switch frame.PayloadType() {
case ContinuationFrame:
@@ -294,7 +293,7 @@ func (handler *hybiFrameHandler) HandleFrame(frame frameReader) (frameReader, er
if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
return nil, err
}
- io.Copy(ioutil.Discard, frame)
+ io.Copy(io.Discard, frame)
if frame.PayloadType() == PingFrame {
if _, err := handler.WritePong(b[:n]); err != nil {
return nil, err
diff --git a/vendor/golang.org/x/net/websocket/websocket.go b/vendor/golang.org/x/net/websocket/websocket.go
index 90a2257cd..923a5780e 100644
--- a/vendor/golang.org/x/net/websocket/websocket.go
+++ b/vendor/golang.org/x/net/websocket/websocket.go
@@ -17,7 +17,6 @@ import (
"encoding/json"
"errors"
"io"
- "io/ioutil"
"net"
"net/http"
"net/url"
@@ -208,7 +207,7 @@ again:
n, err = ws.frameReader.Read(msg)
if err == io.EOF {
if trailer := ws.frameReader.TrailerReader(); trailer != nil {
- io.Copy(ioutil.Discard, trailer)
+ io.Copy(io.Discard, trailer)
}
ws.frameReader = nil
goto again
@@ -330,7 +329,7 @@ func (cd Codec) Receive(ws *Conn, v interface{}) (err error) {
ws.rio.Lock()
defer ws.rio.Unlock()
if ws.frameReader != nil {
- _, err = io.Copy(ioutil.Discard, ws.frameReader)
+ _, err = io.Copy(io.Discard, ws.frameReader)
if err != nil {
return err
}
@@ -362,7 +361,7 @@ again:
return ErrFrameTooLarge
}
payloadType := frame.PayloadType()
- data, err := ioutil.ReadAll(frame)
+ data, err := io.ReadAll(frame)
if err != nil {
return err
}
diff --git a/vendor/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh
index fdcaa974d..4ed2e488b 100644
--- a/vendor/golang.org/x/sys/unix/mkerrors.sh
+++ b/vendor/golang.org/x/sys/unix/mkerrors.sh
@@ -263,6 +263,7 @@ struct ltchars {
#include
#include
#include
+#include
#include
#include
#include
@@ -549,6 +550,7 @@ ccflags="$@"
$2 !~ "NLA_TYPE_MASK" &&
$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
+ $2 ~ /^SOCK_|SK_DIAG_|SKNLGRP_$/ ||
$2 ~ /^FIORDCHK$/ ||
$2 ~ /^SIOC/ ||
$2 ~ /^TIOC/ ||
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux.go b/vendor/golang.org/x/sys/unix/zerrors_linux.go
index 93a38a97d..877a62b47 100644
--- a/vendor/golang.org/x/sys/unix/zerrors_linux.go
+++ b/vendor/golang.org/x/sys/unix/zerrors_linux.go
@@ -502,6 +502,7 @@ const (
BPF_IMM = 0x0
BPF_IND = 0x40
BPF_JA = 0x0
+ BPF_JCOND = 0xe0
BPF_JEQ = 0x10
BPF_JGE = 0x30
BPF_JGT = 0x20
@@ -657,6 +658,9 @@ const (
CAN_NPROTO = 0x8
CAN_RAW = 0x1
CAN_RAW_FILTER_MAX = 0x200
+ CAN_RAW_XL_VCID_RX_FILTER = 0x4
+ CAN_RAW_XL_VCID_TX_PASS = 0x2
+ CAN_RAW_XL_VCID_TX_SET = 0x1
CAN_RTR_FLAG = 0x40000000
CAN_SFF_ID_BITS = 0xb
CAN_SFF_MASK = 0x7ff
@@ -1339,6 +1343,7 @@ const (
F_OFD_SETLK = 0x25
F_OFD_SETLKW = 0x26
F_OK = 0x0
+ F_SEAL_EXEC = 0x20
F_SEAL_FUTURE_WRITE = 0x10
F_SEAL_GROW = 0x4
F_SEAL_SEAL = 0x1
@@ -1627,6 +1632,7 @@ const (
IP_FREEBIND = 0xf
IP_HDRINCL = 0x3
IP_IPSEC_POLICY = 0x10
+ IP_LOCAL_PORT_RANGE = 0x33
IP_MAXPACKET = 0xffff
IP_MAX_MEMBERSHIPS = 0x14
IP_MF = 0x2000
@@ -1653,6 +1659,7 @@ const (
IP_PMTUDISC_OMIT = 0x5
IP_PMTUDISC_PROBE = 0x3
IP_PMTUDISC_WANT = 0x1
+ IP_PROTOCOL = 0x34
IP_RECVERR = 0xb
IP_RECVERR_RFC4884 = 0x1a
IP_RECVFRAGSIZE = 0x19
@@ -2169,7 +2176,7 @@ const (
NFT_SECMARK_CTX_MAXLEN = 0x100
NFT_SET_MAXNAMELEN = 0x100
NFT_SOCKET_MAX = 0x3
- NFT_TABLE_F_MASK = 0x3
+ NFT_TABLE_F_MASK = 0x7
NFT_TABLE_MAXNAMELEN = 0x100
NFT_TRACETYPE_MAX = 0x3
NFT_TUNNEL_F_MASK = 0x7
@@ -2403,6 +2410,7 @@ const (
PERF_RECORD_MISC_USER = 0x2
PERF_SAMPLE_BRANCH_PLM_ALL = 0x7
PERF_SAMPLE_WEIGHT_TYPE = 0x1004000
+ PID_FS_MAGIC = 0x50494446
PIPEFS_MAGIC = 0x50495045
PPPIOCGNPMODE = 0xc008744c
PPPIOCNEWUNIT = 0xc004743e
@@ -2896,8 +2904,9 @@ const (
RWF_APPEND = 0x10
RWF_DSYNC = 0x2
RWF_HIPRI = 0x1
+ RWF_NOAPPEND = 0x20
RWF_NOWAIT = 0x8
- RWF_SUPPORTED = 0x1f
+ RWF_SUPPORTED = 0x3f
RWF_SYNC = 0x4
RWF_WRITE_LIFE_NOT_SET = 0x0
SCHED_BATCH = 0x3
@@ -2918,7 +2927,9 @@ const (
SCHED_RESET_ON_FORK = 0x40000000
SCHED_RR = 0x2
SCM_CREDENTIALS = 0x2
+ SCM_PIDFD = 0x4
SCM_RIGHTS = 0x1
+ SCM_SECURITY = 0x3
SCM_TIMESTAMP = 0x1d
SC_LOG_FLUSH = 0x100000
SECCOMP_ADDFD_FLAG_SEND = 0x2
@@ -3051,6 +3062,8 @@ const (
SIOCSMIIREG = 0x8949
SIOCSRARP = 0x8962
SIOCWANDEV = 0x894a
+ SK_DIAG_BPF_STORAGE_MAX = 0x3
+ SK_DIAG_BPF_STORAGE_REQ_MAX = 0x1
SMACK_MAGIC = 0x43415d53
SMART_AUTOSAVE = 0xd2
SMART_AUTO_OFFLINE = 0xdb
@@ -3071,6 +3084,8 @@ const (
SOCKFS_MAGIC = 0x534f434b
SOCK_BUF_LOCK_MASK = 0x3
SOCK_DCCP = 0x6
+ SOCK_DESTROY = 0x15
+ SOCK_DIAG_BY_FAMILY = 0x14
SOCK_IOC_TYPE = 0x89
SOCK_PACKET = 0xa
SOCK_RAW = 0x3
@@ -3260,6 +3275,7 @@ const (
TCP_MAX_WINSHIFT = 0xe
TCP_MD5SIG = 0xe
TCP_MD5SIG_EXT = 0x20
+ TCP_MD5SIG_FLAG_IFINDEX = 0x2
TCP_MD5SIG_FLAG_PREFIX = 0x1
TCP_MD5SIG_MAXKEYLEN = 0x50
TCP_MSS = 0x200
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go
index 42ff8c3c1..e4bc0bd57 100644
--- a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go
+++ b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go
@@ -118,6 +118,7 @@ const (
IXOFF = 0x1000
IXON = 0x400
MAP_32BIT = 0x40
+ MAP_ABOVE4G = 0x80
MAP_ANON = 0x20
MAP_ANONYMOUS = 0x20
MAP_DENYWRITE = 0x800
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
index dca436004..689317afd 100644
--- a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
+++ b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
@@ -118,6 +118,7 @@ const (
IXOFF = 0x1000
IXON = 0x400
MAP_32BIT = 0x40
+ MAP_ABOVE4G = 0x80
MAP_ANON = 0x20
MAP_ANONYMOUS = 0x20
MAP_DENYWRITE = 0x800
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
index d8cae6d15..14270508b 100644
--- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
+++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
@@ -87,6 +87,7 @@ const (
FICLONE = 0x40049409
FICLONERANGE = 0x4020940d
FLUSHO = 0x1000
+ FPMR_MAGIC = 0x46504d52
FPSIMD_MAGIC = 0x46508001
FS_IOC_ENABLE_VERITY = 0x40806685
FS_IOC_GETFLAGS = 0x80086601
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go
index 0036746ea..4740b8348 100644
--- a/vendor/golang.org/x/sys/unix/ztypes_linux.go
+++ b/vendor/golang.org/x/sys/unix/ztypes_linux.go
@@ -4605,7 +4605,7 @@ const (
NL80211_ATTR_MAC_HINT = 0xc8
NL80211_ATTR_MAC_MASK = 0xd7
NL80211_ATTR_MAX_AP_ASSOC_STA = 0xca
- NL80211_ATTR_MAX = 0x149
+ NL80211_ATTR_MAX = 0x14a
NL80211_ATTR_MAX_CRIT_PROT_DURATION = 0xb4
NL80211_ATTR_MAX_CSA_COUNTERS = 0xce
NL80211_ATTR_MAX_MATCH_SETS = 0x85
@@ -5209,7 +5209,7 @@ const (
NL80211_FREQUENCY_ATTR_GO_CONCURRENT = 0xf
NL80211_FREQUENCY_ATTR_INDOOR_ONLY = 0xe
NL80211_FREQUENCY_ATTR_IR_CONCURRENT = 0xf
- NL80211_FREQUENCY_ATTR_MAX = 0x1f
+ NL80211_FREQUENCY_ATTR_MAX = 0x20
NL80211_FREQUENCY_ATTR_MAX_TX_POWER = 0x6
NL80211_FREQUENCY_ATTR_NO_10MHZ = 0x11
NL80211_FREQUENCY_ATTR_NO_160MHZ = 0xc
@@ -5703,7 +5703,7 @@ const (
NL80211_STA_FLAG_ASSOCIATED = 0x7
NL80211_STA_FLAG_AUTHENTICATED = 0x5
NL80211_STA_FLAG_AUTHORIZED = 0x1
- NL80211_STA_FLAG_MAX = 0x7
+ NL80211_STA_FLAG_MAX = 0x8
NL80211_STA_FLAG_MAX_OLD_API = 0x6
NL80211_STA_FLAG_MFP = 0x4
NL80211_STA_FLAG_SHORT_PREAMBLE = 0x2
@@ -6001,3 +6001,34 @@ type CachestatRange struct {
Off uint64
Len uint64
}
+
+const (
+ SK_MEMINFO_RMEM_ALLOC = 0x0
+ SK_MEMINFO_RCVBUF = 0x1
+ SK_MEMINFO_WMEM_ALLOC = 0x2
+ SK_MEMINFO_SNDBUF = 0x3
+ SK_MEMINFO_FWD_ALLOC = 0x4
+ SK_MEMINFO_WMEM_QUEUED = 0x5
+ SK_MEMINFO_OPTMEM = 0x6
+ SK_MEMINFO_BACKLOG = 0x7
+ SK_MEMINFO_DROPS = 0x8
+ SK_MEMINFO_VARS = 0x9
+ SKNLGRP_NONE = 0x0
+ SKNLGRP_INET_TCP_DESTROY = 0x1
+ SKNLGRP_INET_UDP_DESTROY = 0x2
+ SKNLGRP_INET6_TCP_DESTROY = 0x3
+ SKNLGRP_INET6_UDP_DESTROY = 0x4
+ SK_DIAG_BPF_STORAGE_REQ_NONE = 0x0
+ SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 0x1
+ SK_DIAG_BPF_STORAGE_REP_NONE = 0x0
+ SK_DIAG_BPF_STORAGE = 0x1
+ SK_DIAG_BPF_STORAGE_NONE = 0x0
+ SK_DIAG_BPF_STORAGE_PAD = 0x1
+ SK_DIAG_BPF_STORAGE_MAP_ID = 0x2
+ SK_DIAG_BPF_STORAGE_MAP_VALUE = 0x3
+)
+
+type SockDiagReq struct {
+ Family uint8
+ Protocol uint8
+}
diff --git a/vendor/golang.org/x/sys/windows/security_windows.go b/vendor/golang.org/x/sys/windows/security_windows.go
index 26be94a8a..6f7d2ac70 100644
--- a/vendor/golang.org/x/sys/windows/security_windows.go
+++ b/vendor/golang.org/x/sys/windows/security_windows.go
@@ -68,6 +68,7 @@ type UserInfo10 struct {
//sys NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
//sys NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
//sys NetApiBufferFree(buf *byte) (neterr error) = netapi32.NetApiBufferFree
+//sys NetUserEnum(serverName *uint16, level uint32, filter uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, resumeHandle *uint32) (neterr error) = netapi32.NetUserEnum
const (
// do not reorder
diff --git a/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/vendor/golang.org/x/sys/windows/zsyscall_windows.go
index 5c6035ddf..9f73df75b 100644
--- a/vendor/golang.org/x/sys/windows/zsyscall_windows.go
+++ b/vendor/golang.org/x/sys/windows/zsyscall_windows.go
@@ -401,6 +401,7 @@ var (
procTransmitFile = modmswsock.NewProc("TransmitFile")
procNetApiBufferFree = modnetapi32.NewProc("NetApiBufferFree")
procNetGetJoinInformation = modnetapi32.NewProc("NetGetJoinInformation")
+ procNetUserEnum = modnetapi32.NewProc("NetUserEnum")
procNetUserGetInfo = modnetapi32.NewProc("NetUserGetInfo")
procNtCreateFile = modntdll.NewProc("NtCreateFile")
procNtCreateNamedPipeFile = modntdll.NewProc("NtCreateNamedPipeFile")
@@ -3486,6 +3487,14 @@ func NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (nete
return
}
+func NetUserEnum(serverName *uint16, level uint32, filter uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, resumeHandle *uint32) (neterr error) {
+ r0, _, _ := syscall.Syscall9(procNetUserEnum.Addr(), 8, uintptr(unsafe.Pointer(serverName)), uintptr(level), uintptr(filter), uintptr(unsafe.Pointer(buf)), uintptr(prefMaxLen), uintptr(unsafe.Pointer(entriesRead)), uintptr(unsafe.Pointer(totalEntries)), uintptr(unsafe.Pointer(resumeHandle)), 0)
+ if r0 != 0 {
+ neterr = syscall.Errno(r0)
+ }
+ return
+}
+
func NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) {
r0, _, _ := syscall.Syscall6(procNetUserGetInfo.Addr(), 4, uintptr(unsafe.Pointer(serverName)), uintptr(unsafe.Pointer(userName)), uintptr(level), uintptr(unsafe.Pointer(buf)), 0, 0)
if r0 != 0 {
diff --git a/vendor/kmodules.xyz/client-go/api/v1/cluster.go b/vendor/kmodules.xyz/client-go/api/v1/cluster.go
index 046ba4855..1de796faf 100644
--- a/vendor/kmodules.xyz/client-go/api/v1/cluster.go
+++ b/vendor/kmodules.xyz/client-go/api/v1/cluster.go
@@ -16,7 +16,13 @@ limitations under the License.
package v1
-import "strings"
+import (
+ "crypto/hmac"
+ "crypto/sha256"
+ "encoding/base64"
+ "fmt"
+ "strings"
+)
// +kubebuilder:validation:Enum=Aws;Azure;DigitalOcean;GoogleCloud;Linode;Packet;Scaleway;Vultr;BareMetal;KIND;Generic;Private
type HostingProvider string
@@ -26,6 +32,7 @@ const (
HostingProviderAzure HostingProvider = "Azure"
HostingProviderDigitalOcean HostingProvider = "DigitalOcean"
HostingProviderGoogleCloud HostingProvider = "GoogleCloud"
+ HostingProviderExoscale HostingProvider = "Exoscale"
HostingProviderLinode HostingProvider = "Linode"
HostingProviderPacket HostingProvider = "Packet"
HostingProviderScaleway HostingProvider = "Scaleway"
@@ -37,6 +44,8 @@ const (
)
const (
+ AceInfoConfigMapName = "ace-info"
+
ClusterNameKey string = "cluster.appscode.com/name"
ClusterDisplayNameKey string = "cluster.appscode.com/display-name"
ClusterProviderNameKey string = "cluster.appscode.com/provider"
@@ -47,6 +56,17 @@ type ClusterMetadata struct {
Name string `json:"name,omitempty" protobuf:"bytes,2,opt,name=name"`
DisplayName string `json:"displayName,omitempty" protobuf:"bytes,3,opt,name=displayName"`
Provider HostingProvider `json:"provider,omitempty" protobuf:"bytes,4,opt,name=provider,casttype=HostingProvider"`
+ OwnerID string `json:"ownerID,omitempty"`
+ OwnerType string `json:"ownerType,omitempty"`
+ APIEndpoint string `json:"apiEndpoint,omitempty"`
+ CABundle string `json:"caBundle,omitempty"`
+}
+
+func (md ClusterMetadata) State() string {
+ hasher := hmac.New(sha256.New, []byte(md.UID))
+ state := fmt.Sprintf("%s,%s", md.APIEndpoint, md.OwnerID)
+ hasher.Write([]byte(state))
+ return base64.URLEncoding.EncodeToString(hasher.Sum(nil))
}
/*
diff --git a/vendor/kmodules.xyz/client-go/api/v1/resource.go b/vendor/kmodules.xyz/client-go/api/v1/resource.go
index ec85b0aac..b03e80f83 100644
--- a/vendor/kmodules.xyz/client-go/api/v1/resource.go
+++ b/vendor/kmodules.xyz/client-go/api/v1/resource.go
@@ -18,6 +18,7 @@ package v1
import (
"fmt"
+ "strings"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -68,6 +69,14 @@ func (r ResourceID) GroupVersionKind() schema.GroupVersionKind {
return schema.GroupVersionKind{Group: r.Group, Version: r.Version, Kind: r.Kind}
}
+func (r ResourceID) ListGroupVersionKind() schema.GroupVersionKind {
+ kind := r.Kind + "List"
+ if strings.HasSuffix(r.Kind, "List") {
+ kind = r.Kind
+ }
+ return schema.GroupVersionKind{Group: r.Group, Version: r.Version, Kind: kind}
+}
+
func (r ResourceID) MetaGVR() metav1.GroupVersionResource {
return metav1.GroupVersionResource{Group: r.Group, Version: r.Version, Resource: r.Name}
}
@@ -156,9 +165,9 @@ func ExtractResourceID(mapper meta.RESTMapper, in ResourceID) (*ResourceID, erro
}
kindFound := in.Kind != ""
- resFOund := in.Name != ""
+ resFound := in.Name != ""
if kindFound {
- if resFOund {
+ if resFound {
return &in, nil
} else {
var versions []string
@@ -175,7 +184,7 @@ func ExtractResourceID(mapper meta.RESTMapper, in ResourceID) (*ResourceID, erro
return NewResourceID(mapping), nil
}
} else {
- if resFOund {
+ if resFound {
gvk, err := mapper.KindFor(in.GroupVersionResource())
if err != nil {
return nil, err
diff --git a/vendor/kmodules.xyz/client-go/apiextensions/controller.go b/vendor/kmodules.xyz/client-go/apiextensions/controller.go
index 94425010f..6d3d66a66 100644
--- a/vendor/kmodules.xyz/client-go/apiextensions/controller.go
+++ b/vendor/kmodules.xyz/client-go/apiextensions/controller.go
@@ -20,21 +20,29 @@ import (
"context"
"sync"
- apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
+ apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
+ "k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/runtime/schema"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/log"
)
-type SetupFn func(ctx context.Context, mgr ctrl.Manager)
+type (
+ SetupFn func(context.Context, ctrl.Manager)
+ TestFn func(meta.RESTMapper, *apiextensionsv1.CustomResourceDefinition) bool
+)
-var setupFns = map[schema.GroupKind]SetupFn{
- // schema.GroupKind{"compute.gcp.kubedb.com", "Firewall"}: firewall.Setup,
+type setupGroup struct {
+ gks []schema.GroupKind
+ fn SetupFn
}
var (
+ setupFns = make(map[schema.GroupKind]setupGroup)
+ testFns = make(map[schema.GroupKind]TestFn)
setupDone = map[schema.GroupKind]bool{}
+ CRDParam = struct{}{}
mu sync.Mutex
)
@@ -49,7 +57,7 @@ func NewReconciler(ctx context.Context, mgr ctrl.Manager) *Reconciler {
func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
log := log.FromContext(ctx)
- var crd apiextensions.CustomResourceDefinition
+ var crd apiextensionsv1.CustomResourceDefinition
if err := r.mgr.GetClient().Get(ctx, req.NamespacedName, &crd); err != nil {
log.Error(err, "unable to fetch CustomResourceDefinition")
return ctrl.Result{}, client.IgnoreNotFound(err)
@@ -65,9 +73,19 @@ func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Resu
if found {
return ctrl.Result{}, nil
}
- setup, found := setupFns[gk]
- if found {
- setup(r.ctx, r.mgr)
+
+ setup, setupFnExists := setupFns[gk]
+ if !setupFnExists {
+ return ctrl.Result{}, nil
+ }
+ if !testFns[gk](r.mgr.GetRESTMapper(), &crd) {
+ return ctrl.Result{}, nil
+ }
+
+ ctxSetup := context.WithValue(r.ctx, CRDParam, &crd)
+ setup.fn(ctxSetup, r.mgr)
+
+ for _, gk := range setup.gks {
setupDone[gk] = true
}
return ctrl.Result{}, nil
@@ -75,13 +93,58 @@ func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Resu
func (r *Reconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
- For(&apiextensions.CustomResourceDefinition{}).
+ For(&apiextensionsv1.CustomResourceDefinition{}).
Complete(r)
}
-func RegisterSetup(gk schema.GroupKind, fn SetupFn) {
+func RegisterSetup(gk schema.GroupKind, fn SetupFn, tn ...TestFn) {
+ mu.Lock()
+ defer mu.Unlock()
+
+ setupFns[gk] = setupGroup{
+ gks: []schema.GroupKind{gk},
+ fn: fn,
+ }
+ testFns[gk] = andTestFn(tn...)
+}
+
+func MultiRegisterSetup(gks []schema.GroupKind, fn SetupFn, tn ...TestFn) {
mu.Lock()
defer mu.Unlock()
- setupFns[gk] = fn
+ testFN := andTestFn(append(tn, allCRDPresent(gks))...)
+ for _, gk := range gks {
+ setupFns[gk] = setupGroup{
+ gks: gks,
+ fn: fn,
+ }
+ testFns[gk] = testFN
+ }
+}
+
+func allCRDPresent(gks []schema.GroupKind) TestFn {
+ return func(mapper meta.RESTMapper, definition *apiextensionsv1.CustomResourceDefinition) bool {
+ for _, gk := range gks {
+ if !crdFound(mapper, gk) {
+ return false
+ }
+ }
+ return true
+ }
+}
+
+func crdFound(mapper meta.RESTMapper, gk schema.GroupKind) bool {
+ _, err := mapper.RESTMappings(gk)
+ return err == nil
+}
+
+func andTestFn(fns ...TestFn) TestFn {
+ return func(mapper meta.RESTMapper, crd *apiextensionsv1.CustomResourceDefinition) bool {
+ for _, fn := range fns {
+ if !fn(mapper, crd) {
+ return false
+ }
+ }
+ return true
+ }
}
diff --git a/vendor/kmodules.xyz/client-go/apiextensions/kubernetes.go b/vendor/kmodules.xyz/client-go/apiextensions/kubernetes.go
index 63052359d..c4414f520 100644
--- a/vendor/kmodules.xyz/client-go/apiextensions/kubernetes.go
+++ b/vendor/kmodules.xyz/client-go/apiextensions/kubernetes.go
@@ -34,6 +34,10 @@ import (
)
func RegisterCRDs(client crd_cs.Interface, crds []*CustomResourceDefinition) error {
+ return RegisterWithOpts(client, crds, false)
+}
+
+func RegisterWithOpts(client crd_cs.Interface, crds []*CustomResourceDefinition, preserveConversion bool) error {
for _, crd := range crds {
// Use crd v1 for k8s >= 1.16, if available
// ref: https://github.com/kubernetes/kubernetes/issues/91395
@@ -49,13 +53,34 @@ func RegisterCRDs(client crd_cs.Interface, crds []*CustomResourceDefinition) err
context.TODO(),
client,
crd.V1.Name,
- func(in *crdv1.CustomResourceDefinition) *crdv1.CustomResourceDefinition {
- in.Labels = meta_util.OverwriteKeys(in.Labels, crd.V1.Labels)
- in.Annotations = meta_util.OverwriteKeys(in.Annotations, crd.V1.Annotations)
+ transform(crd, preserveConversion),
+ metav1.UpdateOptions{},
+ )
+ if err != nil && !kerr.IsAlreadyExists(err) {
+ return err
+ }
+ }
+ return WaitForCRDReady(client, crds)
+}
+
+func UpdateWithOpts(client crd_cs.Interface, crds []*CustomResourceDefinition, preserveConversion bool) error {
+ for _, crd := range crds {
+ // Use crd v1 for k8s >= 1.16, if available
+ // ref: https://github.com/kubernetes/kubernetes/issues/91395
+ if crd.V1 == nil {
+ gvr := schema.GroupVersionResource{
+ Group: crd.V1beta1.Spec.Group,
+ Version: crd.V1beta1.Spec.Versions[0].Name,
+ Resource: crd.V1beta1.Spec.Names.Plural,
+ }
+ return fmt.Errorf("missing V1 definition for %s", gvr)
+ }
- in.Spec = crd.V1.Spec
- return in
- },
+ _, _, err := v1.UpdateCustomResourceDefinitionIfPresent(
+ context.TODO(),
+ client,
+ crd.V1.Name,
+ transform(crd, preserveConversion),
metav1.UpdateOptions{},
)
if err != nil && !kerr.IsAlreadyExists(err) {
@@ -65,6 +90,21 @@ func RegisterCRDs(client crd_cs.Interface, crds []*CustomResourceDefinition) err
return WaitForCRDReady(client, crds)
}
+func transform(crd *CustomResourceDefinition, preserveConversion bool) func(in *crdv1.CustomResourceDefinition) *crdv1.CustomResourceDefinition {
+ return func(in *crdv1.CustomResourceDefinition) *crdv1.CustomResourceDefinition {
+ in.Labels = meta_util.OverwriteKeys(in.Labels, crd.V1.Labels)
+ in.Annotations = meta_util.OverwriteKeys(in.Annotations, crd.V1.Annotations)
+
+ conversion := in.Spec.Conversion
+ in.Spec = crd.V1.Spec
+ // preserve conversion
+ if preserveConversion && crd.V1.Spec.Conversion == nil && conversion != nil {
+ in.Spec.Conversion = conversion
+ }
+ return in
+ }
+}
+
func WaitForCRDReady(client crd_cs.Interface, crds []*CustomResourceDefinition) error {
err := wait.PollUntilContextTimeout(context.Background(), 3*time.Second, 5*time.Minute, false, func(ctx context.Context) (bool, error) {
for _, crd := range crds {
diff --git a/vendor/kmodules.xyz/client-go/apiextensions/v1/crd.go b/vendor/kmodules.xyz/client-go/apiextensions/v1/crd.go
index 28156ee2a..c6aa7bfc2 100644
--- a/vendor/kmodules.xyz/client-go/apiextensions/v1/crd.go
+++ b/vendor/kmodules.xyz/client-go/apiextensions/v1/crd.go
@@ -67,6 +67,34 @@ func CreateOrUpdateCustomResourceDefinition(
return cur, kutil.VerbUpdated, nil
}
+func UpdateCustomResourceDefinitionIfPresent(
+ ctx context.Context,
+ c cs.Interface,
+ name string,
+ transform func(in *api.CustomResourceDefinition) *api.CustomResourceDefinition,
+ opts metav1.UpdateOptions,
+) (*api.CustomResourceDefinition, kutil.VerbType, error) {
+ _, err := c.ApiextensionsV1().CustomResourceDefinitions().Get(ctx, name, metav1.GetOptions{})
+ if kerr.IsNotFound(err) {
+ return transform(&api.CustomResourceDefinition{
+ TypeMeta: metav1.TypeMeta{
+ APIVersion: api.SchemeGroupVersion.String(),
+ Kind: "CustomResourceDefinition",
+ },
+ ObjectMeta: metav1.ObjectMeta{
+ Name: name,
+ },
+ }), kutil.VerbUnchanged, nil
+ } else if err != nil {
+ return nil, kutil.VerbUnchanged, err
+ }
+ cur, err := TryUpdateCustomResourceDefinition(ctx, c, name, transform, opts)
+ if err != nil {
+ return nil, kutil.VerbUnchanged, err
+ }
+ return cur, kutil.VerbUpdated, nil
+}
+
func TryUpdateCustomResourceDefinition(
ctx context.Context,
c cs.Interface,
diff --git a/vendor/kmodules.xyz/client-go/cluster/detector.go b/vendor/kmodules.xyz/client-go/cluster/detector.go
new file mode 100644
index 000000000..b7ca72310
--- /dev/null
+++ b/vendor/kmodules.xyz/client-go/cluster/detector.go
@@ -0,0 +1,115 @@
+/*
+Copyright AppsCode Inc. and Contributors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package cluster
+
+import (
+ "crypto/tls"
+ "crypto/x509"
+ "fmt"
+ "net"
+ "net/http"
+ "strings"
+ "time"
+
+ kmapi "kmodules.xyz/client-go/api/v1"
+
+ "k8s.io/apimachinery/pkg/api/meta"
+ "k8s.io/apimachinery/pkg/runtime/schema"
+ "k8s.io/client-go/rest"
+)
+
+const (
+ aksDomain = ".azmk8s.io"
+ eksDomain = ".eks.amazonaws.com"
+ exoscaleDomain = ".exo.io"
+ doDomain = ".k8s.ondigitalocean.com"
+ lkeDomain = ".linodelke.net"
+ scalewayDomain = ".scw.cloud"
+ vultrDomain = ".vultr-k8s.com"
+)
+
+func APIServerCertificate(cfg *rest.Config) (*x509.Certificate, error) {
+ err := rest.LoadTLSFiles(cfg)
+ if err != nil {
+ return nil, err
+ }
+
+ // create ca cert pool
+ caCertPool := x509.NewCertPool()
+ ok := caCertPool.AppendCertsFromPEM(cfg.CAData)
+ if !ok {
+ return nil, fmt.Errorf("can't append caCert to caCertPool")
+ }
+
+ tr := &http.Transport{
+ Proxy: http.ProxyFromEnvironment,
+ DialContext: (&net.Dialer{
+ Timeout: 30 * time.Second,
+ KeepAlive: 30 * time.Second,
+ }).DialContext,
+ MaxIdleConns: 100,
+ IdleConnTimeout: 90 * time.Second,
+ TLSHandshakeTimeout: 10 * time.Second,
+ ExpectContinueTimeout: 1 * time.Second,
+ TLSClientConfig: &tls.Config{RootCAs: caCertPool},
+ }
+ client := &http.Client{Transport: tr}
+
+ resp, err := client.Get(cfg.Host)
+ if err != nil {
+ return nil, err
+ }
+ for i := range resp.TLS.VerifiedChains {
+ return resp.TLS.VerifiedChains[i][0], nil
+ }
+ return nil, fmt.Errorf("no cert found")
+}
+
+func DetectProvider(cfg *rest.Config, mapper meta.RESTMapper) (kmapi.HostingProvider, error) {
+ crt, err := APIServerCertificate(cfg)
+ if err != nil {
+ return "", err
+ }
+
+ for _, host := range crt.DNSNames {
+ if strings.HasSuffix(host, eksDomain) {
+ return kmapi.HostingProviderAWS, nil
+ } else if strings.HasSuffix(host, aksDomain) {
+ return kmapi.HostingProviderAzure, nil
+ } else if strings.HasSuffix(host, doDomain) {
+ return kmapi.HostingProviderDigitalOcean, nil
+ } else if strings.HasSuffix(host, exoscaleDomain) {
+ return kmapi.HostingProviderExoscale, nil
+ } else if strings.HasSuffix(host, lkeDomain) {
+ return kmapi.HostingProviderLinode, nil
+ } else if strings.HasSuffix(host, scalewayDomain) {
+ return kmapi.HostingProviderScaleway, nil
+ } else if strings.HasSuffix(host, vultrDomain) {
+ return kmapi.HostingProviderVultr, nil
+ }
+ }
+
+ // GKE does not use any custom domain
+ if _, err := mapper.RESTMappings(schema.GroupKind{
+ Group: "networking.gke.io",
+ Kind: "Network",
+ }); err == nil {
+ return kmapi.HostingProviderGoogleCloud, nil
+ }
+
+ return "", nil
+}
diff --git a/vendor/kmodules.xyz/client-go/cluster/flag.go b/vendor/kmodules.xyz/client-go/cluster/flag.go
new file mode 100644
index 000000000..7d97c308c
--- /dev/null
+++ b/vendor/kmodules.xyz/client-go/cluster/flag.go
@@ -0,0 +1,37 @@
+/*
+Copyright AppsCode Inc. and Contributors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package cluster
+
+import (
+ "flag"
+
+ "github.com/spf13/pflag"
+)
+
+var clusterName = ""
+
+func AddFlags(fs *pflag.FlagSet) {
+ fs.StringVar(&clusterName, "cluster-name", clusterName, "Name of cluster used in a multi-cluster setup")
+}
+
+func AddGoFlags(fs *flag.FlagSet) {
+ fs.StringVar(&clusterName, "cluster-name", clusterName, "Name of cluster used in a multi-cluster setup")
+}
+
+func ClusterName() string {
+ return clusterName
+}
diff --git a/vendor/kmodules.xyz/client-go/meta/cloud.go b/vendor/kmodules.xyz/client-go/cluster/host_detector.go
similarity index 97%
rename from vendor/kmodules.xyz/client-go/meta/cloud.go
rename to vendor/kmodules.xyz/client-go/cluster/host_detector.go
index a7eb65565..f10bbbd9f 100644
--- a/vendor/kmodules.xyz/client-go/meta/cloud.go
+++ b/vendor/kmodules.xyz/client-go/cluster/host_detector.go
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-package meta
+package cluster
import (
"crypto/x509"
@@ -67,8 +67,6 @@ func TestGKE() (string, error) {
return v.(string), nil
}
-const aksDomain = ".azmk8s.io"
-
func TestAKS(cert *x509.Certificate) (string, error) {
for _, host := range cert.DNSNames {
if strings.HasSuffix(host, aksDomain) && isAKS() == nil {
@@ -98,8 +96,6 @@ func isAKS() error {
return nil
}
-const eksDomain = ".eks.amazonaws.com"
-
func TestEKS(cert *x509.Certificate) (string, error) {
for _, host := range cert.DNSNames {
if strings.HasSuffix(host, eksDomain) && isEKS() == nil {
diff --git a/vendor/kmodules.xyz/client-go/cluster/lib.go b/vendor/kmodules.xyz/client-go/cluster/lib.go
index 905f1a91f..c1a9cedd1 100644
--- a/vendor/kmodules.xyz/client-go/cluster/lib.go
+++ b/vendor/kmodules.xyz/client-go/cluster/lib.go
@@ -18,12 +18,17 @@ package cluster
import (
"context"
+ "crypto/hmac"
+ "crypto/sha256"
+ "encoding/json"
"errors"
+ "fmt"
kmapi "kmodules.xyz/client-go/api/v1"
- "kmodules.xyz/client-go/tools/clusterid"
+ cu "kmodules.xyz/client-go/client"
core "k8s.io/api/core/v1"
+ kerr "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
@@ -47,7 +52,109 @@ func ClusterMetadata(c client.Reader) (*kmapi.ClusterMetadata, error) {
if err != nil {
return nil, err
}
- return clusterid.ClusterMetadataForNamespace(&ns)
+
+ var cm core.ConfigMap
+ err = c.Get(context.TODO(), client.ObjectKey{Name: kmapi.AceInfoConfigMapName, Namespace: metav1.NamespacePublic}, &cm)
+ if err == nil {
+ result, err := ClusterMetadataFromConfigMap(&cm, string(ns.UID))
+ if err == nil {
+ return result, nil
+ }
+ } else if !kerr.IsNotFound(err) {
+ return nil, err
+ }
+
+ return LegacyClusterMetadataFromNamespace(&ns)
+}
+
+func LegacyClusterMetadataFromNamespace(ns *core.Namespace) (*kmapi.ClusterMetadata, error) {
+ if ns.Name != metav1.NamespaceSystem {
+ return nil, fmt.Errorf("expected namespace %s, found namespace %s", metav1.NamespaceSystem, ns.Name)
+ }
+ name := ns.Annotations[kmapi.ClusterNameKey]
+ if name == "" {
+ name = ClusterName()
+ }
+ md := &kmapi.ClusterMetadata{
+ UID: string(ns.UID),
+ Name: name,
+ DisplayName: ns.Annotations[kmapi.ClusterDisplayNameKey],
+ Provider: kmapi.HostingProvider(ns.Annotations[kmapi.ClusterProviderNameKey]),
+ }
+ return md, nil
+}
+
+func ClusterMetadataFromConfigMap(cm *core.ConfigMap, clusterUIDVerifier string) (*kmapi.ClusterMetadata, error) {
+ if cm.Name != kmapi.AceInfoConfigMapName || cm.Namespace != metav1.NamespacePublic {
+ return nil, fmt.Errorf("expected configmap %s/%s, found %s/%s", metav1.NamespacePublic, kmapi.AceInfoConfigMapName, cm.Namespace, cm.Name)
+ }
+
+ md := &kmapi.ClusterMetadata{
+ UID: cm.Data["uid"],
+ Name: cm.Data["name"],
+ DisplayName: cm.Data["displayName"],
+ Provider: kmapi.HostingProvider(cm.Data["provider"]),
+ OwnerID: cm.Data["ownerID"],
+ OwnerType: cm.Data["ownerType"],
+ APIEndpoint: cm.Data["apiEndpoint"],
+ CABundle: cm.Data["ca.crt"],
+ }
+
+ data, err := json.Marshal(md)
+ if err != nil {
+ return nil, err
+ }
+ hasher := hmac.New(sha256.New, []byte(clusterUIDVerifier))
+ hasher.Write(data)
+ messageMAC := hasher.Sum(nil)
+ expectedMAC := cm.BinaryData["mac"]
+ if !hmac.Equal(messageMAC, expectedMAC) {
+ return nil, fmt.Errorf("configmap %s/%s fails validation", cm.Namespace, cm.Name)
+ }
+
+ if md.Name == "" {
+ md.Name = ClusterName()
+ }
+ return md, nil
+}
+
+func UpsertClusterMetadata(kc client.Client, md *kmapi.ClusterMetadata) error {
+ obj := core.ConfigMap{
+ ObjectMeta: metav1.ObjectMeta{
+ Name: kmapi.AceInfoConfigMapName,
+ Namespace: metav1.NamespacePublic,
+ },
+ }
+
+ data, err := json.Marshal(md)
+ if err != nil {
+ return err
+ }
+ hasher := hmac.New(sha256.New, []byte(md.UID))
+ hasher.Write(data)
+ messageMAC := hasher.Sum(nil)
+
+ _, err = cu.CreateOrPatch(context.TODO(), kc, &obj, func(o client.Object, createOp bool) client.Object {
+ cm := o.(*core.ConfigMap)
+ if cm.Data == nil {
+ cm.Data = make(map[string]string)
+ }
+
+ cm.Data["uid"] = md.UID
+ cm.Data["name"] = md.Name
+ cm.Data["displayName"] = md.DisplayName
+ cm.Data["provider"] = string(md.Provider)
+ cm.Data["ownerID"] = md.OwnerID
+ cm.Data["ownerType"] = md.OwnerType
+ cm.Data["apiEndpoint"] = md.APIEndpoint
+ cm.Data["ca.crt"] = md.CABundle
+
+ cm.BinaryData = map[string][]byte{
+ "mac": messageMAC,
+ }
+ return cm
+ })
+ return err
}
func DetectCAPICluster(kc client.Client) (*kmapi.CAPIClusterInfo, error) {
diff --git a/vendor/kmodules.xyz/client-go/core/v1/kubernetes.go b/vendor/kmodules.xyz/client-go/core/v1/kubernetes.go
index d53222dd6..1b7ed9e41 100644
--- a/vendor/kmodules.xyz/client-go/core/v1/kubernetes.go
+++ b/vendor/kmodules.xyz/client-go/core/v1/kubernetes.go
@@ -79,6 +79,15 @@ func GetContainerByName(containers []core.Container, name string) *core.Containe
return nil
}
+func GetContainerIdByName(containers []core.Container, name string) int {
+ for i := range containers {
+ if containers[i].Name == name {
+ return i
+ }
+ }
+ return -1
+}
+
func UpsertContainer(containers []core.Container, upsert core.Container) []core.Container {
for i, container := range containers {
if container.Name == upsert.Name {
diff --git a/vendor/kmodules.xyz/client-go/core/v1/node.go b/vendor/kmodules.xyz/client-go/core/v1/node.go
index 7282a20d4..92642e5bd 100644
--- a/vendor/kmodules.xyz/client-go/core/v1/node.go
+++ b/vendor/kmodules.xyz/client-go/core/v1/node.go
@@ -134,18 +134,6 @@ type Topology struct {
LabelZone string
LabelRegion string
LabelInstanceType string
-
- // https://github.com/kubernetes/kubernetes/blob/v1.17.2/staging/src/k8s.io/api/core/v1/well_known_labels.go
-
- //LabelHostname = "kubernetes.io/hostname"
- //
- //LabelZoneFailureDomain = "failure-domain.beta.kubernetes.io/zone"
- //LabelZoneRegion = "failure-domain.beta.kubernetes.io/region"
- //LabelZoneFailureDomainStable = "topology.kubernetes.io/zone"
- //LabelZoneRegionStable = "topology.kubernetes.io/region"
- //
- //LabelInstanceType = "beta.kubernetes.io/instance-type"
- //LabelInstanceTypeStable = "node.kubernetes.io/instance-type"
}
func (t Topology) ConvertAffinity(affinity *core.Affinity) {
@@ -226,16 +214,16 @@ func DetectTopology(ctx context.Context, mc metadata.Interface) (*Topology, erro
labels := m.GetLabels()
if first {
- if _, ok := labels[core.LabelZoneRegionStable]; ok {
- topology.LabelRegion = core.LabelZoneRegionStable
+ if _, ok := labels[core.LabelTopologyRegion]; ok {
+ topology.LabelRegion = core.LabelTopologyRegion
} else {
- topology.LabelRegion = core.LabelZoneRegion
+ topology.LabelRegion = core.LabelFailureDomainBetaRegion
}
- if _, ok := labels[core.LabelZoneFailureDomainStable]; ok {
- topology.LabelZone = core.LabelZoneFailureDomainStable
+ if _, ok := labels[core.LabelTopologyZone]; ok {
+ topology.LabelZone = core.LabelTopologyZone
} else {
- topology.LabelZone = core.LabelZoneFailureDomain
+ topology.LabelZone = core.LabelFailureDomainBetaZone
}
if _, ok := labels[core.LabelInstanceTypeStable]; ok {
@@ -251,17 +239,15 @@ func DetectTopology(ctx context.Context, mc metadata.Interface) (*Topology, erro
if os != "linux" {
return nil
}
- arch, _ := meta_util.GetStringValueForKeys(labels, core.LabelArchStable, "beta.kubernetes.io/arch")
- if arch != "amd64" {
- return nil
- }
- region, _ := meta_util.GetStringValueForKeys(labels, topology.LabelRegion)
- zone, _ := meta_util.GetStringValueForKeys(labels, topology.LabelZone)
- if _, ok := mapRegion[region]; !ok {
- mapRegion[region] = sets.Set[string]{}
+ if region, ok := labels[topology.LabelRegion]; ok {
+ if _, ok := mapRegion[region]; !ok {
+ mapRegion[region] = sets.Set[string]{}
+ }
+ if zone, ok := labels[topology.LabelZone]; ok {
+ mapRegion[region].Insert(zone)
+ }
}
- mapRegion[region].Insert(zone)
instance, _ := meta_util.GetStringValueForKeys(labels, topology.LabelInstanceType)
if n, ok := instances[instance]; ok {
diff --git a/vendor/kmodules.xyz/client-go/meta/incluster.go b/vendor/kmodules.xyz/client-go/meta/incluster.go
index 86ece8d36..9f5e321c8 100644
--- a/vendor/kmodules.xyz/client-go/meta/incluster.go
+++ b/vendor/kmodules.xyz/client-go/meta/incluster.go
@@ -17,17 +17,11 @@ limitations under the License.
package meta
import (
- "crypto/tls"
- "crypto/x509"
- "fmt"
"net"
- "net/http"
"os"
"strings"
- "time"
core "k8s.io/api/core/v1"
- "k8s.io/client-go/rest"
)
// xref: https://kubernetes.io/docs/concepts/workloads/pods/downward-api/
@@ -71,44 +65,6 @@ func PossiblyInCluster() bool {
err == nil && !fi.IsDir()
}
-func APIServerCertificate(cfg *rest.Config) (*x509.Certificate, error) {
- err := rest.LoadTLSFiles(cfg)
- if err != nil {
- return nil, err
- }
-
- // create ca cert pool
- caCertPool := x509.NewCertPool()
- ok := caCertPool.AppendCertsFromPEM(cfg.CAData)
- if !ok {
- return nil, fmt.Errorf("can't append caCert to caCertPool")
- }
-
- tr := &http.Transport{
- Proxy: http.ProxyFromEnvironment,
- DialContext: (&net.Dialer{
- Timeout: 30 * time.Second,
- KeepAlive: 30 * time.Second,
- DualStack: true,
- }).DialContext,
- MaxIdleConns: 100,
- IdleConnTimeout: 90 * time.Second,
- TLSHandshakeTimeout: 10 * time.Second,
- ExpectContinueTimeout: 1 * time.Second,
- TLSClientConfig: &tls.Config{RootCAs: caCertPool},
- }
- client := &http.Client{Transport: tr}
-
- resp, err := client.Get(cfg.Host)
- if err != nil {
- return nil, err
- }
- for i := range resp.TLS.VerifiedChains {
- return resp.TLS.VerifiedChains[i][0], nil
- }
- return nil, fmt.Errorf("no cert found")
-}
-
func ClusterDomain() string {
defaultDomain := func() string {
if v, ok := os.LookupEnv("KUBE_CLUSTER_DOMAIN"); ok {
diff --git a/vendor/kmodules.xyz/client-go/tools/clusterid/lib.go b/vendor/kmodules.xyz/client-go/tools/clusterid/lib.go
deleted file mode 100644
index 0e29fe4db..000000000
--- a/vendor/kmodules.xyz/client-go/tools/clusterid/lib.go
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
-Copyright AppsCode Inc. and Contributors
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-package clusterid
-
-import (
- "context"
- "flag"
- "fmt"
-
- kmapi "kmodules.xyz/client-go/api/v1"
-
- "github.com/spf13/pflag"
- core "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
-)
-
-var clusterName = ""
-
-func AddFlags(fs *pflag.FlagSet) {
- fs.StringVar(&clusterName, "cluster-name", clusterName, "Name of cluster used in a multi-cluster setup")
-}
-
-func AddGoFlags(fs *flag.FlagSet) {
- fs.StringVar(&clusterName, "cluster-name", clusterName, "Name of cluster used in a multi-cluster setup")
-}
-
-func ClusterName() string {
- return clusterName
-}
-
-func ClusterUID(client corev1.NamespaceInterface) (string, error) {
- ns, err := client.Get(context.TODO(), metav1.NamespaceSystem, metav1.GetOptions{})
- if err != nil {
- return "", err
- }
- return string(ns.UID), nil
-}
-
-func ClusterMetadataForNamespace(ns *core.Namespace) (*kmapi.ClusterMetadata, error) {
- if ns.Name != metav1.NamespaceSystem {
- return nil, fmt.Errorf("expected namespace %s, found namespace %s", metav1.NamespaceSystem, ns.Name)
- }
- name := ns.Annotations[kmapi.ClusterNameKey]
- if name == "" {
- name = ClusterName()
- }
- obj := &kmapi.ClusterMetadata{
- UID: string(ns.UID),
- Name: name,
- DisplayName: ns.Annotations[kmapi.ClusterDisplayNameKey],
- Provider: kmapi.HostingProvider(ns.Annotations[kmapi.ClusterProviderNameKey]),
- }
- return obj, nil
-}
-
-func ClusterMetadata(client corev1.NamespaceInterface) (*kmapi.ClusterMetadata, error) {
- ns, err := client.Get(context.TODO(), metav1.NamespaceSystem, metav1.GetOptions{})
- if err != nil {
- return nil, err
- }
- return ClusterMetadataForNamespace(ns)
-}
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v1/doc.go b/vendor/kmodules.xyz/offshoot-api/api/v1/doc.go
index ee47a05c0..b49f65802 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v1/doc.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v1/doc.go
@@ -15,6 +15,7 @@ limitations under the License.
*/
// +k8s:deepcopy-gen=package
+// +k8s:conversion-gen=kmodules.xyz/offshoot-api/api/v2
// +k8s:openapi-gen=true
// +gencrdrefdocs:force=true
package v1 // import "kmodules.xyz/offshoot-api/api/v1"
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v1/openapi_generated.go b/vendor/kmodules.xyz/offshoot-api/api/v1/openapi_generated.go
index 4581bead5..d69c46efd 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v1/openapi_generated.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v1/openapi_generated.go
@@ -32,6 +32,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
return map[string]common.OpenAPIDefinition{
"kmodules.xyz/offshoot-api/api/v1.ContainerRuntimeSettings": schema_kmodulesxyz_offshoot_api_api_v1_ContainerRuntimeSettings(ref),
"kmodules.xyz/offshoot-api/api/v1.EphemeralVolumeSource": schema_kmodulesxyz_offshoot_api_api_v1_EphemeralVolumeSource(ref),
+ "kmodules.xyz/offshoot-api/api/v1.GatewayPort": schema_kmodulesxyz_offshoot_api_api_v1_GatewayPort(ref),
"kmodules.xyz/offshoot-api/api/v1.IONiceSettings": schema_kmodulesxyz_offshoot_api_api_v1_IONiceSettings(ref),
"kmodules.xyz/offshoot-api/api/v1.NiceSettings": schema_kmodulesxyz_offshoot_api_api_v1_NiceSettings(ref),
"kmodules.xyz/offshoot-api/api/v1.ObjectMeta": schema_kmodulesxyz_offshoot_api_api_v1_ObjectMeta(ref),
@@ -162,6 +163,49 @@ func schema_kmodulesxyz_offshoot_api_api_v1_EphemeralVolumeSource(ref common.Ref
}
}
+func schema_kmodulesxyz_offshoot_api_api_v1_GatewayPort(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "GatewayPort contains information on Gateway service's port.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The name of this port within the gateway service.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "port": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The port that will be exposed by the gateway service.",
+ Default: 0,
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "backendServicePort": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Number of the port to access the backend service.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "nodePort": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The port on each node on which this gateway service is exposed when type is NodePort or LoadBalancer.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ },
+ Required: []string{"port"},
+ },
+ },
+ }
+}
+
func schema_kmodulesxyz_offshoot_api_api_v1_IONiceSettings(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -940,6 +984,12 @@ func schema_kmodulesxyz_offshoot_api_api_v1_PodSpec(ref common.ReferenceCallback
},
},
},
+ "podPlacementPolicy": {
+ SchemaProps: spec.SchemaProps{
+ Description: "PodPlacementPolicy is the reference of the podPlacementPolicy",
+ Ref: ref("k8s.io/api/core/v1.LocalObjectReference"),
+ },
+ },
},
},
},
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v1/types.go b/vendor/kmodules.xyz/offshoot-api/api/v1/types.go
index cfa29a3b0..979f8510b 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v1/types.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v1/types.go
@@ -116,19 +116,16 @@ type PodSpec struct {
// Host networking requested for this pod. Use the host's network namespace.
// If this option is set, the ports that will be used must be specified.
// Default to false.
- // +k8s:conversion-gen=false
// +optional
HostNetwork bool `json:"hostNetwork,omitempty"`
// Use the host's pid namespace.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
HostPID bool `json:"hostPID,omitempty"`
// Use the host's ipc namespace.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
HostIPC bool `json:"hostIPC,omitempty"`
@@ -137,7 +134,6 @@ type PodSpec struct {
// in the same pod, and the first process in each container will not be assigned PID 1.
// HostPID and ShareProcessNamespace cannot both be set.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty"`
@@ -274,6 +270,10 @@ type PodSpec struct {
// +patchMergeKey=mountPath
// +patchStrategy=merge
VolumeMounts []core.VolumeMount `json:"volumeMounts,omitempty" patchStrategy:"merge" patchMergeKey:"mountPath"`
+
+ // PodPlacementPolicy is the reference of the podPlacementPolicy
+ // +optional
+ PodPlacementPolicy *core.LocalObjectReference `json:"podPlacementPolicy,omitempty"`
}
// ServiceTemplateSpec describes the data a service should have when created from a template
@@ -392,6 +392,25 @@ type ServicePort struct {
NodePort int32 `json:"nodePort,omitempty"`
}
+// GatewayPort contains information on Gateway service's port.
+type GatewayPort struct {
+ // The name of this port within the gateway service.
+ // +optional
+ Name string `json:"name,omitempty"`
+
+ // The port that will be exposed by the gateway service.
+ Port int32 `json:"port"`
+
+ // Number of the port to access the backend service.
+ // +optional
+ BackendServicePort int32 `json:"backendServicePort,omitempty"`
+
+ // The port on each node on which this gateway service is exposed when type is
+ // NodePort or LoadBalancer.
+ // +optional
+ NodePort int32 `json:"nodePort,omitempty"`
+}
+
// Beware of MergeServicePorts
// ref: https://github.com/kmodules/client-go/blob/03dac1aea5084354127990a10d0b0e7529460dd5/core/v1/service.go#L103-L136
func PatchServicePorts(cur []core.ServicePort, desired []ServicePort) []core.ServicePort {
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v1/zz_generated.deepcopy.go b/vendor/kmodules.xyz/offshoot-api/api/v1/zz_generated.deepcopy.go
index 2dc937aac..3889daa8d 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v1/zz_generated.deepcopy.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v1/zz_generated.deepcopy.go
@@ -108,6 +108,22 @@ func (in *EphemeralVolumeSource) DeepCopy() *EphemeralVolumeSource {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *GatewayPort) DeepCopyInto(out *GatewayPort) {
+ *out = *in
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayPort.
+func (in *GatewayPort) DeepCopy() *GatewayPort {
+ if in == nil {
+ return nil
+ }
+ out := new(GatewayPort)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *IONiceSettings) DeepCopyInto(out *IONiceSettings) {
*out = *in
@@ -481,6 +497,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
+ if in.PodPlacementPolicy != nil {
+ in, out := &in.PodPlacementPolicy, &out.PodPlacementPolicy
+ *out = new(corev1.LocalObjectReference)
+ **out = **in
+ }
return
}
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v2/openapi_generated.go b/vendor/kmodules.xyz/offshoot-api/api/v2/openapi_generated.go
index a3343cfb3..a06bad46f 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v2/openapi_generated.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v2/openapi_generated.go
@@ -246,12 +246,6 @@ func schema_kmodulesxyz_offshoot_api_api_v2_PodSpec(ref common.ReferenceCallback
},
},
},
- "affinity": {
- SchemaProps: spec.SchemaProps{
- Description: "If specified, the pod's scheduling constraints",
- Ref: ref("k8s.io/api/core/v1.Affinity"),
- },
- },
"schedulerName": {
SchemaProps: spec.SchemaProps{
Description: "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
@@ -362,31 +356,6 @@ func schema_kmodulesxyz_offshoot_api_api_v2_PodSpec(ref common.ReferenceCallback
},
},
},
- "topologySpreadConstraints": {
- VendorExtensible: spec.VendorExtensible{
- Extensions: spec.Extensions{
- "x-kubernetes-list-map-keys": []interface{}{
- "topologyKey",
- "whenUnsatisfiable",
- },
- "x-kubernetes-list-type": "map",
- "x-kubernetes-patch-merge-key": "topologyKey",
- "x-kubernetes-patch-strategy": "merge",
- },
- },
- SchemaProps: spec.SchemaProps{
- Description: "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
- Type: []string{"array"},
- Items: &spec.SchemaOrArray{
- Schema: &spec.Schema{
- SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("k8s.io/api/core/v1.TopologySpreadConstraint"),
- },
- },
- },
- },
- },
"setHostnameAsFQDN": {
SchemaProps: spec.SchemaProps{
Description: "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.",
@@ -407,11 +376,17 @@ func schema_kmodulesxyz_offshoot_api_api_v2_PodSpec(ref common.ReferenceCallback
Format: "",
},
},
+ "podPlacementPolicy": {
+ SchemaProps: spec.SchemaProps{
+ Description: "PodPlacementPolicy is the reference of the podPlacementPolicy",
+ Ref: ref("k8s.io/api/core/v1.LocalObjectReference"),
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.Affinity", "k8s.io/api/core/v1.Container", "k8s.io/api/core/v1.EphemeralContainer", "k8s.io/api/core/v1.HostAlias", "k8s.io/api/core/v1.LocalObjectReference", "k8s.io/api/core/v1.PodDNSConfig", "k8s.io/api/core/v1.PodOS", "k8s.io/api/core/v1.PodReadinessGate", "k8s.io/api/core/v1.PodSecurityContext", "k8s.io/api/core/v1.Toleration", "k8s.io/api/core/v1.TopologySpreadConstraint", "k8s.io/apimachinery/pkg/api/resource.Quantity", "kmodules.xyz/offshoot-api/api/v1.Volume"},
+ "k8s.io/api/core/v1.Container", "k8s.io/api/core/v1.EphemeralContainer", "k8s.io/api/core/v1.HostAlias", "k8s.io/api/core/v1.LocalObjectReference", "k8s.io/api/core/v1.PodDNSConfig", "k8s.io/api/core/v1.PodOS", "k8s.io/api/core/v1.PodReadinessGate", "k8s.io/api/core/v1.PodSecurityContext", "k8s.io/api/core/v1.Toleration", "k8s.io/apimachinery/pkg/api/resource.Quantity", "kmodules.xyz/offshoot-api/api/v1.Volume"},
}
}
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v2/types.go b/vendor/kmodules.xyz/offshoot-api/api/v2/types.go
index 843ec57aa..2840407d9 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v2/types.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v2/types.go
@@ -129,17 +129,14 @@ type PodSpec struct {
// Host networking requested for this pod. Use the host's network namespace.
// If this option is set, the ports that will be used must be specified.
// Default to false.
- // +k8s:conversion-gen=false
// +optional
HostNetwork bool `json:"hostNetwork,omitempty"`
// Use the host's pid namespace.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
HostPID bool `json:"hostPID,omitempty"`
// Use the host's ipc namespace.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
HostIPC bool `json:"hostIPC,omitempty"`
// Share a single process namespace between all of the containers in a pod.
@@ -147,7 +144,6 @@ type PodSpec struct {
// in the same pod, and the first process in each container will not be assigned PID 1.
// HostPID and ShareProcessNamespace cannot both be set.
// Optional: Default to false.
- // +k8s:conversion-gen=false
// +optional
ShareProcessNamespace *bool `json:"shareProcessNamespace,omitempty"`
// SecurityContext holds pod-level security attributes and common container settings.
@@ -161,9 +157,6 @@ type PodSpec struct {
// +patchMergeKey=name
// +patchStrategy=merge
ImagePullSecrets []core.LocalObjectReference `json:"imagePullSecrets,omitempty" patchStrategy:"merge" patchMergeKey:"name"`
- // If specified, the pod's scheduling constraints
- // +optional
- Affinity *core.Affinity `json:"affinity,omitempty"`
// If specified, the pod will be dispatched by specified scheduler.
// If not specified, the pod will be dispatched by default scheduler.
// +optional
@@ -229,16 +222,6 @@ type PodSpec struct {
// More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md
// +optional
Overhead core.ResourceList `json:"overhead,omitempty"`
- // TopologySpreadConstraints describes how a group of pods ought to spread across topology
- // domains. Scheduler will schedule pods in a way which abides by the constraints.
- // All topologySpreadConstraints are ANDed.
- // +optional
- // +patchMergeKey=topologyKey
- // +patchStrategy=merge
- // +listType=map
- // +listMapKey=topologyKey
- // +listMapKey=whenUnsatisfiable
- TopologySpreadConstraints []core.TopologySpreadConstraint `json:"topologySpreadConstraints,omitempty" patchStrategy:"merge" patchMergeKey:"topologyKey"`
// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
@@ -286,7 +269,11 @@ type PodSpec struct {
// mitigating container breakout vulnerabilities even allowing users to run their
// containers as root without actually having root privileges on the host.
// This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.
- // +k8s:conversion-gen=false
// +optional
HostUsers *bool `json:"hostUsers,omitempty"`
+
+ // PodPlacementPolicy is the reference of the podPlacementPolicy
+ // +kubebuilder:default={name:"default"}
+ // +optional
+ PodPlacementPolicy *core.LocalObjectReference `json:"podPlacementPolicy,omitempty"`
}
diff --git a/vendor/kmodules.xyz/offshoot-api/api/v2/zz_generated.deepcopy.go b/vendor/kmodules.xyz/offshoot-api/api/v2/zz_generated.deepcopy.go
index d907cdee3..bef89f7dd 100644
--- a/vendor/kmodules.xyz/offshoot-api/api/v2/zz_generated.deepcopy.go
+++ b/vendor/kmodules.xyz/offshoot-api/api/v2/zz_generated.deepcopy.go
@@ -95,11 +95,6 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
*out = make([]corev1.LocalObjectReference, len(*in))
copy(*out, *in)
}
- if in.Affinity != nil {
- in, out := &in.Affinity, &out.Affinity
- *out = new(corev1.Affinity)
- (*in).DeepCopyInto(*out)
- }
if in.Tolerations != nil {
in, out := &in.Tolerations, &out.Tolerations
*out = make([]corev1.Toleration, len(*in))
@@ -151,13 +146,6 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
(*out)[key] = val.DeepCopy()
}
}
- if in.TopologySpreadConstraints != nil {
- in, out := &in.TopologySpreadConstraints, &out.TopologySpreadConstraints
- *out = make([]corev1.TopologySpreadConstraint, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
if in.SetHostnameAsFQDN != nil {
in, out := &in.SetHostnameAsFQDN, &out.SetHostnameAsFQDN
*out = new(bool)
@@ -173,6 +161,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
*out = new(bool)
**out = **in
}
+ if in.PodPlacementPolicy != nil {
+ in, out := &in.PodPlacementPolicy, &out.PodPlacementPolicy
+ *out = new(corev1.LocalObjectReference)
+ **out = **in
+ }
return
}
diff --git a/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/clusterprofile_types.go b/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/clusterprofile_types.go
index f6870f04b..ac8d74e44 100644
--- a/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/clusterprofile_types.go
+++ b/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/clusterprofile_types.go
@@ -46,6 +46,7 @@ type ClusterProfile struct {
type ClusterProfileSpec struct {
Title string `json:"title"`
Description string `json:"description"`
+ Provider string `json:"provider,omitempty"`
RequiredFeatureSets map[string]FeatureList `json:"requiredFeatureSets,omitempty"`
}
diff --git a/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/openapi_generated.go b/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/openapi_generated.go
index 4203c8452..89db95ecd 100644
--- a/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/openapi_generated.go
+++ b/vendor/kmodules.xyz/resource-metadata/apis/meta/v1alpha1/openapi_generated.go
@@ -24,6 +24,8 @@ limitations under the License.
package v1alpha1
import (
+ apiv1 "kmodules.xyz/client-go/api/v1"
+
resource "k8s.io/apimachinery/pkg/api/resource"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
intstr "k8s.io/apimachinery/pkg/util/intstr"
@@ -35,6 +37,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
return map[string]common.OpenAPIDefinition{
"k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource": schema_k8sio_api_core_v1_AWSElasticBlockStoreVolumeSource(ref),
"k8s.io/api/core/v1.Affinity": schema_k8sio_api_core_v1_Affinity(ref),
+ "k8s.io/api/core/v1.AppArmorProfile": schema_k8sio_api_core_v1_AppArmorProfile(ref),
"k8s.io/api/core/v1.AttachedVolume": schema_k8sio_api_core_v1_AttachedVolume(ref),
"k8s.io/api/core/v1.AvoidPods": schema_k8sio_api_core_v1_AvoidPods(ref),
"k8s.io/api/core/v1.AzureDiskVolumeSource": schema_k8sio_api_core_v1_AzureDiskVolumeSource(ref),
@@ -135,7 +138,8 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/api/core/v1.NodeDaemonEndpoints": schema_k8sio_api_core_v1_NodeDaemonEndpoints(ref),
"k8s.io/api/core/v1.NodeList": schema_k8sio_api_core_v1_NodeList(ref),
"k8s.io/api/core/v1.NodeProxyOptions": schema_k8sio_api_core_v1_NodeProxyOptions(ref),
- "k8s.io/api/core/v1.NodeResources": schema_k8sio_api_core_v1_NodeResources(ref),
+ "k8s.io/api/core/v1.NodeRuntimeHandler": schema_k8sio_api_core_v1_NodeRuntimeHandler(ref),
+ "k8s.io/api/core/v1.NodeRuntimeHandlerFeatures": schema_k8sio_api_core_v1_NodeRuntimeHandlerFeatures(ref),
"k8s.io/api/core/v1.NodeSelector": schema_k8sio_api_core_v1_NodeSelector(ref),
"k8s.io/api/core/v1.NodeSelectorRequirement": schema_k8sio_api_core_v1_NodeSelectorRequirement(ref),
"k8s.io/api/core/v1.NodeSelectorTerm": schema_k8sio_api_core_v1_NodeSelectorTerm(ref),
@@ -247,6 +251,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/api/core/v1.Volume": schema_k8sio_api_core_v1_Volume(ref),
"k8s.io/api/core/v1.VolumeDevice": schema_k8sio_api_core_v1_VolumeDevice(ref),
"k8s.io/api/core/v1.VolumeMount": schema_k8sio_api_core_v1_VolumeMount(ref),
+ "k8s.io/api/core/v1.VolumeMountStatus": schema_k8sio_api_core_v1_VolumeMountStatus(ref),
"k8s.io/api/core/v1.VolumeNodeAffinity": schema_k8sio_api_core_v1_VolumeNodeAffinity(ref),
"k8s.io/api/core/v1.VolumeProjection": schema_k8sio_api_core_v1_VolumeProjection(ref),
"k8s.io/api/core/v1.VolumeResourceRequirements": schema_k8sio_api_core_v1_VolumeResourceRequirements(ref),
@@ -309,6 +314,25 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref),
"k8s.io/apimachinery/pkg/util/intstr.IntOrString": schema_apimachinery_pkg_util_intstr_IntOrString(ref),
"k8s.io/apimachinery/pkg/version.Info": schema_k8sio_apimachinery_pkg_version_Info(ref),
+ "kmodules.xyz/client-go/api/v1.CAPIClusterInfo": schema_kmodulesxyz_client_go_api_v1_CAPIClusterInfo(ref),
+ "kmodules.xyz/client-go/api/v1.CertificatePrivateKey": schema_kmodulesxyz_client_go_api_v1_CertificatePrivateKey(ref),
+ "kmodules.xyz/client-go/api/v1.CertificateSpec": schema_kmodulesxyz_client_go_api_v1_CertificateSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ClusterMetadata": schema_kmodulesxyz_client_go_api_v1_ClusterMetadata(ref),
+ "kmodules.xyz/client-go/api/v1.Condition": schema_kmodulesxyz_client_go_api_v1_Condition(ref),
+ "kmodules.xyz/client-go/api/v1.HealthCheckSpec": schema_kmodulesxyz_client_go_api_v1_HealthCheckSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ImageInfo": schema_kmodulesxyz_client_go_api_v1_ImageInfo(ref),
+ "kmodules.xyz/client-go/api/v1.Lineage": schema_kmodulesxyz_client_go_api_v1_Lineage(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectID": schema_kmodulesxyz_client_go_api_v1_ObjectID(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectInfo": schema_kmodulesxyz_client_go_api_v1_ObjectInfo(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectReference": schema_kmodulesxyz_client_go_api_v1_ObjectReference(ref),
+ "kmodules.xyz/client-go/api/v1.PullCredentials": schema_kmodulesxyz_client_go_api_v1_PullCredentials(ref),
+ "kmodules.xyz/client-go/api/v1.ReadonlyHealthCheckSpec": schema_kmodulesxyz_client_go_api_v1_ReadonlyHealthCheckSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ResourceID": schema_kmodulesxyz_client_go_api_v1_ResourceID(ref),
+ "kmodules.xyz/client-go/api/v1.TLSConfig": schema_kmodulesxyz_client_go_api_v1_TLSConfig(ref),
+ "kmodules.xyz/client-go/api/v1.TimeOfDay": schema_kmodulesxyz_client_go_api_v1_TimeOfDay(ref),
+ "kmodules.xyz/client-go/api/v1.TypedObjectReference": schema_kmodulesxyz_client_go_api_v1_TypedObjectReference(ref),
+ "kmodules.xyz/client-go/api/v1.X509Subject": schema_kmodulesxyz_client_go_api_v1_X509Subject(ref),
+ "kmodules.xyz/client-go/api/v1.stringSetMerger": schema_kmodulesxyz_client_go_api_v1_stringSetMerger(ref),
"kmodules.xyz/resource-metadata/apis/meta/v1alpha1.AttributeDefinition": schema_resource_metadata_apis_meta_v1alpha1_AttributeDefinition(ref),
"kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ChartPresetQuery": schema_resource_metadata_apis_meta_v1alpha1_ChartPresetQuery(ref),
"kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfile": schema_resource_metadata_apis_meta_v1alpha1_ClusterProfile(ref),
@@ -505,6 +529,48 @@ func schema_k8sio_api_core_v1_Affinity(ref common.ReferenceCallback) common.Open
}
}
+func schema_k8sio_api_core_v1_AppArmorProfile(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "AppArmorProfile defines a pod or container's AppArmor settings.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "type": {
+ SchemaProps: spec.SchemaProps{
+ Description: "type indicates which kind of AppArmor profile will be applied. Valid options are:\n Localhost - a profile pre-loaded on the node.\n RuntimeDefault - the container runtime's default profile.\n Unconfined - no AppArmor enforcement.\n\nPossible enum values:\n - `\"Localhost\"` indicates that a profile pre-loaded on the node should be used.\n - `\"RuntimeDefault\"` indicates that the container runtime's default AppArmor profile should be used.\n - `\"Unconfined\"` indicates that no AppArmor profile should be enforced.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ Enum: []interface{}{"Localhost", "RuntimeDefault", "Unconfined"},
+ },
+ },
+ "localhostProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is \"Localhost\".",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"type"},
+ },
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-unions": []interface{}{
+ map[string]interface{}{
+ "discriminator": "type",
+ "fields-to-discriminateBy": map[string]interface{}{
+ "localhostProfile": "LocalhostProfile",
+ },
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
func schema_k8sio_api_core_v1_AttachedVolume(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -543,6 +609,11 @@ func schema_k8sio_api_core_v1_AvoidPods(ref common.ReferenceCallback) common.Ope
Type: []string{"object"},
Properties: map[string]spec.Schema{
"preferAvoidPods": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Bounded-sized list of signatures of pods that should avoid this node, sorted in timestamp order from oldest to newest. Size of the slice is unspecified.",
Type: []string{"array"},
@@ -909,6 +980,11 @@ func schema_k8sio_api_core_v1_Capabilities(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"add": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Added capabilities",
Type: []string{"array"},
@@ -924,6 +1000,11 @@ func schema_k8sio_api_core_v1_Capabilities(ref common.ReferenceCallback) common.
},
},
"drop": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Removed capabilities",
Type: []string{"array"},
@@ -952,6 +1033,11 @@ func schema_k8sio_api_core_v1_CephFSPersistentVolumeSource(ref common.ReferenceC
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
Type: []string{"array"},
@@ -1017,6 +1103,11 @@ func schema_k8sio_api_core_v1_CephFSVolumeSource(ref common.ReferenceCallback) c
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
Type: []string{"array"},
@@ -1335,6 +1426,10 @@ func schema_k8sio_api_core_v1_ComponentStatus(ref common.ReferenceCallback) comm
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1494,7 +1589,8 @@ func schema_k8sio_api_core_v1_ConfigMapEnvSource(ref common.ReferenceCallback) c
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -1521,7 +1617,8 @@ func schema_k8sio_api_core_v1_ConfigMapKeySelector(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -1665,12 +1762,18 @@ func schema_k8sio_api_core_v1_ConfigMapProjection(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -1708,12 +1811,18 @@ func schema_k8sio_api_core_v1_ConfigMapVolumeSource(ref common.ReferenceCallback
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -1772,6 +1881,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -1787,6 +1901,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -1834,6 +1953,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -1850,6 +1974,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1903,6 +2031,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1923,6 +2055,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -2031,6 +2167,11 @@ func schema_k8sio_api_core_v1_ContainerImage(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"names": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Names by which this image is known. e.g. [\"kubernetes.example/hyperkube:v1.0.7\", \"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7\"]",
Type: []string{"array"},
@@ -2380,12 +2521,36 @@ func schema_k8sio_api_core_v1_ContainerStatus(ref common.ReferenceCallback) comm
Ref: ref("k8s.io/api/core/v1.ResourceRequirements"),
},
},
+ "volumeMounts": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
+ "x-kubernetes-patch-merge-key": "mountPath",
+ "x-kubernetes-patch-strategy": "merge",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "Status of volume mounts.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.VolumeMountStatus"),
+ },
+ },
+ },
+ },
+ },
},
Required: []string{"name", "ready", "restartCount", "image", "imageID"},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.ContainerState", "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.ContainerState", "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/api/core/v1.VolumeMountStatus", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
}
}
@@ -2419,6 +2584,11 @@ func schema_k8sio_api_core_v1_DownwardAPIProjection(ref common.ReferenceCallback
Type: []string{"object"},
Properties: map[string]spec.Schema{
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Items is a list of DownwardAPIVolume file",
Type: []string{"array"},
@@ -2457,7 +2627,7 @@ func schema_k8sio_api_core_v1_DownwardAPIVolumeFile(ref common.ReferenceCallback
},
"fieldRef": {
SchemaProps: spec.SchemaProps{
- Description: "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.",
+ Description: "Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.",
Ref: ref("k8s.io/api/core/v1.ObjectFieldSelector"),
},
},
@@ -2491,6 +2661,11 @@ func schema_k8sio_api_core_v1_DownwardAPIVolumeSource(ref common.ReferenceCallba
Type: []string{"object"},
Properties: map[string]spec.Schema{
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Items is a list of downward API volume file",
Type: []string{"array"},
@@ -2653,6 +2828,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"addresses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.",
Type: []string{"array"},
@@ -2667,6 +2847,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
},
},
"notReadyAddresses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.",
Type: []string{"array"},
@@ -2681,6 +2866,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
},
},
"ports": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Port numbers available on the related IP addresses.",
Type: []string{"array"},
@@ -2731,6 +2921,11 @@ func schema_k8sio_api_core_v1_Endpoints(ref common.ReferenceCallback) common.Ope
},
},
"subsets": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.",
Type: []string{"array"},
@@ -2936,6 +3131,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -2951,6 +3151,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -2998,6 +3203,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -3014,6 +3224,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3067,6 +3281,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3087,6 +3305,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3217,6 +3439,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -3232,6 +3459,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -3279,6 +3511,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -3295,6 +3532,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3348,6 +3589,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3368,6 +3613,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3735,6 +3984,11 @@ func schema_k8sio_api_core_v1_ExecAction(ref common.ReferenceCallback) common.Op
Type: []string{"object"},
Properties: map[string]spec.Schema{
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
Type: []string{"array"},
@@ -3763,6 +4017,11 @@ func schema_k8sio_api_core_v1_FCVolumeSource(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"targetWWNs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "targetWWNs is Optional: FC target worldwide names (WWNs)",
Type: []string{"array"},
@@ -3799,6 +4058,11 @@ func schema_k8sio_api_core_v1_FCVolumeSource(ref common.ReferenceCallback) commo
},
},
"wwids": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
Type: []string{"array"},
@@ -4191,6 +4455,11 @@ func schema_k8sio_api_core_v1_HTTPGetAction(ref common.ReferenceCallback) common
},
},
"httpHeaders": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Custom headers to set in the request. HTTP allows repeated headers.",
Type: []string{"array"},
@@ -4253,11 +4522,17 @@ func schema_k8sio_api_core_v1_HostAlias(ref common.ReferenceCallback) common.Ope
"ip": {
SchemaProps: spec.SchemaProps{
Description: "IP address of the host file entry.",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"hostnames": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Hostnames for the above IP address.",
Type: []string{"array"},
@@ -4273,6 +4548,7 @@ func schema_k8sio_api_core_v1_HostAlias(ref common.ReferenceCallback) common.Ope
},
},
},
+ Required: []string{"ip"},
},
},
}
@@ -4381,6 +4657,11 @@ func schema_k8sio_api_core_v1_ISCSIPersistentVolumeSource(ref common.ReferenceCa
},
},
"portals": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "portals is the iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
Type: []string{"array"},
@@ -4484,6 +4765,11 @@ func schema_k8sio_api_core_v1_ISCSIVolumeSource(ref common.ReferenceCallback) co
},
},
"portals": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
Type: []string{"array"},
@@ -4833,8 +5119,13 @@ func schema_k8sio_api_core_v1_LimitRangeSpec(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"limits": {
- SchemaProps: spec.SchemaProps{
- Description: "Limits is the list of LimitRangeItem objects that are enforced.",
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "Limits is the list of LimitRangeItem objects that are enforced.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -4968,6 +5259,11 @@ func schema_k8sio_api_core_v1_LoadBalancerStatus(ref common.ReferenceCallback) c
Type: []string{"object"},
Properties: map[string]spec.Schema{
"ingress": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
Type: []string{"array"},
@@ -4998,7 +5294,8 @@ func schema_k8sio_api_core_v1_LocalObjectReference(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -5268,6 +5565,11 @@ func schema_k8sio_api_core_v1_NamespaceSpec(ref common.ReferenceCallback) common
Type: []string{"object"},
Properties: map[string]spec.Schema{
"finalizers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
Type: []string{"array"},
@@ -5306,6 +5608,10 @@ func schema_k8sio_api_core_v1_NamespaceStatus(ref common.ReferenceCallback) comm
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -5425,6 +5731,11 @@ func schema_k8sio_api_core_v1_NodeAffinity(ref common.ReferenceCallback) common.
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -5672,33 +5983,52 @@ func schema_k8sio_api_core_v1_NodeProxyOptions(ref common.ReferenceCallback) com
}
}
-func schema_k8sio_api_core_v1_NodeResources(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_k8sio_api_core_v1_NodeRuntimeHandler(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
- Description: "NodeResources is an object for conveying resource information about a node. see https://kubernetes.io/docs/concepts/architecture/nodes/#capacity for more details.",
+ Description: "NodeRuntimeHandler is a set of runtime handler information.",
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "Capacity": {
+ "name": {
SchemaProps: spec.SchemaProps{
- Description: "Capacity represents the available resources of a node",
- Type: []string{"object"},
- AdditionalProperties: &spec.SchemaOrBool{
- Allows: true,
- Schema: &spec.Schema{
- SchemaProps: spec.SchemaProps{
- Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
- },
- },
- },
+ Description: "Runtime handler name. Empty for the default runtime handler.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "features": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Supported features.",
+ Ref: ref("k8s.io/api/core/v1.NodeRuntimeHandlerFeatures"),
},
},
},
- Required: []string{"Capacity"},
},
},
Dependencies: []string{
- "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.NodeRuntimeHandlerFeatures"},
+ }
+}
+
+func schema_k8sio_api_core_v1_NodeRuntimeHandlerFeatures(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "NodeRuntimeHandlerFeatures is a set of runtime features.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "recursiveReadOnlyMounts": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
}
}
@@ -5710,6 +6040,11 @@ func schema_k8sio_api_core_v1_NodeSelector(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"nodeSelectorTerms": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Required. A list of node selector terms. The terms are ORed.",
Type: []string{"array"},
@@ -5762,6 +6097,11 @@ func schema_k8sio_api_core_v1_NodeSelectorRequirement(ref common.ReferenceCallba
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -5791,6 +6131,11 @@ func schema_k8sio_api_core_v1_NodeSelectorTerm(ref common.ReferenceCallback) com
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of node selector requirements by node's labels.",
Type: []string{"array"},
@@ -5805,6 +6150,11 @@ func schema_k8sio_api_core_v1_NodeSelectorTerm(ref common.ReferenceCallback) com
},
},
"matchFields": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of node selector requirements by node's fields.",
Type: []string{"array"},
@@ -5848,6 +6198,7 @@ func schema_k8sio_api_core_v1_NodeSpec(ref common.ReferenceCallback) common.Open
"podCIDRs": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "set",
"x-kubernetes-patch-strategy": "merge",
},
},
@@ -5880,6 +6231,11 @@ func schema_k8sio_api_core_v1_NodeSpec(ref common.ReferenceCallback) common.Open
},
},
"taints": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, the node's taints.",
Type: []string{"array"},
@@ -5960,6 +6316,10 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -5980,6 +6340,10 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
"addresses": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -6012,6 +6376,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"images": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of container images on this node",
Type: []string{"array"},
@@ -6026,6 +6395,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"volumesInUse": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of attachable volumes in use (mounted) by the node.",
Type: []string{"array"},
@@ -6041,6 +6415,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"volumesAttached": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of volumes that are attached to the node.",
Type: []string{"array"},
@@ -6060,11 +6439,30 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
Ref: ref("k8s.io/api/core/v1.NodeConfigStatus"),
},
},
+ "runtimeHandlers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "The available runtime handlers.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.NodeRuntimeHandler"),
+ },
+ },
+ },
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.AttachedVolume", "k8s.io/api/core/v1.ContainerImage", "k8s.io/api/core/v1.NodeAddress", "k8s.io/api/core/v1.NodeCondition", "k8s.io/api/core/v1.NodeConfigStatus", "k8s.io/api/core/v1.NodeDaemonEndpoints", "k8s.io/api/core/v1.NodeSystemInfo", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.AttachedVolume", "k8s.io/api/core/v1.ContainerImage", "k8s.io/api/core/v1.NodeAddress", "k8s.io/api/core/v1.NodeCondition", "k8s.io/api/core/v1.NodeConfigStatus", "k8s.io/api/core/v1.NodeDaemonEndpoints", "k8s.io/api/core/v1.NodeRuntimeHandler", "k8s.io/api/core/v1.NodeSystemInfo", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
}
}
@@ -6398,7 +6796,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimCondition(ref common.Referenc
},
"reason": {
SchemaProps: spec.SchemaProps{
- Description: "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.",
+ Description: "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"Resizing\" that means the underlying persistent volume is being resized.",
Type: []string{"string"},
Format: "",
},
@@ -6478,6 +6876,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
Type: []string{"object"},
Properties: map[string]spec.Schema{
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
Type: []string{"array"},
@@ -6541,7 +6944,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
},
"volumeAttributesClassName": {
SchemaProps: spec.SchemaProps{
- Description: "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.",
+ Description: "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.",
Type: []string{"string"},
Format: "",
},
@@ -6570,6 +6973,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa
},
},
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
Type: []string{"array"},
@@ -6601,12 +7009,16 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
},
SchemaProps: spec.SchemaProps{
- Description: "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
+ Description: "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'Resizing'.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7085,6 +7497,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback)
},
},
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
Type: []string{"array"},
@@ -7126,6 +7543,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback)
},
},
"mountOptions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "mountOptions is the list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
Type: []string{"array"},
@@ -7299,6 +7721,11 @@ func schema_k8sio_api_core_v1_PodAffinity(ref common.ReferenceCallback) common.O
Type: []string{"object"},
Properties: map[string]spec.Schema{
"requiredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
Type: []string{"array"},
@@ -7313,6 +7740,11 @@ func schema_k8sio_api_core_v1_PodAffinity(ref common.ReferenceCallback) common.O
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -7348,6 +7780,11 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
"namespaces": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
Type: []string{"array"},
@@ -7383,7 +7820,7 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
SchemaProps: spec.SchemaProps{
- Description: "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. Also, MatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
+ Description: "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7403,7 +7840,7 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
SchemaProps: spec.SchemaProps{
- Description: "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
+ Description: "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7433,6 +7870,11 @@ func schema_k8sio_api_core_v1_PodAntiAffinity(ref common.ReferenceCallback) comm
Type: []string{"object"},
Properties: map[string]spec.Schema{
"requiredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
Type: []string{"array"},
@@ -7447,6 +7889,11 @@ func schema_k8sio_api_core_v1_PodAntiAffinity(ref common.ReferenceCallback) comm
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -7596,6 +8043,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"nameservers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
Type: []string{"array"},
@@ -7611,6 +8063,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
},
},
"searches": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
Type: []string{"array"},
@@ -7626,6 +8083,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
},
},
"options": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
Type: []string{"array"},
@@ -7730,6 +8192,11 @@ func schema_k8sio_api_core_v1_PodExecOptions(ref common.ReferenceCallback) commo
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Command is the remote command to execute. argv array. Not executed within a shell.",
Type: []string{"array"},
@@ -7957,6 +8424,11 @@ func schema_k8sio_api_core_v1_PodPortForwardOptions(ref common.ReferenceCallback
},
},
"ports": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of ports to forward Required when using WebSockets",
Type: []string{"array"},
@@ -8156,6 +8628,11 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
},
},
"supplementalGroups": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.",
Type: []string{"array"},
@@ -8178,6 +8655,11 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
},
},
"sysctls": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.",
Type: []string{"array"},
@@ -8205,11 +8687,17 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
Ref: ref("k8s.io/api/core/v1.SeccompProfile"),
},
},
+ "appArmorProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "appArmorProfile is the AppArmor options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.",
+ Ref: ref("k8s.io/api/core/v1.AppArmorProfile"),
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.Sysctl", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
+ "k8s.io/api/core/v1.AppArmorProfile", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.Sysctl", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
}
}
@@ -8244,6 +8732,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"volumes": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys",
},
@@ -8264,6 +8756,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"initContainers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8284,6 +8780,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"containers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8304,6 +8804,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"ephemeralContainers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8381,7 +8885,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
"serviceAccount": {
SchemaProps: spec.SchemaProps{
- Description: "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
+ Description: "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
Type: []string{"string"},
Format: "",
},
@@ -8437,6 +8941,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"imagePullSecrets": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8482,6 +8990,11 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
"tolerations": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, the pod's tolerations.",
Type: []string{"array"},
@@ -8498,12 +9011,16 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"hostAliases": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "ip",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge",
},
},
SchemaProps: spec.SchemaProps{
- Description: "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
+ Description: "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -8536,6 +9053,11 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
"readinessGates": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates",
Type: []string{"array"},
@@ -8619,7 +9141,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
"os": {
SchemaProps: spec.SchemaProps{
- Description: "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup",
+ Description: "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.appArmorProfile - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.appArmorProfile - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup",
Ref: ref("k8s.io/api/core/v1.PodOS"),
},
},
@@ -8642,7 +9164,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
SchemaProps: spec.SchemaProps{
- Description: "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.\n\nThis is a beta feature enabled by the PodSchedulingReadiness feature gate.",
+ Description: "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -8705,6 +9227,10 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8781,6 +9307,10 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
"podIPs": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "ip",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8805,10 +9335,15 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"initContainerStatuses": {
- SchemaProps: spec.SchemaProps{
- Description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
- Type: []string{"array"},
- Items: &spec.SchemaOrArray{
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
SchemaProps: spec.SchemaProps{
Default: map[string]interface{}{},
@@ -8819,6 +9354,11 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"containerStatuses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
Type: []string{"array"},
@@ -8841,6 +9381,11 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"ephemeralContainerStatuses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Status for any ephemeral containers that have run in this pod.",
Type: []string{"array"},
@@ -9334,6 +9879,11 @@ func schema_k8sio_api_core_v1_ProjectedVolumeSource(ref common.ReferenceCallback
Type: []string{"object"},
Properties: map[string]spec.Schema{
"sources": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "sources is the list of volume projections",
Type: []string{"array"},
@@ -9428,6 +9978,11 @@ func schema_k8sio_api_core_v1_RBDPersistentVolumeSource(ref common.ReferenceCall
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
Type: []string{"array"},
@@ -9508,6 +10063,11 @@ func schema_k8sio_api_core_v1_RBDVolumeSource(ref common.ReferenceCallback) comm
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
Type: []string{"array"},
@@ -9887,6 +10447,10 @@ func schema_k8sio_api_core_v1_ReplicationControllerStatus(ref common.ReferenceCa
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -10100,6 +10664,11 @@ func schema_k8sio_api_core_v1_ResourceQuotaSpec(ref common.ReferenceCallback) co
},
},
"scopes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
Type: []string{"array"},
@@ -10459,6 +11028,11 @@ func schema_k8sio_api_core_v1_ScopeSelector(ref common.ReferenceCallback) common
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of scope selector requirements by scope of the resources.",
Type: []string{"array"},
@@ -10511,6 +11085,11 @@ func schema_k8sio_api_core_v1_ScopedResourceSelectorRequirement(ref common.Refer
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -10664,7 +11243,8 @@ func schema_k8sio_api_core_v1_SecretEnvSource(ref common.ReferenceCallback) comm
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -10691,7 +11271,8 @@ func schema_k8sio_api_core_v1_SecretKeySelector(ref common.ReferenceCallback) co
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -10783,12 +11364,18 @@ func schema_k8sio_api_core_v1_SecretProjection(ref common.ReferenceCallback) com
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -10864,6 +11451,11 @@ func schema_k8sio_api_core_v1_SecretVolumeSource(ref common.ReferenceCallback) c
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -10980,11 +11572,17 @@ func schema_k8sio_api_core_v1_SecurityContext(ref common.ReferenceCallback) comm
Ref: ref("k8s.io/api/core/v1.SeccompProfile"),
},
},
+ "appArmorProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "appArmorProfile is the AppArmor options to use by this container. If set, this profile overrides the pod's appArmorProfile. Note that this field cannot be set when spec.os.name is windows.",
+ Ref: ref("k8s.io/api/core/v1.AppArmorProfile"),
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.Capabilities", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
+ "k8s.io/api/core/v1.AppArmorProfile", "k8s.io/api/core/v1.Capabilities", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
}
}
@@ -11105,6 +11703,10 @@ func schema_k8sio_api_core_v1_ServiceAccount(ref common.ReferenceCallback) commo
"secrets": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -11123,6 +11725,11 @@ func schema_k8sio_api_core_v1_ServiceAccount(ref common.ReferenceCallback) commo
},
},
"imagePullSecrets": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod",
Type: []string{"array"},
@@ -11472,6 +12079,11 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
},
},
"externalIPs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.",
Type: []string{"array"},
@@ -11502,6 +12114,11 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
},
},
"loadBalancerSourceRanges": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/",
Type: []string{"array"},
@@ -11601,6 +12218,13 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
Enum: []interface{}{"Cluster", "Local"},
},
},
+ "trafficDistribution": {
+ SchemaProps: spec.SchemaProps{
+ Description: "TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints. Implementations can use this field as a hint, but are not required to guarantee strict adherence. If the field is not set, the implementation will apply its default routing strategy. If set to \"PreferClose\", implementations should prioritize endpoints that are topologically close (e.g., same zone). This is an alpha field and requires enabling ServiceTrafficDistribution feature.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
},
},
},
@@ -11967,6 +12591,11 @@ func schema_k8sio_api_core_v1_TopologySelectorLabelRequirement(ref common.Refere
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
Type: []string{"array"},
@@ -11996,6 +12625,11 @@ func schema_k8sio_api_core_v1_TopologySelectorTerm(ref common.ReferenceCallback)
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchLabelExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of topology selector requirements by labels.",
Type: []string{"array"},
@@ -12062,7 +12696,7 @@ func schema_k8sio_api_core_v1_TopologySpreadConstraint(ref common.ReferenceCallb
},
"minDomains": {
SchemaProps: spec.SchemaProps{
- Description: "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.\n\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).",
+ Description: "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.",
Type: []string{"integer"},
Format: "int32",
},
@@ -12447,6 +13081,13 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
Format: "",
},
},
+ "recursiveReadOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnly specifies whether read-only mounts should be handled recursively.\n\nIf ReadOnly is false, this field has no meaning and must be unspecified.\n\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason.\n\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None).\n\nIf this field is not specified, it is treated as an equivalent of Disabled.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
"mountPath": {
SchemaProps: spec.SchemaProps{
Description: "Path within the container at which the volume should be mounted. Must not contain ':'.",
@@ -12464,7 +13105,7 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
},
"mountPropagation": {
SchemaProps: spec.SchemaProps{
- Description: "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\n\nPossible enum values:\n - `\"Bidirectional\"` means that the volume in a container will receive new mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rshared\" in Linux terminology).\n - `\"HostToContainer\"` means that the volume in a container will receive new mounts from the host or other containers, but filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rslave\" in Linux terminology).\n - `\"None\"` means that the volume in a container will not receive new mounts from the host or other containers, and filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode corresponds to \"private\" in Linux terminology.",
+ Description: "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None).\n\nPossible enum values:\n - `\"Bidirectional\"` means that the volume in a container will receive new mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rshared\" in Linux terminology).\n - `\"HostToContainer\"` means that the volume in a container will receive new mounts from the host or other containers, but filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rslave\" in Linux terminology).\n - `\"None\"` means that the volume in a container will not receive new mounts from the host or other containers, and filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode corresponds to \"private\" in Linux terminology.",
Type: []string{"string"},
Format: "",
Enum: []interface{}{"Bidirectional", "HostToContainer", "None"},
@@ -12484,6 +13125,50 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
}
}
+func schema_k8sio_api_core_v1_VolumeMountStatus(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "VolumeMountStatus shows status of volume mounts.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name corresponds to the name of the original VolumeMount.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "mountPath": {
+ SchemaProps: spec.SchemaProps{
+ Description: "MountPath corresponds to the original VolumeMount.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "readOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "ReadOnly corresponds to the original VolumeMount.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ "recursiveReadOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name", "mountPath"},
+ },
+ },
+ }
+}
+
func schema_k8sio_api_core_v1_VolumeNodeAffinity(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -12975,6 +13660,11 @@ func schema_pkg_apis_meta_v1_APIGroup(ref common.ReferenceCallback) common.OpenA
},
},
"versions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "versions are the versions supported in this group.",
Type: []string{"array"},
@@ -12996,6 +13686,11 @@ func schema_pkg_apis_meta_v1_APIGroup(ref common.ReferenceCallback) common.OpenA
},
},
"serverAddressByClientCIDRs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
Type: []string{"array"},
@@ -13040,6 +13735,11 @@ func schema_pkg_apis_meta_v1_APIGroupList(ref common.ReferenceCallback) common.O
},
},
"groups": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "groups is a list of APIGroup.",
Type: []string{"array"},
@@ -13131,6 +13831,11 @@ func schema_pkg_apis_meta_v1_APIResource(ref common.ReferenceCallback) common.Op
},
},
"shortNames": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "shortNames is a list of suggested short names of the resource.",
Type: []string{"array"},
@@ -13146,6 +13851,11 @@ func schema_pkg_apis_meta_v1_APIResource(ref common.ReferenceCallback) common.Op
},
},
"categories": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
Type: []string{"array"},
@@ -13204,6 +13914,11 @@ func schema_pkg_apis_meta_v1_APIResourceList(ref common.ReferenceCallback) commo
},
},
"resources": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "resources contains the name of the resources and if they are namespaced.",
Type: []string{"array"},
@@ -13248,6 +13963,11 @@ func schema_pkg_apis_meta_v1_APIVersions(ref common.ReferenceCallback) common.Op
},
},
"versions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "versions are the api versions that are available.",
Type: []string{"array"},
@@ -13263,6 +13983,11 @@ func schema_pkg_apis_meta_v1_APIVersions(ref common.ReferenceCallback) common.Op
},
},
"serverAddressByClientCIDRs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
Type: []string{"array"},
@@ -13307,6 +14032,11 @@ func schema_pkg_apis_meta_v1_ApplyOptions(ref common.ReferenceCallback) common.O
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13427,6 +14157,11 @@ func schema_pkg_apis_meta_v1_CreateOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13510,6 +14245,11 @@ func schema_pkg_apis_meta_v1_DeleteOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13826,6 +14566,11 @@ func schema_pkg_apis_meta_v1_LabelSelector(ref common.ReferenceCallback) common.
},
},
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
Type: []string{"array"},
@@ -13876,6 +14621,11 @@ func schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref common.ReferenceCallba
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -14269,6 +15019,10 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
"ownerReferences": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "uid",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge",
},
@@ -14289,6 +15043,7 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
"finalizers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "set",
"x-kubernetes-patch-strategy": "merge",
},
},
@@ -14307,6 +15062,11 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
},
},
"managedFields": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
Type: []string{"array"},
@@ -14513,6 +15273,11 @@ func schema_pkg_apis_meta_v1_PatchOptions(ref common.ReferenceCallback) common.O
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -14589,6 +15354,11 @@ func schema_pkg_apis_meta_v1_RootPaths(ref common.ReferenceCallback) common.Open
Type: []string{"object"},
Properties: map[string]spec.Schema{
"paths": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "paths are the paths available at root.",
Type: []string{"array"},
@@ -14690,6 +15460,11 @@ func schema_pkg_apis_meta_v1_Status(ref common.ReferenceCallback) common.OpenAPI
},
},
"details": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails"),
@@ -14780,6 +15555,11 @@ func schema_pkg_apis_meta_v1_StatusDetails(ref common.ReferenceCallback) common.
},
},
"causes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
Type: []string{"array"},
@@ -14837,6 +15617,11 @@ func schema_pkg_apis_meta_v1_Table(ref common.ReferenceCallback) common.OpenAPID
},
},
"columnDefinitions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "columnDefinitions describes each column in the returned items array. The number of cells per row will always match the number of column definitions.",
Type: []string{"array"},
@@ -14851,6 +15636,11 @@ func schema_pkg_apis_meta_v1_Table(ref common.ReferenceCallback) common.OpenAPID
},
},
"rows": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "rows is the list of items in the table.",
Type: []string{"array"},
@@ -14969,6 +15759,11 @@ func schema_pkg_apis_meta_v1_TableRow(ref common.ReferenceCallback) common.OpenA
Type: []string{"object"},
Properties: map[string]spec.Schema{
"cells": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "cells will be as wide as the column definitions array and may contain strings, numbers (float64 or int64), booleans, simple maps, lists, or null. See the type field of the column definition for a more detailed description.",
Type: []string{"array"},
@@ -14983,6 +15778,11 @@ func schema_pkg_apis_meta_v1_TableRow(ref common.ReferenceCallback) common.OpenA
},
},
"conditions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "conditions describe additional status of a row that are relevant for a human user. These conditions apply to the row, not to the object, and will be specific to table output. The only defined condition type is 'Completed', for a row that indicates a resource that has run to completion and can be given less visual priority.",
Type: []string{"array"},
@@ -15146,6 +15946,11 @@ func schema_pkg_apis_meta_v1_UpdateOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -15384,13 +16189,25 @@ func schema_k8sio_apimachinery_pkg_version_Info(ref common.ReferenceCallback) co
}
}
-func schema_resource_metadata_apis_meta_v1alpha1_AttributeDefinition(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_kmodulesxyz_client_go_api_v1_CAPIClusterInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "template": {
+ "provider": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "clusterName": {
SchemaProps: spec.SchemaProps{
Type: []string{"string"},
Format: "",
@@ -15402,159 +16219,1009 @@ func schema_resource_metadata_apis_meta_v1alpha1_AttributeDefinition(ref common.
}
}
-func schema_resource_metadata_apis_meta_v1alpha1_ChartPresetQuery(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_kmodulesxyz_client_go_api_v1_CertificatePrivateKey(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "CertificatePrivateKey contains configuration options for private keys used by the Certificate controller. This allows control of how private keys are rotated.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "encoding": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The private key cryptography standards (PKCS) encoding for this certificate's private key to be encoded in. If provided, allowed values are \"pkcs1\" and \"pkcs8\" standing for PKCS#1 and PKCS#8, respectively. Defaults to PKCS#1 if not specified. See here for the difference between the formats: https://stackoverflow.com/a/48960291",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_CertificateSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "kind": {
+ "alias": {
SchemaProps: spec.SchemaProps{
- Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
+ Description: "Alias represents the identifier of the certificate.",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
- "apiVersion": {
+ "issuerRef": {
SchemaProps: spec.SchemaProps{
- Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
+ Description: "IssuerRef is a reference to a Certificate Issuer.",
+ Ref: ref("k8s.io/api/core/v1.TypedLocalObjectReference"),
+ },
+ },
+ "secretName": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Specifies the k8s secret name that holds the certificates. Default to --cert.",
Type: []string{"string"},
Format: "",
},
},
- "request": {
+ "subject": {
SchemaProps: spec.SchemaProps{
- Description: "Request describes the attributes for the preset query.",
- Ref: ref("x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetFlatRef"),
+ Description: "Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name).",
+ Ref: ref("kmodules.xyz/client-go/api/v1.X509Subject"),
},
},
- "response": {
+ "duration": {
SchemaProps: spec.SchemaProps{
- Description: "Response describes the attributes for the preset response.",
+ Description: "Certificate default Duration",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
+ },
+ },
+ "renewBefore": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Certificate renew before expiration duration",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
+ },
+ },
+ "dnsNames": {
+ SchemaProps: spec.SchemaProps{
+ Description: "DNSNames is a list of subject alt names to be used on the Certificate.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetValues"),
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "ipAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "IPAddresses is a list of IP addresses to be used on the Certificate",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "uris": {
+ SchemaProps: spec.SchemaProps{
+ Description: "URIs is a list of URI subjectAltNames to be set on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
},
},
},
},
},
+ "emailAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "EmailAddresses is a list of email subjectAltNames to be set on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "privateKey": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Options to control private keys used for the Certificate.",
+ Ref: ref("kmodules.xyz/client-go/api/v1.CertificatePrivateKey"),
+ },
+ },
},
+ Required: []string{"alias"},
},
},
Dependencies: []string{
- "x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetFlatRef", "x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetValues"},
+ "k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "kmodules.xyz/client-go/api/v1.CertificatePrivateKey", "kmodules.xyz/client-go/api/v1.X509Subject"},
}
}
-func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfile(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_kmodulesxyz_client_go_api_v1_ClusterMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "kind": {
+ "uid": {
SchemaProps: spec.SchemaProps{
- Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
- Type: []string{"string"},
- Format: "",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
},
},
- "apiVersion": {
+ "name": {
SchemaProps: spec.SchemaProps{
- Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
- Type: []string{"string"},
- Format: "",
+ Type: []string{"string"},
+ Format: "",
},
},
- "metadata": {
+ "displayName": {
SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"),
+ Type: []string{"string"},
+ Format: "",
},
},
- "spec": {
+ "provider": {
SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfileSpec"),
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "ownerID": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "ownerType": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "apiEndpoint": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "caBundle": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
},
},
},
+ Required: []string{"uid"},
},
},
- Dependencies: []string{
- "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfileSpec"},
}
}
-func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfileList(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_kmodulesxyz_client_go_api_v1_Condition(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
- Type: []string{"object"},
+ Description: "Condition defines an observation of a object operational state.",
+ Type: []string{"object"},
Properties: map[string]spec.Schema{
- "kind": {
+ "type": {
SchemaProps: spec.SchemaProps{
- Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
+ Description: "Type of condition in CamelCase or in foo.example.com/CamelCase. Many .condition.type values are consistent across resources like Available, but because arbitrary util can be useful (see .node.status.util), the ability to deconflict is important.",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
- "apiVersion": {
+ "status": {
SchemaProps: spec.SchemaProps{
- Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
+ Description: "Status of the condition, one of True, False, Unknown.",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
- "metadata": {
+ "observedGeneration": {
SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"),
+ Description: "If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.",
+ Type: []string{"integer"},
+ Format: "int64",
},
},
- "items": {
+ "severity": {
SchemaProps: spec.SchemaProps{
- Type: []string{"array"},
- Items: &spec.SchemaOrArray{
- Schema: &spec.Schema{
- SchemaProps: spec.SchemaProps{
- Default: map[string]interface{}{},
- Ref: ref("kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfile"),
- },
- },
- },
+ Description: "Severity provides an explicit classification of Reason code, so the users or machines can immediately understand the current situation and act accordingly. The Severity field MUST be set only when Status=False.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "lastTransitionTime": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"),
+ },
+ },
+ "reason": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The reason for the condition's last transition in CamelCase. The specific API may choose whether this field is considered a guaranteed API. This field may not be empty.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "message": {
+ SchemaProps: spec.SchemaProps{
+ Description: "A human-readable message indicating details about the transition. This field may be empty.",
+ Type: []string{"string"},
+ Format: "",
},
},
},
+ Required: []string{"type", "status", "lastTransitionTime"},
},
},
Dependencies: []string{
- "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfile"},
+ "k8s.io/apimachinery/pkg/apis/meta/v1.Time"},
}
}
-func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfileSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_kmodulesxyz_client_go_api_v1_HealthCheckSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "HealthCheckSpec defines attributes of the health check",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "periodSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "How often (in seconds) to perform the health check. Default to 10 seconds. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "timeoutSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Number of seconds after which the probe times out. Defaults to 10 second. Minimum value is 1. It should be less than the periodSeconds.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "failureThreshold": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Minimum consecutive failures for the health check to be considered failed after having succeeded. Defaults to 1. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "disableWriteCheck": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Whether to disable write check on database. Defaults to false.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ImageInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "title": {
+ "image": {
SchemaProps: spec.SchemaProps{
Default: "",
Type: []string{"string"},
Format: "",
},
},
- "description": {
+ "lineages": {
SchemaProps: spec.SchemaProps{
- Default: "",
- Type: []string{"string"},
- Format: "",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.Lineage"),
+ },
+ },
+ },
+ },
+ },
+ "pullCredentials": {
+ SchemaProps: spec.SchemaProps{
+ Ref: ref("kmodules.xyz/client-go/api/v1.PullCredentials"),
+ },
+ },
+ },
+ Required: []string{"image"},
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.Lineage", "kmodules.xyz/client-go/api/v1.PullCredentials"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_Lineage(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "chain": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ObjectInfo"),
+ },
+ },
+ },
+ },
+ },
+ "containers": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.ObjectInfo"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectID(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "group": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "resource": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ResourceID"),
+ },
+ },
+ "ref": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ObjectReference"),
+ },
+ },
+ },
+ Required: []string{"resource", "ref"},
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.ObjectReference", "kmodules.xyz/client-go/api/v1.ResourceID"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectReference(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ObjectReference contains enough information to let you inspect or modify the referred object.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_PullCredentials(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "serviceAccountName": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "secretRefs": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.LocalObjectReference"),
+ },
+ },
+ },
+ },
+ },
+ },
+ Required: []string{"namespace"},
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.LocalObjectReference"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ReadonlyHealthCheckSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ReadonlyHealthCheckSpec defines attributes of the health check using only read-only checks",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "periodSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "How often (in seconds) to perform the health check. Default to 10 seconds. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "timeoutSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Number of seconds after which the probe times out. Defaults to 10 second. Minimum value is 1. It should be less than the periodSeconds.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "failureThreshold": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Minimum consecutive failures for the health check to be considered failed after having succeeded. Defaults to 1. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ResourceID(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ResourceID identifies a resource",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "group": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "version": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Kind is the serialized kind of the resource. It is normally CamelCase and singular.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "scope": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"group"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TLSConfig(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "issuerRef": {
+ SchemaProps: spec.SchemaProps{
+ Description: "IssuerRef is a reference to a Certificate Issuer.",
+ Ref: ref("k8s.io/api/core/v1.TypedLocalObjectReference"),
+ },
+ },
+ "certificates": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Certificate provides server and/or client certificate options used by application pods. These options are passed to a cert-manager Certificate object. xref: https://github.com/jetstack/cert-manager/blob/v0.16.0/pkg/apis/certmanager/v1beta1/types_certificate.go#L82-L162",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.CertificateSpec"),
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.TypedLocalObjectReference", "kmodules.xyz/client-go/api/v1.CertificateSpec"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TimeOfDay(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "TimeOfDay is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
+ Type: apiv1.TimeOfDay{}.OpenAPISchemaType(),
+ Format: apiv1.TimeOfDay{}.OpenAPISchemaFormat(),
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TypedObjectReference(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "TypedObjectReference represents an typed namespaced object.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "apiGroup": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_X509Subject(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "X509Subject Full X509 name specification",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "organizations": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Organizations to be used on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "countries": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Countries to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "organizationalUnits": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Organizational Units to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "localities": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Cities to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "provinces": {
+ SchemaProps: spec.SchemaProps{
+ Description: "State/Provinces to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "streetAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Street addresses to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "postalCodes": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Postal codes to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "serialNumber": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Serial number to be used on the CertificateSpec.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_stringSetMerger(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ },
+ },
+ }
+}
+
+func schema_resource_metadata_apis_meta_v1alpha1_AttributeDefinition(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "template": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_resource_metadata_apis_meta_v1alpha1_ChartPresetQuery(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "apiVersion": {
+ SchemaProps: spec.SchemaProps{
+ Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "request": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Request describes the attributes for the preset query.",
+ Ref: ref("x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetFlatRef"),
+ },
+ },
+ "response": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Response describes the attributes for the preset response.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetValues"),
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetFlatRef", "x-helm.dev/apimachinery/apis/charts/v1alpha1.ChartPresetValues"},
+ }
+}
+
+func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfile(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "apiVersion": {
+ SchemaProps: spec.SchemaProps{
+ Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "metadata": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"),
+ },
+ },
+ "spec": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfileSpec"),
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfileSpec"},
+ }
+}
+
+func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfileList(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "apiVersion": {
+ SchemaProps: spec.SchemaProps{
+ Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "metadata": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"),
+ },
+ },
+ "items": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfile"),
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "kmodules.xyz/resource-metadata/apis/meta/v1alpha1.ClusterProfile"},
+ }
+}
+
+func schema_resource_metadata_apis_meta_v1alpha1_ClusterProfileSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "title": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "description": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "provider": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
},
},
"requiredFeatureSets": {
diff --git a/vendor/kmodules.xyz/resource-metadata/apis/ui/v1alpha1/openapi_generated.go b/vendor/kmodules.xyz/resource-metadata/apis/ui/v1alpha1/openapi_generated.go
index 01ae5760b..a63159cfc 100644
--- a/vendor/kmodules.xyz/resource-metadata/apis/ui/v1alpha1/openapi_generated.go
+++ b/vendor/kmodules.xyz/resource-metadata/apis/ui/v1alpha1/openapi_generated.go
@@ -24,6 +24,8 @@ limitations under the License.
package v1alpha1
import (
+ apiv1 "kmodules.xyz/client-go/api/v1"
+
resource "k8s.io/apimachinery/pkg/api/resource"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
intstr "k8s.io/apimachinery/pkg/util/intstr"
@@ -35,6 +37,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
return map[string]common.OpenAPIDefinition{
"k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource": schema_k8sio_api_core_v1_AWSElasticBlockStoreVolumeSource(ref),
"k8s.io/api/core/v1.Affinity": schema_k8sio_api_core_v1_Affinity(ref),
+ "k8s.io/api/core/v1.AppArmorProfile": schema_k8sio_api_core_v1_AppArmorProfile(ref),
"k8s.io/api/core/v1.AttachedVolume": schema_k8sio_api_core_v1_AttachedVolume(ref),
"k8s.io/api/core/v1.AvoidPods": schema_k8sio_api_core_v1_AvoidPods(ref),
"k8s.io/api/core/v1.AzureDiskVolumeSource": schema_k8sio_api_core_v1_AzureDiskVolumeSource(ref),
@@ -135,7 +138,8 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/api/core/v1.NodeDaemonEndpoints": schema_k8sio_api_core_v1_NodeDaemonEndpoints(ref),
"k8s.io/api/core/v1.NodeList": schema_k8sio_api_core_v1_NodeList(ref),
"k8s.io/api/core/v1.NodeProxyOptions": schema_k8sio_api_core_v1_NodeProxyOptions(ref),
- "k8s.io/api/core/v1.NodeResources": schema_k8sio_api_core_v1_NodeResources(ref),
+ "k8s.io/api/core/v1.NodeRuntimeHandler": schema_k8sio_api_core_v1_NodeRuntimeHandler(ref),
+ "k8s.io/api/core/v1.NodeRuntimeHandlerFeatures": schema_k8sio_api_core_v1_NodeRuntimeHandlerFeatures(ref),
"k8s.io/api/core/v1.NodeSelector": schema_k8sio_api_core_v1_NodeSelector(ref),
"k8s.io/api/core/v1.NodeSelectorRequirement": schema_k8sio_api_core_v1_NodeSelectorRequirement(ref),
"k8s.io/api/core/v1.NodeSelectorTerm": schema_k8sio_api_core_v1_NodeSelectorTerm(ref),
@@ -247,6 +251,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/api/core/v1.Volume": schema_k8sio_api_core_v1_Volume(ref),
"k8s.io/api/core/v1.VolumeDevice": schema_k8sio_api_core_v1_VolumeDevice(ref),
"k8s.io/api/core/v1.VolumeMount": schema_k8sio_api_core_v1_VolumeMount(ref),
+ "k8s.io/api/core/v1.VolumeMountStatus": schema_k8sio_api_core_v1_VolumeMountStatus(ref),
"k8s.io/api/core/v1.VolumeNodeAffinity": schema_k8sio_api_core_v1_VolumeNodeAffinity(ref),
"k8s.io/api/core/v1.VolumeProjection": schema_k8sio_api_core_v1_VolumeProjection(ref),
"k8s.io/api/core/v1.VolumeResourceRequirements": schema_k8sio_api_core_v1_VolumeResourceRequirements(ref),
@@ -309,6 +314,25 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref),
"k8s.io/apimachinery/pkg/util/intstr.IntOrString": schema_apimachinery_pkg_util_intstr_IntOrString(ref),
"k8s.io/apimachinery/pkg/version.Info": schema_k8sio_apimachinery_pkg_version_Info(ref),
+ "kmodules.xyz/client-go/api/v1.CAPIClusterInfo": schema_kmodulesxyz_client_go_api_v1_CAPIClusterInfo(ref),
+ "kmodules.xyz/client-go/api/v1.CertificatePrivateKey": schema_kmodulesxyz_client_go_api_v1_CertificatePrivateKey(ref),
+ "kmodules.xyz/client-go/api/v1.CertificateSpec": schema_kmodulesxyz_client_go_api_v1_CertificateSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ClusterMetadata": schema_kmodulesxyz_client_go_api_v1_ClusterMetadata(ref),
+ "kmodules.xyz/client-go/api/v1.Condition": schema_kmodulesxyz_client_go_api_v1_Condition(ref),
+ "kmodules.xyz/client-go/api/v1.HealthCheckSpec": schema_kmodulesxyz_client_go_api_v1_HealthCheckSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ImageInfo": schema_kmodulesxyz_client_go_api_v1_ImageInfo(ref),
+ "kmodules.xyz/client-go/api/v1.Lineage": schema_kmodulesxyz_client_go_api_v1_Lineage(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectID": schema_kmodulesxyz_client_go_api_v1_ObjectID(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectInfo": schema_kmodulesxyz_client_go_api_v1_ObjectInfo(ref),
+ "kmodules.xyz/client-go/api/v1.ObjectReference": schema_kmodulesxyz_client_go_api_v1_ObjectReference(ref),
+ "kmodules.xyz/client-go/api/v1.PullCredentials": schema_kmodulesxyz_client_go_api_v1_PullCredentials(ref),
+ "kmodules.xyz/client-go/api/v1.ReadonlyHealthCheckSpec": schema_kmodulesxyz_client_go_api_v1_ReadonlyHealthCheckSpec(ref),
+ "kmodules.xyz/client-go/api/v1.ResourceID": schema_kmodulesxyz_client_go_api_v1_ResourceID(ref),
+ "kmodules.xyz/client-go/api/v1.TLSConfig": schema_kmodulesxyz_client_go_api_v1_TLSConfig(ref),
+ "kmodules.xyz/client-go/api/v1.TimeOfDay": schema_kmodulesxyz_client_go_api_v1_TimeOfDay(ref),
+ "kmodules.xyz/client-go/api/v1.TypedObjectReference": schema_kmodulesxyz_client_go_api_v1_TypedObjectReference(ref),
+ "kmodules.xyz/client-go/api/v1.X509Subject": schema_kmodulesxyz_client_go_api_v1_X509Subject(ref),
+ "kmodules.xyz/client-go/api/v1.stringSetMerger": schema_kmodulesxyz_client_go_api_v1_stringSetMerger(ref),
"kmodules.xyz/resource-metadata/apis/shared.Action": schema_kmodulesxyz_resource_metadata_apis_shared_Action(ref),
"kmodules.xyz/resource-metadata/apis/shared.ActionGroup": schema_kmodulesxyz_resource_metadata_apis_shared_ActionGroup(ref),
"kmodules.xyz/resource-metadata/apis/shared.ActionInfo": schema_kmodulesxyz_resource_metadata_apis_shared_ActionInfo(ref),
@@ -437,6 +461,48 @@ func schema_k8sio_api_core_v1_Affinity(ref common.ReferenceCallback) common.Open
}
}
+func schema_k8sio_api_core_v1_AppArmorProfile(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "AppArmorProfile defines a pod or container's AppArmor settings.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "type": {
+ SchemaProps: spec.SchemaProps{
+ Description: "type indicates which kind of AppArmor profile will be applied. Valid options are:\n Localhost - a profile pre-loaded on the node.\n RuntimeDefault - the container runtime's default profile.\n Unconfined - no AppArmor enforcement.\n\nPossible enum values:\n - `\"Localhost\"` indicates that a profile pre-loaded on the node should be used.\n - `\"RuntimeDefault\"` indicates that the container runtime's default AppArmor profile should be used.\n - `\"Unconfined\"` indicates that no AppArmor profile should be enforced.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ Enum: []interface{}{"Localhost", "RuntimeDefault", "Unconfined"},
+ },
+ },
+ "localhostProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is \"Localhost\".",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"type"},
+ },
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-unions": []interface{}{
+ map[string]interface{}{
+ "discriminator": "type",
+ "fields-to-discriminateBy": map[string]interface{}{
+ "localhostProfile": "LocalhostProfile",
+ },
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
func schema_k8sio_api_core_v1_AttachedVolume(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -475,6 +541,11 @@ func schema_k8sio_api_core_v1_AvoidPods(ref common.ReferenceCallback) common.Ope
Type: []string{"object"},
Properties: map[string]spec.Schema{
"preferAvoidPods": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Bounded-sized list of signatures of pods that should avoid this node, sorted in timestamp order from oldest to newest. Size of the slice is unspecified.",
Type: []string{"array"},
@@ -841,6 +912,11 @@ func schema_k8sio_api_core_v1_Capabilities(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"add": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Added capabilities",
Type: []string{"array"},
@@ -856,6 +932,11 @@ func schema_k8sio_api_core_v1_Capabilities(ref common.ReferenceCallback) common.
},
},
"drop": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Removed capabilities",
Type: []string{"array"},
@@ -884,6 +965,11 @@ func schema_k8sio_api_core_v1_CephFSPersistentVolumeSource(ref common.ReferenceC
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
Type: []string{"array"},
@@ -949,6 +1035,11 @@ func schema_k8sio_api_core_v1_CephFSVolumeSource(ref common.ReferenceCallback) c
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
Type: []string{"array"},
@@ -1267,6 +1358,10 @@ func schema_k8sio_api_core_v1_ComponentStatus(ref common.ReferenceCallback) comm
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1426,7 +1521,8 @@ func schema_k8sio_api_core_v1_ConfigMapEnvSource(ref common.ReferenceCallback) c
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -1453,7 +1549,8 @@ func schema_k8sio_api_core_v1_ConfigMapKeySelector(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -1597,12 +1694,18 @@ func schema_k8sio_api_core_v1_ConfigMapProjection(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -1640,12 +1743,18 @@ func schema_k8sio_api_core_v1_ConfigMapVolumeSource(ref common.ReferenceCallback
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -1704,6 +1813,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -1719,6 +1833,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -1766,6 +1885,11 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -1782,6 +1906,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1835,6 +1963,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1855,6 +1987,10 @@ func schema_k8sio_api_core_v1_Container(ref common.ReferenceCallback) common.Ope
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -1963,6 +2099,11 @@ func schema_k8sio_api_core_v1_ContainerImage(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"names": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Names by which this image is known. e.g. [\"kubernetes.example/hyperkube:v1.0.7\", \"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7\"]",
Type: []string{"array"},
@@ -2312,12 +2453,36 @@ func schema_k8sio_api_core_v1_ContainerStatus(ref common.ReferenceCallback) comm
Ref: ref("k8s.io/api/core/v1.ResourceRequirements"),
},
},
+ "volumeMounts": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
+ "x-kubernetes-patch-merge-key": "mountPath",
+ "x-kubernetes-patch-strategy": "merge",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "Status of volume mounts.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.VolumeMountStatus"),
+ },
+ },
+ },
+ },
+ },
},
Required: []string{"name", "ready", "restartCount", "image", "imageID"},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.ContainerState", "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.ContainerState", "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/api/core/v1.VolumeMountStatus", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
}
}
@@ -2351,6 +2516,11 @@ func schema_k8sio_api_core_v1_DownwardAPIProjection(ref common.ReferenceCallback
Type: []string{"object"},
Properties: map[string]spec.Schema{
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Items is a list of DownwardAPIVolume file",
Type: []string{"array"},
@@ -2389,7 +2559,7 @@ func schema_k8sio_api_core_v1_DownwardAPIVolumeFile(ref common.ReferenceCallback
},
"fieldRef": {
SchemaProps: spec.SchemaProps{
- Description: "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.",
+ Description: "Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.",
Ref: ref("k8s.io/api/core/v1.ObjectFieldSelector"),
},
},
@@ -2423,6 +2593,11 @@ func schema_k8sio_api_core_v1_DownwardAPIVolumeSource(ref common.ReferenceCallba
Type: []string{"object"},
Properties: map[string]spec.Schema{
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Items is a list of downward API volume file",
Type: []string{"array"},
@@ -2585,6 +2760,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"addresses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.",
Type: []string{"array"},
@@ -2599,6 +2779,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
},
},
"notReadyAddresses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.",
Type: []string{"array"},
@@ -2613,6 +2798,11 @@ func schema_k8sio_api_core_v1_EndpointSubset(ref common.ReferenceCallback) commo
},
},
"ports": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Port numbers available on the related IP addresses.",
Type: []string{"array"},
@@ -2663,6 +2853,11 @@ func schema_k8sio_api_core_v1_Endpoints(ref common.ReferenceCallback) common.Ope
},
},
"subsets": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.",
Type: []string{"array"},
@@ -2868,6 +3063,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -2883,6 +3083,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -2930,6 +3135,11 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -2946,6 +3156,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -2999,6 +3213,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3019,6 +3237,10 @@ func schema_k8sio_api_core_v1_EphemeralContainer(ref common.ReferenceCallback) c
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3149,6 +3371,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -3164,6 +3391,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"args": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
Type: []string{"array"},
@@ -3211,6 +3443,11 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
},
},
"envFrom": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
Type: []string{"array"},
@@ -3227,6 +3464,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"env": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3280,6 +3521,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"volumeMounts": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "mountPath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3300,6 +3545,10 @@ func schema_k8sio_api_core_v1_EphemeralContainerCommon(ref common.ReferenceCallb
"volumeDevices": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "devicePath",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge",
},
@@ -3667,6 +3916,11 @@ func schema_k8sio_api_core_v1_ExecAction(ref common.ReferenceCallback) common.Op
Type: []string{"object"},
Properties: map[string]spec.Schema{
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
Type: []string{"array"},
@@ -3695,6 +3949,11 @@ func schema_k8sio_api_core_v1_FCVolumeSource(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"targetWWNs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "targetWWNs is Optional: FC target worldwide names (WWNs)",
Type: []string{"array"},
@@ -3731,6 +3990,11 @@ func schema_k8sio_api_core_v1_FCVolumeSource(ref common.ReferenceCallback) commo
},
},
"wwids": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
Type: []string{"array"},
@@ -4123,6 +4387,11 @@ func schema_k8sio_api_core_v1_HTTPGetAction(ref common.ReferenceCallback) common
},
},
"httpHeaders": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Custom headers to set in the request. HTTP allows repeated headers.",
Type: []string{"array"},
@@ -4185,11 +4454,17 @@ func schema_k8sio_api_core_v1_HostAlias(ref common.ReferenceCallback) common.Ope
"ip": {
SchemaProps: spec.SchemaProps{
Description: "IP address of the host file entry.",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"hostnames": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Hostnames for the above IP address.",
Type: []string{"array"},
@@ -4205,6 +4480,7 @@ func schema_k8sio_api_core_v1_HostAlias(ref common.ReferenceCallback) common.Ope
},
},
},
+ Required: []string{"ip"},
},
},
}
@@ -4313,6 +4589,11 @@ func schema_k8sio_api_core_v1_ISCSIPersistentVolumeSource(ref common.ReferenceCa
},
},
"portals": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "portals is the iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
Type: []string{"array"},
@@ -4416,6 +4697,11 @@ func schema_k8sio_api_core_v1_ISCSIVolumeSource(ref common.ReferenceCallback) co
},
},
"portals": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
Type: []string{"array"},
@@ -4765,8 +5051,13 @@ func schema_k8sio_api_core_v1_LimitRangeSpec(ref common.ReferenceCallback) commo
Type: []string{"object"},
Properties: map[string]spec.Schema{
"limits": {
- SchemaProps: spec.SchemaProps{
- Description: "Limits is the list of LimitRangeItem objects that are enforced.",
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "Limits is the list of LimitRangeItem objects that are enforced.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -4900,6 +5191,11 @@ func schema_k8sio_api_core_v1_LoadBalancerStatus(ref common.ReferenceCallback) c
Type: []string{"object"},
Properties: map[string]spec.Schema{
"ingress": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
Type: []string{"array"},
@@ -4930,7 +5226,8 @@ func schema_k8sio_api_core_v1_LocalObjectReference(ref common.ReferenceCallback)
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -5200,6 +5497,11 @@ func schema_k8sio_api_core_v1_NamespaceSpec(ref common.ReferenceCallback) common
Type: []string{"object"},
Properties: map[string]spec.Schema{
"finalizers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
Type: []string{"array"},
@@ -5238,6 +5540,10 @@ func schema_k8sio_api_core_v1_NamespaceStatus(ref common.ReferenceCallback) comm
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -5357,6 +5663,11 @@ func schema_k8sio_api_core_v1_NodeAffinity(ref common.ReferenceCallback) common.
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -5604,33 +5915,52 @@ func schema_k8sio_api_core_v1_NodeProxyOptions(ref common.ReferenceCallback) com
}
}
-func schema_k8sio_api_core_v1_NodeResources(ref common.ReferenceCallback) common.OpenAPIDefinition {
+func schema_k8sio_api_core_v1_NodeRuntimeHandler(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
- Description: "NodeResources is an object for conveying resource information about a node. see https://kubernetes.io/docs/concepts/architecture/nodes/#capacity for more details.",
+ Description: "NodeRuntimeHandler is a set of runtime handler information.",
Type: []string{"object"},
Properties: map[string]spec.Schema{
- "Capacity": {
+ "name": {
SchemaProps: spec.SchemaProps{
- Description: "Capacity represents the available resources of a node",
- Type: []string{"object"},
- AdditionalProperties: &spec.SchemaOrBool{
- Allows: true,
- Schema: &spec.Schema{
- SchemaProps: spec.SchemaProps{
- Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
- },
- },
- },
+ Description: "Runtime handler name. Empty for the default runtime handler.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "features": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Supported features.",
+ Ref: ref("k8s.io/api/core/v1.NodeRuntimeHandlerFeatures"),
},
},
},
- Required: []string{"Capacity"},
},
},
Dependencies: []string{
- "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.NodeRuntimeHandlerFeatures"},
+ }
+}
+
+func schema_k8sio_api_core_v1_NodeRuntimeHandlerFeatures(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "NodeRuntimeHandlerFeatures is a set of runtime features.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "recursiveReadOnlyMounts": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
}
}
@@ -5642,6 +5972,11 @@ func schema_k8sio_api_core_v1_NodeSelector(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"nodeSelectorTerms": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Required. A list of node selector terms. The terms are ORed.",
Type: []string{"array"},
@@ -5694,6 +6029,11 @@ func schema_k8sio_api_core_v1_NodeSelectorRequirement(ref common.ReferenceCallba
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -5723,6 +6063,11 @@ func schema_k8sio_api_core_v1_NodeSelectorTerm(ref common.ReferenceCallback) com
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of node selector requirements by node's labels.",
Type: []string{"array"},
@@ -5737,6 +6082,11 @@ func schema_k8sio_api_core_v1_NodeSelectorTerm(ref common.ReferenceCallback) com
},
},
"matchFields": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of node selector requirements by node's fields.",
Type: []string{"array"},
@@ -5780,6 +6130,7 @@ func schema_k8sio_api_core_v1_NodeSpec(ref common.ReferenceCallback) common.Open
"podCIDRs": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "set",
"x-kubernetes-patch-strategy": "merge",
},
},
@@ -5812,6 +6163,11 @@ func schema_k8sio_api_core_v1_NodeSpec(ref common.ReferenceCallback) common.Open
},
},
"taints": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, the node's taints.",
Type: []string{"array"},
@@ -5892,6 +6248,10 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -5912,6 +6272,10 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
"addresses": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -5944,6 +6308,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"images": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of container images on this node",
Type: []string{"array"},
@@ -5958,6 +6327,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"volumesInUse": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of attachable volumes in use (mounted) by the node.",
Type: []string{"array"},
@@ -5973,6 +6347,11 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
},
},
"volumesAttached": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of volumes that are attached to the node.",
Type: []string{"array"},
@@ -5992,11 +6371,30 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op
Ref: ref("k8s.io/api/core/v1.NodeConfigStatus"),
},
},
+ "runtimeHandlers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "The available runtime handlers.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.NodeRuntimeHandler"),
+ },
+ },
+ },
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.AttachedVolume", "k8s.io/api/core/v1.ContainerImage", "k8s.io/api/core/v1.NodeAddress", "k8s.io/api/core/v1.NodeCondition", "k8s.io/api/core/v1.NodeConfigStatus", "k8s.io/api/core/v1.NodeDaemonEndpoints", "k8s.io/api/core/v1.NodeSystemInfo", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
+ "k8s.io/api/core/v1.AttachedVolume", "k8s.io/api/core/v1.ContainerImage", "k8s.io/api/core/v1.NodeAddress", "k8s.io/api/core/v1.NodeCondition", "k8s.io/api/core/v1.NodeConfigStatus", "k8s.io/api/core/v1.NodeDaemonEndpoints", "k8s.io/api/core/v1.NodeRuntimeHandler", "k8s.io/api/core/v1.NodeSystemInfo", "k8s.io/apimachinery/pkg/api/resource.Quantity"},
}
}
@@ -6330,7 +6728,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimCondition(ref common.Referenc
},
"reason": {
SchemaProps: spec.SchemaProps{
- Description: "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.",
+ Description: "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"Resizing\" that means the underlying persistent volume is being resized.",
Type: []string{"string"},
Format: "",
},
@@ -6410,6 +6808,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
Type: []string{"object"},
Properties: map[string]spec.Schema{
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
Type: []string{"array"},
@@ -6473,7 +6876,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall
},
"volumeAttributesClassName": {
SchemaProps: spec.SchemaProps{
- Description: "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.",
+ Description: "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.",
Type: []string{"string"},
Format: "",
},
@@ -6502,6 +6905,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa
},
},
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
Type: []string{"array"},
@@ -6533,12 +6941,16 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
},
SchemaProps: spec.SchemaProps{
- Description: "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
+ Description: "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'Resizing'.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7017,6 +7429,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback)
},
},
"accessModes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
Type: []string{"array"},
@@ -7058,6 +7475,11 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback)
},
},
"mountOptions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "mountOptions is the list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
Type: []string{"array"},
@@ -7231,6 +7653,11 @@ func schema_k8sio_api_core_v1_PodAffinity(ref common.ReferenceCallback) common.O
Type: []string{"object"},
Properties: map[string]spec.Schema{
"requiredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
Type: []string{"array"},
@@ -7245,6 +7672,11 @@ func schema_k8sio_api_core_v1_PodAffinity(ref common.ReferenceCallback) common.O
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -7280,6 +7712,11 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
"namespaces": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
Type: []string{"array"},
@@ -7315,7 +7752,7 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
SchemaProps: spec.SchemaProps{
- Description: "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. Also, MatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
+ Description: "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7335,7 +7772,7 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm
},
},
SchemaProps: spec.SchemaProps{
- Description: "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
+ Description: "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -7365,6 +7802,11 @@ func schema_k8sio_api_core_v1_PodAntiAffinity(ref common.ReferenceCallback) comm
Type: []string{"object"},
Properties: map[string]spec.Schema{
"requiredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
Type: []string{"array"},
@@ -7379,6 +7821,11 @@ func schema_k8sio_api_core_v1_PodAntiAffinity(ref common.ReferenceCallback) comm
},
},
"preferredDuringSchedulingIgnoredDuringExecution": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
Type: []string{"array"},
@@ -7528,6 +7975,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
Type: []string{"object"},
Properties: map[string]spec.Schema{
"nameservers": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
Type: []string{"array"},
@@ -7543,6 +7995,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
},
},
"searches": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
Type: []string{"array"},
@@ -7558,6 +8015,11 @@ func schema_k8sio_api_core_v1_PodDNSConfig(ref common.ReferenceCallback) common.
},
},
"options": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
Type: []string{"array"},
@@ -7662,6 +8124,11 @@ func schema_k8sio_api_core_v1_PodExecOptions(ref common.ReferenceCallback) commo
},
},
"command": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Command is the remote command to execute. argv array. Not executed within a shell.",
Type: []string{"array"},
@@ -7889,6 +8356,11 @@ func schema_k8sio_api_core_v1_PodPortForwardOptions(ref common.ReferenceCallback
},
},
"ports": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "List of ports to forward Required when using WebSockets",
Type: []string{"array"},
@@ -8088,6 +8560,11 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
},
},
"supplementalGroups": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.",
Type: []string{"array"},
@@ -8110,6 +8587,11 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
},
},
"sysctls": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.",
Type: []string{"array"},
@@ -8137,11 +8619,17 @@ func schema_k8sio_api_core_v1_PodSecurityContext(ref common.ReferenceCallback) c
Ref: ref("k8s.io/api/core/v1.SeccompProfile"),
},
},
+ "appArmorProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "appArmorProfile is the AppArmor options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.",
+ Ref: ref("k8s.io/api/core/v1.AppArmorProfile"),
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.Sysctl", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
+ "k8s.io/api/core/v1.AppArmorProfile", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.Sysctl", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
}
}
@@ -8176,6 +8664,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"volumes": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys",
},
@@ -8196,6 +8688,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"initContainers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8216,6 +8712,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"containers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8236,6 +8736,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"ephemeralContainers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8313,7 +8817,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
"serviceAccount": {
SchemaProps: spec.SchemaProps{
- Description: "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
+ Description: "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
Type: []string{"string"},
Format: "",
},
@@ -8369,6 +8873,10 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"imagePullSecrets": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8414,6 +8922,11 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
"tolerations": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, the pod's tolerations.",
Type: []string{"array"},
@@ -8430,12 +8943,16 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
"hostAliases": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "ip",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge",
},
},
SchemaProps: spec.SchemaProps{
- Description: "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
+ Description: "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -8468,6 +8985,11 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
"readinessGates": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates",
Type: []string{"array"},
@@ -8551,7 +9073,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
"os": {
SchemaProps: spec.SchemaProps{
- Description: "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup",
+ Description: "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.appArmorProfile - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.appArmorProfile - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup",
Ref: ref("k8s.io/api/core/v1.PodOS"),
},
},
@@ -8574,7 +9096,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA
},
},
SchemaProps: spec.SchemaProps{
- Description: "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.\n\nThis is a beta feature enabled by the PodSchedulingReadiness feature gate.",
+ Description: "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
@@ -8637,6 +9159,10 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8713,6 +9239,10 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
"podIPs": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "ip",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge",
},
@@ -8737,9 +9267,14 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"initContainerStatuses": {
- SchemaProps: spec.SchemaProps{
- Description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
- Type: []string{"array"},
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
+ Description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
+ Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
SchemaProps: spec.SchemaProps{
@@ -8751,6 +9286,11 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"containerStatuses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
Type: []string{"array"},
@@ -8773,6 +9313,11 @@ func schema_k8sio_api_core_v1_PodStatus(ref common.ReferenceCallback) common.Ope
},
},
"ephemeralContainerStatuses": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Status for any ephemeral containers that have run in this pod.",
Type: []string{"array"},
@@ -9266,6 +9811,11 @@ func schema_k8sio_api_core_v1_ProjectedVolumeSource(ref common.ReferenceCallback
Type: []string{"object"},
Properties: map[string]spec.Schema{
"sources": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "sources is the list of volume projections",
Type: []string{"array"},
@@ -9360,6 +9910,11 @@ func schema_k8sio_api_core_v1_RBDPersistentVolumeSource(ref common.ReferenceCall
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
Type: []string{"array"},
@@ -9440,6 +9995,11 @@ func schema_k8sio_api_core_v1_RBDVolumeSource(ref common.ReferenceCallback) comm
Type: []string{"object"},
Properties: map[string]spec.Schema{
"monitors": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
Type: []string{"array"},
@@ -9819,6 +10379,10 @@ func schema_k8sio_api_core_v1_ReplicationControllerStatus(ref common.ReferenceCa
"conditions": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "type",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge",
},
@@ -10032,6 +10596,11 @@ func schema_k8sio_api_core_v1_ResourceQuotaSpec(ref common.ReferenceCallback) co
},
},
"scopes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
Type: []string{"array"},
@@ -10391,6 +10960,11 @@ func schema_k8sio_api_core_v1_ScopeSelector(ref common.ReferenceCallback) common
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of scope selector requirements by scope of the resources.",
Type: []string{"array"},
@@ -10443,6 +11017,11 @@ func schema_k8sio_api_core_v1_ScopedResourceSelectorRequirement(ref common.Refer
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -10596,7 +11175,8 @@ func schema_k8sio_api_core_v1_SecretEnvSource(ref common.ReferenceCallback) comm
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -10623,7 +11203,8 @@ func schema_k8sio_api_core_v1_SecretKeySelector(ref common.ReferenceCallback) co
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
@@ -10715,12 +11296,18 @@ func schema_k8sio_api_core_v1_SecretProjection(ref common.ReferenceCallback) com
Properties: map[string]spec.Schema{
"name": {
SchemaProps: spec.SchemaProps{
- Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Description: "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
Type: []string{"string"},
Format: "",
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -10796,6 +11383,11 @@ func schema_k8sio_api_core_v1_SecretVolumeSource(ref common.ReferenceCallback) c
},
},
"items": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
Type: []string{"array"},
@@ -10912,11 +11504,17 @@ func schema_k8sio_api_core_v1_SecurityContext(ref common.ReferenceCallback) comm
Ref: ref("k8s.io/api/core/v1.SeccompProfile"),
},
},
+ "appArmorProfile": {
+ SchemaProps: spec.SchemaProps{
+ Description: "appArmorProfile is the AppArmor options to use by this container. If set, this profile overrides the pod's appArmorProfile. Note that this field cannot be set when spec.os.name is windows.",
+ Ref: ref("k8s.io/api/core/v1.AppArmorProfile"),
+ },
+ },
},
},
},
Dependencies: []string{
- "k8s.io/api/core/v1.Capabilities", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
+ "k8s.io/api/core/v1.AppArmorProfile", "k8s.io/api/core/v1.Capabilities", "k8s.io/api/core/v1.SELinuxOptions", "k8s.io/api/core/v1.SeccompProfile", "k8s.io/api/core/v1.WindowsSecurityContextOptions"},
}
}
@@ -11037,6 +11635,10 @@ func schema_k8sio_api_core_v1_ServiceAccount(ref common.ReferenceCallback) commo
"secrets": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "name",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge",
},
@@ -11055,6 +11657,11 @@ func schema_k8sio_api_core_v1_ServiceAccount(ref common.ReferenceCallback) commo
},
},
"imagePullSecrets": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod",
Type: []string{"array"},
@@ -11404,6 +12011,11 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
},
},
"externalIPs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.",
Type: []string{"array"},
@@ -11434,6 +12046,11 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
},
},
"loadBalancerSourceRanges": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/",
Type: []string{"array"},
@@ -11533,6 +12150,13 @@ func schema_k8sio_api_core_v1_ServiceSpec(ref common.ReferenceCallback) common.O
Enum: []interface{}{"Cluster", "Local"},
},
},
+ "trafficDistribution": {
+ SchemaProps: spec.SchemaProps{
+ Description: "TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints. Implementations can use this field as a hint, but are not required to guarantee strict adherence. If the field is not set, the implementation will apply its default routing strategy. If set to \"PreferClose\", implementations should prioritize endpoints that are topologically close (e.g., same zone). This is an alpha field and requires enabling ServiceTrafficDistribution feature.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
},
},
},
@@ -11899,6 +12523,11 @@ func schema_k8sio_api_core_v1_TopologySelectorLabelRequirement(ref common.Refere
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
Type: []string{"array"},
@@ -11928,6 +12557,11 @@ func schema_k8sio_api_core_v1_TopologySelectorTerm(ref common.ReferenceCallback)
Type: []string{"object"},
Properties: map[string]spec.Schema{
"matchLabelExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "A list of topology selector requirements by labels.",
Type: []string{"array"},
@@ -11994,7 +12628,7 @@ func schema_k8sio_api_core_v1_TopologySpreadConstraint(ref common.ReferenceCallb
},
"minDomains": {
SchemaProps: spec.SchemaProps{
- Description: "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.\n\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).",
+ Description: "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.",
Type: []string{"integer"},
Format: "int32",
},
@@ -12379,6 +13013,13 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
Format: "",
},
},
+ "recursiveReadOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnly specifies whether read-only mounts should be handled recursively.\n\nIf ReadOnly is false, this field has no meaning and must be unspecified.\n\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason.\n\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None).\n\nIf this field is not specified, it is treated as an equivalent of Disabled.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
"mountPath": {
SchemaProps: spec.SchemaProps{
Description: "Path within the container at which the volume should be mounted. Must not contain ':'.",
@@ -12396,7 +13037,7 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
},
"mountPropagation": {
SchemaProps: spec.SchemaProps{
- Description: "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\n\nPossible enum values:\n - `\"Bidirectional\"` means that the volume in a container will receive new mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rshared\" in Linux terminology).\n - `\"HostToContainer\"` means that the volume in a container will receive new mounts from the host or other containers, but filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rslave\" in Linux terminology).\n - `\"None\"` means that the volume in a container will not receive new mounts from the host or other containers, and filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode corresponds to \"private\" in Linux terminology.",
+ Description: "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None).\n\nPossible enum values:\n - `\"Bidirectional\"` means that the volume in a container will receive new mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rshared\" in Linux terminology).\n - `\"HostToContainer\"` means that the volume in a container will receive new mounts from the host or other containers, but filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode is recursively applied to all mounts in the volume (\"rslave\" in Linux terminology).\n - `\"None\"` means that the volume in a container will not receive new mounts from the host or other containers, and filesystems mounted inside the container won't be propagated to the host or other containers. Note that this mode corresponds to \"private\" in Linux terminology.",
Type: []string{"string"},
Format: "",
Enum: []interface{}{"Bidirectional", "HostToContainer", "None"},
@@ -12416,6 +13057,50 @@ func schema_k8sio_api_core_v1_VolumeMount(ref common.ReferenceCallback) common.O
}
}
+func schema_k8sio_api_core_v1_VolumeMountStatus(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "VolumeMountStatus shows status of volume mounts.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name corresponds to the name of the original VolumeMount.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "mountPath": {
+ SchemaProps: spec.SchemaProps{
+ Description: "MountPath corresponds to the original VolumeMount.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "readOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "ReadOnly corresponds to the original VolumeMount.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ "recursiveReadOnly": {
+ SchemaProps: spec.SchemaProps{
+ Description: "RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name", "mountPath"},
+ },
+ },
+ }
+}
+
func schema_k8sio_api_core_v1_VolumeNodeAffinity(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -12907,6 +13592,11 @@ func schema_pkg_apis_meta_v1_APIGroup(ref common.ReferenceCallback) common.OpenA
},
},
"versions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "versions are the versions supported in this group.",
Type: []string{"array"},
@@ -12928,6 +13618,11 @@ func schema_pkg_apis_meta_v1_APIGroup(ref common.ReferenceCallback) common.OpenA
},
},
"serverAddressByClientCIDRs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
Type: []string{"array"},
@@ -12972,6 +13667,11 @@ func schema_pkg_apis_meta_v1_APIGroupList(ref common.ReferenceCallback) common.O
},
},
"groups": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "groups is a list of APIGroup.",
Type: []string{"array"},
@@ -13063,6 +13763,11 @@ func schema_pkg_apis_meta_v1_APIResource(ref common.ReferenceCallback) common.Op
},
},
"shortNames": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "shortNames is a list of suggested short names of the resource.",
Type: []string{"array"},
@@ -13078,6 +13783,11 @@ func schema_pkg_apis_meta_v1_APIResource(ref common.ReferenceCallback) common.Op
},
},
"categories": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
Type: []string{"array"},
@@ -13136,6 +13846,11 @@ func schema_pkg_apis_meta_v1_APIResourceList(ref common.ReferenceCallback) commo
},
},
"resources": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "resources contains the name of the resources and if they are namespaced.",
Type: []string{"array"},
@@ -13180,6 +13895,11 @@ func schema_pkg_apis_meta_v1_APIVersions(ref common.ReferenceCallback) common.Op
},
},
"versions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "versions are the api versions that are available.",
Type: []string{"array"},
@@ -13195,6 +13915,11 @@ func schema_pkg_apis_meta_v1_APIVersions(ref common.ReferenceCallback) common.Op
},
},
"serverAddressByClientCIDRs": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
Type: []string{"array"},
@@ -13239,6 +13964,11 @@ func schema_pkg_apis_meta_v1_ApplyOptions(ref common.ReferenceCallback) common.O
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13359,6 +14089,11 @@ func schema_pkg_apis_meta_v1_CreateOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13442,6 +14177,11 @@ func schema_pkg_apis_meta_v1_DeleteOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -13758,6 +14498,11 @@ func schema_pkg_apis_meta_v1_LabelSelector(ref common.ReferenceCallback) common.
},
},
"matchExpressions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
Type: []string{"array"},
@@ -13808,6 +14553,11 @@ func schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref common.ReferenceCallba
},
},
"values": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
Type: []string{"array"},
@@ -14201,6 +14951,10 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
"ownerReferences": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-map-keys": []interface{}{
+ "uid",
+ },
+ "x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge",
},
@@ -14221,6 +14975,7 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
"finalizers": {
VendorExtensible: spec.VendorExtensible{
Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "set",
"x-kubernetes-patch-strategy": "merge",
},
},
@@ -14239,6 +14994,11 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope
},
},
"managedFields": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
Type: []string{"array"},
@@ -14445,6 +15205,11 @@ func schema_pkg_apis_meta_v1_PatchOptions(ref common.ReferenceCallback) common.O
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -14521,6 +15286,11 @@ func schema_pkg_apis_meta_v1_RootPaths(ref common.ReferenceCallback) common.Open
Type: []string{"object"},
Properties: map[string]spec.Schema{
"paths": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "paths are the paths available at root.",
Type: []string{"array"},
@@ -14622,6 +15392,11 @@ func schema_pkg_apis_meta_v1_Status(ref common.ReferenceCallback) common.OpenAPI
},
},
"details": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails"),
@@ -14712,6 +15487,11 @@ func schema_pkg_apis_meta_v1_StatusDetails(ref common.ReferenceCallback) common.
},
},
"causes": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
Type: []string{"array"},
@@ -14769,6 +15549,11 @@ func schema_pkg_apis_meta_v1_Table(ref common.ReferenceCallback) common.OpenAPID
},
},
"columnDefinitions": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "columnDefinitions describes each column in the returned items array. The number of cells per row will always match the number of column definitions.",
Type: []string{"array"},
@@ -14783,6 +15568,11 @@ func schema_pkg_apis_meta_v1_Table(ref common.ReferenceCallback) common.OpenAPID
},
},
"rows": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "rows is the list of items in the table.",
Type: []string{"array"},
@@ -14901,6 +15691,11 @@ func schema_pkg_apis_meta_v1_TableRow(ref common.ReferenceCallback) common.OpenA
Type: []string{"object"},
Properties: map[string]spec.Schema{
"cells": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "cells will be as wide as the column definitions array and may contain strings, numbers (float64 or int64), booleans, simple maps, lists, or null. See the type field of the column definition for a more detailed description.",
Type: []string{"array"},
@@ -14915,7 +15710,12 @@ func schema_pkg_apis_meta_v1_TableRow(ref common.ReferenceCallback) common.OpenA
},
},
"conditions": {
- SchemaProps: spec.SchemaProps{
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
+ SchemaProps: spec.SchemaProps{
Description: "conditions describe additional status of a row that are relevant for a human user. These conditions apply to the row, not to the object, and will be specific to table output. The only defined condition type is 'Completed', for a row that indicates a resource that has run to completion and can be given less visual priority.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
@@ -15078,6 +15878,11 @@ func schema_pkg_apis_meta_v1_UpdateOptions(ref common.ReferenceCallback) common.
},
},
"dryRun": {
+ VendorExtensible: spec.VendorExtensible{
+ Extensions: spec.Extensions{
+ "x-kubernetes-list-type": "atomic",
+ },
+ },
SchemaProps: spec.SchemaProps{
Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
Type: []string{"array"},
@@ -15316,6 +16121,862 @@ func schema_k8sio_apimachinery_pkg_version_Info(ref common.ReferenceCallback) co
}
}
+func schema_kmodulesxyz_client_go_api_v1_CAPIClusterInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "provider": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "clusterName": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_CertificatePrivateKey(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "CertificatePrivateKey contains configuration options for private keys used by the Certificate controller. This allows control of how private keys are rotated.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "encoding": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The private key cryptography standards (PKCS) encoding for this certificate's private key to be encoded in. If provided, allowed values are \"pkcs1\" and \"pkcs8\" standing for PKCS#1 and PKCS#8, respectively. Defaults to PKCS#1 if not specified. See here for the difference between the formats: https://stackoverflow.com/a/48960291",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_CertificateSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "alias": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Alias represents the identifier of the certificate.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "issuerRef": {
+ SchemaProps: spec.SchemaProps{
+ Description: "IssuerRef is a reference to a Certificate Issuer.",
+ Ref: ref("k8s.io/api/core/v1.TypedLocalObjectReference"),
+ },
+ },
+ "secretName": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Specifies the k8s secret name that holds the certificates. Default to --cert.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "subject": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name).",
+ Ref: ref("kmodules.xyz/client-go/api/v1.X509Subject"),
+ },
+ },
+ "duration": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Certificate default Duration",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
+ },
+ },
+ "renewBefore": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Certificate renew before expiration duration",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
+ },
+ },
+ "dnsNames": {
+ SchemaProps: spec.SchemaProps{
+ Description: "DNSNames is a list of subject alt names to be used on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "ipAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "IPAddresses is a list of IP addresses to be used on the Certificate",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "uris": {
+ SchemaProps: spec.SchemaProps{
+ Description: "URIs is a list of URI subjectAltNames to be set on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "emailAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "EmailAddresses is a list of email subjectAltNames to be set on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "privateKey": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Options to control private keys used for the Certificate.",
+ Ref: ref("kmodules.xyz/client-go/api/v1.CertificatePrivateKey"),
+ },
+ },
+ },
+ Required: []string{"alias"},
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "kmodules.xyz/client-go/api/v1.CertificatePrivateKey", "kmodules.xyz/client-go/api/v1.X509Subject"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ClusterMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "uid": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "displayName": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "provider": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "ownerID": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "ownerType": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "apiEndpoint": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "caBundle": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"uid"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_Condition(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "Condition defines an observation of a object operational state.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "type": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Type of condition in CamelCase or in foo.example.com/CamelCase. Many .condition.type values are consistent across resources like Available, but because arbitrary util can be useful (see .node.status.util), the ability to deconflict is important.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "status": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Status of the condition, one of True, False, Unknown.",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "observedGeneration": {
+ SchemaProps: spec.SchemaProps{
+ Description: "If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.",
+ Type: []string{"integer"},
+ Format: "int64",
+ },
+ },
+ "severity": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Severity provides an explicit classification of Reason code, so the users or machines can immediately understand the current situation and act accordingly. The Severity field MUST be set only when Status=False.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "lastTransitionTime": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.",
+ Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"),
+ },
+ },
+ "reason": {
+ SchemaProps: spec.SchemaProps{
+ Description: "The reason for the condition's last transition in CamelCase. The specific API may choose whether this field is considered a guaranteed API. This field may not be empty.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "message": {
+ SchemaProps: spec.SchemaProps{
+ Description: "A human-readable message indicating details about the transition. This field may be empty.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"type", "status", "lastTransitionTime"},
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/apimachinery/pkg/apis/meta/v1.Time"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_HealthCheckSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "HealthCheckSpec defines attributes of the health check",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "periodSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "How often (in seconds) to perform the health check. Default to 10 seconds. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "timeoutSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Number of seconds after which the probe times out. Defaults to 10 second. Minimum value is 1. It should be less than the periodSeconds.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "failureThreshold": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Minimum consecutive failures for the health check to be considered failed after having succeeded. Defaults to 1. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "disableWriteCheck": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Whether to disable write check on database. Defaults to false.",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ImageInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "image": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "lineages": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.Lineage"),
+ },
+ },
+ },
+ },
+ },
+ "pullCredentials": {
+ SchemaProps: spec.SchemaProps{
+ Ref: ref("kmodules.xyz/client-go/api/v1.PullCredentials"),
+ },
+ },
+ },
+ Required: []string{"image"},
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.Lineage", "kmodules.xyz/client-go/api/v1.PullCredentials"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_Lineage(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "chain": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ObjectInfo"),
+ },
+ },
+ },
+ },
+ },
+ "containers": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.ObjectInfo"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectID(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "group": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectInfo(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "resource": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ResourceID"),
+ },
+ },
+ "ref": {
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.ObjectReference"),
+ },
+ },
+ },
+ Required: []string{"resource", "ref"},
+ },
+ },
+ Dependencies: []string{
+ "kmodules.xyz/client-go/api/v1.ObjectReference", "kmodules.xyz/client-go/api/v1.ResourceID"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ObjectReference(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ObjectReference contains enough information to let you inspect or modify the referred object.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_PullCredentials(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "serviceAccountName": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "secretRefs": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("k8s.io/api/core/v1.LocalObjectReference"),
+ },
+ },
+ },
+ },
+ },
+ },
+ Required: []string{"namespace"},
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.LocalObjectReference"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ReadonlyHealthCheckSpec(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ReadonlyHealthCheckSpec defines attributes of the health check using only read-only checks",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "periodSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "How often (in seconds) to perform the health check. Default to 10 seconds. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "timeoutSeconds": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Number of seconds after which the probe times out. Defaults to 10 second. Minimum value is 1. It should be less than the periodSeconds.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ "failureThreshold": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Minimum consecutive failures for the health check to be considered failed after having succeeded. Defaults to 1. Minimum value is 1.",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_ResourceID(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "ResourceID identifies a resource",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "group": {
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "version": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Kind is the serialized kind of the resource. It is normally CamelCase and singular.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "scope": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"group"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TLSConfig(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "issuerRef": {
+ SchemaProps: spec.SchemaProps{
+ Description: "IssuerRef is a reference to a Certificate Issuer.",
+ Ref: ref("k8s.io/api/core/v1.TypedLocalObjectReference"),
+ },
+ },
+ "certificates": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Certificate provides server and/or client certificate options used by application pods. These options are passed to a cert-manager Certificate object. xref: https://github.com/jetstack/cert-manager/blob/v0.16.0/pkg/apis/certmanager/v1beta1/types_certificate.go#L82-L162",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: map[string]interface{}{},
+ Ref: ref("kmodules.xyz/client-go/api/v1.CertificateSpec"),
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.TypedLocalObjectReference", "kmodules.xyz/client-go/api/v1.CertificateSpec"},
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TimeOfDay(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "TimeOfDay is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
+ Type: apiv1.TimeOfDay{}.OpenAPISchemaType(),
+ Format: apiv1.TimeOfDay{}.OpenAPISchemaFormat(),
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_TypedObjectReference(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "TypedObjectReference represents an typed namespaced object.",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "apiGroup": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "kind": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "namespace": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "name": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ Required: []string{"name"},
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_X509Subject(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "X509Subject Full X509 name specification",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "organizations": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Organizations to be used on the Certificate.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "countries": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Countries to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "organizationalUnits": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Organizational Units to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "localities": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Cities to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "provinces": {
+ SchemaProps: spec.SchemaProps{
+ Description: "State/Provinces to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "streetAddresses": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Street addresses to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "postalCodes": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Postal codes to be used on the CertificateSpec.",
+ Type: []string{"array"},
+ Items: &spec.SchemaOrArray{
+ Schema: &spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Default: "",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ "serialNumber": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Serial number to be used on the CertificateSpec.",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func schema_kmodulesxyz_client_go_api_v1_stringSetMerger(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ },
+ },
+ }
+}
+
func schema_kmodulesxyz_resource_metadata_apis_shared_Action(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresources.yaml b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresources.yaml
index 503dd6789..9e66496cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresources.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresources.yaml
@@ -105,10 +105,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresourceservices.yaml b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresourceservices.yaml
index 1721cd7c4..259665f25 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresourceservices.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_genericresourceservices.yaml
@@ -57,10 +57,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_podviews.yaml b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_podviews.yaml
index 6e07a920f..091080670 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_podviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_podviews.yaml
@@ -1,5 +1,3 @@
-
----
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
@@ -96,10 +94,15 @@ spec:
description: The key to select.
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ default: ""
+ description: 'Name of the referent. This field
+ is effectively required, but due to backwards
+ compatibility is allowed to be empty. Instances
+ of this type with an empty value here are almost
+ certainly wrong. TODO: Add other useful fields.
+ apiVersion, kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the ConfigMap or
@@ -163,10 +166,15 @@ spec:
be a valid secret key.
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ default: ""
+ description: 'Name of the referent. This field
+ is effectively required, but due to backwards
+ compatibility is allowed to be empty. Instances
+ of this type with an empty value here are almost
+ certainly wrong. TODO: Add other useful fields.
+ apiVersion, kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the Secret or its
@@ -197,9 +205,15 @@ spec:
description: The ConfigMap to select from
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ default: ""
+ description: 'Name of the referent. This field is
+ effectively required, but due to backwards compatibility
+ is allowed to be empty. Instances of this type with
+ an empty value here are almost certainly wrong.
TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the ConfigMap must be
@@ -215,9 +229,15 @@ spec:
description: The Secret to select from
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ default: ""
+ description: 'Name of the referent. This field is
+ effectively required, but due to backwards compatibility
+ is allowed to be empty. Instances of this type with
+ an empty value here are almost certainly wrong.
TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the Secret must be defined
@@ -264,6 +284,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
description: HTTPGet specifies the http request to perform.
@@ -293,6 +314,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -374,6 +396,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
description: HTTPGet specifies the http request to perform.
@@ -403,6 +426,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -476,6 +500,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe
@@ -528,6 +553,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -678,6 +704,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe
@@ -730,6 +757,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -861,6 +889,29 @@ spec:
2) has CAP_SYS_ADMIN Note that this field cannot be set
when spec.os.name is windows.'
type: boolean
+ appArmorProfile:
+ description: appArmorProfile is the AppArmor options to
+ use by this container. If set, this profile overrides
+ the pod's appArmorProfile. Note that this field cannot
+ be set when spec.os.name is windows.
+ properties:
+ localhostProfile:
+ description: localhostProfile indicates a profile loaded
+ on the node that should be used. The profile must
+ be preconfigured on the node to work. Must match the
+ loaded name of the profile. Must be set if and only
+ if type is "Localhost".
+ type: string
+ type:
+ description: 'type indicates which kind of AppArmor
+ profile will be applied. Valid options are: Localhost
+ - a profile pre-loaded on the node. RuntimeDefault
+ - the container runtime''s default profile. Unconfined
+ - no AppArmor enforcement.'
+ type: string
+ required:
+ - type
+ type: object
capabilities:
description: The capabilities to add/drop when running containers.
Defaults to the default set of capabilities granted by
@@ -874,6 +925,7 @@ spec:
type
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
description: Removed capabilities
items:
@@ -881,6 +933,7 @@ spec:
type
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
description: Run container in privileged mode. Processes
@@ -1043,6 +1096,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe
@@ -1095,6 +1149,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -1250,7 +1305,9 @@ spec:
description: mountPropagation determines how mounts are
propagated from the host to container and the other
way around. When not set, MountPropagationNone is used.
- This field is beta in 1.10.
+ This field is beta in 1.10. When RecursiveReadOnly is
+ set to IfPossible or to Enabled, MountPropagation must
+ be None or unspecified (which defaults to None).
type: string
name:
description: This must match the Name of a Volume.
@@ -1259,6 +1316,23 @@ spec:
description: Mounted read-only if true, read-write otherwise
(false or unspecified). Defaults to false.
type: boolean
+ recursiveReadOnly:
+ description: "RecursiveReadOnly specifies whether read-only
+ mounts should be handled recursively. \n If ReadOnly
+ is false, this field has no meaning and must be unspecified.
+ \n If ReadOnly is true, and this field is set to Disabled,
+ the mount is not made recursively read-only. If this
+ field is set to IfPossible, the mount is made recursively
+ read-only, if it is supported by the container runtime.
+ \ If this field is set to Enabled, the mount is made
+ recursively read-only if it is supported by the container
+ runtime, otherwise the pod will not be started and an
+ error will be generated to indicate the reason. \n If
+ this field is set to IfPossible or Enabled, MountPropagation
+ must be set to None (or be unspecified, which defaults
+ to None). \n If this field is not specified, it is treated
+ as an equivalent of Disabled."
+ type: string
subPath:
description: Path within the volume from which the container's
volume should be mounted. Defaults to "" (volume's root).
@@ -1366,6 +1440,9 @@ spec:
- type
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - type
+ x-kubernetes-list-type: map
containerStatuses:
description: 'The list has one entry per container in the manifest.
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'
@@ -1610,6 +1687,36 @@ spec:
type: string
type: object
type: object
+ volumeMounts:
+ description: Status of volume mounts.
+ items:
+ description: VolumeMountStatus shows status of volume mounts.
+ properties:
+ mountPath:
+ description: MountPath corresponds to the original VolumeMount.
+ type: string
+ name:
+ description: Name corresponds to the name of the original
+ VolumeMount.
+ type: string
+ readOnly:
+ description: ReadOnly corresponds to the original VolumeMount.
+ type: boolean
+ recursiveReadOnly:
+ description: RecursiveReadOnly must be set to Disabled,
+ Enabled, or unspecified (for non-readonly mounts). An
+ IfPossible value in the original VolumeMount must be
+ translated to Disabled or Enabled, depending on the
+ mount result.
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
required:
- image
- imageID
@@ -1618,6 +1725,7 @@ spec:
- restartCount
type: object
type: array
+ x-kubernetes-list-type: atomic
ephemeralContainerStatuses:
description: Status for any ephemeral containers that have run in
this pod.
@@ -1862,6 +1970,36 @@ spec:
type: string
type: object
type: object
+ volumeMounts:
+ description: Status of volume mounts.
+ items:
+ description: VolumeMountStatus shows status of volume mounts.
+ properties:
+ mountPath:
+ description: MountPath corresponds to the original VolumeMount.
+ type: string
+ name:
+ description: Name corresponds to the name of the original
+ VolumeMount.
+ type: string
+ readOnly:
+ description: ReadOnly corresponds to the original VolumeMount.
+ type: boolean
+ recursiveReadOnly:
+ description: RecursiveReadOnly must be set to Disabled,
+ Enabled, or unspecified (for non-readonly mounts). An
+ IfPossible value in the original VolumeMount must be
+ translated to Disabled or Enabled, depending on the
+ mount result.
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
required:
- image
- imageID
@@ -1870,6 +2008,7 @@ spec:
- restartCount
type: object
type: array
+ x-kubernetes-list-type: atomic
hostIP:
description: hostIP holds the IP address of the host to which the
pod is assigned. Empty if the pod has not started yet. A pod can
@@ -2140,6 +2279,36 @@ spec:
type: string
type: object
type: object
+ volumeMounts:
+ description: Status of volume mounts.
+ items:
+ description: VolumeMountStatus shows status of volume mounts.
+ properties:
+ mountPath:
+ description: MountPath corresponds to the original VolumeMount.
+ type: string
+ name:
+ description: Name corresponds to the name of the original
+ VolumeMount.
+ type: string
+ readOnly:
+ description: ReadOnly corresponds to the original VolumeMount.
+ type: boolean
+ recursiveReadOnly:
+ description: RecursiveReadOnly must be set to Disabled,
+ Enabled, or unspecified (for non-readonly mounts). An
+ IfPossible value in the original VolumeMount must be
+ translated to Disabled or Enabled, depending on the
+ mount result.
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
required:
- image
- imageID
@@ -2148,6 +2317,7 @@ spec:
- restartCount
type: object
type: array
+ x-kubernetes-list-type: atomic
message:
description: A human readable message indicating details about why
the pod is in this condition.
@@ -2199,8 +2369,13 @@ spec:
ip:
description: IP is the IP address assigned to the pod
type: string
+ required:
+ - ip
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - ip
+ x-kubernetes-list-type: map
qosClass:
description: 'The Quality of Service (QOS) classification assigned
to the pod based on resource requirements See PodQOSClass type for
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_projects.yaml b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_projects.yaml
index 8e3cd5363..b87f52314 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_projects.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_projects.yaml
@@ -101,11 +101,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_resourcesummaries.yaml b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_resourcesummaries.yaml
index e95c2d9ea..e9b5b7317 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_resourcesummaries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/core.k8s.appscode.com_resourcesummaries.yaml
@@ -105,10 +105,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_clusteridentitys.yaml b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_clusteridentitys.yaml
new file mode 100644
index 000000000..8315c19e5
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_clusteridentitys.yaml
@@ -0,0 +1,78 @@
+
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+ creationTimestamp: null
+ name: clusteridentitys.identity.k8s.appscode.com
+spec:
+ group: identity.k8s.appscode.com
+ names:
+ kind: ClusterIdentity
+ listKind: ClusterIdentityList
+ plural: clusteridentitys
+ singular: clusteridentity
+ scope: Namespaced
+ versions:
+ - additionalPrinterColumns:
+ - jsonPath: .status.phase
+ name: Status
+ type: string
+ - jsonPath: .metadata.creationTimestamp
+ name: Age
+ type: date
+ name: v1alpha1
+ schema:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ type: object
+ status:
+ properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
+ displayName:
+ type: string
+ name:
+ type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
+ provider:
+ enum:
+ - Aws
+ - Azure
+ - DigitalOcean
+ - GoogleCloud
+ - Linode
+ - Packet
+ - Scaleway
+ - Vultr
+ - BareMetal
+ - KIND
+ - Generic
+ - Private
+ type: string
+ uid:
+ type: string
+ required:
+ - uid
+ type: object
+ type: object
+ served: true
+ storage: true
+ subresources:
+ status: {}
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_selfsubjectnamespaceaccessreviews.yaml b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_selfsubjectnamespaceaccessreviews.yaml
new file mode 100644
index 000000000..511f0bde4
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_selfsubjectnamespaceaccessreviews.yaml
@@ -0,0 +1,114 @@
+
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+ creationTimestamp: null
+ name: selfsubjectnamespaceaccessreviews.identity.k8s.appscode.com
+spec:
+ group: identity.k8s.appscode.com
+ names:
+ kind: SelfSubjectNamespaceAccessReview
+ listKind: SelfSubjectNamespaceAccessReviewList
+ plural: selfsubjectnamespaceaccessreviews
+ singular: selfsubjectnamespaceaccessreview
+ scope: Cluster
+ versions:
+ - name: v1alpha1
+ schema:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ type: object
+ spec:
+ description: Spec holds information about the request being evaluated. user
+ and groups must be empty
+ properties:
+ nonResourceAttributes:
+ description: NonResourceAttributes describes information for a non-resource
+ access request
+ items:
+ description: NonResourceAttributes includes the authorization attributes
+ available for non-resource requests to the Authorizer interface
+ properties:
+ path:
+ description: Path is the URL path of the request
+ type: string
+ verb:
+ description: Verb is the standard HTTP verb
+ type: string
+ type: object
+ type: array
+ resourceAttributes:
+ description: ResourceAuthorizationAttributes describes information
+ for a resource access request
+ items:
+ description: ResourceAttributes includes the authorization attributes
+ available for resource requests to the Authorizer interface
+ properties:
+ group:
+ description: Group is the API Group of the Resource. "*" means
+ all.
+ type: string
+ name:
+ description: Name is the name of the resource being requested
+ for a "get" or deleted for a "delete". "" (empty) means all.
+ type: string
+ namespace:
+ description: Namespace is the namespace of the action being
+ requested. Currently, there is no distinction between no
+ namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews
+ "" (empty) is empty for cluster-scoped resources "" (empty)
+ means "all" for namespace scoped resources from a SubjectAccessReview
+ or SelfSubjectAccessReview
+ type: string
+ resource:
+ description: Resource is one of the existing resource types. "*"
+ means all.
+ type: string
+ subresource:
+ description: Subresource is one of the existing resource types. ""
+ means none.
+ type: string
+ verb:
+ description: 'Verb is a kubernetes resource API verb, like:
+ get, list, watch, create, update, delete, proxy. "*" means
+ all.'
+ type: string
+ version:
+ description: Version is the API Version of the Resource. "*"
+ means all.
+ type: string
+ type: object
+ type: array
+ type: object
+ status:
+ description: Status is filled in by the server and indicates whether the
+ request is allowed or not
+ properties:
+ namespaces:
+ items:
+ type: string
+ type: array
+ projects:
+ additionalProperties:
+ items:
+ type: string
+ type: array
+ type: object
+ type: object
+ required:
+ - spec
+ type: object
+ served: true
+ storage: true
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_siteinfos.yaml b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_siteinfos.yaml
new file mode 100644
index 000000000..5415cf5b8
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/crds/identity.k8s.appscode.com_siteinfos.yaml
@@ -0,0 +1,259 @@
+
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+ creationTimestamp: null
+ name: siteinfos.identity.k8s.appscode.com
+spec:
+ group: identity.k8s.appscode.com
+ names:
+ categories:
+ - auditor
+ - appscode
+ - all
+ kind: SiteInfo
+ listKind: SiteInfoList
+ plural: siteinfos
+ singular: siteinfo
+ scope: Cluster
+ versions:
+ - name: v1alpha1
+ schema:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ kubernetes:
+ properties:
+ cluster:
+ properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
+ displayName:
+ type: string
+ name:
+ type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
+ provider:
+ enum:
+ - Aws
+ - Azure
+ - DigitalOcean
+ - GoogleCloud
+ - Linode
+ - Packet
+ - Scaleway
+ - Vultr
+ - BareMetal
+ - KIND
+ - Generic
+ - Private
+ type: string
+ uid:
+ type: string
+ required:
+ - uid
+ type: object
+ clusterName:
+ description: Deprecated
+ type: string
+ clusterUID:
+ description: Deprecated
+ type: string
+ controlPlane:
+ description: https://github.com/kmodules/client-go/blob/kubernetes-1.16.3/tools/analytics/analytics.go#L66
+ properties:
+ dnsNames:
+ items:
+ type: string
+ type: array
+ emailAddresses:
+ items:
+ type: string
+ type: array
+ ipAddresses:
+ items:
+ type: string
+ type: array
+ notAfter:
+ format: date-time
+ type: string
+ notBefore:
+ format: date-time
+ type: string
+ uris:
+ items:
+ type: string
+ type: array
+ required:
+ - notAfter
+ - notBefore
+ type: object
+ nodeStats:
+ properties:
+ allocatable:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Allocatable represents the resources of a node that
+ are available for scheduling. Defaults to Capacity.
+ type: object
+ capacity:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Capacity represents the total resources of a node.
+ More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity'
+ type: object
+ controlPlane:
+ properties:
+ allocatable:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Allocatable represents the resources of a node
+ that are available for scheduling. Defaults to Capacity.
+ type: object
+ capacity:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Capacity represents the total resources of a
+ node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity'
+ type: object
+ count:
+ type: integer
+ type: object
+ count:
+ type: integer
+ workers:
+ properties:
+ allocatable:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Allocatable represents the resources of a node
+ that are available for scheduling. Defaults to Capacity.
+ type: object
+ capacity:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Capacity represents the total resources of a
+ node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity'
+ type: object
+ count:
+ type: integer
+ type: object
+ type: object
+ version:
+ description: 'Info contains versioning information. TODO: Add []string
+ of api versions supported? It''s still unclear how we''ll want to
+ distribute that information.'
+ properties:
+ buildDate:
+ type: string
+ compiler:
+ type: string
+ gitCommit:
+ type: string
+ gitTreeState:
+ type: string
+ gitVersion:
+ type: string
+ goVersion:
+ type: string
+ major:
+ type: string
+ minor:
+ type: string
+ platform:
+ type: string
+ required:
+ - buildDate
+ - compiler
+ - gitCommit
+ - gitTreeState
+ - gitVersion
+ - goVersion
+ - major
+ - minor
+ - platform
+ type: object
+ required:
+ - nodeStats
+ type: object
+ metadata:
+ type: object
+ product:
+ properties:
+ licenseID:
+ type: string
+ productName:
+ description: This has been renamed to Features
+ type: string
+ productOwnerName:
+ type: string
+ productOwnerUID:
+ type: string
+ productUID:
+ type: string
+ version:
+ properties:
+ commitHash:
+ type: string
+ commitTimestamp:
+ type: string
+ compiler:
+ type: string
+ gitBranch:
+ type: string
+ gitTag:
+ type: string
+ goVersion:
+ type: string
+ platform:
+ type: string
+ version:
+ type: string
+ versionStrategy:
+ type: string
+ type: object
+ required:
+ - version
+ type: object
+ type: object
+ served: true
+ storage: true
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourcedescriptors.yaml b/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourcedescriptors.yaml
index 19d0917b8..b648c3f78 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourcedescriptors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourcedescriptors.yaml
@@ -131,11 +131,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourceeditors.yaml
index a04354acd..6331017f0 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/meta.k8s.appscode.com_resourceeditors.yaml
@@ -346,11 +346,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/node.k8s.appscode.com_nodetopologies.yaml b/vendor/kmodules.xyz/resource-metadata/crds/node.k8s.appscode.com_nodetopologies.yaml
index d6ef9809d..390ef6581 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/node.k8s.appscode.com_nodetopologies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/node.k8s.appscode.com_nodetopologies.yaml
@@ -39,6 +39,8 @@ spec:
type: object
spec:
properties:
+ description:
+ type: string
nodeGroups:
items:
properties:
@@ -50,24 +52,122 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: 'Allocatable represents the total resources of
- a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity'
+ a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
+ Deprecated: Use resources instead.'
+ type: object
+ cost:
+ description: Cost is the cost of the running an ondeamd machine
+ for a month
+ properties:
+ price:
+ type: string
+ unit:
+ type: string
+ required:
+ - price
+ - unit
+ type: object
+ resources:
+ description: Resources represents the requested and limited
+ resources of a machine type.
+ properties:
+ claims:
+ description: "Claims lists the names of resources, defined
+ in spec.resourceClaims, that are used by this container.
+ \n This is an alpha field and requires enabling the DynamicResourceAllocation
+ feature gate. \n This field is immutable. It can only
+ be set for containers."
+ items:
+ description: ResourceClaim references one entry in PodSpec.ResourceClaims.
+ properties:
+ name:
+ description: Name must match the name of one entry
+ in pod.spec.resourceClaims of the Pod where this
+ field is used. It makes that resource available
+ inside a container.
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Limits describes the maximum amount of compute
+ resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Requests describes the minimum amount of compute
+ resources required. If Requests is omitted for a container,
+ it defaults to Limits if that is explicitly specified,
+ otherwise to an implementation-defined value. Requests
+ cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
type: object
topologyValue:
type: string
required:
- - allocatable
- topologyValue
type: object
type: array
nodeSelectionPolicy:
- enum:
- - LabelSelector
- - Taint
type: string
+ requirements:
+ description: Requirements are layered with GetLabels and applied to
+ every node.
+ items:
+ description: A node selector requirement is a selector that contains
+ values, a key, and an operator that relates the key and values.
+ properties:
+ key:
+ description: The label key that the selector applies to.
+ type: string
+ operator:
+ description: Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and
+ Lt.
+ type: string
+ values:
+ description: An array of string values. If the operator is In
+ or NotIn, the values array must be non-empty. If the operator
+ is Exists or DoesNotExist, the values array must be empty.
+ If the operator is Gt or Lt, the values array must have a
+ single element, which will be interpreted as an integer. This
+ array is replaced during a strategic merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: requirements with operator 'In' must have a value defined
+ rule: 'self.all(x, x.operator == ''In'' ? x.values.size() != 0 :
+ true)'
+ - message: requirements operator 'Gt' or 'Lt' must have a single positive
+ integer value
+ rule: 'self.all(x, (x.operator == ''Gt'' || x.operator == ''Lt'')
+ ? (x.values.size() == 1 && int(x.values[0]) >= 0) : true)'
topologyKey:
type: string
required:
- - nodeSelectionPolicy
- topologyKey
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/crds/ui.k8s.appscode.com_resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/crds/ui.k8s.appscode.com_resourceeditors.yaml
index 6851fec37..e526cb663 100644
--- a/vendor/kmodules.xyz/resource-metadata/crds/ui.k8s.appscode.com_resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/crds/ui.k8s.appscode.com_resourceeditors.yaml
@@ -346,11 +346,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/challenges.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/challenges.yaml
index 12a2f0e4e..0e6f8345e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/challenges.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/challenges.yaml
@@ -21,14 +21,19 @@ spec:
server
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -66,20 +71,23 @@ spec:
spec:
properties:
authorizationURL:
- description: The URL to the ACME Authorization resource that this challenge
- is a part of.
+ description: |-
+ The URL to the ACME Authorization resource that this
+ challenge is a part of.
type: string
dnsName:
- description: dnsName is the identifier that this challenge is for, e.g.
- example.com. If the requested DNSName is a 'wildcard', this field
- MUST be set to the non-wildcard domain, e.g. for `*.example.com`,
- it must be `example.com`.
+ description: |-
+ dnsName is the identifier that this challenge is for, e.g. example.com.
+ If the requested DNSName is a 'wildcard', this field MUST be set to the
+ non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`.
type: string
issuerRef:
- description: References a properly configured ACME-type Issuer which
- should be used to create this Challenge. If the Issuer does not exist,
- processing will be retried. If the Issuer is not an 'ACME' Issuer,
- an error will be returned and the Challenge will be marked as failed.
+ description: |-
+ References a properly configured ACME-type Issuer which should
+ be used to create this Challenge.
+ If the Issuer does not exist, processing will be retried.
+ If the Issuer is not an 'ACME' Issuer, an error will be returned and the
+ Challenge will be marked as failed.
properties:
group:
description: Group of the resource being referred to.
@@ -94,37 +102,45 @@ spec:
- name
type: object
key:
- description: 'The ACME challenge key for this challenge For HTTP01 challenges,
- this is the value that must be responded with to complete the HTTP01
- challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded
- SHA256 sum of the `.` text that must be set as the TXT record content.'
+ description: |-
+ The ACME challenge key for this challenge
+ For HTTP01 challenges, this is the value that must be responded with to
+ complete the HTTP01 challenge in the format:
+ `.`.
+ For DNS01 challenges, this is the base64 encoded SHA256 sum of the
+ `.`
+ text that must be set as the TXT record content.
type: string
solver:
- description: Contains the domain solving configuration that should be
- used to solve this challenge resource.
+ description: |-
+ Contains the domain solving configuration that should be used to
+ solve this challenge resource.
properties:
dns01:
- description: Configures cert-manager to attempt to complete authorizations
- by performing the DNS01 challenge flow.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the DNS01 challenge flow.
properties:
acmeDNS:
- description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns)
- API to manage DNS01 challenge records.
+ description: |-
+ Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage
+ DNS01 challenge records.
properties:
accountSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -140,49 +156,58 @@ spec:
DNS01 challenge records.
properties:
accessTokenSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientSecretSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientTokenSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -200,25 +225,27 @@ spec:
challenge records.
properties:
clientID:
- description: 'Auth: Azure Service Principal: The ClientID
- of the Azure Service Principal used to authenticate with
- Azure DNS. If set, ClientSecret and TenantID must also
- be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientSecret and TenantID must also be set.
type: string
clientSecretSecretRef:
- description: 'Auth: Azure Service Principal: A reference
- to a Secret containing the password associated with the
- Service Principal. If set, ClientID and TenantID must
- also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ A reference to a Secret containing the password associated with the Service Principal.
+ If set, ClientID and TenantID must also be set.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -235,19 +262,19 @@ spec:
description: name of the DNS zone that should be used
type: string
managedIdentity:
- description: 'Auth: Azure Workload Identity or Azure Managed
- Service Identity: Settings to enable Azure Workload Identity
- or Azure Managed Service Identity If set, ClientID, ClientSecret
- and TenantID must not be set.'
+ description: |-
+ Auth: Azure Workload Identity or Azure Managed Service Identity:
+ Settings to enable Azure Workload Identity or Azure Managed Service Identity
+ If set, ClientID, ClientSecret and TenantID must not be set.
properties:
clientID:
description: client ID of the managed identity, can
not be used at the same time as resourceID
type: string
resourceID:
- description: resource ID of the managed identity, can
- not be used at the same time as clientID Cannot be
- used for Azure Managed Service Identity
+ description: |-
+ resource ID of the managed identity, can not be used at the same time as clientID
+ Cannot be used for Azure Managed Service Identity
type: string
type: object
resourceGroupName:
@@ -257,10 +284,10 @@ spec:
description: ID of the Azure subscription
type: string
tenantID:
- description: 'Auth: Azure Service Principal: The TenantID
- of the Azure Service Principal used to authenticate with
- Azure DNS. If set, ClientID and ClientSecret must also
- be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientID and ClientSecret must also be set.
type: string
required:
- resourceGroupName
@@ -271,25 +298,28 @@ spec:
records.
properties:
hostedZoneName:
- description: HostedZoneName is an optional field that tells
- cert-manager in which Cloud DNS zone the challenge record
- has to be created. If left empty cert-manager will automatically
- choose a zone.
+ description: |-
+ HostedZoneName is an optional field that tells cert-manager in which
+ Cloud DNS zone the challenge record has to be created.
+ If left empty cert-manager will automatically choose a zone.
type: string
project:
type: string
serviceAccountSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -302,18 +332,21 @@ spec:
records.
properties:
apiKeySecretRef:
- description: 'API key to use to authenticate with Cloudflare.
- Note: using an API token to authenticate is now the recommended
- method as it allows greater control of permissions.'
+ description: |-
+ API key to use to authenticate with Cloudflare.
+ Note: using an API token to authenticate is now the recommended method
+ as it allows greater control of permissions.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -322,13 +355,15 @@ spec:
description: API token used to authenticate with Cloudflare.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -339,8 +374,9 @@ spec:
type: string
type: object
cnameStrategy:
- description: CNAMEStrategy configures how the DNS01 provider
- should handle CNAME records when found in DNS zones.
+ description: |-
+ CNAMEStrategy configures how the DNS01 provider should handle CNAME
+ records when found in DNS zones.
enum:
- None
- Follow
@@ -350,17 +386,20 @@ spec:
records.
properties:
tokenSecretRef:
- description: A reference to a specific 'key' within a Secret
- resource. In some instances, `key` is a required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -369,40 +408,44 @@ spec:
- tokenSecretRef
type: object
rfc2136:
- description: Use RFC2136 ("Dynamic Updates in the Domain Name
- System") (https://datatracker.ietf.org/doc/rfc2136/) to manage
- DNS01 challenge records.
+ description: |-
+ Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/)
+ to manage DNS01 challenge records.
properties:
nameserver:
- description: The IP address or hostname of an authoritative
- DNS server supporting RFC2136 in the form host:port. If
- the host is an IPv6 address it must be enclosed in square
- brackets (e.g [2001:db8::1]) ; port is optional. This
- field is required.
+ description: |-
+ The IP address or hostname of an authoritative DNS server supporting
+ RFC2136 in the form host:port. If the host is an IPv6 address it must be
+ enclosed in square brackets (e.g [2001:db8::1]) ; port is optional.
+ This field is required.
type: string
tsigAlgorithm:
- description: 'The TSIG Algorithm configured in the DNS supporting
- RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName``
- are defined. Supported values are (case-insensitive):
- ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or
- ``HMACSHA512``.'
+ description: |-
+ The TSIG Algorithm configured in the DNS supporting RFC2136. Used only
+ when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined.
+ Supported values are (case-insensitive): ``HMACMD5`` (default),
+ ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.
type: string
tsigKeyName:
- description: The TSIG Key name configured in the DNS. If
- ``tsigSecretSecretRef`` is defined, this field is required.
+ description: |-
+ The TSIG Key name configured in the DNS.
+ If ``tsigSecretSecretRef`` is defined, this field is required.
type: string
tsigSecretSecretRef:
- description: The name of the secret containing the TSIG
- value. If ``tsigKeyName`` is defined, this field is required.
+ description: |-
+ The name of the secret containing the TSIG value.
+ If ``tsigKeyName`` is defined, this field is required.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -415,32 +458,72 @@ spec:
records.
properties:
accessKeyID:
- description: 'The AccessKeyID is used for authentication.
- Cannot be set when SecretAccessKeyID is set. If neither
- the Access Key nor Key ID are set, we fall-back to using
- env vars, shared credentials file or AWS Instance metadata,
- see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The AccessKeyID is used for authentication.
+ Cannot be set when SecretAccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
type: string
accessKeyIDSecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If set, pull the AWS access key ID from a key within a
- Kubernetes Secret. Cannot be set when AccessKeyID is set.
- If neither the Access Key nor Key ID are set, we fall-back
- to using env vars, shared credentials file or AWS Instance
- metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication. If set, pull the AWS
+ access key ID from a key within a Kubernetes Secret.
+ Cannot be set when AccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
+ auth:
+ description: Auth configures how cert-manager authenticates.
+ properties:
+ kubernetes:
+ description: |-
+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity
+ by passing a bound ServiceAccount token.
+ properties:
+ serviceAccountRef:
+ description: |-
+ A reference to a service account that will be used to request a bound
+ token (also known as "projected token"). To use this field, you must
+ configure an RBAC rule to let cert-manager request a token.
+ properties:
+ audiences:
+ description: |-
+ TokenAudiences is an optional list of audiences to include in the
+ token passed to AWS. The default token consisting of the issuer's namespace
+ and name is always included.
+ If unset the audience defaults to `sts.amazonaws.com`.
+ items:
+ type: string
+ type: array
+ name:
+ description: Name of the ServiceAccount used
+ to request a token.
+ type: string
+ required:
+ - name
+ type: object
+ required:
+ - serviceAccountRef
+ type: object
+ required:
+ - kubernetes
+ type: object
hostedZoneID:
description: If set, the provider will manage only this
zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName
@@ -451,25 +534,27 @@ spec:
and SecretAccessKey
type: string
role:
- description: Role is a Role ARN which the Route53 provider
- will assume using either the explicit credentials AccessKeyID/SecretAccessKey
- or the inferred credentials from environment variables,
- shared credentials file or AWS Instance metadata
+ description: |-
+ Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey
+ or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata
type: string
secretAccessKeySecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If neither the Access Key nor Key ID are set, we fall-back
- to using env vars, shared credentials file or AWS Instance
- metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -478,29 +563,33 @@ spec:
- region
type: object
webhook:
- description: Configure an external webhook based DNS01 challenge
- solver to manage DNS01 challenge records.
+ description: |-
+ Configure an external webhook based DNS01 challenge solver to manage
+ DNS01 challenge records.
properties:
config:
- description: Additional configuration that should be passed
- to the webhook apiserver when challenges are processed.
- This can contain arbitrary JSON data. Secret values should
- not be specified in this stanza. If secret values are
- needed (e.g. credentials for a DNS service), you should
- use a SecretKeySelector to reference a Secret resource.
- For details on the schema of this field, consult the webhook
- provider implementation's documentation.
+ description: |-
+ Additional configuration that should be passed to the webhook apiserver
+ when challenges are processed.
+ This can contain arbitrary JSON data.
+ Secret values should not be specified in this stanza.
+ If secret values are needed (e.g. credentials for a DNS service), you
+ should use a SecretKeySelector to reference a Secret resource.
+ For details on the schema of this field, consult the webhook provider
+ implementation's documentation.
x-kubernetes-preserve-unknown-fields: true
groupName:
- description: The API group name that should be used when
- POSTing ChallengePayload resources to the webhook apiserver.
- This should be the same as the GroupName specified in
- the webhook provider implementation.
+ description: |-
+ The API group name that should be used when POSTing ChallengePayload
+ resources to the webhook apiserver.
+ This should be the same as the GroupName specified in the webhook
+ provider implementation.
type: string
solverName:
- description: The name of the solver to use, as defined in
- the webhook provider implementation. This will typically
- be the name of the provider, e.g. 'cloudflare'.
+ description: |-
+ The name of the solver to use, as defined in the webhook provider
+ implementation.
+ This will typically be the name of the provider, e.g. 'cloudflare'.
type: string
required:
- groupName
@@ -508,160 +597,193 @@ spec:
type: object
type: object
http01:
- description: Configures cert-manager to attempt to complete authorizations
- by performing the HTTP01 challenge flow. It is not possible to
- obtain certificates for wildcard domain names (e.g. `*.example.com`)
- using the HTTP01 challenge mechanism.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the HTTP01 challenge flow.
+ It is not possible to obtain certificates for wildcard domain names
+ (e.g. `*.example.com`) using the HTTP01 challenge mechanism.
properties:
gatewayHTTPRoute:
- description: The Gateway API is a sig-network community API
- that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/).
- The Gateway solver will create HTTPRoutes with the specified
- labels in the same namespace as the challenge. This solver
- is experimental, and fields / behaviour may change in the
- future.
+ description: |-
+ The Gateway API is a sig-network community API that models service networking
+ in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will
+ create HTTPRoutes with the specified labels in the same namespace as the challenge.
+ This solver is experimental, and fields / behaviour may change in the future.
properties:
labels:
additionalProperties:
type: string
- description: Custom labels that will be applied to HTTPRoutes
- created by cert-manager while solving HTTP-01 challenges.
+ description: |-
+ Custom labels that will be applied to HTTPRoutes created by cert-manager
+ while solving HTTP-01 challenges.
type: object
parentRefs:
- description: 'When solving an HTTP-01 challenge, cert-manager
- creates an HTTPRoute. cert-manager needs to know which
- parentRefs should be used when creating the HTTPRoute.
- Usually, the parentRef references a Gateway. See: https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways'
+ description: |-
+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.
+ cert-manager needs to know which parentRefs should be used when creating
+ the HTTPRoute. Usually, the parentRef references a Gateway. See:
+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways
items:
- description: "ParentReference identifies an API object
- (usually a Gateway) that can be considered a parent
- of this resource (usually a route). There are two kinds
- of parent resources with \"Core\" support: \n * Gateway
- (Gateway conformance profile) * Service (Mesh conformance
- profile, experimental, ClusterIP Services only) \n This
- API may be extended in the future to support additional
- kinds of parent resources. \n The API object must be
- valid in the cluster; the Group and Kind must be registered
- in the cluster for this reference to be valid."
+ description: |-
+ ParentReference identifies an API object (usually a Gateway) that can be considered
+ a parent of this resource (usually a route). There are two kinds of parent resources
+ with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ This API may be extended in the future to support additional kinds of parent
+ resources.
+
+
+ The API object must be valid in the cluster; the Group and Kind must
+ be registered in the cluster for this reference to be valid.
properties:
group:
default: gateway.networking.k8s.io
- description: "Group is the group of the referent.
- When unspecified, \"gateway.networking.k8s.io\"
- is inferred. To set the core API group (such as
- for a \"Service\" kind referent), Group must be
- explicitly set to \"\" (empty string). \n Support:
- Core"
+ description: |-
+ Group is the group of the referent.
+ When unspecified, "gateway.networking.k8s.io" is inferred.
+ To set the core API group (such as for a "Service" kind referent),
+ Group must be explicitly set to "" (empty string).
+
+
+ Support: Core
maxLength: 253
pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
type: string
kind:
default: Gateway
- description: "Kind is kind of the referent. \n There
- are two kinds of parent resources with \"Core\"
- support: \n * Gateway (Gateway conformance profile)
- * Service (Mesh conformance profile, experimental,
- ClusterIP Services only) \n Support for other resources
- is Implementation-Specific."
+ description: |-
+ Kind is kind of the referent.
+
+
+ There are two kinds of parent resources with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ Support for other resources is Implementation-Specific.
maxLength: 63
minLength: 1
pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
type: string
name:
- description: "Name is the name of the referent. \n
- Support: Core"
+ description: |-
+ Name is the name of the referent.
+
+
+ Support: Core
maxLength: 253
minLength: 1
type: string
namespace:
- description: "Namespace is the namespace of the referent.
- When unspecified, this refers to the local namespace
- of the Route. \n Note that there are specific rules
- for ParentRefs which cross namespace boundaries.
- Cross-namespace references are only valid if they
- are explicitly allowed by something in the namespace
- they are referring to. For example: Gateway has
- the AllowedRoutes field, and ReferenceGrant provides
- a generic way to enable any other kind of cross-namespace
- reference. \n
- ParentRefs from a Route to a Service in the same
- namespace are \"producer\" routes, which apply default
- routing rules to inbound connections from any namespace
- to the Service. \n ParentRefs from a Route to a
- Service in a different namespace are \"consumer\"
- routes, and these routing rules are only applied
- to outbound connections originating from the same
- namespace as the Route, for which the intended destination
- of the connections are a Service targeted as a ParentRef
- of the Route.
- \n Support: Core"
+ description: |-
+ Namespace is the namespace of the referent. When unspecified, this refers
+ to the local namespace of the Route.
+
+
+ Note that there are specific rules for ParentRefs which cross namespace
+ boundaries. Cross-namespace references are only valid if they are explicitly
+ allowed by something in the namespace they are referring to. For example:
+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a
+ generic way to enable any other kind of cross-namespace reference.
+
+
+
+ ParentRefs from a Route to a Service in the same namespace are "producer"
+ routes, which apply default routing rules to inbound connections from
+ any namespace to the Service.
+
+
+ ParentRefs from a Route to a Service in a different namespace are
+ "consumer" routes, and these routing rules are only applied to outbound
+ connections originating from the same namespace as the Route, for which
+ the intended destination of the connections are a Service targeted as a
+ ParentRef of the Route.
+
+
+
+ Support: Core
maxLength: 63
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
type: string
port:
- description: "Port is the network port this Route
- targets. It can be interpreted differently based
- on the type of parent resource. \n When the parent
- resource is a Gateway, this targets all listeners
- listening on the specified port that also support
- this kind of Route(and select this Route). It's
- not recommended to set `Port` unless the networking
- behaviors specified in a Route must apply to a specific
- port as opposed to a listener(s) whose port(s) may
- be changed. When both Port and SectionName are specified,
- the name and port of the selected listener must
- match both specified values. \n
- When the parent resource is a Service, this targets
- a specific port in the Service spec. When both Port
- (experimental) and SectionName are specified, the
- name and port of the selected port must match both
- specified values.
- \n Implementations MAY choose to support other parent
- resources. Implementations supporting other types
- of parent resources MUST clearly document how/if
- Port is interpreted. \n For the purpose of status,
- an attachment is considered successful as long as
- the parent resource accepts it partially. For example,
- Gateway listeners can restrict which Routes can
- attach to them by Route kind, namespace, or hostname.
- If 1 of 2 Gateway listeners accept attachment from
- the referencing Route, the Route MUST be considered
- successfully attached. If no Gateway listeners accept
- attachment from this Route, the Route MUST be considered
- detached from the Gateway. \n Support: Extended
- \n "
+ description: |-
+ Port is the network port this Route targets. It can be interpreted
+ differently based on the type of parent resource.
+
+
+ When the parent resource is a Gateway, this targets all listeners
+ listening on the specified port that also support this kind of Route(and
+ select this Route). It's not recommended to set `Port` unless the
+ networking behaviors specified in a Route must apply to a specific port
+ as opposed to a listener(s) whose port(s) may be changed. When both Port
+ and SectionName are specified, the name and port of the selected listener
+ must match both specified values.
+
+
+
+ When the parent resource is a Service, this targets a specific port in the
+ Service spec. When both Port (experimental) and SectionName are specified,
+ the name and port of the selected port must match both specified values.
+
+
+
+ Implementations MAY choose to support other parent resources.
+ Implementations supporting other types of parent resources MUST clearly
+ document how/if Port is interpreted.
+
+
+ For the purpose of status, an attachment is considered successful as
+ long as the parent resource accepts it partially. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment
+ from the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route,
+ the Route MUST be considered detached from the Gateway.
+
+
+ Support: Extended
format: int32
maximum: 65535
minimum: 1
type: integer
sectionName:
- description: "SectionName is the name of a section
- within the target resource. In the following resources,
- SectionName is interpreted as the following: \n
- * Gateway: Listener Name. When both Port (experimental)
- and SectionName are specified, the name and port
- of the selected listener must match both specified
- values. * Service: Port Name. When both Port (experimental)
- and SectionName are specified, the name and port
- of the selected listener must match both specified
- values. Note that attaching Routes to Services as
- Parents is part of experimental Mesh support and
- is not supported for any other purpose. \n Implementations
- MAY choose to support attaching Routes to other
- resources. If that is the case, they MUST clearly
- document how SectionName is interpreted. \n When
- unspecified (empty string), this will reference
- the entire resource. For the purpose of status,
- an attachment is considered successful if at least
- one section in the parent resource accepts it. For
- example, Gateway listeners can restrict which Routes
- can attach to them by Route kind, namespace, or
- hostname. If 1 of 2 Gateway listeners accept attachment
- from the referencing Route, the Route MUST be considered
- successfully attached. If no Gateway listeners accept
- attachment from this Route, the Route MUST be considered
- detached from the Gateway. \n Support: Core"
+ description: |-
+ SectionName is the name of a section within the target resource. In the
+ following resources, SectionName is interpreted as the following:
+
+
+ * Gateway: Listener name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+ * Service: Port name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+
+
+ Implementations MAY choose to support attaching Routes to other resources.
+ If that is the case, they MUST clearly document how SectionName is
+ interpreted.
+
+
+ When unspecified (empty string), this will reference the entire resource.
+ For the purpose of status, an attachment is considered successful if at
+ least one section in the parent resource accepts it. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from
+ the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route, the
+ Route MUST be considered detached from the Gateway.
+
+
+ Support: Core
maxLength: 253
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
@@ -671,41 +793,43 @@ spec:
type: object
type: array
serviceType:
- description: Optional service type for Kubernetes solver
- service. Supported values are NodePort or ClusterIP. If
- unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
ingress:
- description: The ingress based HTTP01 challenge solver will
- solve challenges by creating or modifying Ingress resources
- in order to route requests for '/.well-known/acme-challenge/XYZ'
- to 'challenge solver' pods that are provisioned by cert-manager
- for each Challenge to be completed.
+ description: |-
+ The ingress based HTTP01 challenge solver will solve challenges by
+ creating or modifying Ingress resources in order to route requests for
+ '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are
+ provisioned by cert-manager for each Challenge to be completed.
properties:
class:
- description: This field configures the annotation `kubernetes.io/ingress.class`
- when creating Ingress resources to solve ACME challenges
- that use this challenge solver. Only one of `class`, `name`
- or `ingressClassName` may be specified.
+ description: |-
+ This field configures the annotation `kubernetes.io/ingress.class` when
+ creating Ingress resources to solve ACME challenges that use this
+ challenge solver. Only one of `class`, `name` or `ingressClassName` may
+ be specified.
type: string
ingressClassName:
- description: This field configures the field `ingressClassName`
- on the created Ingress resources used to solve ACME challenges
- that use this challenge solver. This is the recommended
- way of configuring the ingress class. Only one of `class`,
- `name` or `ingressClassName` may be specified.
+ description: |-
+ This field configures the field `ingressClassName` on the created Ingress
+ resources used to solve ACME challenges that use this challenge solver.
+ This is the recommended way of configuring the ingress class. Only one of
+ `class`, `name` or `ingressClassName` may be specified.
type: string
ingressTemplate:
- description: Optional ingress template used to configure
- the ACME challenge solver ingress used for HTTP01 challenges.
+ description: |-
+ Optional ingress template used to configure the ACME challenge solver
+ ingress used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the ingress used
- to solve HTTP01 challenges. Only the 'labels' and
- 'annotations' fields may be set. If labels or annotations
- overlap with in-built values, the values here will
- override the in-built values.
+ description: |-
+ ObjectMeta overrides for the ingress used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -722,24 +846,25 @@ spec:
type: object
type: object
name:
- description: The name of the ingress resource that should
- have ACME challenge solving routes inserted into it in
- order to solve HTTP01 challenges. This is typically used
- in conjunction with ingress controllers like ingress-gce,
- which maintains a 1:1 mapping between external IPs and
- ingress resources. Only one of `class`, `name` or `ingressClassName`
- may be specified.
+ description: |-
+ The name of the ingress resource that should have ACME challenge solving
+ routes inserted into it in order to solve HTTP01 challenges.
+ This is typically used in conjunction with ingress controllers like
+ ingress-gce, which maintains a 1:1 mapping between external IPs and
+ ingress resources. Only one of `class`, `name` or `ingressClassName` may
+ be specified.
type: string
podTemplate:
- description: Optional pod template used to configure the
- ACME challenge solver pods used for HTTP01 challenges.
+ description: |-
+ Optional pod template used to configure the ACME challenge solver pods
+ used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the pod used to
- solve HTTP01 challenges. Only the 'labels' and 'annotations'
- fields may be set. If labels or annotations overlap
- with in-built values, the values here will override
- the in-built values.
+ description: |-
+ ObjectMeta overrides for the pod used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -755,10 +880,10 @@ spec:
type: object
type: object
spec:
- description: PodSpec defines overrides for the HTTP01
- challenge solver pod. Check ACMEChallengeSolverHTTP01IngressPodSpec
- to find out currently supported fields. All other
- fields will be ignored.
+ description: |-
+ PodSpec defines overrides for the HTTP01 challenge solver pod.
+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.
+ All other fields will be ignored.
properties:
affinity:
description: If specified, the pod's scheduling
@@ -769,27 +894,20 @@ spec:
rules for the pod.
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer to
- schedule pods to nodes that satisfy the
- affinity expressions specified by this
- field, but it may choose a node that violates
- one or more of the expressions. The node
- that is most preferred is the one with
- the greatest sum of weights, i.e. for
- each node that meets all of the scheduling
- requirements (resource request, requiredDuringScheduling
- affinity expressions, etc.), compute a
- sum by iterating through the elements
- of this field and adding "weight" to the
- sum if the node matches the corresponding
- matchExpressions; the node(s) with the
- highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node matches the corresponding matchExpressions; the
+ node(s) with the highest sum are the most preferred.
items:
- description: An empty preferred scheduling
- term matches all objects with implicit
- weight 0 (i.e. it's a no-op). A null
- preferred scheduling term matches no
- objects (i.e. is also a no-op).
+ description: |-
+ An empty preferred scheduling term matches all objects with implicit weight 0
+ (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
properties:
preference:
description: A node selector term,
@@ -800,11 +918,9 @@ spec:
description: A list of node selector
requirements by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label key
@@ -812,46 +928,34 @@ spec:
to.
type: string
operator:
- description: Represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists, DoesNotExist.
- Gt, and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array of
- string values. If the
- operator is In or NotIn,
- the values array must
- be non-empty. If the operator
- is Exists or DoesNotExist,
- the values array must
- be empty. If the operator
- is Gt or Lt, the values
- array must have a single
- element, which will be
- interpreted as an integer.
- This array is replaced
- during a strategic merge
- patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node selector
requirements by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label key
@@ -859,37 +963,27 @@ spec:
to.
type: string
operator:
- description: Represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists, DoesNotExist.
- Gt, and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array of
- string values. If the
- operator is In or NotIn,
- the values array must
- be non-empty. If the operator
- is Exists or DoesNotExist,
- the values array must
- be empty. If the operator
- is Gt or Lt, the values
- array must have a single
- element, which will be
- interpreted as an integer.
- This array is replaced
- during a strategic merge
- patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -903,36 +997,31 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not met at
- scheduling time, the pod will not be scheduled
- onto the node. If the affinity requirements
- specified by this field cease to be met
- at some point during pod execution (e.g.
- due to an update), the system may or may
- not try to eventually evict the pod from
- its node.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to an update), the system
+ may or may not try to eventually evict the pod from its node.
properties:
nodeSelectorTerms:
description: Required. A list of node
selector terms. The terms are ORed.
items:
- description: A null or empty node
- selector term matches no objects.
- The requirements of them are ANDed.
- The TopologySelectorTerm type implements
- a subset of the NodeSelectorTerm.
+ description: |-
+ A null or empty node selector term matches no objects. The requirements of
+ them are ANDed.
+ The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
properties:
matchExpressions:
description: A list of node selector
requirements by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label key
@@ -940,46 +1029,34 @@ spec:
to.
type: string
operator:
- description: Represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists, DoesNotExist.
- Gt, and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array of
- string values. If the
- operator is In or NotIn,
- the values array must
- be non-empty. If the operator
- is Exists or DoesNotExist,
- the values array must
- be empty. If the operator
- is Gt or Lt, the values
- array must have a single
- element, which will be
- interpreted as an integer.
- This array is replaced
- during a strategic merge
- patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node selector
requirements by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label key
@@ -987,40 +1064,31 @@ spec:
to.
type: string
operator:
- description: Represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists, DoesNotExist.
- Gt, and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array of
- string values. If the
- operator is In or NotIn,
- the values array must
- be non-empty. If the operator
- is Exists or DoesNotExist,
- the values array must
- be empty. If the operator
- is Gt or Lt, the values
- array must have a single
- element, which will be
- interpreted as an integer.
- This array is replaced
- during a strategic merge
- patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1032,22 +1100,16 @@ spec:
node, zone, etc. as some other pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer to
- schedule pods to nodes that satisfy the
- affinity expressions specified by this
- field, but it may choose a node that violates
- one or more of the expressions. The node
- that is most preferred is the one with
- the greatest sum of weights, i.e. for
- each node that meets all of the scheduling
- requirements (resource request, requiredDuringScheduling
- affinity expressions, etc.), compute a
- sum by iterating through the elements
- of this field and adding "weight" to the
- sum if the node has pods which matches
- the corresponding podAffinityTerm; the
- node(s) with the highest sum are the most
- preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all of the
matched WeightedPodAffinityTerm fields
@@ -1060,11 +1122,9 @@ spec:
weight.
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1072,12 +1132,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key and
- values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1086,119 +1143,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to a
- set of values. Valid
- operators are In,
- NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn, the
- values array must
- be non-empty. If the
- operator is Exists
- or DoesNotExist, the
- values array must
- be empty. This array
- is replaced during
- a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is
- a map of {key,value} pairs.
- A single {key,value} in
- the matchLabels map is equivalent
- to an element of matchExpressions,
- whose key field is "key",
- the operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys is
- a set of pod label keys to select
- which pods will be taken into
- consideration. The keys are
- used to lookup values from the
- incoming pod labels, those key-value
- labels are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods which
- pods will be taken into consideration
- for the incoming pod's pod (anti)
- affinity. Keys that don't exist
- in the incoming pod labels will
- be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MatchLabelKeys
- and LabelSelector. Also, MatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys to
- select which pods will be taken
- into consideration. The keys
- are used to lookup values from
- the incoming pod labels, those
- key-value labels are merged
- with `LabelSelector` as `key
- notin (value)` to select the
- group of existing pods which
- pods will be taken into consideration
- for the incoming pod's pod (anti)
- affinity. Keys that don't exist
- in the incoming pod labels will
- be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that the
- term applies to. The term is
- applied to the union of the
- namespaces selected by this
- field and the ones listed in
- the namespaces field. null selector
- and null or empty namespaces
- list means "this pod's namespace".
- An empty selector ({}) matches
- all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1206,12 +1217,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key and
- values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1220,86 +1228,60 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to a
- set of values. Valid
- operators are In,
- NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn, the
- values array must
- be non-empty. If the
- operator is Exists
- or DoesNotExist, the
- values array must
- be empty. This array
- is replaced during
- a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is
- a map of {key,value} pairs.
- A single {key,value} in
- the matchLabels map is equivalent
- to an element of matchExpressions,
- whose key field is "key",
- the operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace names
- that the term applies to. The
- term is applied to the union
- of the namespaces listed in
- this field and the ones selected
- by namespaceSelector. null or
- empty namespaces list and null
- namespaceSelector means "this
- pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should be
- co-located (affinity) or not
- co-located (anti-affinity) with
- the pods matching the labelSelector
- in the specified namespaces,
- where co-located is defined
- as running on a node whose value
- of the label with key topologyKey
- matches that of any node on
- which any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated with
- matching the corresponding podAffinityTerm,
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
in the range 1-100.
format: int32
type: integer
@@ -1308,37 +1290,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not met at
- scheduling time, the pod will not be scheduled
- onto the node. If the affinity requirements
- specified by this field cease to be met
- at some point during pod execution (e.g.
- due to a pod label update), the system
- may or may not try to eventually evict
- the pod from its node. When there are
- multiple elements, the lists of nodes
- corresponding to each podAffinityTerm
- are intersected, i.e. all terms must be
- satisfied.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods (namely
- those matching the labelSelector relative
- to the given namespace(s)) that this
- pod should be co-located (affinity)
- or not co-located (anti-affinity) with,
- where co-located is defined as running
- on a node whose value of the label with
- key matches that of any
- node on which a pod of the set of pods
- is running
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
+ a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over a
- set of resources, in this case pods.
- If it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1346,11 +1320,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the
@@ -1358,107 +1330,73 @@ spec:
applies to.
type: string
operator:
- description: operator represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an
- array of string values.
- If the operator is In
- or NotIn, the values array
- must be non-empty. If
- the operator is Exists
- or DoesNotExist, the values
- array must be empty. This
- array is replaced during
- a strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a
- map of {key,value} pairs. A
- single {key,value} in the matchLabels
- map is equivalent to an element
- of matchExpressions, whose key
- field is "key", the operator
- is "In", and the values array
- contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys is a set
- of pod label keys to select which
- pods will be taken into consideration.
- The keys are used to lookup values
- from the incoming pod labels, those
- key-value labels are merged with
- `LabelSelector` as `key in (value)`
- to select the group of existing
- pods which pods will be taken into
- consideration for the incoming pod's
- pod (anti) affinity. Keys that don't
- exist in the incoming pod labels
- will be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MatchLabelKeys
- and LabelSelector. Also, MatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha field
- and requires enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys is
- a set of pod label keys to select
- which pods will be taken into consideration.
- The keys are used to lookup values
- from the incoming pod labels, those
- key-value labels are merged with
- `LabelSelector` as `key notin (value)`
- to select the group of existing
- pods which pods will be taken into
- consideration for the incoming pod's
- pod (anti) affinity. Keys that don't
- exist in the incoming pod labels
- will be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha field
- and requires enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over the
- set of namespaces that the term
- applies to. The term is applied
- to the union of the namespaces selected
- by this field and the ones listed
- in the namespaces field. null selector
- and null or empty namespaces list
- means "this pod's namespace". An
- empty selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1466,11 +1404,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the
@@ -1478,75 +1414,59 @@ spec:
applies to.
type: string
operator:
- description: operator represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an
- array of string values.
- If the operator is In
- or NotIn, the values array
- must be non-empty. If
- the operator is Exists
- or DoesNotExist, the values
- array must be empty. This
- array is replaced during
- a strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a
- map of {key,value} pairs. A
- single {key,value} in the matchLabels
- map is equivalent to an element
- of matchExpressions, whose key
- field is "key", the operator
- is "In", and the values array
- contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace names
- that the term applies to. The term
- is applied to the union of the namespaces
- listed in this field and the ones
- selected by namespaceSelector. null
- or empty namespaces list and null
- namespaceSelector means "this pod's
- namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with the pods matching the labelSelector
- in the specified namespaces, where
- co-located is defined as running
- on a node whose value of the label
- with key topologyKey matches that
- of any node on which any of the
- selected pods is running. Empty
- topologyKey is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
description: Describes pod anti-affinity scheduling
@@ -1554,22 +1474,16 @@ spec:
same node, zone, etc. as some other pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer to
- schedule pods to nodes that satisfy the
- anti-affinity expressions specified by
- this field, but it may choose a node that
- violates one or more of the expressions.
- The node that is most preferred is the
- one with the greatest sum of weights,
- i.e. for each node that meets all of the
- scheduling requirements (resource request,
- requiredDuringScheduling anti-affinity
- expressions, etc.), compute a sum by iterating
- through the elements of this field and
- adding "weight" to the sum if the node
- has pods which matches the corresponding
- podAffinityTerm; the node(s) with the
- highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the anti-affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling anti-affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all of the
matched WeightedPodAffinityTerm fields
@@ -1582,11 +1496,9 @@ spec:
weight.
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1594,12 +1506,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key and
- values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1608,119 +1517,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to a
- set of values. Valid
- operators are In,
- NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn, the
- values array must
- be non-empty. If the
- operator is Exists
- or DoesNotExist, the
- values array must
- be empty. This array
- is replaced during
- a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is
- a map of {key,value} pairs.
- A single {key,value} in
- the matchLabels map is equivalent
- to an element of matchExpressions,
- whose key field is "key",
- the operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys is
- a set of pod label keys to select
- which pods will be taken into
- consideration. The keys are
- used to lookup values from the
- incoming pod labels, those key-value
- labels are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods which
- pods will be taken into consideration
- for the incoming pod's pod (anti)
- affinity. Keys that don't exist
- in the incoming pod labels will
- be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MatchLabelKeys
- and LabelSelector. Also, MatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys to
- select which pods will be taken
- into consideration. The keys
- are used to lookup values from
- the incoming pod labels, those
- key-value labels are merged
- with `LabelSelector` as `key
- notin (value)` to select the
- group of existing pods which
- pods will be taken into consideration
- for the incoming pod's pod (anti)
- affinity. Keys that don't exist
- in the incoming pod labels will
- be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that the
- term applies to. The term is
- applied to the union of the
- namespaces selected by this
- field and the ones listed in
- the namespaces field. null selector
- and null or empty namespaces
- list means "this pod's namespace".
- An empty selector ({}) matches
- all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1728,12 +1591,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key and
- values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1742,86 +1602,60 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to a
- set of values. Valid
- operators are In,
- NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn, the
- values array must
- be non-empty. If the
- operator is Exists
- or DoesNotExist, the
- values array must
- be empty. This array
- is replaced during
- a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is
- a map of {key,value} pairs.
- A single {key,value} in
- the matchLabels map is equivalent
- to an element of matchExpressions,
- whose key field is "key",
- the operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace names
- that the term applies to. The
- term is applied to the union
- of the namespaces listed in
- this field and the ones selected
- by namespaceSelector. null or
- empty namespaces list and null
- namespaceSelector means "this
- pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should be
- co-located (affinity) or not
- co-located (anti-affinity) with
- the pods matching the labelSelector
- in the specified namespaces,
- where co-located is defined
- as running on a node whose value
- of the label with key topologyKey
- matches that of any node on
- which any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated with
- matching the corresponding podAffinityTerm,
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
in the range 1-100.
format: int32
type: integer
@@ -1830,37 +1664,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the anti-affinity requirements
- specified by this field are not met at
- scheduling time, the pod will not be scheduled
- onto the node. If the anti-affinity requirements
- specified by this field cease to be met
- at some point during pod execution (e.g.
- due to a pod label update), the system
- may or may not try to eventually evict
- the pod from its node. When there are
- multiple elements, the lists of nodes
- corresponding to each podAffinityTerm
- are intersected, i.e. all terms must be
- satisfied.
+ description: |-
+ If the anti-affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the anti-affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods (namely
- those matching the labelSelector relative
- to the given namespace(s)) that this
- pod should be co-located (affinity)
- or not co-located (anti-affinity) with,
- where co-located is defined as running
- on a node whose value of the label with
- key matches that of any
- node on which a pod of the set of pods
- is running
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
+ a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over a
- set of resources, in this case pods.
- If it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1868,11 +1694,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the
@@ -1880,107 +1704,73 @@ spec:
applies to.
type: string
operator:
- description: operator represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an
- array of string values.
- If the operator is In
- or NotIn, the values array
- must be non-empty. If
- the operator is Exists
- or DoesNotExist, the values
- array must be empty. This
- array is replaced during
- a strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a
- map of {key,value} pairs. A
- single {key,value} in the matchLabels
- map is equivalent to an element
- of matchExpressions, whose key
- field is "key", the operator
- is "In", and the values array
- contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys is a set
- of pod label keys to select which
- pods will be taken into consideration.
- The keys are used to lookup values
- from the incoming pod labels, those
- key-value labels are merged with
- `LabelSelector` as `key in (value)`
- to select the group of existing
- pods which pods will be taken into
- consideration for the incoming pod's
- pod (anti) affinity. Keys that don't
- exist in the incoming pod labels
- will be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MatchLabelKeys
- and LabelSelector. Also, MatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha field
- and requires enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys is
- a set of pod label keys to select
- which pods will be taken into consideration.
- The keys are used to lookup values
- from the incoming pod labels, those
- key-value labels are merged with
- `LabelSelector` as `key notin (value)`
- to select the group of existing
- pods which pods will be taken into
- consideration for the incoming pod's
- pod (anti) affinity. Keys that don't
- exist in the incoming pod labels
- will be ignored. The default value
- is empty. The same key is forbidden
- to exist in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha field
- and requires enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over the
- set of namespaces that the term
- applies to. The term is applied
- to the union of the namespaces selected
- by this field and the ones listed
- in the namespaces field. null selector
- and null or empty namespaces list
- means "this pod's namespace". An
- empty selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1988,11 +1778,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values, a key,
- and an operator that relates
- the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the
@@ -2000,89 +1788,78 @@ spec:
applies to.
type: string
operator:
- description: operator represents
- a key's relationship to
- a set of values. Valid
- operators are In, NotIn,
- Exists and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an
- array of string values.
- If the operator is In
- or NotIn, the values array
- must be non-empty. If
- the operator is Exists
- or DoesNotExist, the values
- array must be empty. This
- array is replaced during
- a strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a
- map of {key,value} pairs. A
- single {key,value} in the matchLabels
- map is equivalent to an element
- of matchExpressions, whose key
- field is "key", the operator
- is "In", and the values array
- contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace names
- that the term applies to. The term
- is applied to the union of the namespaces
- listed in this field and the ones
- selected by namespaceSelector. null
- or empty namespaces list and null
- namespaceSelector means "this pod's
- namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with the pods matching the labelSelector
- in the specified namespaces, where
- co-located is defined as running
- on a node whose value of the label
- with key topologyKey matches that
- of any node on which any of the
- selected pods is running. Empty
- topologyKey is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
imagePullSecrets:
description: If specified, the pod's imagePullSecrets
items:
- description: LocalObjectReference contains enough
- information to let you locate the referenced
- object inside the same namespace.
+ description: |-
+ LocalObjectReference contains enough information to let you locate the
+ referenced object inside the same namespace.
properties:
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion,
- kind, uid?'
+ default: ""
+ description: |-
+ Name of the referent.
+ This field is effectively required, but due to backwards compatibility is
+ allowed to be empty. Instances of this type with an empty value here are
+ almost certainly wrong.
+ TODO: Add other useful fields. apiVersion, kind, uid?
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2090,10 +1867,10 @@ spec:
nodeSelector:
additionalProperties:
type: string
- description: 'NodeSelector is a selector which must
- be true for the pod to fit on a node. Selector
- which must match a node''s labels for the pod
- to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/'
+ description: |-
+ NodeSelector is a selector which must be true for the pod to fit on a node.
+ Selector which must match a node's labels for the pod to be scheduled on that node.
+ More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
type: object
priorityClassName:
description: If specified, the pod's priorityClassName.
@@ -2104,117 +1881,116 @@ spec:
tolerations:
description: If specified, the pod's tolerations.
items:
- description: The pod this Toleration is attached
- to tolerates any taint that matches the triple
- using the matching operator
- .
+ description: |-
+ The pod this Toleration is attached to tolerates any taint that matches
+ the triple using the matching operator .
properties:
effect:
- description: Effect indicates the taint effect
- to match. Empty means match all taint effects.
- When specified, allowed values are NoSchedule,
- PreferNoSchedule and NoExecute.
+ description: |-
+ Effect indicates the taint effect to match. Empty means match all taint effects.
+ When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
type: string
key:
- description: Key is the taint key that the
- toleration applies to. Empty means match
- all taint keys. If the key is empty, operator
- must be Exists; this combination means to
- match all values and all keys.
+ description: |-
+ Key is the taint key that the toleration applies to. Empty means match all taint keys.
+ If the key is empty, operator must be Exists; this combination means to match all values and all keys.
type: string
operator:
- description: Operator represents a key's relationship
- to the value. Valid operators are Exists
- and Equal. Defaults to Equal. Exists is
- equivalent to wildcard for value, so that
- a pod can tolerate all taints of a particular
- category.
+ description: |-
+ Operator represents a key's relationship to the value.
+ Valid operators are Exists and Equal. Defaults to Equal.
+ Exists is equivalent to wildcard for value, so that a pod can
+ tolerate all taints of a particular category.
type: string
tolerationSeconds:
- description: TolerationSeconds represents
- the period of time the toleration (which
- must be of effect NoExecute, otherwise this
- field is ignored) tolerates the taint. By
- default, it is not set, which means tolerate
- the taint forever (do not evict). Zero and
- negative values will be treated as 0 (evict
- immediately) by the system.
+ description: |-
+ TolerationSeconds represents the period of time the toleration (which must be
+ of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
+ it is not set, which means tolerate the taint forever (do not evict). Zero and
+ negative values will be treated as 0 (evict immediately) by the system.
format: int64
type: integer
value:
- description: Value is the taint value the
- toleration matches to. If the operator is
- Exists, the value should be empty, otherwise
- just a regular string.
+ description: |-
+ Value is the taint value the toleration matches to.
+ If the operator is Exists, the value should be empty, otherwise just a regular string.
type: string
type: object
type: array
type: object
type: object
serviceType:
- description: Optional service type for Kubernetes solver
- service. Supported values are NodePort or ClusterIP. If
- unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
type: object
selector:
- description: Selector selects a set of DNSNames on the Certificate
- resource that should be solved using this challenge solver. If
- not specified, the solver will be treated as the 'default' solver
- with the lowest priority, i.e. if any other solver has a more
- specific match, it will be used instead.
+ description: |-
+ Selector selects a set of DNSNames on the Certificate resource that
+ should be solved using this challenge solver.
+ If not specified, the solver will be treated as the 'default' solver
+ with the lowest priority, i.e. if any other solver has a more specific
+ match, it will be used instead.
properties:
dnsNames:
- description: List of DNSNames that this solver will be used
- to solve. If specified and a match is found, a dnsNames selector
- will take precedence over a dnsZones selector. If multiple
- solvers match with the same dnsNames value, the solver with
- the most matching labels in matchLabels will be selected.
- If neither has more matches, the solver defined earlier in
- the list will be selected.
+ description: |-
+ List of DNSNames that this solver will be used to solve.
+ If specified and a match is found, a dnsNames selector will take
+ precedence over a dnsZones selector.
+ If multiple solvers match with the same dnsNames value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
dnsZones:
- description: List of DNSZones that this solver will be used
- to solve. The most specific DNS zone match specified here
- will take precedence over other DNS zone matches, so a solver
- specifying sys.example.com will be selected over one specifying
- example.com for the domain www.sys.example.com. If multiple
- solvers match with the same dnsZones value, the solver with
- the most matching labels in matchLabels will be selected.
- If neither has more matches, the solver defined earlier in
- the list will be selected.
+ description: |-
+ List of DNSZones that this solver will be used to solve.
+ The most specific DNS zone match specified here will take precedence
+ over other DNS zone matches, so a solver specifying sys.example.com
+ will be selected over one specifying example.com for the domain
+ www.sys.example.com.
+ If multiple solvers match with the same dnsZones value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
matchLabels:
additionalProperties:
type: string
- description: A label selector that is used to refine the set
- of certificate's that this challenge solver will apply to.
+ description: |-
+ A label selector that is used to refine the set of certificate's that
+ this challenge solver will apply to.
type: object
type: object
type: object
token:
- description: The ACME challenge token for this challenge. This is the
- raw value returned from the ACME server.
+ description: |-
+ The ACME challenge token for this challenge.
+ This is the raw value returned from the ACME server.
type: string
type:
- description: The type of ACME challenge this resource represents. One
- of "HTTP-01" or "DNS-01".
+ description: |-
+ The type of ACME challenge this resource represents.
+ One of "HTTP-01" or "DNS-01".
enum:
- HTTP-01
- DNS-01
type: string
url:
- description: The URL of the ACME Challenge resource for this challenge.
+ description: |-
+ The URL of the ACME Challenge resource for this challenge.
This can be used to lookup details about the status of this challenge.
type: string
wildcard:
- description: wildcard will be true if this challenge is for a wildcard
- identifier, for example '*.example.com'.
+ description: |-
+ wildcard will be true if this challenge is for a wildcard identifier,
+ for example '*.example.com'.
type: boolean
required:
- authorizationURL
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/orders.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/orders.yaml
index 46aa1a50f..4e129d4af 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/orders.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/acme.cert-manager.io/v1/orders.yaml
@@ -20,14 +20,19 @@ spec:
description: Order is a type to represent an Order with an ACME server
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -65,36 +70,39 @@ spec:
spec:
properties:
commonName:
- description: CommonName is the common name as specified on the DER encoded
- CSR. If specified, this value must also be present in `dnsNames` or
- `ipAddresses`. This field must match the corresponding field on the
- DER encoded CSR.
+ description: |-
+ CommonName is the common name as specified on the DER encoded CSR.
+ If specified, this value must also be present in `dnsNames` or `ipAddresses`.
+ This field must match the corresponding field on the DER encoded CSR.
type: string
dnsNames:
- description: DNSNames is a list of DNS names that should be included
- as part of the Order validation process. This field must match the
- corresponding field on the DER encoded CSR.
+ description: |-
+ DNSNames is a list of DNS names that should be included as part of the Order
+ validation process.
+ This field must match the corresponding field on the DER encoded CSR.
items:
type: string
type: array
duration:
- description: Duration is the duration for the not after date for the
- requested certificate. this is set on order creation as pe the ACME
- spec.
+ description: |-
+ Duration is the duration for the not after date for the requested certificate.
+ this is set on order creation as pe the ACME spec.
type: string
ipAddresses:
- description: IPAddresses is a list of IP addresses that should be included
- as part of the Order validation process. This field must match the
- corresponding field on the DER encoded CSR.
+ description: |-
+ IPAddresses is a list of IP addresses that should be included as part of the Order
+ validation process.
+ This field must match the corresponding field on the DER encoded CSR.
items:
type: string
type: array
issuerRef:
- description: IssuerRef references a properly configured ACME-type Issuer
- which should be used to create this Order. If the Issuer does not
- exist, processing will be retried. If the Issuer is not an 'ACME'
- Issuer, an error will be returned and the Order will be marked as
- failed.
+ description: |-
+ IssuerRef references a properly configured ACME-type Issuer which should
+ be used to create this Order.
+ If the Issuer does not exist, processing will be retried.
+ If the Issuer is not an 'ACME' Issuer, an error will be returned and the
+ Order will be marked as failed.
properties:
group:
description: Group of the resource being referred to.
@@ -109,9 +117,10 @@ spec:
- name
type: object
request:
- description: Certificate signing request bytes in DER encoding. This
- will be used when finalizing the order. This field must be set on
- the order.
+ description: |-
+ Certificate signing request bytes in DER encoding.
+ This will be used when finalizing the order.
+ This field must be set on the order.
format: byte
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
index 292f15223..9ca31f207 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
@@ -17,8 +17,9 @@ spec:
version: v1alpha1
validation:
openAPIV3Schema:
- description: AddOnDeploymentConfig represents a deployment configuration for
- an add-on.
+ description: AddOnDeploymentConfig represents a configuration to customize the
+ deployments of an add-on. For example, you can specify the NodePlacement to
+ control the scheduling of the add-on agents.
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
@@ -161,6 +162,12 @@ spec:
description: ProxyConfig holds proxy settings for add-on agent on the
managed cluster. Empty means no proxy settings is available.
properties:
+ caBundle:
+ description: CABundle is a CA certificate bundle to verify the proxy
+ server. And it's only useful when HTTPSProxy is set and a HTTPS
+ proxy server is specified.
+ format: byte
+ type: string
httpProxy:
description: HTTPProxy is the URL of the proxy for HTTP requests
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
index 69c593439..621e644bb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
@@ -286,11 +286,14 @@ spec:
server side apply with work-controller as the field
manager. If there is conflict, the related Applied condition
of manifest will be in the status of False with the
- reason of ApplyConflict.
+ reason of ApplyConflict. ReadOnly type means the agent
+ will only check the existence of the resource based
+ on its metadata.
enum:
- Update
- CreateOnly
- ServerSideApply
+ - ReadOnly
type: string
required:
- type
@@ -342,6 +345,7 @@ spec:
will use to create csr.
maxLength: 571
minLength: 5
+ pattern: ^([a-z0-9][a-z0-9-]*[a-z0-9]\.)+[a-z]+\/[a-z0-9-\.]+$
type: string
signingCA:
description: 'SigningCA represents the reference of the secret
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
index 3f1ed60ca..df7392222 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
@@ -18,10 +18,9 @@ spec:
validation:
openAPIV3Schema:
description: ClusterManagementAddOn represents the registration of an add-on
- to the cluster manager. This resource allows the user to discover which add-on
- is available for the cluster manager and also provides metadata information
- about the add-on. This resource also provides a linkage to ManagedClusterAddOn,
- the name of the ClusterManagementAddOn resource will be used for the namespace-scoped
+ to the cluster manager. This resource allows you to discover which add-ons
+ are available for the cluster manager and provides metadata information about
+ the add-ons. The ClusterManagementAddOn name is used for the namespace-scoped
ManagedClusterAddOn resource. ClusterManagementAddOn is a cluster-scoped resource.
properties:
apiVersion:
@@ -158,23 +157,63 @@ spec:
defined in ClusterManagementAddOn.
properties:
all:
- description: All define required fields for RolloutStrategy
+ description: All defines required fields for RolloutStrategy
type All
properties:
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number
+ of clusters in the current rollout that can fail
+ before proceeding to the next rollout. Fail means
+ the cluster has a failed status or timeout status
+ (does not reach successful status after ProgressDeadline).
+ Once the MaxFailures is breached, the rollout will
+ stop. MaxFailures is only considered for rollout
+ types Progressive and ProgressivePerGroup. For Progressive,
+ this is considered over the total number of clusters.
+ For ProgressivePerGroup, this is considered according
+ to the size of the current group. For both Progressive
+ and ProgressivePerGroup, the MaxFailures does not
+ apply for MandatoryDecisionGroups, which tolerate
+ no failures. Default is that no failures are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has
+ been reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive
+ and ProgressivePerGroup. The default value is 0
+ meaning the workload applier proceeds immediately
+ after a successful state is reached. MinSuccessTime
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the
- successful state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to
+ reach a successful state in the cluster. If the
+ workload does not reach a successful state after
+ ProgressDeadline, will stop waiting and workload
+ will be treated as "timeout" and be counted into
+ MaxFailures. Once the MaxFailures is breached, the
+ rollout will stop. ProgressDeadline default value
+ is "None", meaning the workload applier will wait
+ for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
progressive:
- description: Progressive define required fields for RolloutStrategy
+ description: Progressive defines required fields for RolloutStrategy
type Progressive
properties:
mandatoryDecisionGroups:
@@ -211,20 +250,60 @@ spec:
defined in the placement->DecisionStrategy.
pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
x-kubernetes-int-or-string: true
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number
+ of clusters in the current rollout that can fail
+ before proceeding to the next rollout. Fail means
+ the cluster has a failed status or timeout status
+ (does not reach successful status after ProgressDeadline).
+ Once the MaxFailures is breached, the rollout will
+ stop. MaxFailures is only considered for rollout
+ types Progressive and ProgressivePerGroup. For Progressive,
+ this is considered over the total number of clusters.
+ For ProgressivePerGroup, this is considered according
+ to the size of the current group. For both Progressive
+ and ProgressivePerGroup, the MaxFailures does not
+ apply for MandatoryDecisionGroups, which tolerate
+ no failures. Default is that no failures are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has
+ been reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive
+ and ProgressivePerGroup. The default value is 0
+ meaning the workload applier proceeds immediately
+ after a successful state is reached. MinSuccessTime
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the
- successful state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to
+ reach a successful state in the cluster. If the
+ workload does not reach a successful state after
+ ProgressDeadline, will stop waiting and workload
+ will be treated as "timeout" and be counted into
+ MaxFailures. Once the MaxFailures is breached, the
+ rollout will stop. ProgressDeadline default value
+ is "None", meaning the workload applier will wait
+ for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
progressivePerGroup:
- description: ProgressivePerGroup define required fields
+ description: ProgressivePerGroup defines required fields
for RolloutStrategy type ProgressivePerGroup
properties:
mandatoryDecisionGroups:
@@ -251,31 +330,60 @@ spec:
type: string
type: object
type: array
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number
+ of clusters in the current rollout that can fail
+ before proceeding to the next rollout. Fail means
+ the cluster has a failed status or timeout status
+ (does not reach successful status after ProgressDeadline).
+ Once the MaxFailures is breached, the rollout will
+ stop. MaxFailures is only considered for rollout
+ types Progressive and ProgressivePerGroup. For Progressive,
+ this is considered over the total number of clusters.
+ For ProgressivePerGroup, this is considered according
+ to the size of the current group. For both Progressive
+ and ProgressivePerGroup, the MaxFailures does not
+ apply for MandatoryDecisionGroups, which tolerate
+ no failures. Default is that no failures are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has
+ been reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive
+ and ProgressivePerGroup. The default value is 0
+ meaning the workload applier proceeds immediately
+ after a successful state is reached. MinSuccessTime
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the
- successful state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to
+ reach a successful state in the cluster. If the
+ workload does not reach a successful state after
+ ProgressDeadline, will stop waiting and workload
+ will be treated as "timeout" and be counted into
+ MaxFailures. Once the MaxFailures is breached, the
+ rollout will stop. ProgressDeadline default value
+ is "None", meaning the workload applier will wait
+ for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
type:
default: All
- description: Rollout strategy Types are All, Progressive
- and ProgressivePerGroup 1) All means apply the workload
- to all clusters in the decision groups at once. 2) Progressive
- means apply the workload to the selected clusters progressively
- per cluster. The workload will not be applied to the
- next cluster unless one of the current applied clusters
- reach the successful state or timeout. 3) ProgressivePerGroup
- means apply the workload to decisionGroup clusters progressively
- per group. The workload will not be applied to the next
- decisionGroup unless all clusters in the current group
- reach the successful state or timeout.
enum:
- All
- Progressive
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesetbindings.yaml
index 12d21a301..457effb01 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesetbindings.yaml
@@ -17,19 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "ClusterResourceSetBinding lists all matching ClusterResourceSets
- with the cluster it belongs to. \n Deprecated: This type will be removed in
- one of the next releases."
+ description: |-
+ ClusterResourceSetBinding lists all matching ClusterResourceSets with the cluster it belongs to.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -91,10 +98,9 @@ spec:
to the cluster or not.
type: boolean
hash:
- description: Hash is the hash of a resource's data. This
- can be used to decide if a resource is changed. For "ApplyOnce"
- ClusterResourceSet.spec.strategy, this is no-op as that
- strategy does not act on change.
+ description: |-
+ Hash is the hash of a resource's data. This can be used to decide if a resource is changed.
+ For "ApplyOnce" ClusterResourceSet.spec.strategy, this is no-op as that strategy does not act on change.
type: string
kind:
description: 'Kind of the resource. Supported kinds are:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesets.yaml
index 0e16ba8c7..fa0c5d2b2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha3/clusterresourcesets.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "ClusterResourceSet is the Schema for the clusterresourcesets API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ ClusterResourceSet is the Schema for the clusterresourcesets API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,50 +75,54 @@ spec:
description: ClusterResourceSetSpec defines the desired state of ClusterResourceSet.
properties:
clusterSelector:
- description: Label selector for Clusters. The Clusters that are selected
- by this will be the ones affected by this ClusterResourceSet. It must
- match the Cluster labels. This field is immutable.
+ description: |-
+ Label selector for Clusters. The Clusters that are
+ selected by this will be the ones affected by this ClusterResourceSet.
+ It must match the Cluster labels. This field is immutable.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
+ x-kubernetes-map-type: atomic
resources:
description: Resources is a list of Secrets/ConfigMaps where each contains
1 or more resources to be applied to remote clusters.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesetbindings.yaml
index 76f8e76b0..4893e1d4f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesetbindings.yaml
@@ -17,19 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "ClusterResourceSetBinding lists all matching ClusterResourceSets
- with the cluster it belongs to. \n Deprecated: This type will be removed in
- one of the next releases."
+ description: |-
+ ClusterResourceSetBinding lists all matching ClusterResourceSets with the cluster it belongs to.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -91,10 +98,9 @@ spec:
to the cluster or not.
type: boolean
hash:
- description: Hash is the hash of a resource's data. This
- can be used to decide if a resource is changed. For "ApplyOnce"
- ClusterResourceSet.spec.strategy, this is no-op as that
- strategy does not act on change.
+ description: |-
+ Hash is the hash of a resource's data. This can be used to decide if a resource is changed.
+ For "ApplyOnce" ClusterResourceSet.spec.strategy, this is no-op as that strategy does not act on change.
type: string
kind:
description: 'Kind of the resource. Supported kinds are:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesets.yaml
index 128b0afe5..02ee58758 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1alpha4/clusterresourcesets.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "ClusterResourceSet is the Schema for the clusterresourcesets API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ ClusterResourceSet is the Schema for the clusterresourcesets API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,51 +75,55 @@ spec:
description: ClusterResourceSetSpec defines the desired state of ClusterResourceSet.
properties:
clusterSelector:
- description: Label selector for Clusters. The Clusters that are selected
- by this will be the ones affected by this ClusterResourceSet. It must
- match the Cluster labels. This field is immutable. Label selector
- cannot be empty.
+ description: |-
+ Label selector for Clusters. The Clusters that are
+ selected by this will be the ones affected by this ClusterResourceSet.
+ It must match the Cluster labels. This field is immutable.
+ Label selector cannot be empty.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
+ x-kubernetes-map-type: atomic
resources:
description: Resources is a list of Secrets/ConfigMaps where each contains
1 or more resources to be applied to remote clusters.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
index 7bec151de..890b55a38 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
@@ -21,14 +21,19 @@ spec:
with the cluster it belongs to.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -90,10 +95,9 @@ spec:
to the cluster or not.
type: boolean
hash:
- description: Hash is the hash of a resource's data. This
- can be used to decide if a resource is changed. For "ApplyOnce"
- ClusterResourceSet.spec.strategy, this is no-op as that
- strategy does not act on change.
+ description: |-
+ Hash is the hash of a resource's data. This can be used to decide if a resource is changed.
+ For "ApplyOnce" ClusterResourceSet.spec.strategy, this is no-op as that strategy does not act on change.
type: string
kind:
description: 'Kind of the resource. Supported kinds are:
@@ -123,8 +127,9 @@ spec:
type: object
type: array
clusterName:
- description: 'ClusterName is the name of the Cluster this binding applies
- to. Note: this field mandatory in v1beta2.'
+ description: |-
+ ClusterName is the name of the Cluster this binding applies to.
+ Note: this field mandatory in v1beta2.
type: string
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
index d4bd97ed2..3f66006fe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
@@ -20,14 +20,19 @@ spec:
description: ClusterResourceSet is the Schema for the clusterresourcesets API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -66,51 +71,55 @@ spec:
description: ClusterResourceSetSpec defines the desired state of ClusterResourceSet.
properties:
clusterSelector:
- description: Label selector for Clusters. The Clusters that are selected
- by this will be the ones affected by this ClusterResourceSet. It must
- match the Cluster labels. This field is immutable. Label selector
- cannot be empty.
+ description: |-
+ Label selector for Clusters. The Clusters that are
+ selected by this will be the ones affected by this ClusterResourceSet.
+ It must match the Cluster labels. This field is immutable.
+ Label selector cannot be empty.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
+ x-kubernetes-map-type: atomic
resources:
description: Resources is a list of Secrets/ConfigMaps where each contains
1 or more resources to be applied to remote clusters.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
index 333b06197..6d0994ffc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
@@ -97,11 +97,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -122,11 +124,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -167,6 +171,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -205,6 +210,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -223,6 +229,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -233,6 +240,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -259,6 +267,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -276,6 +285,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -317,6 +327,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -334,6 +345,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -376,6 +388,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -406,6 +419,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -460,6 +474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -490,6 +505,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -565,16 +581,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -676,11 +703,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -692,11 +721,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -707,6 +738,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -723,11 +755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -739,14 +773,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -772,11 +809,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -806,11 +845,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -821,6 +862,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -834,6 +876,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -850,11 +893,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -884,11 +929,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -899,12 +946,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -926,11 +975,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -960,11 +1011,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -975,6 +1028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -988,6 +1042,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1004,11 +1059,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1038,11 +1095,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1053,12 +1112,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1069,16 +1130,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1132,6 +1204,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1141,10 +1214,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1164,6 +1239,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1202,6 +1278,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1224,6 +1301,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1235,10 +1313,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1253,6 +1333,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1291,6 +1372,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1303,12 +1385,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1319,6 +1405,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1326,6 +1413,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1340,6 +1428,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1357,6 +1446,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1398,6 +1488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1415,6 +1506,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1457,6 +1549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1487,6 +1580,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1561,6 +1655,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1591,6 +1686,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1681,16 +1777,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1746,6 +1853,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1776,6 +1884,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1838,6 +1947,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1849,6 +1961,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1858,6 +1972,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1874,6 +1991,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1891,6 +2009,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1932,6 +2051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1949,6 +2069,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1991,6 +2112,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2021,6 +2143,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2066,6 +2189,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2079,6 +2209,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2109,6 +2240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2186,6 +2318,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2224,6 +2365,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2236,6 +2378,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2287,11 +2430,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2338,6 +2483,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2400,6 +2547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2409,6 +2557,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2426,6 +2575,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2454,7 +2604,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2469,6 +2621,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2524,6 +2677,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2586,6 +2740,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2645,11 +2800,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2682,10 +2839,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2702,6 +2861,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2771,11 +2931,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2852,11 +3014,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2891,7 +3055,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2937,6 +3103,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2955,7 +3122,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2975,6 +3144,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3006,6 +3176,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3013,6 +3184,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3035,6 +3207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3073,6 +3246,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3087,6 +3261,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3195,11 +3370,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3211,11 +3388,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -3226,6 +3405,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -3242,11 +3422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3258,14 +3440,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -3291,11 +3476,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3325,11 +3512,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3340,6 +3529,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3353,6 +3543,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3369,11 +3560,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3403,11 +3596,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3418,12 +3613,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -3445,11 +3642,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3479,11 +3678,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3494,6 +3695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3507,6 +3709,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3523,11 +3726,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3557,11 +3762,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3572,12 +3779,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -3588,16 +3797,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3651,6 +3871,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -3660,10 +3881,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -3683,6 +3906,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3721,6 +3945,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3743,6 +3968,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3754,10 +3980,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3772,6 +4000,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3810,6 +4039,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3822,12 +4052,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3838,6 +4072,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3845,6 +4080,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3859,6 +4095,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3876,6 +4113,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3917,6 +4155,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3934,6 +4173,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3976,6 +4216,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4006,6 +4247,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4080,6 +4322,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4110,6 +4353,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4200,16 +4444,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4265,6 +4520,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4295,6 +4551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4357,6 +4614,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4368,6 +4628,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4377,6 +4639,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4393,6 +4658,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4410,6 +4676,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4451,6 +4718,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4468,6 +4736,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4510,6 +4779,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4540,6 +4810,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4585,6 +4856,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -4598,6 +4876,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4628,6 +4907,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4705,6 +4985,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -4743,6 +5032,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -4755,6 +5045,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -4806,11 +5097,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4857,6 +5150,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4919,6 +5214,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -4928,6 +5224,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4945,6 +5242,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4973,7 +5271,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4988,6 +5288,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5043,6 +5344,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5105,6 +5407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5164,11 +5467,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5201,10 +5506,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5221,6 +5528,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5290,11 +5598,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5371,11 +5681,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5410,7 +5722,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5456,6 +5770,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -5474,7 +5789,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5494,6 +5811,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -5525,6 +5843,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -5532,6 +5851,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5554,6 +5874,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5592,6 +5913,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -5606,6 +5928,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5679,6 +6002,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5717,6 +6041,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5735,6 +6060,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5745,6 +6071,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5771,6 +6098,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5788,6 +6116,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5829,6 +6158,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5846,6 +6176,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5888,6 +6219,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5918,6 +6250,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5972,6 +6305,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6002,6 +6336,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6077,16 +6412,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6181,11 +6527,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6197,11 +6545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -6212,6 +6562,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -6228,11 +6579,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6244,14 +6597,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -6277,11 +6633,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6311,11 +6669,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6326,6 +6686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6339,6 +6700,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6355,11 +6717,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6389,11 +6753,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6404,12 +6770,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -6431,11 +6799,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6465,11 +6835,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6480,6 +6852,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6493,6 +6866,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6509,11 +6883,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6543,11 +6919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6558,12 +6936,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -6574,16 +6954,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6637,6 +7028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -6646,10 +7038,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -6669,6 +7063,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6707,6 +7102,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6729,6 +7125,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6740,10 +7137,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6758,6 +7157,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6796,6 +7196,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6808,12 +7209,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6824,6 +7229,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6831,6 +7237,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6845,6 +7252,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6862,6 +7270,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6903,6 +7312,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6920,6 +7330,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6962,6 +7373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6992,6 +7404,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7066,6 +7479,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7096,6 +7510,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7186,16 +7601,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7251,6 +7677,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7281,6 +7708,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7343,6 +7771,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7354,6 +7785,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7363,6 +7796,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7379,6 +7815,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7396,6 +7833,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7437,6 +7875,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7454,6 +7893,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7496,6 +7936,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7526,6 +7967,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7571,6 +8013,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -7584,6 +8033,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7614,6 +8064,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7691,6 +8142,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -7729,6 +8189,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -7741,6 +8202,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -7792,11 +8254,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7843,6 +8307,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7905,6 +8371,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -7914,6 +8381,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7931,6 +8399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7959,7 +8428,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7974,6 +8445,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8029,6 +8501,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8091,6 +8564,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8150,11 +8624,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8187,10 +8663,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8207,6 +8685,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8276,11 +8755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8357,11 +8838,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8396,7 +8879,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8442,6 +8927,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -8460,7 +8946,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8480,6 +8968,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -8511,6 +9000,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -8518,6 +9008,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8540,6 +9031,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8578,6 +9070,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -8592,6 +9085,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8700,11 +9194,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8716,11 +9212,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -8731,6 +9229,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -8747,11 +9246,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8763,14 +9264,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -8796,11 +9300,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8830,11 +9336,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8845,6 +9353,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -8858,6 +9367,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -8874,11 +9384,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8908,11 +9420,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8923,12 +9437,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -8950,11 +9466,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8984,11 +9502,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8999,6 +9519,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9012,6 +9533,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9028,11 +9550,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9062,11 +9586,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9077,12 +9603,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -9093,16 +9621,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9156,6 +9695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -9165,10 +9705,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -9188,6 +9730,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9226,6 +9769,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9248,6 +9792,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9259,10 +9804,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9277,6 +9824,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9315,6 +9863,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9327,12 +9876,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9343,6 +9896,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9350,6 +9904,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9364,6 +9919,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9381,6 +9937,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9422,6 +9979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9439,6 +9997,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9481,6 +10040,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9511,6 +10071,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9585,6 +10146,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9615,6 +10177,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9705,16 +10268,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9770,6 +10344,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9800,6 +10375,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9862,6 +10438,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -9873,6 +10452,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -9882,6 +10463,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -9898,6 +10482,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9915,6 +10500,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9956,6 +10542,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9973,6 +10560,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10015,6 +10603,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10045,6 +10634,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10090,6 +10680,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -10103,6 +10700,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10133,6 +10731,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10210,6 +10809,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -10248,6 +10856,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -10260,6 +10869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -10311,11 +10921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10362,6 +10974,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10424,6 +11038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -10433,6 +11048,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10450,6 +11066,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10478,7 +11095,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10493,6 +11112,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10548,6 +11168,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -10610,6 +11231,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -10669,11 +11291,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10706,10 +11330,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -10726,6 +11352,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10795,11 +11422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10876,11 +11505,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10915,7 +11546,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10961,6 +11594,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -10979,7 +11613,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10999,6 +11635,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -11030,6 +11667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -11037,6 +11675,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11059,6 +11698,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11097,6 +11737,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -11111,6 +11752,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11199,6 +11841,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11237,6 +11880,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11255,6 +11899,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11265,6 +11910,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11291,6 +11937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11308,6 +11955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11349,6 +11997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11366,6 +12015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11408,6 +12058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11438,6 +12089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11492,6 +12144,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11522,6 +12175,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11597,16 +12251,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11677,11 +12342,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11693,11 +12360,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -11708,6 +12377,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -11724,11 +12394,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11740,14 +12412,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -11773,11 +12448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11807,11 +12484,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11822,6 +12501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11835,6 +12515,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -11851,11 +12532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11885,11 +12568,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11900,12 +12585,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -11927,11 +12614,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11961,11 +12650,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11976,6 +12667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11989,6 +12681,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12005,11 +12698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12039,11 +12734,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12054,12 +12751,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -12070,6 +12769,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12108,6 +12808,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -12146,6 +12855,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -12158,6 +12868,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -12208,11 +12919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
index b25906a96..bdc592f5a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
@@ -97,11 +97,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -122,11 +124,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -167,6 +171,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -205,6 +210,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -223,6 +229,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -233,6 +240,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -259,6 +267,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -276,6 +285,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -317,6 +327,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -334,6 +345,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -376,6 +388,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -406,6 +419,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -460,6 +474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -490,6 +505,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -565,16 +581,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -676,11 +703,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -692,11 +721,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -707,6 +738,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -723,11 +755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -739,14 +773,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -772,11 +809,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -806,11 +845,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -821,6 +862,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -834,6 +876,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -850,11 +893,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -884,11 +929,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -899,12 +946,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -926,11 +975,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -960,11 +1011,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -975,6 +1028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -988,6 +1042,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1004,11 +1059,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1038,11 +1095,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1053,12 +1112,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1069,16 +1130,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1132,6 +1204,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1141,10 +1214,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1164,6 +1239,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1202,6 +1278,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1224,6 +1301,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1235,10 +1313,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1253,6 +1333,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1291,6 +1372,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1303,12 +1385,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1319,6 +1405,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1326,6 +1413,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1340,6 +1428,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1357,6 +1446,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1398,6 +1488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1415,6 +1506,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1457,6 +1549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1487,6 +1580,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1561,6 +1655,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1591,6 +1686,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1681,16 +1777,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1746,6 +1853,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1776,6 +1884,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1838,6 +1947,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1849,6 +1961,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1858,6 +1972,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1874,6 +1991,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1891,6 +2009,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1932,6 +2051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1949,6 +2069,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1991,6 +2112,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2021,6 +2143,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2066,6 +2189,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2079,6 +2209,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2109,6 +2240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2186,6 +2318,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2224,6 +2365,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2236,6 +2378,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2287,11 +2430,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2338,6 +2483,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2400,6 +2547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2409,6 +2557,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2426,6 +2575,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2454,7 +2604,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2469,6 +2621,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2524,6 +2677,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2586,6 +2740,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2645,11 +2800,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2682,10 +2839,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2702,6 +2861,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2771,11 +2931,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2852,11 +3014,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2891,7 +3055,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2937,6 +3103,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2955,7 +3122,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2975,6 +3144,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3006,6 +3176,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3013,6 +3184,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3035,6 +3207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3073,6 +3246,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3087,6 +3261,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3195,11 +3370,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3211,11 +3388,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -3226,6 +3405,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -3242,11 +3422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3258,14 +3440,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -3291,11 +3476,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3325,11 +3512,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3340,6 +3529,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3353,6 +3543,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3369,11 +3560,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3403,11 +3596,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3418,12 +3613,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -3445,11 +3642,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3479,11 +3678,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3494,6 +3695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3507,6 +3709,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3523,11 +3726,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3557,11 +3762,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3572,12 +3779,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -3588,16 +3797,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3651,6 +3871,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -3660,10 +3881,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -3683,6 +3906,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3721,6 +3945,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3743,6 +3968,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3754,10 +3980,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3772,6 +4000,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3810,6 +4039,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3822,12 +4052,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3838,6 +4072,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3845,6 +4080,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3859,6 +4095,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3876,6 +4113,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3917,6 +4155,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3934,6 +4173,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3976,6 +4216,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4006,6 +4247,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4080,6 +4322,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4110,6 +4353,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4200,16 +4444,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4265,6 +4520,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4295,6 +4551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4357,6 +4614,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4368,6 +4628,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4377,6 +4639,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4393,6 +4658,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4410,6 +4676,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4451,6 +4718,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4468,6 +4736,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4510,6 +4779,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4540,6 +4810,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4585,6 +4856,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -4598,6 +4876,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4628,6 +4907,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4705,6 +4985,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -4743,6 +5032,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -4755,6 +5045,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -4806,11 +5097,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4857,6 +5150,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4919,6 +5214,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -4928,6 +5224,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4945,6 +5242,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4973,7 +5271,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4988,6 +5288,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5043,6 +5344,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5105,6 +5407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5164,11 +5467,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5201,10 +5506,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5221,6 +5528,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5290,11 +5598,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5371,11 +5681,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5410,7 +5722,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5456,6 +5770,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -5474,7 +5789,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5494,6 +5811,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -5525,6 +5843,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -5532,6 +5851,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5554,6 +5874,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5592,6 +5913,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -5606,6 +5928,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5679,6 +6002,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5717,6 +6041,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5735,6 +6060,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5745,6 +6071,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5771,6 +6098,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5788,6 +6116,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5829,6 +6158,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5846,6 +6176,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5888,6 +6219,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5918,6 +6250,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5972,6 +6305,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6002,6 +6336,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6077,16 +6412,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6181,11 +6527,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6197,11 +6545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -6212,6 +6562,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -6228,11 +6579,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6244,14 +6597,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -6277,11 +6633,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6311,11 +6669,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6326,6 +6686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6339,6 +6700,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6355,11 +6717,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6389,11 +6753,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6404,12 +6770,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -6431,11 +6799,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6465,11 +6835,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6480,6 +6852,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6493,6 +6866,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6509,11 +6883,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6543,11 +6919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6558,12 +6936,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -6574,16 +6954,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6637,6 +7028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -6646,10 +7038,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -6669,6 +7063,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6707,6 +7102,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6729,6 +7125,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6740,10 +7137,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6758,6 +7157,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6796,6 +7196,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6808,12 +7209,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6824,6 +7229,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6831,6 +7237,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6845,6 +7252,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6862,6 +7270,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6903,6 +7312,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6920,6 +7330,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6962,6 +7373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6992,6 +7404,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7066,6 +7479,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7096,6 +7510,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7186,16 +7601,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7251,6 +7677,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7281,6 +7708,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7343,6 +7771,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7354,6 +7785,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7363,6 +7796,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7379,6 +7815,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7396,6 +7833,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7437,6 +7875,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7454,6 +7893,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7496,6 +7936,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7526,6 +7967,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7571,6 +8013,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -7584,6 +8033,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7614,6 +8064,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7691,6 +8142,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -7729,6 +8189,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -7741,6 +8202,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -7792,11 +8254,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7843,6 +8307,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7905,6 +8371,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -7914,6 +8381,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7931,6 +8399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7959,7 +8428,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7974,6 +8445,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8029,6 +8501,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8091,6 +8564,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8150,11 +8624,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8187,10 +8663,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8207,6 +8685,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8276,11 +8755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8357,11 +8838,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8396,7 +8879,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8442,6 +8927,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -8460,7 +8946,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8480,6 +8968,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -8511,6 +9000,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -8518,6 +9008,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8540,6 +9031,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8578,6 +9070,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -8592,6 +9085,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8700,11 +9194,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8716,11 +9212,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -8731,6 +9229,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -8747,11 +9246,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8763,14 +9264,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -8796,11 +9300,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8830,11 +9336,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8845,6 +9353,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -8858,6 +9367,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -8874,11 +9384,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8908,11 +9420,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8923,12 +9437,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -8950,11 +9466,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8984,11 +9502,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8999,6 +9519,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9012,6 +9533,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9028,11 +9550,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9062,11 +9586,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9077,12 +9603,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -9093,16 +9621,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9156,6 +9695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -9165,10 +9705,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -9188,6 +9730,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9226,6 +9769,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9248,6 +9792,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9259,10 +9804,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9277,6 +9824,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9315,6 +9863,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9327,12 +9876,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9343,6 +9896,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9350,6 +9904,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9364,6 +9919,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9381,6 +9937,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9422,6 +9979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9439,6 +9997,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9481,6 +10040,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9511,6 +10071,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9585,6 +10146,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9615,6 +10177,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9705,16 +10268,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9770,6 +10344,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9800,6 +10375,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9862,6 +10438,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -9873,6 +10452,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -9882,6 +10463,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -9898,6 +10482,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9915,6 +10500,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9956,6 +10542,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9973,6 +10560,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10015,6 +10603,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10045,6 +10634,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10090,6 +10680,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -10103,6 +10700,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10133,6 +10731,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10210,6 +10809,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -10248,6 +10856,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -10260,6 +10869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -10311,11 +10921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10362,6 +10974,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10424,6 +11038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -10433,6 +11048,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10450,6 +11066,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10478,7 +11095,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10493,6 +11112,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10548,6 +11168,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -10610,6 +11231,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -10669,11 +11291,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10706,10 +11330,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -10726,6 +11352,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10795,11 +11422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10876,11 +11505,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10915,7 +11546,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10961,6 +11594,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -10979,7 +11613,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10999,6 +11635,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -11030,6 +11667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -11037,6 +11675,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11059,6 +11698,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11097,6 +11737,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -11111,6 +11752,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11199,6 +11841,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11237,6 +11880,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11255,6 +11899,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11265,6 +11910,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11291,6 +11937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11308,6 +11955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11349,6 +11997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11366,6 +12015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11408,6 +12058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11438,6 +12089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11492,6 +12144,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11522,6 +12175,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11597,16 +12251,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11677,11 +12342,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11693,11 +12360,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -11708,6 +12377,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -11724,11 +12394,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11740,14 +12412,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -11773,11 +12448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11807,11 +12484,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11822,6 +12501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11835,6 +12515,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -11851,11 +12532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11885,11 +12568,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11900,12 +12585,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -11927,11 +12614,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11961,11 +12650,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11976,6 +12667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11989,6 +12681,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12005,11 +12698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12039,11 +12734,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12054,12 +12751,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -12070,6 +12769,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12108,6 +12808,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -12146,6 +12855,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -12158,6 +12868,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -12208,11 +12919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
index f5a2dc4a9..1cd107900 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
@@ -97,11 +97,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -122,11 +124,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -167,6 +171,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -205,6 +210,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -223,6 +229,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -233,6 +240,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -259,6 +267,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -276,6 +285,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -317,6 +327,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -334,6 +345,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -376,6 +388,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -406,6 +419,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -460,6 +474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -490,6 +505,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -565,16 +581,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -676,11 +703,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -692,11 +721,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -707,6 +738,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -723,11 +755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -739,14 +773,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -772,11 +809,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -806,11 +845,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -821,6 +862,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -834,6 +876,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -850,11 +893,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -884,11 +929,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -899,12 +946,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -926,11 +975,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -960,11 +1011,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -975,6 +1028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -988,6 +1042,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1004,11 +1059,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1038,11 +1095,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1053,12 +1112,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1069,16 +1130,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1132,6 +1204,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1141,10 +1214,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1164,6 +1239,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1202,6 +1278,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1224,6 +1301,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1235,10 +1313,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1253,6 +1333,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1291,6 +1372,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1303,12 +1385,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1319,6 +1405,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1326,6 +1413,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1340,6 +1428,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1357,6 +1446,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1398,6 +1488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1415,6 +1506,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1457,6 +1549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1487,6 +1580,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1561,6 +1655,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1591,6 +1686,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1681,16 +1777,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1746,6 +1853,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1776,6 +1884,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1838,6 +1947,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1849,6 +1961,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1858,6 +1972,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1874,6 +1991,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1891,6 +2009,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1932,6 +2051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1949,6 +2069,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1991,6 +2112,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2021,6 +2143,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2066,6 +2189,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2079,6 +2209,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2109,6 +2240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2186,6 +2318,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2224,6 +2365,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2236,6 +2378,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2287,11 +2430,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2338,6 +2483,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2400,6 +2547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2409,6 +2557,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2426,6 +2575,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2454,7 +2604,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2469,6 +2621,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2524,6 +2677,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2586,6 +2740,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2645,11 +2800,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2682,10 +2839,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2702,6 +2861,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2771,11 +2931,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2852,11 +3014,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2891,7 +3055,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2937,6 +3103,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2955,7 +3122,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2975,6 +3144,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3006,6 +3176,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3013,6 +3184,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3035,6 +3207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3073,6 +3246,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3087,6 +3261,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3195,11 +3370,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3211,11 +3388,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -3226,6 +3405,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -3242,11 +3422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3258,14 +3440,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -3291,11 +3476,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3325,11 +3512,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3340,6 +3529,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3353,6 +3543,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3369,11 +3560,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3403,11 +3596,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3418,12 +3613,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -3445,11 +3642,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3479,11 +3678,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3494,6 +3695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3507,6 +3709,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3523,11 +3726,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3557,11 +3762,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3572,12 +3779,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -3588,16 +3797,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3651,6 +3871,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -3660,10 +3881,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -3683,6 +3906,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3721,6 +3945,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3743,6 +3968,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3754,10 +3980,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3772,6 +4000,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3810,6 +4039,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3822,12 +4052,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3838,6 +4072,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3845,6 +4080,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3859,6 +4095,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3876,6 +4113,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3917,6 +4155,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3934,6 +4173,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3976,6 +4216,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4006,6 +4247,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4080,6 +4322,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4110,6 +4353,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4200,16 +4444,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4265,6 +4520,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4295,6 +4551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4357,6 +4614,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4368,6 +4628,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4377,6 +4639,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4393,6 +4658,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4410,6 +4676,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4451,6 +4718,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4468,6 +4736,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4510,6 +4779,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4540,6 +4810,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4585,6 +4856,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -4598,6 +4876,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4628,6 +4907,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4705,6 +4985,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -4743,6 +5032,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -4755,6 +5045,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -4806,11 +5097,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4857,6 +5150,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4919,6 +5214,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -4928,6 +5224,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4945,6 +5242,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4973,7 +5271,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4988,6 +5288,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5043,6 +5344,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5105,6 +5407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5164,11 +5467,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5201,10 +5506,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5221,6 +5528,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5290,11 +5598,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5371,11 +5681,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5410,7 +5722,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5456,6 +5770,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -5474,7 +5789,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5494,6 +5811,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -5525,6 +5843,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -5532,6 +5851,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5554,6 +5874,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5592,6 +5913,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -5606,6 +5928,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5679,6 +6002,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5717,6 +6041,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5735,6 +6060,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5745,6 +6071,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5771,6 +6098,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5788,6 +6116,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5829,6 +6158,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5846,6 +6176,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5888,6 +6219,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5918,6 +6250,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5972,6 +6305,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6002,6 +6336,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6077,16 +6412,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6181,11 +6527,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6197,11 +6545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -6212,6 +6562,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -6228,11 +6579,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6244,14 +6597,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -6277,11 +6633,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6311,11 +6669,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6326,6 +6686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6339,6 +6700,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6355,11 +6717,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6389,11 +6753,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6404,12 +6770,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -6431,11 +6799,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6465,11 +6835,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6480,6 +6852,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6493,6 +6866,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6509,11 +6883,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6543,11 +6919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6558,12 +6936,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -6574,16 +6954,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6637,6 +7028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -6646,10 +7038,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -6669,6 +7063,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6707,6 +7102,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6729,6 +7125,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6740,10 +7137,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6758,6 +7157,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6796,6 +7196,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6808,12 +7209,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6824,6 +7229,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6831,6 +7237,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6845,6 +7252,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6862,6 +7270,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6903,6 +7312,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6920,6 +7330,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6962,6 +7373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6992,6 +7404,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7066,6 +7479,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7096,6 +7510,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7186,16 +7601,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7251,6 +7677,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7281,6 +7708,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7343,6 +7771,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7354,6 +7785,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7363,6 +7796,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7379,6 +7815,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7396,6 +7833,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7437,6 +7875,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7454,6 +7893,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7496,6 +7936,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7526,6 +7967,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7571,6 +8013,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -7584,6 +8033,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7614,6 +8064,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7691,6 +8142,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -7729,6 +8189,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -7741,6 +8202,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -7792,11 +8254,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7843,6 +8307,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7905,6 +8371,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -7914,6 +8381,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7931,6 +8399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7959,7 +8428,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7974,6 +8445,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8029,6 +8501,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8091,6 +8564,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8150,11 +8624,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8187,10 +8663,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8207,6 +8685,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8276,11 +8755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8357,11 +8838,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8396,7 +8879,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8442,6 +8927,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -8460,7 +8946,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8480,6 +8968,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -8511,6 +9000,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -8518,6 +9008,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8540,6 +9031,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8578,6 +9070,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -8592,6 +9085,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8700,11 +9194,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8716,11 +9212,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -8731,6 +9229,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -8747,11 +9246,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8763,14 +9264,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -8796,11 +9300,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8830,11 +9336,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8845,6 +9353,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -8858,6 +9367,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -8874,11 +9384,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8908,11 +9420,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8923,12 +9437,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -8950,11 +9466,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8984,11 +9502,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8999,6 +9519,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9012,6 +9533,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9028,11 +9550,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9062,11 +9586,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9077,12 +9603,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -9093,16 +9621,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9156,6 +9695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -9165,10 +9705,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -9188,6 +9730,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9226,6 +9769,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9248,6 +9792,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9259,10 +9804,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9277,6 +9824,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9315,6 +9863,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9327,12 +9876,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9343,6 +9896,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9350,6 +9904,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9364,6 +9919,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9381,6 +9937,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9422,6 +9979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9439,6 +9997,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9481,6 +10040,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9511,6 +10071,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9585,6 +10146,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9615,6 +10177,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9705,16 +10268,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9770,6 +10344,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9800,6 +10375,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9862,6 +10438,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -9873,6 +10452,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -9882,6 +10463,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -9898,6 +10482,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9915,6 +10500,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9956,6 +10542,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9973,6 +10560,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10015,6 +10603,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10045,6 +10634,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10090,6 +10680,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -10103,6 +10700,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10133,6 +10731,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10210,6 +10809,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -10248,6 +10856,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -10260,6 +10869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -10311,11 +10921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10362,6 +10974,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10424,6 +11038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -10433,6 +11048,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10450,6 +11066,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10478,7 +11095,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10493,6 +11112,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10548,6 +11168,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -10610,6 +11231,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -10669,11 +11291,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10706,10 +11330,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -10726,6 +11352,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10795,11 +11422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10876,11 +11505,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10915,7 +11546,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10961,6 +11594,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -10979,7 +11613,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10999,6 +11635,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -11030,6 +11667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -11037,6 +11675,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11059,6 +11698,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11097,6 +11737,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -11111,6 +11752,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11199,6 +11841,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11237,6 +11880,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11255,6 +11899,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11265,6 +11910,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11291,6 +11937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11308,6 +11955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11349,6 +11997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11366,6 +12015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11408,6 +12058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11438,6 +12089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11492,6 +12144,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11522,6 +12175,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11597,16 +12251,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11677,11 +12342,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11693,11 +12360,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -11708,6 +12377,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -11724,11 +12394,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11740,14 +12412,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -11773,11 +12448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11807,11 +12484,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11822,6 +12501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11835,6 +12515,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -11851,11 +12532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11885,11 +12568,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11900,12 +12585,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -11927,11 +12614,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11961,11 +12650,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11976,6 +12667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11989,6 +12681,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12005,11 +12698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12039,11 +12734,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12054,12 +12751,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -12070,6 +12769,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12108,6 +12808,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -12146,6 +12855,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -12158,6 +12868,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -12208,11 +12919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
index fc49fe3aa..17d3c1aaf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
@@ -97,11 +97,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -122,11 +124,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -167,6 +171,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -205,6 +210,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -223,6 +229,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -233,6 +240,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -259,6 +267,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -276,6 +285,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -317,6 +327,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -334,6 +345,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -376,6 +388,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -406,6 +419,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -460,6 +474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -490,6 +505,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -565,16 +581,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -676,11 +703,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -692,11 +721,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -707,6 +738,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -723,11 +755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -739,14 +773,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -772,11 +809,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -806,11 +845,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -821,6 +862,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -834,6 +876,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -850,11 +893,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -884,11 +929,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -899,12 +946,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -926,11 +975,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -960,11 +1011,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -975,6 +1028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -988,6 +1042,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1004,11 +1059,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1038,11 +1095,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1053,12 +1112,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1069,16 +1130,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1132,6 +1204,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1141,10 +1214,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1164,6 +1239,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1202,6 +1278,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1224,6 +1301,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1235,10 +1313,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1253,6 +1333,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1291,6 +1372,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1303,12 +1385,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1319,6 +1405,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1326,6 +1413,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1340,6 +1428,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1357,6 +1446,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1398,6 +1488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1415,6 +1506,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1457,6 +1549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1487,6 +1580,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1561,6 +1655,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1591,6 +1686,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1681,16 +1777,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1746,6 +1853,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1776,6 +1884,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1838,6 +1947,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1849,6 +1961,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1858,6 +1972,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1874,6 +1991,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1891,6 +2009,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1932,6 +2051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1949,6 +2069,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1991,6 +2112,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2021,6 +2143,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2066,6 +2189,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2079,6 +2209,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2109,6 +2240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2186,6 +2318,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2224,6 +2365,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2236,6 +2378,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2287,11 +2430,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2338,6 +2483,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2400,6 +2547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2409,6 +2557,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2426,6 +2575,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2454,7 +2604,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2469,6 +2621,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2524,6 +2677,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2586,6 +2740,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2645,11 +2800,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2682,10 +2839,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2702,6 +2861,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2771,11 +2931,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2852,11 +3014,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2891,7 +3055,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2937,6 +3103,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2955,7 +3122,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2975,6 +3144,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3006,6 +3176,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3013,6 +3184,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3035,6 +3207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3073,6 +3246,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3087,6 +3261,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3195,11 +3370,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3211,11 +3388,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -3226,6 +3405,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -3242,11 +3422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3258,14 +3440,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -3291,11 +3476,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3325,11 +3512,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3340,6 +3529,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3353,6 +3543,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3369,11 +3560,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3403,11 +3596,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3418,12 +3613,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -3445,11 +3642,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3479,11 +3678,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3494,6 +3695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3507,6 +3709,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3523,11 +3726,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3557,11 +3762,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3572,12 +3779,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -3588,16 +3797,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3651,6 +3871,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -3660,10 +3881,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -3683,6 +3906,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3721,6 +3945,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3743,6 +3968,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3754,10 +3980,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3772,6 +4000,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3810,6 +4039,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3822,12 +4052,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3838,6 +4072,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3845,6 +4080,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3859,6 +4095,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3876,6 +4113,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3917,6 +4155,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3934,6 +4173,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3976,6 +4216,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4006,6 +4247,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4080,6 +4322,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4110,6 +4353,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4200,16 +4444,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4265,6 +4520,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4295,6 +4551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4357,6 +4614,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4368,6 +4628,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4377,6 +4639,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4393,6 +4658,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4410,6 +4676,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4451,6 +4718,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4468,6 +4736,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4510,6 +4779,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4540,6 +4810,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4585,6 +4856,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -4598,6 +4876,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4628,6 +4907,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4705,6 +4985,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -4743,6 +5032,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -4755,6 +5045,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -4806,11 +5097,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4857,6 +5150,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4919,6 +5214,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -4928,6 +5224,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4945,6 +5242,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4973,7 +5271,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4988,6 +5288,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5043,6 +5344,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5105,6 +5407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5164,11 +5467,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5201,10 +5506,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5221,6 +5528,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5290,11 +5598,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5371,11 +5681,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5410,7 +5722,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5456,6 +5770,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -5474,7 +5789,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5494,6 +5811,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -5525,6 +5843,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -5532,6 +5851,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5554,6 +5874,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5592,6 +5913,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -5606,6 +5928,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5679,6 +6002,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5717,6 +6041,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5735,6 +6060,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5745,6 +6071,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5771,6 +6098,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5788,6 +6116,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5829,6 +6158,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5846,6 +6176,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5888,6 +6219,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5918,6 +6250,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5972,6 +6305,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6002,6 +6336,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6077,16 +6412,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6181,11 +6527,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6197,11 +6545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -6212,6 +6562,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -6228,11 +6579,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6244,14 +6597,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -6277,11 +6633,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6311,11 +6669,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6326,6 +6686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6339,6 +6700,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6355,11 +6717,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6389,11 +6753,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6404,12 +6770,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -6431,11 +6799,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6465,11 +6835,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6480,6 +6852,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6493,6 +6866,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6509,11 +6883,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6543,11 +6919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6558,12 +6936,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -6574,16 +6954,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6637,6 +7028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -6646,10 +7038,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -6669,6 +7063,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6707,6 +7102,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6729,6 +7125,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6740,10 +7137,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6758,6 +7157,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6796,6 +7196,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6808,12 +7209,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6824,6 +7229,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6831,6 +7237,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6845,6 +7252,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6862,6 +7270,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6903,6 +7312,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6920,6 +7330,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6962,6 +7373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6992,6 +7404,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7066,6 +7479,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7096,6 +7510,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7186,16 +7601,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7251,6 +7677,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7281,6 +7708,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7343,6 +7771,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7354,6 +7785,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7363,6 +7796,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7379,6 +7815,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7396,6 +7833,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7437,6 +7875,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7454,6 +7893,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7496,6 +7936,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7526,6 +7967,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7571,6 +8013,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -7584,6 +8033,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7614,6 +8064,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7691,6 +8142,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -7729,6 +8189,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -7741,6 +8202,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -7792,11 +8254,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7843,6 +8307,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7905,6 +8371,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -7914,6 +8381,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7931,6 +8399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7959,7 +8428,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7974,6 +8445,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8029,6 +8501,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8091,6 +8564,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8150,11 +8624,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8187,10 +8663,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8207,6 +8685,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8276,11 +8755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8357,11 +8838,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8396,7 +8879,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8442,6 +8927,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -8460,7 +8946,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8480,6 +8968,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -8511,6 +9000,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -8518,6 +9008,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8540,6 +9031,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8578,6 +9070,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -8592,6 +9085,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8700,11 +9194,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8716,11 +9212,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -8731,6 +9229,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -8747,11 +9246,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -8763,14 +9264,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -8796,11 +9300,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8830,11 +9336,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8845,6 +9353,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -8858,6 +9367,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -8874,11 +9384,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8908,11 +9420,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8923,12 +9437,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -8950,11 +9466,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8984,11 +9502,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8999,6 +9519,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9012,6 +9533,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9028,11 +9550,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9062,11 +9586,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9077,12 +9603,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -9093,16 +9621,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9156,6 +9695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -9165,10 +9705,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -9188,6 +9730,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9226,6 +9769,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9248,6 +9792,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9259,10 +9804,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9277,6 +9824,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9315,6 +9863,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9327,12 +9876,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9343,6 +9896,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9350,6 +9904,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9364,6 +9919,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9381,6 +9937,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9422,6 +9979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9439,6 +9997,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9481,6 +10040,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9511,6 +10071,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9585,6 +10146,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9615,6 +10177,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9705,16 +10268,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9770,6 +10344,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9800,6 +10375,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9862,6 +10438,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -9873,6 +10452,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -9882,6 +10463,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -9898,6 +10482,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9915,6 +10500,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9956,6 +10542,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9973,6 +10560,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10015,6 +10603,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10045,6 +10634,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10090,6 +10680,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -10103,6 +10700,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10133,6 +10731,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10210,6 +10809,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -10248,6 +10856,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -10260,6 +10869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -10311,11 +10921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10362,6 +10974,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10424,6 +11038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -10433,6 +11048,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10450,6 +11066,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10478,7 +11095,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10493,6 +11112,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10548,6 +11168,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -10610,6 +11231,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -10669,11 +11291,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10706,10 +11330,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -10726,6 +11352,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10795,11 +11422,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10876,11 +11505,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10915,7 +11546,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10961,6 +11594,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -10979,7 +11613,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10999,6 +11635,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -11030,6 +11667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -11037,6 +11675,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11059,6 +11698,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11097,6 +11737,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -11111,6 +11752,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11199,6 +11841,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11237,6 +11880,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11255,6 +11899,7 @@ spec:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11265,6 +11910,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11291,6 +11937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11308,6 +11955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11349,6 +11997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11366,6 +12015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11408,6 +12058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11438,6 +12089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11492,6 +12144,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11522,6 +12175,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11597,16 +12251,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11677,11 +12342,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11693,11 +12360,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -11708,6 +12377,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -11724,11 +12394,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11740,14 +12412,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -11773,11 +12448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11807,11 +12484,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11822,6 +12501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11835,6 +12515,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -11851,11 +12532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11885,11 +12568,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11900,12 +12585,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -11927,11 +12614,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11961,11 +12650,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11976,6 +12667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -11989,6 +12681,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12005,11 +12698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12039,11 +12734,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12054,12 +12751,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -12070,6 +12769,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12108,6 +12808,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -12146,6 +12855,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -12158,6 +12868,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -12208,11 +12919,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.k8s.appscode.com/v1alpha1/users.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.k8s.appscode.com/v1alpha1/users.yaml
new file mode 100644
index 000000000..30bd48493
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.k8s.appscode.com/v1alpha1/users.yaml
@@ -0,0 +1,67 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.k8s.appscode.com
+ k8s.io/kind: User
+ k8s.io/resource: users
+ k8s.io/version: v1alpha1
+ name: authentication.k8s.appscode.com-v1alpha1-users
+spec:
+ resource:
+ group: authentication.k8s.appscode.com
+ kind: User
+ name: users
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ extra:
+ additionalProperties:
+ items:
+ type: string
+ type: array
+ type: object
+ groups:
+ items:
+ type: string
+ type: array
+ uid:
+ type: string
+ username:
+ type: string
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml
new file mode 100644
index 000000000..7cd3f7196
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml
@@ -0,0 +1,106 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.open-cluster-management.io
+ k8s.io/kind: ManagedServiceAccount
+ k8s.io/resource: managedserviceaccounts
+ k8s.io/version: v1alpha1
+ name: authentication.open-cluster-management.io-v1alpha1-managedserviceaccounts
+spec:
+ resource:
+ group: authentication.open-cluster-management.io
+ kind: ManagedServiceAccount
+ name: managedserviceaccounts
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: ManagedServiceAccount is the Schema for the managedserviceaccounts
+ API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ManagedServiceAccountSpec defines the desired state of ManagedServiceAccount
+ properties:
+ rotation:
+ description: Rotation is the policy for rotation the credentials.
+ properties:
+ enabled:
+ default: true
+ description: |-
+ Enabled prescribes whether the ServiceAccount token will
+ be rotated from the upstream
+ type: boolean
+ validity:
+ default: 8640h0m0s
+ description: Validity is the duration for which the signed ServiceAccount
+ token is valid.
+ type: string
+ type: object
+ ttlSecondsAfterCreation:
+ description: |-
+ ttlSecondsAfterCreation limits the lifetime of a ManagedServiceAccount.
+ If the ttlSecondsAfterCreation field is set, the ManagedServiceAccount will be
+ automatically deleted regardless of the ManagedServiceAccount's status.
+ When the ManagedServiceAccount is deleted, its lifecycle guarantees
+ (e.g. finalizers) will be honored. If this field is unset, the ManagedServiceAccount
+ won't be automatically deleted. If this field is set to zero, the
+ ManagedServiceAccount becomes eligible for deletion immediately after its creation.
+ In order to use ttlSecondsAfterCreation, the EphemeralIdentity feature gate must be enabled.
+ exclusiveMinimum: true
+ format: int32
+ minimum: 0
+ type: integer
+ required:
+ - rotation
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml
new file mode 100644
index 000000000..24041f784
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml
@@ -0,0 +1,106 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.open-cluster-management.io
+ k8s.io/kind: ManagedServiceAccount
+ k8s.io/resource: managedserviceaccounts
+ k8s.io/version: v1beta1
+ name: authentication.open-cluster-management.io-v1beta1-managedserviceaccounts
+spec:
+ resource:
+ group: authentication.open-cluster-management.io
+ kind: ManagedServiceAccount
+ name: managedserviceaccounts
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: ManagedServiceAccount is the Schema for the managedserviceaccounts
+ API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ManagedServiceAccountSpec defines the desired state of ManagedServiceAccount
+ properties:
+ rotation:
+ description: Rotation is the policy for rotation the credentials.
+ properties:
+ enabled:
+ default: true
+ description: |-
+ Enabled prescribes whether the ServiceAccount token will
+ be rotated from the upstream
+ type: boolean
+ validity:
+ default: 8640h0m0s
+ description: Validity is the duration for which the signed ServiceAccount
+ token is valid.
+ type: string
+ type: object
+ ttlSecondsAfterCreation:
+ description: |-
+ ttlSecondsAfterCreation limits the lifetime of a ManagedServiceAccount.
+ If the ttlSecondsAfterCreation field is set, the ManagedServiceAccount will be
+ automatically deleted regardless of the ManagedServiceAccount's status.
+ When the ManagedServiceAccount is deleted, its lifecycle guarantees
+ (e.g. finalizers) will be honored. If this field is unset, the ManagedServiceAccount
+ won't be automatically deleted. If this field is set to zero, the
+ ManagedServiceAccount becomes eligible for deletion immediately after its creation.
+ In order to use ttlSecondsAfterCreation, the EphemeralIdentity feature gate must be enabled.
+ exclusiveMinimum: true
+ format: int32
+ minimum: 0
+ type: integer
+ required:
+ - rotation
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml
new file mode 100644
index 000000000..0ee341372
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml
@@ -0,0 +1,93 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterRoleBinding
+ k8s.io/resource: managedclusterrolebindings
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclusterrolebindings
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterRoleBinding
+ name: managedclusterrolebindings
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ roleRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespaces:
+ items:
+ type: string
+ type: array
+ required:
+ - apiGroup
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ subjects:
+ items:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - roleRef
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml
new file mode 100644
index 000000000..9535ed05b
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml
@@ -0,0 +1,85 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterRole
+ k8s.io/resource: managedclusterroles
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclusterroles
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterRole
+ name: managedclusterroles
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ rules:
+ items:
+ properties:
+ apiGroups:
+ items:
+ type: string
+ type: array
+ nonResourceURLs:
+ items:
+ type: string
+ type: array
+ resourceNames:
+ items:
+ type: string
+ type: array
+ resources:
+ items:
+ type: string
+ type: array
+ verbs:
+ items:
+ type: string
+ type: array
+ required:
+ - verbs
+ type: object
+ type: array
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml
new file mode 100644
index 000000000..5ad49c559
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml
@@ -0,0 +1,94 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterSetRoleBinding
+ k8s.io/resource: managedclustersetrolebindings
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclustersetrolebindings
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterSetRoleBinding
+ name: managedclustersetrolebindings
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ clusterSetRef:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ roleRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespaces:
+ items:
+ type: string
+ type: array
+ required:
+ - apiGroup
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ subjects:
+ items:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - clusterSetRef
+ - roleRef
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml
new file mode 100644
index 000000000..e882af44b
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml
@@ -0,0 +1,438 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: DruidAutoscaler
+ k8s.io/resource: druidautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-druidautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: DruidAutoscaler
+ name: druidautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ compute:
+ properties:
+ brokers:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ coordinators:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ historicals:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ middleManagers:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ nodeTopology:
+ properties:
+ name:
+ type: string
+ scaleDownDiffPercentage:
+ default: 25
+ format: int32
+ type: integer
+ scaleUpDiffPercentage:
+ default: 15
+ format: int32
+ type: integer
+ type: object
+ overlords:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ routers:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ type: object
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ opsRequestOptions:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ timeout:
+ type: string
+ type: object
+ storage:
+ properties:
+ historicals:
+ properties:
+ expansionMode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ scalingRules:
+ items:
+ properties:
+ appliesUpto:
+ type: string
+ threshold:
+ type: string
+ required:
+ - appliesUpto
+ - threshold
+ type: object
+ type: array
+ scalingThreshold:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ upperBound:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ usageThreshold:
+ format: int32
+ type: integer
+ required:
+ - expansionMode
+ type: object
+ middleManagers:
+ properties:
+ expansionMode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ scalingRules:
+ items:
+ properties:
+ appliesUpto:
+ type: string
+ threshold:
+ type: string
+ required:
+ - appliesUpto
+ - threshold
+ type: object
+ type: array
+ scalingThreshold:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ upperBound:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ usageThreshold:
+ format: int32
+ type: integer
+ required:
+ - expansionMode
+ type: object
+ type: object
+ required:
+ - databaseRef
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
index bf92a7cc9..45edcd384 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
@@ -604,6 +604,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
index d6dfcff4c..b3f6a4d50 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
@@ -168,11 +168,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -239,11 +241,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -299,11 +303,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -381,6 +387,7 @@ spec:
scaleTargetRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
index 86e7bf43e..a3a434978 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
@@ -208,6 +208,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
index 77260a243..5b0eb030a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
index 2d9142a7b..d7e5f4731 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
@@ -168,11 +168,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -239,11 +241,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -299,11 +303,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -381,6 +387,7 @@ spec:
scaleTargetRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
index 0d1ecdc56..4fb857af3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
@@ -384,6 +384,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
index 3e20b5c52..03b83e449 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
index 36b47263a..6c395b81a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
index ee3cf07c0..b8f9d8340 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
@@ -168,11 +168,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -239,11 +241,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -299,11 +303,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -381,6 +387,7 @@ spec:
serverRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml
new file mode 100644
index 000000000..3b086c422
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml
@@ -0,0 +1,143 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: PgpoolAutoscaler
+ k8s.io/resource: pgpoolautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-pgpoolautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: PgpoolAutoscaler
+ name: pgpoolautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ compute:
+ properties:
+ nodeTopology:
+ properties:
+ name:
+ type: string
+ scaleDownDiffPercentage:
+ default: 25
+ format: int32
+ type: integer
+ scaleUpDiffPercentage:
+ default: 15
+ format: int32
+ type: integer
+ type: object
+ pgpool:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ type: object
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ opsRequestOptions:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ timeout:
+ type: string
+ type: object
+ required:
+ - databaseRef
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
index db99c286e..1c342d082 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
index b280056a0..9fbe3b337 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
@@ -131,6 +131,7 @@ spec:
proxyRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
index 0a9c8a0fa..ded1fc274 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
index f8a9b0d54..6a902315e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
@@ -208,6 +208,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
index 1bdaea51d..59dd108f3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
@@ -120,6 +120,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml
new file mode 100644
index 000000000..3ef030915
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml
@@ -0,0 +1,342 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: SinglestoreAutoscaler
+ k8s.io/resource: singlestoreautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-singlestoreautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: SinglestoreAutoscaler
+ name: singlestoreautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ compute:
+ properties:
+ aggregator:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ leaf:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ node:
+ properties:
+ containerControlledValues:
+ enum:
+ - RequestsAndLimits
+ - RequestsOnly
+ type: string
+ controlledResources:
+ items:
+ type: string
+ type: array
+ inMemoryStorage:
+ properties:
+ scalingFactorPercentage:
+ format: int32
+ type: integer
+ usageThresholdPercentage:
+ format: int32
+ type: integer
+ type: object
+ maxAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ minAllowed:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podLifeTimeThreshold:
+ type: string
+ resourceDiffPercentage:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ type: object
+ nodeTopology:
+ properties:
+ name:
+ type: string
+ scaleDownDiffPercentage:
+ default: 25
+ format: int32
+ type: integer
+ scaleUpDiffPercentage:
+ default: 15
+ format: int32
+ type: integer
+ type: object
+ type: object
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ opsRequestOptions:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ timeout:
+ type: string
+ type: object
+ storage:
+ properties:
+ aggregator:
+ properties:
+ expansionMode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ scalingRules:
+ items:
+ properties:
+ appliesUpto:
+ type: string
+ threshold:
+ type: string
+ required:
+ - appliesUpto
+ - threshold
+ type: object
+ type: array
+ scalingThreshold:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ upperBound:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ usageThreshold:
+ format: int32
+ type: integer
+ required:
+ - expansionMode
+ type: object
+ leaf:
+ properties:
+ expansionMode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ scalingRules:
+ items:
+ properties:
+ appliesUpto:
+ type: string
+ threshold:
+ type: string
+ required:
+ - appliesUpto
+ - threshold
+ type: object
+ type: array
+ scalingThreshold:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ upperBound:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ usageThreshold:
+ format: int32
+ type: integer
+ required:
+ - expansionMode
+ type: object
+ node:
+ properties:
+ expansionMode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ scalingRules:
+ items:
+ properties:
+ appliesUpto:
+ type: string
+ threshold:
+ type: string
+ required:
+ - appliesUpto
+ - threshold
+ type: object
+ type: array
+ scalingThreshold:
+ format: int32
+ type: integer
+ trigger:
+ type: string
+ upperBound:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ usageThreshold:
+ format: int32
+ type: integer
+ required:
+ - expansionMode
+ type: object
+ type: object
+ required:
+ - databaseRef
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigs.yaml
index e960543fa..bad0b935b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigs.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -76,13 +81,13 @@ spec:
bootstrapping EKS.
type: string
dnsClusterIP:
- description: DNSClusterIP overrides the IP address to use for DNS queries
- within the cluster.
+ description: ' DNSClusterIP overrides the IP address to use for DNS
+ queries within the cluster.'
type: string
dockerConfigJson:
- description: DockerConfigJson is used for the contents of the /etc/docker/daemon.json
- file. Useful if you want a custom config differing from the default
- one in the AMI. This is expected to be a json string.
+ description: |-
+ DockerConfigJson is used for the contents of the /etc/docker/daemon.json file. Useful if you want a custom config differing from the default one in the AMI.
+ This is expected to be a json string.
type: string
kubeletExtraArgs:
additionalProperties:
@@ -95,8 +100,8 @@ spec:
to use.
properties:
accountNumber:
- description: AccountNumber is the AWS account number to pull the
- pause container from.
+ description: ' AccountNumber is the AWS account number to pull the
+ pause container from.'
type: string
version:
description: Version is the tag of the pause container to use.
@@ -106,8 +111,9 @@ spec:
- version
type: object
serviceIPV6Cidr:
- description: ServiceIPV6Cidr is the ipv6 cidr range of the cluster.
- If this is specified then the ip family will be set to ipv6.
+ description: |-
+ ServiceIPV6Cidr is the ipv6 cidr range of the cluster. If this is specified then
+ the ip family will be set to ipv6.
type: string
useMaxPods:
description: UseMaxPods sets --max-pods for the kubelet when true.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigtemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigtemplates.yaml
index 660277b63..38bbf3f02 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigtemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta1/eksconfigtemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -83,14 +88,13 @@ spec:
to use when bootstrapping EKS.
type: string
dnsClusterIP:
- description: DNSClusterIP overrides the IP address to use for
- DNS queries within the cluster.
+ description: ' DNSClusterIP overrides the IP address to use
+ for DNS queries within the cluster.'
type: string
dockerConfigJson:
- description: DockerConfigJson is used for the contents of the
- /etc/docker/daemon.json file. Useful if you want a custom
- config differing from the default one in the AMI. This is
- expected to be a json string.
+ description: |-
+ DockerConfigJson is used for the contents of the /etc/docker/daemon.json file. Useful if you want a custom config differing from the default one in the AMI.
+ This is expected to be a json string.
type: string
kubeletExtraArgs:
additionalProperties:
@@ -103,8 +107,8 @@ spec:
container to use.
properties:
accountNumber:
- description: AccountNumber is the AWS account number to
- pull the pause container from.
+ description: ' AccountNumber is the AWS account number to
+ pull the pause container from.'
type: string
version:
description: Version is the tag of the pause container to
@@ -115,8 +119,9 @@ spec:
- version
type: object
serviceIPV6Cidr:
- description: ServiceIPV6Cidr is the ipv6 cidr range of the cluster.
- If this is specified then the ip family will be set to ipv6.
+ description: |-
+ ServiceIPV6Cidr is the ipv6 cidr range of the cluster. If this is specified then
+ the ip family will be set to ipv6.
type: string
useMaxPods:
description: UseMaxPods sets --max-pods for the kubelet when
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
index 55d010c5e..b2b7a8651 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -105,9 +110,9 @@ spec:
If set to None, no label is used.
type: string
overwrite:
- description: Overwrite defines whether or not to overwrite
- any existing filesystem. If true, any pre-existing file
- system will be destroyed. Use with Caution.
+ description: |-
+ Overwrite defines whether or not to overwrite any existing filesystem.
+ If true, any pre-existing file system will be destroyed. Use with Caution.
type: boolean
partition:
description: 'Partition specifies the partition to use. The
@@ -130,21 +135,21 @@ spec:
description: Device is the name of the device.
type: string
layout:
- description: Layout specifies the device layout. If it is
- true, a single partition will be created for the entire
- device. When layout is false, it means don't partition or
- ignore existing partitioning.
+ description: |-
+ Layout specifies the device layout.
+ If it is true, a single partition will be created for the entire device.
+ When layout is false, it means don't partition or ignore existing partitioning.
type: boolean
overwrite:
- description: Overwrite describes whether to skip checks and
- create the partition if a partition or filesystem is found
- on the device. Use with caution. Default is 'false'.
+ description: |-
+ Overwrite describes whether to skip checks and create the partition if a partition or filesystem is found on the device.
+ Use with caution. Default is 'false'.
type: boolean
tableType:
- description: 'TableType specifies the tupe of partition table.
- The following are supported: ''mbr'': default and setups
- a MS-DOS partition table ''gpt'': setups a GPT partition
- table'
+ description: |-
+ TableType specifies the tupe of partition table. The following are supported:
+ 'mbr': default and setups a MS-DOS partition table
+ 'gpt': setups a GPT partition table
type: string
required:
- device
@@ -153,13 +158,13 @@ spec:
type: array
type: object
dnsClusterIP:
- description: DNSClusterIP overrides the IP address to use for DNS queries
- within the cluster.
+ description: ' DNSClusterIP overrides the IP address to use for DNS
+ queries within the cluster.'
type: string
dockerConfigJson:
- description: DockerConfigJson is used for the contents of the /etc/docker/daemon.json
- file. Useful if you want a custom config differing from the default
- one in the AMI. This is expected to be a json string.
+ description: |-
+ DockerConfigJson is used for the contents of the /etc/docker/daemon.json file. Useful if you want a custom config differing from the default one in the AMI.
+ This is expected to be a json string.
type: string
files:
description: Files specifies extra files to be passed to user_data upon
@@ -251,8 +256,8 @@ spec:
to use.
properties:
accountNumber:
- description: AccountNumber is the AWS account number to pull the
- pause container from.
+ description: ' AccountNumber is the AWS account number to pull the
+ pause container from.'
type: string
version:
description: Version is the tag of the pause container to use.
@@ -274,8 +279,9 @@ spec:
type: string
type: array
serviceIPV6Cidr:
- description: ServiceIPV6Cidr is the ipv6 cidr range of the cluster.
- If this is specified then the ip family will be set to ipv6.
+ description: |-
+ ServiceIPV6Cidr is the ipv6 cidr range of the cluster. If this is specified then
+ the ip family will be set to ipv6.
type: string
useMaxPods:
description: UseMaxPods sets --max-pods for the kubelet when true.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
index a7dad5be3..7ee2dfad8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -115,9 +120,9 @@ spec:
to be used. If set to None, no label is used.
type: string
overwrite:
- description: Overwrite defines whether or not to overwrite
- any existing filesystem. If true, any pre-existing
- file system will be destroyed. Use with Caution.
+ description: |-
+ Overwrite defines whether or not to overwrite any existing filesystem.
+ If true, any pre-existing file system will be destroyed. Use with Caution.
type: boolean
partition:
description: 'Partition specifies the partition to
@@ -142,22 +147,21 @@ spec:
description: Device is the name of the device.
type: string
layout:
- description: Layout specifies the device layout. If
- it is true, a single partition will be created for
- the entire device. When layout is false, it means
- don't partition or ignore existing partitioning.
+ description: |-
+ Layout specifies the device layout.
+ If it is true, a single partition will be created for the entire device.
+ When layout is false, it means don't partition or ignore existing partitioning.
type: boolean
overwrite:
- description: Overwrite describes whether to skip checks
- and create the partition if a partition or filesystem
- is found on the device. Use with caution. Default
- is 'false'.
+ description: |-
+ Overwrite describes whether to skip checks and create the partition if a partition or filesystem is found on the device.
+ Use with caution. Default is 'false'.
type: boolean
tableType:
- description: 'TableType specifies the tupe of partition
- table. The following are supported: ''mbr'': default
- and setups a MS-DOS partition table ''gpt'': setups
- a GPT partition table'
+ description: |-
+ TableType specifies the tupe of partition table. The following are supported:
+ 'mbr': default and setups a MS-DOS partition table
+ 'gpt': setups a GPT partition table
type: string
required:
- device
@@ -166,14 +170,13 @@ spec:
type: array
type: object
dnsClusterIP:
- description: DNSClusterIP overrides the IP address to use for
- DNS queries within the cluster.
+ description: ' DNSClusterIP overrides the IP address to use
+ for DNS queries within the cluster.'
type: string
dockerConfigJson:
- description: DockerConfigJson is used for the contents of the
- /etc/docker/daemon.json file. Useful if you want a custom
- config differing from the default one in the AMI. This is
- expected to be a json string.
+ description: |-
+ DockerConfigJson is used for the contents of the /etc/docker/daemon.json file. Useful if you want a custom config differing from the default one in the AMI.
+ This is expected to be a json string.
type: string
files:
description: Files specifies extra files to be passed to user_data
@@ -268,8 +271,8 @@ spec:
container to use.
properties:
accountNumber:
- description: AccountNumber is the AWS account number to
- pull the pause container from.
+ description: ' AccountNumber is the AWS account number to
+ pull the pause container from.'
type: string
version:
description: Version is the tag of the pause container to
@@ -292,8 +295,9 @@ spec:
type: string
type: array
serviceIPV6Cidr:
- description: ServiceIPV6Cidr is the ipv6 cidr range of the cluster.
- If this is specified then the ip family will be set to ipv6.
+ description: |-
+ ServiceIPV6Cidr is the ipv6 cidr range of the cluster. If this is specified then
+ the ip family will be set to ipv6.
type: string
useMaxPods:
description: UseMaxPods sets --max-pods for the kubelet when
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml
new file mode 100644
index 000000000..49d0ab6d2
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml
@@ -0,0 +1,79 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: catalog.kubedb.com
+ k8s.io/kind: ClickHouseVersion
+ k8s.io/resource: clickhouseversions
+ k8s.io/version: v1alpha1
+ name: catalog.kubedb.com-v1alpha1-clickhouseversions
+spec:
+ resource:
+ group: catalog.kubedb.com
+ kind: ClickHouseVersion
+ name: clickhouseversions
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ db:
+ properties:
+ image:
+ type: string
+ required:
+ - image
+ type: object
+ initContainer:
+ properties:
+ image:
+ type: string
+ required:
+ - image
+ type: object
+ securityContext:
+ properties:
+ runAsUser:
+ format: int64
+ type: integer
+ type: object
+ version:
+ type: string
+ required:
+ - db
+ - initContainer
+ - version
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml
new file mode 100644
index 000000000..9fb7b0df6
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml
@@ -0,0 +1,97 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: catalog.kubedb.com
+ k8s.io/kind: SchemaRegistryVersion
+ k8s.io/resource: schemaregistryversions
+ k8s.io/version: v1alpha1
+ name: catalog.kubedb.com-v1alpha1-schemaregistryversions
+spec:
+ resource:
+ group: catalog.kubedb.com
+ kind: SchemaRegistryVersion
+ name: schemaregistryversions
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ deprecated:
+ type: boolean
+ distribution:
+ enum:
+ - Apicurio
+ - Aiven
+ type: string
+ inMemory:
+ properties:
+ image:
+ type: string
+ required:
+ - image
+ type: object
+ registry:
+ properties:
+ image:
+ type: string
+ required:
+ - image
+ type: object
+ securityContext:
+ properties:
+ runAsUser:
+ format: int64
+ type: integer
+ type: object
+ updateConstraints:
+ properties:
+ allowlist:
+ items:
+ type: string
+ type: array
+ denylist:
+ items:
+ type: string
+ type: array
+ type: object
+ version:
+ type: string
+ required:
+ - distribution
+ - registry
+ - version
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificaterequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificaterequests.yaml
index f19ec0f6a..ed14dbbb3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificaterequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificaterequests.yaml
@@ -25,22 +25,33 @@ spec:
version: v1
validation:
openAPIV3Schema:
- description: "A CertificateRequest is used to request a signed certificate from
- one of the configured issuers. \n All fields within the CertificateRequest's
- `spec` are immutable after creation. A CertificateRequest will either succeed
- or fail, as denoted by its `Ready` status condition and its `status.failureTime`
- field. \n A CertificateRequest is a one-shot resource, meaning it represents
- a single point in time request for a certificate and cannot be re-used."
+ description: |-
+ A CertificateRequest is used to request a signed certificate from one of the
+ configured issuers.
+
+
+ All fields within the CertificateRequest's `spec` are immutable after creation.
+ A CertificateRequest will either succeed or fail, as denoted by its `Ready` status
+ condition and its `status.failureTime` field.
+
+
+ A CertificateRequest is a one-shot resource, meaning it represents a single
+ point in time request for a certificate and cannot be re-used.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -76,45 +87,55 @@ spec:
type: object
type: object
spec:
- description: Specification of the desired state of the CertificateRequest
- resource. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
+ description: |-
+ Specification of the desired state of the CertificateRequest resource.
+ https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
duration:
- description: Requested 'duration' (i.e. lifetime) of the Certificate.
- Note that the issuer may choose to ignore the requested duration,
- just like any other requested attribute.
+ description: |-
+ Requested 'duration' (i.e. lifetime) of the Certificate. Note that the
+ issuer may choose to ignore the requested duration, just like any other
+ requested attribute.
type: string
extra:
additionalProperties:
items:
type: string
type: array
- description: Extra contains extra attributes of the user that created
- the CertificateRequest. Populated by the cert-manager webhook on creation
- and immutable.
+ description: |-
+ Extra contains extra attributes of the user that created the CertificateRequest.
+ Populated by the cert-manager webhook on creation and immutable.
type: object
groups:
- description: Groups contains group membership of the user that created
- the CertificateRequest. Populated by the cert-manager webhook on creation
- and immutable.
+ description: |-
+ Groups contains group membership of the user that created the CertificateRequest.
+ Populated by the cert-manager webhook on creation and immutable.
items:
type: string
type: array
x-kubernetes-list-type: atomic
isCA:
- description: "Requested basic constraints isCA value. Note that the
- issuer may choose to ignore the requested isCA value, just like any
- other requested attribute. \n NOTE: If the CSR in the `Request` field
- has a BasicConstraints extension, it must have the same isCA value
- as specified here. \n If true, this will automatically add the `cert
- sign` usage to the list of requested `usages`."
+ description: |-
+ Requested basic constraints isCA value. Note that the issuer may choose
+ to ignore the requested isCA value, just like any other requested attribute.
+
+
+ NOTE: If the CSR in the `Request` field has a BasicConstraints extension,
+ it must have the same isCA value as specified here.
+
+
+ If true, this will automatically add the `cert sign` usage to the list
+ of requested `usages`.
type: boolean
issuerRef:
- description: "Reference to the issuer responsible for issuing the certificate.
+ description: |-
+ Reference to the issuer responsible for issuing the certificate.
If the issuer is namespace-scoped, it must be in the same namespace
as the Certificate. If the issuer is cluster-scoped, it can be used
- from any namespace. \n The `name` field of the reference must always
- be specified."
+ from any namespace.
+
+
+ The `name` field of the reference must always be specified.
properties:
group:
description: Group of the resource being referred to.
@@ -129,35 +150,68 @@ spec:
- name
type: object
request:
- description: "The PEM-encoded X.509 certificate signing request to be
- submitted to the issuer for signing. \n If the CSR has a BasicConstraints
- extension, its isCA attribute must match the `isCA` value of this
- CertificateRequest. If the CSR has a KeyUsage extension, its key usages
- must match the key usages in the `usages` field of this CertificateRequest.
- If the CSR has a ExtKeyUsage extension, its extended key usages must
- match the extended key usages in the `usages` field of this CertificateRequest."
+ description: |-
+ The PEM-encoded X.509 certificate signing request to be submitted to the
+ issuer for signing.
+
+
+ If the CSR has a BasicConstraints extension, its isCA attribute must
+ match the `isCA` value of this CertificateRequest.
+ If the CSR has a KeyUsage extension, its key usages must match the
+ key usages in the `usages` field of this CertificateRequest.
+ If the CSR has a ExtKeyUsage extension, its extended key usages
+ must match the extended key usages in the `usages` field of this
+ CertificateRequest.
format: byte
type: string
uid:
- description: UID contains the uid of the user that created the CertificateRequest.
+ description: |-
+ UID contains the uid of the user that created the CertificateRequest.
Populated by the cert-manager webhook on creation and immutable.
type: string
usages:
- description: "Requested key usages and extended key usages. \n NOTE:
- If the CSR in the `Request` field has uses the KeyUsage or ExtKeyUsage
- extension, these extensions must have the same values as specified
- here without any additional values. \n If unset, defaults to `digital
- signature` and `key encipherment`."
+ description: |-
+ Requested key usages and extended key usages.
+
+
+ NOTE: If the CSR in the `Request` field has uses the KeyUsage or
+ ExtKeyUsage extension, these extensions must have the same values
+ as specified here without any additional values.
+
+
+ If unset, defaults to `digital signature` and `key encipherment`.
items:
- description: "KeyUsage specifies valid usage contexts for keys. See:
- https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12
- \n Valid KeyUsage values are as follows: \"signing\", \"digital
- signature\", \"content commitment\", \"key encipherment\", \"key
- agreement\", \"data encipherment\", \"cert sign\", \"crl sign\",
- \"encipher only\", \"decipher only\", \"any\", \"server auth\",
- \"client auth\", \"code signing\", \"email protection\", \"s/mime\",
- \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\", \"timestamping\",
- \"ocsp signing\", \"microsoft sgc\", \"netscape sgc\""
+ description: |-
+ KeyUsage specifies valid usage contexts for keys.
+ See:
+ https://tools.ietf.org/html/rfc5280#section-4.2.1.3
+ https://tools.ietf.org/html/rfc5280#section-4.2.1.12
+
+
+ Valid KeyUsage values are as follows:
+ "signing",
+ "digital signature",
+ "content commitment",
+ "key encipherment",
+ "key agreement",
+ "data encipherment",
+ "cert sign",
+ "crl sign",
+ "encipher only",
+ "decipher only",
+ "any",
+ "server auth",
+ "client auth",
+ "code signing",
+ "email protection",
+ "s/mime",
+ "ipsec end system",
+ "ipsec tunnel",
+ "ipsec user",
+ "timestamping",
+ "ocsp signing",
+ "microsoft sgc",
+ "netscape sgc"
enum:
- signing
- digital signature
@@ -185,9 +239,9 @@ spec:
type: string
type: array
username:
- description: Username contains the name of the user that created the
- CertificateRequest. Populated by the cert-manager webhook on creation
- and immutable.
+ description: |-
+ Username contains the name of the user that created the CertificateRequest.
+ Populated by the cert-manager webhook on creation and immutable.
type: string
required:
- issuerRef
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificates.yaml
index 9776b0f46..bbb85e7cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/certificates.yaml
@@ -44,20 +44,27 @@ spec:
version: v1
validation:
openAPIV3Schema:
- description: "A Certificate resource should be created to ensure an up to date
- and signed X.509 certificate is stored in the Kubernetes Secret resource named
- in `spec.secretName`. \n The stored certificate will be renewed before it
- expires (as configured by `spec.renewBefore`)."
+ description: |-
+ A Certificate resource should be created to ensure an up to date and signed
+ X.509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`.
+
+
+ The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`).
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -93,23 +100,29 @@ spec:
type: object
type: object
spec:
- description: Specification of the desired state of the Certificate resource.
+ description: |-
+ Specification of the desired state of the Certificate resource.
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
additionalOutputFormats:
- description: "Defines extra output formats of the private key and signed
- certificate chain to be written to this Certificate's target Secret.
- \n This is an Alpha Feature and is only enabled with the `--feature-gates=AdditionalCertificateOutputFormats=true`
- option set on both the controller and webhook components."
+ description: |-
+ Defines extra output formats of the private key and signed certificate chain
+ to be written to this Certificate's target Secret.
+
+
+ This is a Beta Feature enabled by default. It can be disabled with the
+ `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both
+ the controller and webhook components.
items:
- description: CertificateAdditionalOutputFormat defines an additional
- output format of a Certificate resource. These contain supplementary
- data formats of the signed certificate chain and paired private
- key.
+ description: |-
+ CertificateAdditionalOutputFormat defines an additional output format of a
+ Certificate resource. These contain supplementary data formats of the signed
+ certificate chain and paired private key.
properties:
type:
- description: Type is the name of the format type that should be
- written to the Certificate's target Secret.
+ description: |-
+ Type is the name of the format type that should be written to the
+ Certificate's target Secret.
enum:
- DER
- CombinedPEM
@@ -119,12 +132,15 @@ spec:
type: object
type: array
commonName:
- description: "Requested common name X509 certificate subject attribute.
+ description: |-
+ Requested common name X509 certificate subject attribute.
More info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.6
- NOTE: TLS clients will ignore this value when any subject alternative
- name is set (see https://tools.ietf.org/html/rfc6125#section-6.4.4).
- \n Should have a length of 64 characters or fewer to avoid generating
- invalid CSRs. Cannot be set if the `literalSubject` field is set."
+ NOTE: TLS clients will ignore this value when any subject alternative name is
+ set (see https://tools.ietf.org/html/rfc6125#section-6.4.4).
+
+
+ Should have a length of 64 characters or fewer to avoid generating invalid CSRs.
+ Cannot be set if the `literalSubject` field is set.
type: string
dnsNames:
description: Requested DNS subject alternative names.
@@ -132,11 +148,15 @@ spec:
type: string
type: array
duration:
- description: "Requested 'duration' (i.e. lifetime) of the Certificate.
- Note that the issuer may choose to ignore the requested duration,
- just like any other requested attribute. \n If unset, this defaults
- to 90 days. Minimum accepted duration is 1 hour. Value must be in
- units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration."
+ description: |-
+ Requested 'duration' (i.e. lifetime) of the Certificate. Note that the
+ issuer may choose to ignore the requested duration, just like any other
+ requested attribute.
+
+
+ If unset, this defaults to 90 days.
+ Minimum accepted duration is 1 hour.
+ Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration.
type: string
emailAddresses:
description: Requested email subject alternative names.
@@ -144,10 +164,12 @@ spec:
type: string
type: array
encodeUsagesInRequest:
- description: "Whether the KeyUsage and ExtKeyUsage extensions should
- be set in the encoded CSR. \n This option defaults to true, and should
- only be disabled if the target issuer does not support CSRs with these
- X509 KeyUsage/ ExtKeyUsage extensions."
+ description: |-
+ Whether the KeyUsage and ExtKeyUsage extensions should be set in the encoded CSR.
+
+
+ This option defaults to true, and should only be disabled if the target
+ issuer does not support CSRs with these X509 KeyUsage/ ExtKeyUsage extensions.
type: boolean
ipAddresses:
description: Requested IP address subject alternative names.
@@ -155,19 +177,25 @@ spec:
type: string
type: array
isCA:
- description: "Requested basic constraints isCA value. The isCA value
- is used to set the `isCA` field on the created CertificateRequest
- resources. Note that the issuer may choose to ignore the requested
- isCA value, just like any other requested attribute. \n If true, this
- will automatically add the `cert sign` usage to the list of requested
- `usages`."
+ description: |-
+ Requested basic constraints isCA value.
+ The isCA value is used to set the `isCA` field on the created CertificateRequest
+ resources. Note that the issuer may choose to ignore the requested isCA value, just
+ like any other requested attribute.
+
+
+ If true, this will automatically add the `cert sign` usage to the list
+ of requested `usages`.
type: boolean
issuerRef:
- description: "Reference to the issuer responsible for issuing the certificate.
+ description: |-
+ Reference to the issuer responsible for issuing the certificate.
If the issuer is namespace-scoped, it must be in the same namespace
as the Certificate. If the issuer is cluster-scoped, it can be used
- from any namespace. \n The `name` field of the reference must always
- be specified."
+ from any namespace.
+
+
+ The `name` field of the reference must always be specified.
properties:
group:
description: Group of the resource being referred to.
@@ -186,32 +214,42 @@ spec:
Certificate's Secret.
properties:
jks:
- description: JKS configures options for storing a JKS keystore in
- the `spec.secretName` Secret resource.
+ description: |-
+ JKS configures options for storing a JKS keystore in the
+ `spec.secretName` Secret resource.
properties:
+ alias:
+ description: |-
+ Alias specifies the alias of the key in the keystore, required by the JKS format.
+ If not provided, the default alias `certificate` will be used.
+ type: string
create:
- description: Create enables JKS keystore creation for the Certificate.
- If true, a file named `keystore.jks` will be created in the
- target Secret resource, encrypted using the password stored
- in `passwordSecretRef`. The keystore file will be updated
- immediately. If the issuer provided a CA certificate, a file
- named `truststore.jks` will also be created in the target
- Secret resource, encrypted using the password stored in `passwordSecretRef`
+ description: |-
+ Create enables JKS keystore creation for the Certificate.
+ If true, a file named `keystore.jks` will be created in the target
+ Secret resource, encrypted using the password stored in
+ `passwordSecretRef`.
+ The keystore file will be updated immediately.
+ If the issuer provided a CA certificate, a file named `truststore.jks`
+ will also be created in the target Secret resource, encrypted using the
+ password stored in `passwordSecretRef`
containing the issuing Certificate Authority
type: boolean
passwordSecretRef:
- description: PasswordSecretRef is a reference to a key in a
- Secret resource containing the password used to encrypt the
- JKS keystore.
+ description: |-
+ PasswordSecretRef is a reference to a key in a Secret resource
+ containing the password used to encrypt the JKS keystore.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -221,49 +259,53 @@ spec:
- passwordSecretRef
type: object
pkcs12:
- description: PKCS12 configures options for storing a PKCS12 keystore
- in the `spec.secretName` Secret resource.
+ description: |-
+ PKCS12 configures options for storing a PKCS12 keystore in the
+ `spec.secretName` Secret resource.
properties:
create:
- description: Create enables PKCS12 keystore creation for the
- Certificate. If true, a file named `keystore.p12` will be
- created in the target Secret resource, encrypted using the
- password stored in `passwordSecretRef`. The keystore file
- will be updated immediately. If the issuer provided a CA certificate,
- a file named `truststore.p12` will also be created in the
- target Secret resource, encrypted using the password stored
- in `passwordSecretRef` containing the issuing Certificate
+ description: |-
+ Create enables PKCS12 keystore creation for the Certificate.
+ If true, a file named `keystore.p12` will be created in the target
+ Secret resource, encrypted using the password stored in
+ `passwordSecretRef`.
+ The keystore file will be updated immediately.
+ If the issuer provided a CA certificate, a file named `truststore.p12` will
+ also be created in the target Secret resource, encrypted using the
+ password stored in `passwordSecretRef` containing the issuing Certificate
Authority
type: boolean
passwordSecretRef:
- description: PasswordSecretRef is a reference to a key in a
- Secret resource containing the password used to encrypt the
- PKCS12 keystore.
+ description: |-
+ PasswordSecretRef is a reference to a key in a Secret resource
+ containing the password used to encrypt the PKCS12 keystore.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
profile:
- description: "Profile specifies the key and certificate encryption
- algorithms and the HMAC algorithm used to create the PKCS12
- keystore. Default value is `LegacyRC2` for backward compatibility.
- \n If provided, allowed values are: `LegacyRC2`: Deprecated.
- Not supported by default in OpenSSL 3 or Java 20. `LegacyDES`:
- Less secure algorithm. Use this option for maximal compatibility.
- `Modern2023`: Secure algorithm. Use this option in case you
- have to always use secure algorithms (eg. because of company
- policy). Please note that the security of the algorithm is
- not that important in reality, because the unencrypted certificate
- and private key are also stored in the Secret."
+ description: |-
+ Profile specifies the key and certificate encryption algorithms and the HMAC algorithm
+ used to create the PKCS12 keystore. Default value is `LegacyRC2` for backward compatibility.
+
+
+ If provided, allowed values are:
+ `LegacyRC2`: Deprecated. Not supported by default in OpenSSL 3 or Java 20.
+ `LegacyDES`: Less secure algorithm. Use this option for maximal compatibility.
+ `Modern2023`: Secure algorithm. Use this option in case you have to always use secure algorithms
+ (eg. because of company policy). Please note that the security of the algorithm is not that important
+ in reality, because the unencrypted certificate and private key are also stored in the Secret.
enum:
- LegacyRC2
- LegacyDES
@@ -275,30 +317,37 @@ spec:
type: object
type: object
literalSubject:
- description: "Requested X.509 certificate subject, represented using
- the LDAP \"String Representation of a Distinguished Name\" [1]. Important:
- the LDAP string format also specifies the order of the attributes
+ description: |-
+ Requested X.509 certificate subject, represented using the LDAP "String
+ Representation of a Distinguished Name" [1].
+ Important: the LDAP string format also specifies the order of the attributes
in the subject, this is important when issuing certs for LDAP authentication.
- Example: `CN=foo,DC=corp,DC=example,DC=com` More info [1]: https://datatracker.ietf.org/doc/html/rfc4514
+ Example: `CN=foo,DC=corp,DC=example,DC=com`
+ More info [1]: https://datatracker.ietf.org/doc/html/rfc4514
More info: https://github.com/cert-manager/cert-manager/issues/3203
More info: https://github.com/cert-manager/cert-manager/issues/4424
- \n Cannot be set if the `subject` or `commonName` field is set. This
- is an Alpha Feature and is only enabled with the `--feature-gates=LiteralCertificateSubject=true`
- option set on both the controller and webhook components."
+
+
+ Cannot be set if the `subject` or `commonName` field is set.
type: string
nameConstraints:
- description: "x.509 certificate NameConstraint extension which MUST
- NOT be used in a non-CA certificate. More Info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.10
- \n This is an Alpha Feature and is only enabled with the `--feature-gates=NameConstraints=true`
- option set on both the controller and webhook components."
+ description: |-
+ x.509 certificate NameConstraint extension which MUST NOT be used in a non-CA certificate.
+ More Info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.10
+
+
+ This is an Alpha Feature and is only enabled with the
+ `--feature-gates=NameConstraints=true` option set on both
+ the controller and webhook components.
properties:
critical:
description: if true then the name constraints are marked critical.
type: boolean
excluded:
- description: Excluded contains the constraints which must be disallowed.
- Any name matching a restriction in the excluded field is invalid
- regardless of information appearing in the permitted
+ description: |-
+ Excluded contains the constraints which must be disallowed. Any name matching a
+ restriction in the excluded field is invalid regardless
+ of information appearing in the permitted
properties:
dnsDomains:
description: DNSDomains is a list of DNS domains that are permitted
@@ -313,8 +362,9 @@ spec:
type: string
type: array
ipRanges:
- description: IPRanges is a list of IP Ranges that are permitted
- or excluded. This should be a valid CIDR notation.
+ description: |-
+ IPRanges is a list of IP Ranges that are permitted or excluded.
+ This should be a valid CIDR notation.
items:
type: string
type: array
@@ -342,8 +392,9 @@ spec:
type: string
type: array
ipRanges:
- description: IPRanges is a list of IP Ranges that are permitted
- or excluded. This should be a valid CIDR notation.
+ description: |-
+ IPRanges is a list of IP Ranges that are permitted or excluded.
+ This should be a valid CIDR notation.
items:
type: string
type: array
@@ -356,115 +407,136 @@ spec:
type: object
type: object
otherNames:
- description: '`otherNames` is an escape hatch for SAN that allows any
- type. We currently restrict the support to string like otherNames,
- cf RFC 5280 p 37 Any UTF8 String valued otherName can be passed with
- by setting the keys oid: x.x.x.x and UTF8Value: somevalue for `otherName`.
+ description: |-
+ `otherNames` is an escape hatch for SAN that allows any type. We currently restrict the support to string like otherNames, cf RFC 5280 p 37
+ Any UTF8 String valued otherName can be passed with by setting the keys oid: x.x.x.x and UTF8Value: somevalue for `otherName`.
Most commonly this would be UPN set with oid: 1.3.6.1.4.1.311.20.2.3
- You should ensure that any OID passed is valid for the UTF8String
- type as we do not explicitly validate this.'
+ You should ensure that any OID passed is valid for the UTF8String type as we do not explicitly validate this.
items:
properties:
oid:
- description: OID is the object identifier for the otherName SAN.
- The object identifier must be expressed as a dotted string,
- for example, "1.2.840.113556.1.4.221".
+ description: |-
+ OID is the object identifier for the otherName SAN.
+ The object identifier must be expressed as a dotted string, for
+ example, "1.2.840.113556.1.4.221".
type: string
utf8Value:
- description: utf8Value is the string value of the otherName SAN.
- The utf8Value accepts any valid UTF8 string to set as value
- for the otherName SAN.
+ description: |-
+ utf8Value is the string value of the otherName SAN.
+ The utf8Value accepts any valid UTF8 string to set as value for the otherName SAN.
type: string
type: object
type: array
privateKey:
- description: Private key options. These include the key algorithm and
- size, the used encoding and the rotation policy.
+ description: |-
+ Private key options. These include the key algorithm and size, the used
+ encoding and the rotation policy.
properties:
algorithm:
- description: "Algorithm is the private key algorithm of the corresponding
- private key for this certificate. \n If provided, allowed values
- are either `RSA`, `ECDSA` or `Ed25519`. If `algorithm` is specified
- and `size` is not provided, key size of 2048 will be used for
- `RSA` key algorithm and key size of 256 will be used for `ECDSA`
- key algorithm. key size is ignored when using the `Ed25519` key
- algorithm."
+ description: |-
+ Algorithm is the private key algorithm of the corresponding private key
+ for this certificate.
+
+
+ If provided, allowed values are either `RSA`, `ECDSA` or `Ed25519`.
+ If `algorithm` is specified and `size` is not provided,
+ key size of 2048 will be used for `RSA` key algorithm and
+ key size of 256 will be used for `ECDSA` key algorithm.
+ key size is ignored when using the `Ed25519` key algorithm.
enum:
- RSA
- ECDSA
- Ed25519
type: string
encoding:
- description: "The private key cryptography standards (PKCS) encoding
- for this certificate's private key to be encoded in. \n If provided,
- allowed values are `PKCS1` and `PKCS8` standing for PKCS#1 and
- PKCS#8, respectively. Defaults to `PKCS1` if not specified."
+ description: |-
+ The private key cryptography standards (PKCS) encoding for this
+ certificate's private key to be encoded in.
+
+
+ If provided, allowed values are `PKCS1` and `PKCS8` standing for PKCS#1
+ and PKCS#8, respectively.
+ Defaults to `PKCS1` if not specified.
enum:
- PKCS1
- PKCS8
type: string
rotationPolicy:
- description: "RotationPolicy controls how private keys should be
- regenerated when a re-issuance is being processed. \n If set to
- `Never`, a private key will only be generated if one does not
- already exist in the target `spec.secretName`. If one does exists
- but it does not have the correct algorithm or size, a warning
- will be raised to await user intervention. If set to `Always`,
- a private key matching the specified requirements will be generated
- whenever a re-issuance occurs. Default is `Never` for backward
- compatibility."
+ description: |-
+ RotationPolicy controls how private keys should be regenerated when a
+ re-issuance is being processed.
+
+
+ If set to `Never`, a private key will only be generated if one does not
+ already exist in the target `spec.secretName`. If one does exists but it
+ does not have the correct algorithm or size, a warning will be raised
+ to await user intervention.
+ If set to `Always`, a private key matching the specified requirements
+ will be generated whenever a re-issuance occurs.
+ Default is `Never` for backward compatibility.
enum:
- Never
- Always
type: string
size:
- description: "Size is the key bit size of the corresponding private
- key for this certificate. \n If `algorithm` is set to `RSA`, valid
- values are `2048`, `4096` or `8192`, and will default to `2048`
- if not specified. If `algorithm` is set to `ECDSA`, valid values
- are `256`, `384` or `521`, and will default to `256` if not specified.
- If `algorithm` is set to `Ed25519`, Size is ignored. No other
- values are allowed."
+ description: |-
+ Size is the key bit size of the corresponding private key for this certificate.
+
+
+ If `algorithm` is set to `RSA`, valid values are `2048`, `4096` or `8192`,
+ and will default to `2048` if not specified.
+ If `algorithm` is set to `ECDSA`, valid values are `256`, `384` or `521`,
+ and will default to `256` if not specified.
+ If `algorithm` is set to `Ed25519`, Size is ignored.
+ No other values are allowed.
type: integer
type: object
renewBefore:
- description: "How long before the currently issued certificate's expiry
- cert-manager should renew the certificate. For example, if a certificate
- is valid for 60 minutes, and `renewBefore=10m`, cert-manager will
- begin to attempt to renew the certificate 50 minutes after it was
- issued (i.e. when there are 10 minutes remaining until the certificate
- is no longer valid). \n NOTE: The actual lifetime of the issued certificate
- is used to determine the renewal time. If an issuer returns a certificate
- with a different lifetime than the one requested, cert-manager will
- use the lifetime of the issued certificate. \n If unset, this defaults
- to 1/3 of the issued certificate's lifetime. Minimum accepted value
- is 5 minutes. Value must be in units accepted by Go time.ParseDuration
- https://golang.org/pkg/time/#ParseDuration."
+ description: |-
+ How long before the currently issued certificate's expiry cert-manager should
+ renew the certificate. For example, if a certificate is valid for 60 minutes,
+ and `renewBefore=10m`, cert-manager will begin to attempt to renew the certificate
+ 50 minutes after it was issued (i.e. when there are 10 minutes remaining until
+ the certificate is no longer valid).
+
+
+ NOTE: The actual lifetime of the issued certificate is used to determine the
+ renewal time. If an issuer returns a certificate with a different lifetime than
+ the one requested, cert-manager will use the lifetime of the issued certificate.
+
+
+ If unset, this defaults to 1/3 of the issued certificate's lifetime.
+ Minimum accepted value is 5 minutes.
+ Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration.
type: string
revisionHistoryLimit:
- description: "The maximum number of CertificateRequest revisions that
- are maintained in the Certificate's history. Each revision represents
- a single `CertificateRequest` created by this Certificate, either
- when it was created, renewed, or Spec was changed. Revisions will
- be removed by oldest first if the number of revisions exceeds this
- number. \n If set, revisionHistoryLimit must be a value of `1` or
- greater. If unset (`nil`), revisions will not be garbage collected.
- Default value is `nil`."
+ description: |-
+ The maximum number of CertificateRequest revisions that are maintained in
+ the Certificate's history. Each revision represents a single `CertificateRequest`
+ created by this Certificate, either when it was created, renewed, or Spec
+ was changed. Revisions will be removed by oldest first if the number of
+ revisions exceeds this number.
+
+
+ If set, revisionHistoryLimit must be a value of `1` or greater.
+ If unset (`nil`), revisions will not be garbage collected.
+ Default value is `nil`.
format: int32
type: integer
secretName:
- description: Name of the Secret resource that will be automatically
- created and managed by this Certificate resource. It will be populated
- with a private key and certificate, signed by the denoted issuer.
- The Secret resource lives in the same namespace as the Certificate
- resource.
+ description: |-
+ Name of the Secret resource that will be automatically created and
+ managed by this Certificate resource. It will be populated with a
+ private key and certificate, signed by the denoted issuer. The Secret
+ resource lives in the same namespace as the Certificate resource.
type: string
secretTemplate:
- description: Defines annotations and labels to be copied to the Certificate's
- Secret. Labels and annotations on the Secret will be changed as they
- appear on the SecretTemplate when added or removed. SecretTemplate
- annotations are added in conjunction with, and cannot overwrite, the
- base set of annotations cert-manager sets on the Certificate's Secret.
+ description: |-
+ Defines annotations and labels to be copied to the Certificate's Secret.
+ Labels and annotations on the Secret will be changed as they appear on the
+ SecretTemplate when added or removed. SecretTemplate annotations are added
+ in conjunction with, and cannot overwrite, the base set of annotations
+ cert-manager sets on the Certificate's Secret.
properties:
annotations:
additionalProperties:
@@ -480,10 +552,13 @@ spec:
type: object
type: object
subject:
- description: "Requested set of X509 certificate subject attributes.
+ description: |-
+ Requested set of X509 certificate subject attributes.
More info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.6
- \n The common name attribute is specified separately in the `commonName`
- field. Cannot be set if the `literalSubject` field is set."
+
+
+ The common name attribute is specified separately in the `commonName` field.
+ Cannot be set if the `literalSubject` field is set.
properties:
countries:
description: Countries to be used on the Certificate.
@@ -530,22 +605,46 @@ spec:
type: string
type: array
usages:
- description: "Requested key usages and extended key usages. These usages
- are used to set the `usages` field on the created CertificateRequest
- resources. If `encodeUsagesInRequest` is unset or set to `true`, the
- usages will additionally be encoded in the `request` field which contains
- the CSR blob. \n If unset, defaults to `digital signature` and `key
- encipherment`."
+ description: |-
+ Requested key usages and extended key usages.
+ These usages are used to set the `usages` field on the created CertificateRequest
+ resources. If `encodeUsagesInRequest` is unset or set to `true`, the usages
+ will additionally be encoded in the `request` field which contains the CSR blob.
+
+
+ If unset, defaults to `digital signature` and `key encipherment`.
items:
- description: "KeyUsage specifies valid usage contexts for keys. See:
- https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12
- \n Valid KeyUsage values are as follows: \"signing\", \"digital
- signature\", \"content commitment\", \"key encipherment\", \"key
- agreement\", \"data encipherment\", \"cert sign\", \"crl sign\",
- \"encipher only\", \"decipher only\", \"any\", \"server auth\",
- \"client auth\", \"code signing\", \"email protection\", \"s/mime\",
- \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\", \"timestamping\",
- \"ocsp signing\", \"microsoft sgc\", \"netscape sgc\""
+ description: |-
+ KeyUsage specifies valid usage contexts for keys.
+ See:
+ https://tools.ietf.org/html/rfc5280#section-4.2.1.3
+ https://tools.ietf.org/html/rfc5280#section-4.2.1.12
+
+
+ Valid KeyUsage values are as follows:
+ "signing",
+ "digital signature",
+ "content commitment",
+ "key encipherment",
+ "key agreement",
+ "data encipherment",
+ "cert sign",
+ "crl sign",
+ "encipher only",
+ "decipher only",
+ "any",
+ "server auth",
+ "client auth",
+ "code signing",
+ "email protection",
+ "s/mime",
+ "ipsec end system",
+ "ipsec tunnel",
+ "ipsec user",
+ "timestamping",
+ "ocsp signing",
+ "microsoft sgc",
+ "netscape sgc"
enum:
- signing
- digital signature
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/clusterissuers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/clusterissuers.yaml
index 0bd5d6c22..5360f283d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/clusterissuers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/clusterissuers.yaml
@@ -26,20 +26,27 @@ spec:
version: v1
validation:
openAPIV3Schema:
- description: A ClusterIssuer represents a certificate issuing authority which
- can be referenced as part of `issuerRef` fields. It is similar to an Issuer,
- however it is cluster-scoped and therefore can be referenced by resources
- that exist in *any* namespace, not just the same namespace as the referent.
+ description: |-
+ A ClusterIssuer represents a certificate issuing authority which can be
+ referenced as part of `issuerRef` fields.
+ It is similar to an Issuer, however it is cluster-scoped and therefore can
+ be referenced by resources that exist in *any* namespace, not just the same
+ namespace as the referent.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,49 +77,57 @@ spec:
description: Desired state of the ClusterIssuer resource.
properties:
acme:
- description: ACME configures this issuer to communicate with a RFC8555
- (ACME) server to obtain signed x509 certificates.
+ description: |-
+ ACME configures this issuer to communicate with a RFC8555 (ACME) server
+ to obtain signed x509 certificates.
properties:
caBundle:
- description: Base64-encoded bundle of PEM CAs which can be used
- to validate the certificate chain presented by the ACME server.
- Mutually exclusive with SkipTLSVerify; prefer using CABundle to
- prevent various kinds of security vulnerabilities. If CABundle
- and SkipTLSVerify are unset, the system certificate bundle inside
+ description: |-
+ Base64-encoded bundle of PEM CAs which can be used to validate the certificate
+ chain presented by the ACME server.
+ Mutually exclusive with SkipTLSVerify; prefer using CABundle to prevent various
+ kinds of security vulnerabilities.
+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside
the container is used to validate the TLS connection.
format: byte
type: string
disableAccountKeyGeneration:
- description: Enables or disables generating a new ACME account key.
- If true, the Issuer resource will *not* request a new account
- but will expect the account key to be supplied via an existing
- secret. If false, the cert-manager system will generate a new
- ACME account key for the Issuer. Defaults to false.
+ description: |-
+ Enables or disables generating a new ACME account key.
+ If true, the Issuer resource will *not* request a new account but will expect
+ the account key to be supplied via an existing secret.
+ If false, the cert-manager system will generate a new ACME account key
+ for the Issuer.
+ Defaults to false.
type: boolean
email:
- description: Email is the email address to be associated with the
- ACME account. This field is optional, but it is strongly recommended
- to be set. It will be used to contact you in case of issues with
- your account or certificates, including expiry notification emails.
+ description: |-
+ Email is the email address to be associated with the ACME account.
+ This field is optional, but it is strongly recommended to be set.
+ It will be used to contact you in case of issues with your account or
+ certificates, including expiry notification emails.
This field may be updated after the account is initially registered.
type: string
enableDurationFeature:
- description: Enables requesting a Not After date on certificates
- that matches the duration of the certificate. This is not supported
- by all ACME servers like Let's Encrypt. If set to true when the
- ACME server does not support it it will create an error on the
- Order. Defaults to false.
+ description: |-
+ Enables requesting a Not After date on certificates that matches the
+ duration of the certificate. This is not supported by all ACME servers
+ like Let's Encrypt. If set to true when the ACME server does not support
+ it, it will create an error on the Order.
+ Defaults to false.
type: boolean
externalAccountBinding:
- description: ExternalAccountBinding is a reference to a CA external
- account of the ACME server. If set, upon registration cert-manager
- will attempt to associate the given external account credentials
- with the registered ACME account.
+ description: |-
+ ExternalAccountBinding is a reference to a CA external account of the ACME
+ server.
+ If set, upon registration cert-manager will attempt to associate the given
+ external account credentials with the registered ACME account.
properties:
keyAlgorithm:
- description: 'Deprecated: keyAlgorithm field exists for historical
- compatibility reasons and should not be used. The algorithm
- is now hardcoded to HS256 in golang/x/crypto/acme.'
+ description: |-
+ Deprecated: keyAlgorithm field exists for historical compatibility
+ reasons and should not be used. The algorithm is now hardcoded to HS256
+ in golang/x/crypto/acme.
enum:
- HS256
- HS384
@@ -123,23 +138,25 @@ spec:
Account is bound to.
type: string
keySecretRef:
- description: keySecretRef is a Secret Key Selector referencing
- a data item in a Kubernetes Secret which holds the symmetric
- MAC key of the External Account Binding. The `key` is the
- index string that is paired with the key data in the Secret
- and should not be confused with the key data itself, or indeed
- with the External Account Binding keyID above. The secret
- key stored in the Secret **must** be un-padded, base64 URL
+ description: |-
+ keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes
+ Secret which holds the symmetric MAC key of the External Account Binding.
+ The `key` is the index string that is paired with the key data in the
+ Secret and should not be confused with the key data itself, or indeed with
+ the External Account Binding keyID above.
+ The secret key stored in the Secret **must** be un-padded, base64 URL
encoded data.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -149,83 +166,96 @@ spec:
- keySecretRef
type: object
preferredChain:
- description: 'PreferredChain is the chain to use if the ACME server
- outputs multiple. PreferredChain is no guarantee that this one
- gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s
- DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1"
- for the newer Let''s Encrypt root CA. This value picks the first
- certificate bundle in the ACME alternative chains that has a certificate
- with this value as its issuer''s CN'
+ description: |-
+ PreferredChain is the chain to use if the ACME server outputs multiple.
+ PreferredChain is no guarantee that this one gets delivered by the ACME
+ endpoint.
+ For example, for Let's Encrypt's DST crosssign you would use:
+ "DST Root CA X3" or "ISRG Root X1" for the newer Let's Encrypt root CA.
+ This value picks the first certificate bundle in the combined set of
+ ACME default and alternative chains that has a root-most certificate with
+ this value as its issuer's commonname.
maxLength: 64
type: string
privateKeySecretRef:
- description: PrivateKey is the name of a Kubernetes Secret resource
- that will be used to store the automatically generated ACME account
- private key. Optionally, a `key` may be specified to select a
- specific entry within the named Secret resource. If `key` is not
- specified, a default of `tls.key` will be used.
+ description: |-
+ PrivateKey is the name of a Kubernetes Secret resource that will be used to
+ store the automatically generated ACME account private key.
+ Optionally, a `key` may be specified to select a specific entry within
+ the named Secret resource.
+ If `key` is not specified, a default of `tls.key` will be used.
properties:
key:
- description: The key of the entry in the Secret resource's `data`
- field to be used. Some instances of this field may be defaulted,
- in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
server:
- description: 'Server is the URL used to access the ACME server''s
- ''directory'' endpoint. For example, for Let''s Encrypt''s staging
- endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory".
- Only ACME v2 endpoints (i.e. RFC 8555) are supported.'
+ description: |-
+ Server is the URL used to access the ACME server's 'directory' endpoint.
+ For example, for Let's Encrypt's staging endpoint, you would use:
+ "https://acme-staging-v02.api.letsencrypt.org/directory".
+ Only ACME v2 endpoints (i.e. RFC 8555) are supported.
type: string
skipTLSVerify:
- description: 'INSECURE: Enables or disables validation of the ACME
- server TLS certificate. If true, requests to the ACME server will
- not have the TLS certificate chain validated. Mutually exclusive
- with CABundle; prefer using CABundle to prevent various kinds
- of security vulnerabilities. Only enable this option in development
- environments. If CABundle and SkipTLSVerify are unset, the system
- certificate bundle inside the container is used to validate the
- TLS connection. Defaults to false.'
+ description: |-
+ INSECURE: Enables or disables validation of the ACME server TLS certificate.
+ If true, requests to the ACME server will not have the TLS certificate chain
+ validated.
+ Mutually exclusive with CABundle; prefer using CABundle to prevent various
+ kinds of security vulnerabilities.
+ Only enable this option in development environments.
+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside
+ the container is used to validate the TLS connection.
+ Defaults to false.
type: boolean
solvers:
- description: 'Solvers is a list of challenge solvers that will be
- used to solve ACME challenges for the matching domains. Solver
- configurations must be provided in order to obtain certificates
- from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/'
+ description: |-
+ Solvers is a list of challenge solvers that will be used to solve
+ ACME challenges for the matching domains.
+ Solver configurations must be provided in order to obtain certificates
+ from an ACME server.
+ For more information, see: https://cert-manager.io/docs/configuration/acme/
items:
- description: An ACMEChallengeSolver describes how to solve ACME
- challenges for the issuer it is part of. A selector may be provided
- to use different solving strategies for different DNS names.
+ description: |-
+ An ACMEChallengeSolver describes how to solve ACME challenges for the issuer it is part of.
+ A selector may be provided to use different solving strategies for different DNS names.
Only one of HTTP01 or DNS01 must be provided.
properties:
dns01:
- description: Configures cert-manager to attempt to complete
- authorizations by performing the DNS01 challenge flow.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the DNS01 challenge flow.
properties:
acmeDNS:
- description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns)
- API to manage DNS01 challenge records.
+ description: |-
+ Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage
+ DNS01 challenge records.
properties:
accountSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -241,55 +271,58 @@ spec:
manage DNS01 challenge records.
properties:
accessTokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientSecretSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientTokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -307,26 +340,27 @@ spec:
DNS01 challenge records.
properties:
clientID:
- description: 'Auth: Azure Service Principal: The ClientID
- of the Azure Service Principal used to authenticate
- with Azure DNS. If set, ClientSecret and TenantID
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientSecret and TenantID must also be set.
type: string
clientSecretSecretRef:
- description: 'Auth: Azure Service Principal: A reference
- to a Secret containing the password associated with
- the Service Principal. If set, ClientID and TenantID
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ A reference to a Secret containing the password associated with the Service Principal.
+ If set, ClientID and TenantID must also be set.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -344,19 +378,18 @@ spec:
description: name of the DNS zone that should be used
type: string
managedIdentity:
- description: 'Auth: Azure Workload Identity or Azure
- Managed Service Identity: Settings to enable Azure
- Workload Identity or Azure Managed Service Identity
- If set, ClientID, ClientSecret and TenantID must
- not be set.'
+ description: |-
+ Auth: Azure Workload Identity or Azure Managed Service Identity:
+ Settings to enable Azure Workload Identity or Azure Managed Service Identity
+ If set, ClientID, ClientSecret and TenantID must not be set.
properties:
clientID:
description: client ID of the managed identity,
can not be used at the same time as resourceID
type: string
resourceID:
- description: resource ID of the managed identity,
- can not be used at the same time as clientID
+ description: |-
+ resource ID of the managed identity, can not be used at the same time as clientID
Cannot be used for Azure Managed Service Identity
type: string
type: object
@@ -368,10 +401,10 @@ spec:
description: ID of the Azure subscription
type: string
tenantID:
- description: 'Auth: Azure Service Principal: The TenantID
- of the Azure Service Principal used to authenticate
- with Azure DNS. If set, ClientID and ClientSecret
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientID and ClientSecret must also be set.
type: string
required:
- resourceGroupName
@@ -382,27 +415,28 @@ spec:
challenge records.
properties:
hostedZoneName:
- description: HostedZoneName is an optional field that
- tells cert-manager in which Cloud DNS zone the challenge
- record has to be created. If left empty cert-manager
- will automatically choose a zone.
+ description: |-
+ HostedZoneName is an optional field that tells cert-manager in which
+ Cloud DNS zone the challenge record has to be created.
+ If left empty cert-manager will automatically choose a zone.
type: string
project:
type: string
serviceAccountSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -415,20 +449,21 @@ spec:
records.
properties:
apiKeySecretRef:
- description: 'API key to use to authenticate with
- Cloudflare. Note: using an API token to authenticate
- is now the recommended method as it allows greater
- control of permissions.'
+ description: |-
+ API key to use to authenticate with Cloudflare.
+ Note: using an API token to authenticate is now the recommended method
+ as it allows greater control of permissions.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -437,14 +472,15 @@ spec:
description: API token used to authenticate with Cloudflare.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -455,8 +491,9 @@ spec:
type: string
type: object
cnameStrategy:
- description: CNAMEStrategy configures how the DNS01 provider
- should handle CNAME records when found in DNS zones.
+ description: |-
+ CNAMEStrategy configures how the DNS01 provider should handle CNAME
+ records when found in DNS zones.
enum:
- None
- Follow
@@ -466,19 +503,20 @@ spec:
challenge records.
properties:
tokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -487,43 +525,44 @@ spec:
- tokenSecretRef
type: object
rfc2136:
- description: Use RFC2136 ("Dynamic Updates in the Domain
- Name System") (https://datatracker.ietf.org/doc/rfc2136/)
+ description: |-
+ Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/)
to manage DNS01 challenge records.
properties:
nameserver:
- description: The IP address or hostname of an authoritative
- DNS server supporting RFC2136 in the form host:port.
- If the host is an IPv6 address it must be enclosed
- in square brackets (e.g [2001:db8::1]) ; port is
- optional. This field is required.
+ description: |-
+ The IP address or hostname of an authoritative DNS server supporting
+ RFC2136 in the form host:port. If the host is an IPv6 address it must be
+ enclosed in square brackets (e.g [2001:db8::1]) ; port is optional.
+ This field is required.
type: string
tsigAlgorithm:
- description: 'The TSIG Algorithm configured in the
- DNS supporting RFC2136. Used only when ``tsigSecretSecretRef``
- and ``tsigKeyName`` are defined. Supported values
- are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``,
- ``HMACSHA256`` or ``HMACSHA512``.'
+ description: |-
+ The TSIG Algorithm configured in the DNS supporting RFC2136. Used only
+ when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined.
+ Supported values are (case-insensitive): ``HMACMD5`` (default),
+ ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.
type: string
tsigKeyName:
- description: The TSIG Key name configured in the DNS.
- If ``tsigSecretSecretRef`` is defined, this field
- is required.
+ description: |-
+ The TSIG Key name configured in the DNS.
+ If ``tsigSecretSecretRef`` is defined, this field is required.
type: string
tsigSecretSecretRef:
- description: The name of the secret containing the
- TSIG value. If ``tsigKeyName`` is defined, this
- field is required.
+ description: |-
+ The name of the secret containing the TSIG value.
+ If ``tsigKeyName`` is defined, this field is required.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -536,33 +575,72 @@ spec:
records.
properties:
accessKeyID:
- description: 'The AccessKeyID is used for authentication.
- Cannot be set when SecretAccessKeyID is set. If
- neither the Access Key nor Key ID are set, we fall-back
- to using env vars, shared credentials file or AWS
- Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The AccessKeyID is used for authentication.
+ Cannot be set when SecretAccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
type: string
accessKeyIDSecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If set, pull the AWS access key ID from a key within
- a Kubernetes Secret. Cannot be set when AccessKeyID
- is set. If neither the Access Key nor Key ID are
- set, we fall-back to using env vars, shared credentials
- file or AWS Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication. If set, pull the AWS
+ access key ID from a key within a Kubernetes Secret.
+ Cannot be set when AccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
+ auth:
+ description: Auth configures how cert-manager authenticates.
+ properties:
+ kubernetes:
+ description: |-
+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity
+ by passing a bound ServiceAccount token.
+ properties:
+ serviceAccountRef:
+ description: |-
+ A reference to a service account that will be used to request a bound
+ token (also known as "projected token"). To use this field, you must
+ configure an RBAC rule to let cert-manager request a token.
+ properties:
+ audiences:
+ description: |-
+ TokenAudiences is an optional list of audiences to include in the
+ token passed to AWS. The default token consisting of the issuer's namespace
+ and name is always included.
+ If unset the audience defaults to `sts.amazonaws.com`.
+ items:
+ type: string
+ type: array
+ name:
+ description: Name of the ServiceAccount
+ used to request a token.
+ type: string
+ required:
+ - name
+ type: object
+ required:
+ - serviceAccountRef
+ type: object
+ required:
+ - kubernetes
+ type: object
hostedZoneID:
description: If set, the provider will manage only
this zone in Route53 and will not do an lookup using
@@ -573,27 +651,27 @@ spec:
and SecretAccessKey
type: string
role:
- description: Role is a Role ARN which the Route53
- provider will assume using either the explicit credentials
- AccessKeyID/SecretAccessKey or the inferred credentials
- from environment variables, shared credentials file
- or AWS Instance metadata
+ description: |-
+ Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey
+ or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata
type: string
secretAccessKeySecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If neither the Access Key nor Key ID are set, we
- fall-back to using env vars, shared credentials
- file or AWS Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -602,30 +680,33 @@ spec:
- region
type: object
webhook:
- description: Configure an external webhook based DNS01
- challenge solver to manage DNS01 challenge records.
+ description: |-
+ Configure an external webhook based DNS01 challenge solver to manage
+ DNS01 challenge records.
properties:
config:
- description: Additional configuration that should
- be passed to the webhook apiserver when challenges
- are processed. This can contain arbitrary JSON data.
+ description: |-
+ Additional configuration that should be passed to the webhook apiserver
+ when challenges are processed.
+ This can contain arbitrary JSON data.
Secret values should not be specified in this stanza.
- If secret values are needed (e.g. credentials for
- a DNS service), you should use a SecretKeySelector
- to reference a Secret resource. For details on the
- schema of this field, consult the webhook provider
+ If secret values are needed (e.g. credentials for a DNS service), you
+ should use a SecretKeySelector to reference a Secret resource.
+ For details on the schema of this field, consult the webhook provider
implementation's documentation.
x-kubernetes-preserve-unknown-fields: true
groupName:
- description: The API group name that should be used
- when POSTing ChallengePayload resources to the webhook
- apiserver. This should be the same as the GroupName
- specified in the webhook provider implementation.
+ description: |-
+ The API group name that should be used when POSTing ChallengePayload
+ resources to the webhook apiserver.
+ This should be the same as the GroupName specified in the webhook
+ provider implementation.
type: string
solverName:
- description: The name of the solver to use, as defined
- in the webhook provider implementation. This will
- typically be the name of the provider, e.g. 'cloudflare'.
+ description: |-
+ The name of the solver to use, as defined in the webhook provider
+ implementation.
+ This will typically be the name of the provider, e.g. 'cloudflare'.
type: string
required:
- groupName
@@ -633,173 +714,193 @@ spec:
type: object
type: object
http01:
- description: Configures cert-manager to attempt to complete
- authorizations by performing the HTTP01 challenge flow.
- It is not possible to obtain certificates for wildcard domain
- names (e.g. `*.example.com`) using the HTTP01 challenge
- mechanism.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the HTTP01 challenge flow.
+ It is not possible to obtain certificates for wildcard domain names
+ (e.g. `*.example.com`) using the HTTP01 challenge mechanism.
properties:
gatewayHTTPRoute:
- description: The Gateway API is a sig-network community
- API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/).
- The Gateway solver will create HTTPRoutes with the specified
- labels in the same namespace as the challenge. This
- solver is experimental, and fields / behaviour may change
- in the future.
+ description: |-
+ The Gateway API is a sig-network community API that models service networking
+ in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will
+ create HTTPRoutes with the specified labels in the same namespace as the challenge.
+ This solver is experimental, and fields / behaviour may change in the future.
properties:
labels:
additionalProperties:
type: string
- description: Custom labels that will be applied to
- HTTPRoutes created by cert-manager while solving
- HTTP-01 challenges.
+ description: |-
+ Custom labels that will be applied to HTTPRoutes created by cert-manager
+ while solving HTTP-01 challenges.
type: object
parentRefs:
- description: 'When solving an HTTP-01 challenge, cert-manager
- creates an HTTPRoute. cert-manager needs to know
- which parentRefs should be used when creating the
- HTTPRoute. Usually, the parentRef references a Gateway.
- See: https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways'
+ description: |-
+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.
+ cert-manager needs to know which parentRefs should be used when creating
+ the HTTPRoute. Usually, the parentRef references a Gateway. See:
+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways
items:
- description: "ParentReference identifies an API
- object (usually a Gateway) that can be considered
- a parent of this resource (usually a route). There
- are two kinds of parent resources with \"Core\"
- support: \n * Gateway (Gateway conformance profile)
- * Service (Mesh conformance profile, experimental,
- ClusterIP Services only) \n This API may be extended
- in the future to support additional kinds of parent
- resources. \n The API object must be valid in
- the cluster; the Group and Kind must be registered
- in the cluster for this reference to be valid."
+ description: |-
+ ParentReference identifies an API object (usually a Gateway) that can be considered
+ a parent of this resource (usually a route). There are two kinds of parent resources
+ with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ This API may be extended in the future to support additional kinds of parent
+ resources.
+
+
+ The API object must be valid in the cluster; the Group and Kind must
+ be registered in the cluster for this reference to be valid.
properties:
group:
default: gateway.networking.k8s.io
- description: "Group is the group of the referent.
- When unspecified, \"gateway.networking.k8s.io\"
- is inferred. To set the core API group (such
- as for a \"Service\" kind referent), Group
- must be explicitly set to \"\" (empty string).
- \n Support: Core"
+ description: |-
+ Group is the group of the referent.
+ When unspecified, "gateway.networking.k8s.io" is inferred.
+ To set the core API group (such as for a "Service" kind referent),
+ Group must be explicitly set to "" (empty string).
+
+
+ Support: Core
maxLength: 253
pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
type: string
kind:
default: Gateway
- description: "Kind is kind of the referent.
- \n There are two kinds of parent resources
- with \"Core\" support: \n * Gateway (Gateway
- conformance profile) * Service (Mesh conformance
- profile, experimental, ClusterIP Services
- only) \n Support for other resources is Implementation-Specific."
+ description: |-
+ Kind is kind of the referent.
+
+
+ There are two kinds of parent resources with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ Support for other resources is Implementation-Specific.
maxLength: 63
minLength: 1
pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
type: string
name:
- description: "Name is the name of the referent.
- \n Support: Core"
+ description: |-
+ Name is the name of the referent.
+
+
+ Support: Core
maxLength: 253
minLength: 1
type: string
namespace:
- description: "Namespace is the namespace of
- the referent. When unspecified, this refers
- to the local namespace of the Route. \n Note
- that there are specific rules for ParentRefs
- which cross namespace boundaries. Cross-namespace
- references are only valid if they are explicitly
- allowed by something in the namespace they
- are referring to. For example: Gateway has
- the AllowedRoutes field, and ReferenceGrant
- provides a generic way to enable any other
- kind of cross-namespace reference. \n
- ParentRefs from a Route to a Service in the
- same namespace are \"producer\" routes, which
- apply default routing rules to inbound connections
- from any namespace to the Service. \n ParentRefs
- from a Route to a Service in a different namespace
- are \"consumer\" routes, and these routing
- rules are only applied to outbound connections
- originating from the same namespace as the
- Route, for which the intended destination
- of the connections are a Service targeted
- as a ParentRef of the Route.
- \n Support: Core"
+ description: |-
+ Namespace is the namespace of the referent. When unspecified, this refers
+ to the local namespace of the Route.
+
+
+ Note that there are specific rules for ParentRefs which cross namespace
+ boundaries. Cross-namespace references are only valid if they are explicitly
+ allowed by something in the namespace they are referring to. For example:
+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a
+ generic way to enable any other kind of cross-namespace reference.
+
+
+
+ ParentRefs from a Route to a Service in the same namespace are "producer"
+ routes, which apply default routing rules to inbound connections from
+ any namespace to the Service.
+
+
+ ParentRefs from a Route to a Service in a different namespace are
+ "consumer" routes, and these routing rules are only applied to outbound
+ connections originating from the same namespace as the Route, for which
+ the intended destination of the connections are a Service targeted as a
+ ParentRef of the Route.
+
+
+
+ Support: Core
maxLength: 63
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
type: string
port:
- description: "Port is the network port this
- Route targets. It can be interpreted differently
- based on the type of parent resource. \n When
- the parent resource is a Gateway, this targets
- all listeners listening on the specified port
- that also support this kind of Route(and select
- this Route). It's not recommended to set `Port`
- unless the networking behaviors specified
- in a Route must apply to a specific port as
- opposed to a listener(s) whose port(s) may
- be changed. When both Port and SectionName
- are specified, the name and port of the selected
- listener must match both specified values.
- \n When
- the parent resource is a Service, this targets
- a specific port in the Service spec. When
- both Port (experimental) and SectionName are
- specified, the name and port of the selected
- port must match both specified values.
- \n Implementations MAY choose to support other
- parent resources. Implementations supporting
- other types of parent resources MUST clearly
- document how/if Port is interpreted. \n For
- the purpose of status, an attachment is considered
- successful as long as the parent resource
- accepts it partially. For example, Gateway
- listeners can restrict which Routes can attach
- to them by Route kind, namespace, or hostname.
- If 1 of 2 Gateway listeners accept attachment
- from the referencing Route, the Route MUST
- be considered successfully attached. If no
- Gateway listeners accept attachment from this
- Route, the Route MUST be considered detached
- from the Gateway. \n Support: Extended \n
- "
+ description: |-
+ Port is the network port this Route targets. It can be interpreted
+ differently based on the type of parent resource.
+
+
+ When the parent resource is a Gateway, this targets all listeners
+ listening on the specified port that also support this kind of Route(and
+ select this Route). It's not recommended to set `Port` unless the
+ networking behaviors specified in a Route must apply to a specific port
+ as opposed to a listener(s) whose port(s) may be changed. When both Port
+ and SectionName are specified, the name and port of the selected listener
+ must match both specified values.
+
+
+
+ When the parent resource is a Service, this targets a specific port in the
+ Service spec. When both Port (experimental) and SectionName are specified,
+ the name and port of the selected port must match both specified values.
+
+
+
+ Implementations MAY choose to support other parent resources.
+ Implementations supporting other types of parent resources MUST clearly
+ document how/if Port is interpreted.
+
+
+ For the purpose of status, an attachment is considered successful as
+ long as the parent resource accepts it partially. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment
+ from the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route,
+ the Route MUST be considered detached from the Gateway.
+
+
+ Support: Extended
format: int32
maximum: 65535
minimum: 1
type: integer
sectionName:
- description: "SectionName is the name of a section
- within the target resource. In the following
- resources, SectionName is interpreted as the
- following: \n * Gateway: Listener Name. When
- both Port (experimental) and SectionName are
- specified, the name and port of the selected
- listener must match both specified values.
- * Service: Port Name. When both Port (experimental)
- and SectionName are specified, the name and
- port of the selected listener must match both
- specified values. Note that attaching Routes
- to Services as Parents is part of experimental
- Mesh support and is not supported for any
- other purpose. \n Implementations MAY choose
- to support attaching Routes to other resources.
- If that is the case, they MUST clearly document
- how SectionName is interpreted. \n When unspecified
- (empty string), this will reference the entire
- resource. For the purpose of status, an attachment
- is considered successful if at least one section
- in the parent resource accepts it. For example,
- Gateway listeners can restrict which Routes
- can attach to them by Route kind, namespace,
- or hostname. If 1 of 2 Gateway listeners accept
- attachment from the referencing Route, the
- Route MUST be considered successfully attached.
- If no Gateway listeners accept attachment
- from this Route, the Route MUST be considered
- detached from the Gateway. \n Support: Core"
+ description: |-
+ SectionName is the name of a section within the target resource. In the
+ following resources, SectionName is interpreted as the following:
+
+
+ * Gateway: Listener name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+ * Service: Port name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+
+
+ Implementations MAY choose to support attaching Routes to other resources.
+ If that is the case, they MUST clearly document how SectionName is
+ interpreted.
+
+
+ When unspecified (empty string), this will reference the entire resource.
+ For the purpose of status, an attachment is considered successful if at
+ least one section in the parent resource accepts it. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from
+ the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route, the
+ Route MUST be considered detached from the Gateway.
+
+
+ Support: Core
maxLength: 253
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
@@ -809,44 +910,43 @@ spec:
type: object
type: array
serviceType:
- description: Optional service type for Kubernetes
- solver service. Supported values are NodePort or
- ClusterIP. If unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
ingress:
- description: The ingress based HTTP01 challenge solver
- will solve challenges by creating or modifying Ingress
- resources in order to route requests for '/.well-known/acme-challenge/XYZ'
- to 'challenge solver' pods that are provisioned by cert-manager
- for each Challenge to be completed.
+ description: |-
+ The ingress based HTTP01 challenge solver will solve challenges by
+ creating or modifying Ingress resources in order to route requests for
+ '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are
+ provisioned by cert-manager for each Challenge to be completed.
properties:
class:
- description: This field configures the annotation
- `kubernetes.io/ingress.class` when creating Ingress
- resources to solve ACME challenges that use this
- challenge solver. Only one of `class`, `name` or
- `ingressClassName` may be specified.
+ description: |-
+ This field configures the annotation `kubernetes.io/ingress.class` when
+ creating Ingress resources to solve ACME challenges that use this
+ challenge solver. Only one of `class`, `name` or `ingressClassName` may
+ be specified.
type: string
ingressClassName:
- description: This field configures the field `ingressClassName`
- on the created Ingress resources used to solve ACME
- challenges that use this challenge solver. This
- is the recommended way of configuring the ingress
- class. Only one of `class`, `name` or `ingressClassName`
- may be specified.
+ description: |-
+ This field configures the field `ingressClassName` on the created Ingress
+ resources used to solve ACME challenges that use this challenge solver.
+ This is the recommended way of configuring the ingress class. Only one of
+ `class`, `name` or `ingressClassName` may be specified.
type: string
ingressTemplate:
- description: Optional ingress template used to configure
- the ACME challenge solver ingress used for HTTP01
- challenges.
+ description: |-
+ Optional ingress template used to configure the ACME challenge solver
+ ingress used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the ingress
- used to solve HTTP01 challenges. Only the 'labels'
- and 'annotations' fields may be set. If labels
- or annotations overlap with in-built values,
- the values here will override the in-built values.
+ description: |-
+ ObjectMeta overrides for the ingress used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -863,25 +963,25 @@ spec:
type: object
type: object
name:
- description: The name of the ingress resource that
- should have ACME challenge solving routes inserted
- into it in order to solve HTTP01 challenges. This
- is typically used in conjunction with ingress controllers
- like ingress-gce, which maintains a 1:1 mapping
- between external IPs and ingress resources. Only
- one of `class`, `name` or `ingressClassName` may
+ description: |-
+ The name of the ingress resource that should have ACME challenge solving
+ routes inserted into it in order to solve HTTP01 challenges.
+ This is typically used in conjunction with ingress controllers like
+ ingress-gce, which maintains a 1:1 mapping between external IPs and
+ ingress resources. Only one of `class`, `name` or `ingressClassName` may
be specified.
type: string
podTemplate:
- description: Optional pod template used to configure
- the ACME challenge solver pods used for HTTP01 challenges.
+ description: |-
+ Optional pod template used to configure the ACME challenge solver pods
+ used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the pod
- used to solve HTTP01 challenges. Only the 'labels'
- and 'annotations' fields may be set. If labels
- or annotations overlap with in-built values,
- the values here will override the in-built values.
+ description: |-
+ ObjectMeta overrides for the pod used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -897,10 +997,10 @@ spec:
type: object
type: object
spec:
- description: PodSpec defines overrides for the
- HTTP01 challenge solver pod. Check ACMEChallengeSolverHTTP01IngressPodSpec
- to find out currently supported fields. All
- other fields will be ignored.
+ description: |-
+ PodSpec defines overrides for the HTTP01 challenge solver pod.
+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.
+ All other fields will be ignored.
properties:
affinity:
description: If specified, the pod's scheduling
@@ -911,31 +1011,20 @@ spec:
rules for the pod.
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- affinity expressions, etc.), compute
- a sum by iterating through the elements
- of this field and adding "weight"
- to the sum if the node matches the
- corresponding matchExpressions;
- the node(s) with the highest sum
- are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node matches the corresponding matchExpressions; the
+ node(s) with the highest sum are the most preferred.
items:
- description: An empty preferred
- scheduling term matches all objects
- with implicit weight 0 (i.e. it's
- a no-op). A null preferred scheduling
- term matches no objects (i.e.
- is also a no-op).
+ description: |-
+ An empty preferred scheduling term matches all objects with implicit weight 0
+ (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
properties:
preference:
description: A node selector
@@ -947,12 +1036,9 @@ spec:
selector requirements
by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -960,53 +1046,35 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node
selector requirements
by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1014,42 +1082,27 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1064,41 +1117,33 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not
- met at scheduling time, the pod
- will not be scheduled onto the node.
- If the affinity requirements specified
- by this field cease to be met at
- some point during pod execution
- (e.g. due to an update), the system
- may or may not try to eventually
- evict the pod from its node.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to an update), the system
+ may or may not try to eventually evict the pod from its node.
properties:
nodeSelectorTerms:
description: Required. A list
of node selector terms. The
terms are ORed.
items:
- description: A null or empty
- node selector term matches
- no objects. The requirements
- of them are ANDed. The TopologySelectorTerm
- type implements a subset of
- the NodeSelectorTerm.
+ description: |-
+ A null or empty node selector term matches no objects. The requirements of
+ them are ANDed.
+ The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
properties:
matchExpressions:
description: A list of node
selector requirements
by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1106,53 +1151,35 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node
selector requirements
by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1160,45 +1187,31 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1211,24 +1224,16 @@ spec:
pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- affinity expressions, etc.), compute
- a sum by iterating through the elements
- of this field and adding "weight"
- to the sum if the node has pods
- which matches the corresponding
- podAffinityTerm; the node(s) with
- the highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all
of the matched WeightedPodAffinityTerm
@@ -1241,11 +1246,9 @@ spec:
with the corresponding weight.
properties:
labelSelector:
- description: A label query
- over a set of resources,
- in this case pods. If
- it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1254,13 +1257,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1270,138 +1269,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- in (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MatchLabelKeys
- and LabelSelector. Also,
- MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- notin (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also,
- MismatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query
- over the set of namespaces
- that the term applies
- to. The term is applied
- to the union of the namespaces
- selected by this field
- and the ones listed in
- the namespaces field.
- null selector and null
- or empty namespaces list
- means "this pod's namespace".
- An empty selector ({})
- matches all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1410,13 +1344,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1426,97 +1356,61 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces
- specifies a static list
- of namespace names that
- the term applies to. The
- term is applied to the
- union of the namespaces
- listed in this field and
- the ones selected by namespaceSelector.
- null or empty namespaces
- list and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity)
- or not co-located (anti-affinity)
- with the pods matching
- the labelSelector in the
- specified namespaces,
- where co-located is defined
- as running on a node whose
- value of the label with
- key topologyKey matches
- that of any node on which
- any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated
- with matching the corresponding
- podAffinityTerm, in the range
- 1-100.
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
+ in the range 1-100.
format: int32
type: integer
required:
@@ -1524,39 +1418,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not
- met at scheduling time, the pod
- will not be scheduled onto the node.
- If the affinity requirements specified
- by this field cease to be met at
- some point during pod execution
- (e.g. due to a pod label update),
- the system may or may not try to
- eventually evict the pod from its
- node. When there are multiple elements,
- the lists of nodes corresponding
- to each podAffinityTerm are intersected,
- i.e. all terms must be satisfied.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods
- (namely those matching the labelSelector
- relative to the given namespace(s))
- that this pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with, where co-located is defined
- as running on a node whose value
- of the label with key
- matches that of any node on which
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1564,12 +1448,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1578,126 +1459,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods
- which pods will be taken into
- consideration for the incoming
- pod's pod (anti) affinity.
- Keys that don't exist in the
- incoming pod labels will be
- ignored. The default value
- is empty. The same key is
- forbidden to exist in both
- MatchLabelKeys and LabelSelector.
- Also, MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key notin (value)` to
- select the group of existing
- pods which pods will be taken
- into consideration for the
- incoming pod's pod (anti)
- affinity. Keys that don't
- exist in the incoming pod
- labels will be ignored. The
- default value is empty. The
- same key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that
- the term applies to. The term
- is applied to the union of
- the namespaces selected by
- this field and the ones listed
- in the namespaces field. null
- selector and null or empty
- namespaces list means "this
- pod's namespace". An empty
- selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1705,12 +1533,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1719,86 +1544,59 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace
- names that the term applies
- to. The term is applied to
- the union of the namespaces
- listed in this field and the
- ones selected by namespaceSelector.
- null or empty namespaces list
- and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity) or
- not co-located (anti-affinity)
- with the pods matching the
- labelSelector in the specified
- namespaces, where co-located
- is defined as running on a
- node whose value of the label
- with key topologyKey matches
- that of any node on which
- any of the selected pods is
- running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
description: Describes pod anti-affinity
@@ -1807,24 +1605,16 @@ spec:
as some other pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the anti-affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- anti-affinity expressions, etc.),
- compute a sum by iterating through
- the elements of this field and adding
- "weight" to the sum if the node
- has pods which matches the corresponding
- podAffinityTerm; the node(s) with
- the highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the anti-affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling anti-affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all
of the matched WeightedPodAffinityTerm
@@ -1837,11 +1627,9 @@ spec:
with the corresponding weight.
properties:
labelSelector:
- description: A label query
- over a set of resources,
- in this case pods. If
- it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1850,13 +1638,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1866,138 +1650,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- in (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MatchLabelKeys
- and LabelSelector. Also,
- MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- notin (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also,
- MismatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query
- over the set of namespaces
- that the term applies
- to. The term is applied
- to the union of the namespaces
- selected by this field
- and the ones listed in
- the namespaces field.
- null selector and null
- or empty namespaces list
- means "this pod's namespace".
- An empty selector ({})
- matches all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -2006,13 +1725,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -2022,97 +1737,61 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces
- specifies a static list
- of namespace names that
- the term applies to. The
- term is applied to the
- union of the namespaces
- listed in this field and
- the ones selected by namespaceSelector.
- null or empty namespaces
- list and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity)
- or not co-located (anti-affinity)
- with the pods matching
- the labelSelector in the
- specified namespaces,
- where co-located is defined
- as running on a node whose
- value of the label with
- key topologyKey matches
- that of any node on which
- any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated
- with matching the corresponding
- podAffinityTerm, in the range
- 1-100.
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
+ in the range 1-100.
format: int32
type: integer
required:
@@ -2120,39 +1799,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the anti-affinity
- requirements specified by this field
- are not met at scheduling time,
- the pod will not be scheduled onto
- the node. If the anti-affinity requirements
- specified by this field cease to
- be met at some point during pod
- execution (e.g. due to a pod label
- update), the system may or may not
- try to eventually evict the pod
- from its node. When there are multiple
- elements, the lists of nodes corresponding
- to each podAffinityTerm are intersected,
- i.e. all terms must be satisfied.
+ description: |-
+ If the anti-affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the anti-affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods
- (namely those matching the labelSelector
- relative to the given namespace(s))
- that this pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with, where co-located is defined
- as running on a node whose value
- of the label with key
- matches that of any node on which
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -2160,12 +1829,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -2174,126 +1840,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods
- which pods will be taken into
- consideration for the incoming
- pod's pod (anti) affinity.
- Keys that don't exist in the
- incoming pod labels will be
- ignored. The default value
- is empty. The same key is
- forbidden to exist in both
- MatchLabelKeys and LabelSelector.
- Also, MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key notin (value)` to
- select the group of existing
- pods which pods will be taken
- into consideration for the
- incoming pod's pod (anti)
- affinity. Keys that don't
- exist in the incoming pod
- labels will be ignored. The
- default value is empty. The
- same key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that
- the term applies to. The term
- is applied to the union of
- the namespaces selected by
- this field and the ones listed
- in the namespaces field. null
- selector and null or empty
- namespaces list means "this
- pod's namespace". An empty
- selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -2301,12 +1914,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -2315,100 +1925,78 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace
- names that the term applies
- to. The term is applied to
- the union of the namespaces
- listed in this field and the
- ones selected by namespaceSelector.
- null or empty namespaces list
- and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity) or
- not co-located (anti-affinity)
- with the pods matching the
- labelSelector in the specified
- namespaces, where co-located
- is defined as running on a
- node whose value of the label
- with key topologyKey matches
- that of any node on which
- any of the selected pods is
- running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
imagePullSecrets:
description: If specified, the pod's imagePullSecrets
items:
- description: LocalObjectReference contains
- enough information to let you locate the
+ description: |-
+ LocalObjectReference contains enough information to let you locate the
referenced object inside the same namespace.
properties:
name:
- description: 'Name of the referent.
+ default: ""
+ description: |-
+ Name of the referent.
+ This field is effectively required, but due to backwards compatibility is
+ allowed to be empty. Instances of this type with an empty value here are
+ almost certainly wrong.
+ TODO: Add other useful fields. apiVersion, kind, uid?
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion,
- kind, uid?'
+ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2416,11 +2004,10 @@ spec:
nodeSelector:
additionalProperties:
type: string
- description: 'NodeSelector is a selector which
- must be true for the pod to fit on a node.
- Selector which must match a node''s labels
- for the pod to be scheduled on that node.
- More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/'
+ description: |-
+ NodeSelector is a selector which must be true for the pod to fit on a node.
+ Selector which must match a node's labels for the pod to be scheduled on that node.
+ More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
type: object
priorityClassName:
description: If specified, the pod's priorityClassName.
@@ -2432,101 +2019,91 @@ spec:
tolerations:
description: If specified, the pod's tolerations.
items:
- description: The pod this Toleration is
- attached to tolerates any taint that matches
- the triple using the
- matching operator .
+ description: |-
+ The pod this Toleration is attached to tolerates any taint that matches
+ the triple using the matching operator .
properties:
effect:
- description: Effect indicates the taint
- effect to match. Empty means match
- all taint effects. When specified,
- allowed values are NoSchedule, PreferNoSchedule
- and NoExecute.
+ description: |-
+ Effect indicates the taint effect to match. Empty means match all taint effects.
+ When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
type: string
key:
- description: Key is the taint key that
- the toleration applies to. Empty means
- match all taint keys. If the key is
- empty, operator must be Exists; this
- combination means to match all values
- and all keys.
+ description: |-
+ Key is the taint key that the toleration applies to. Empty means match all taint keys.
+ If the key is empty, operator must be Exists; this combination means to match all values and all keys.
type: string
operator:
- description: Operator represents a key's
- relationship to the value. Valid operators
- are Exists and Equal. Defaults to
- Equal. Exists is equivalent to wildcard
- for value, so that a pod can tolerate
- all taints of a particular category.
+ description: |-
+ Operator represents a key's relationship to the value.
+ Valid operators are Exists and Equal. Defaults to Equal.
+ Exists is equivalent to wildcard for value, so that a pod can
+ tolerate all taints of a particular category.
type: string
tolerationSeconds:
- description: TolerationSeconds represents
- the period of time the toleration
- (which must be of effect NoExecute,
- otherwise this field is ignored) tolerates
- the taint. By default, it is not set,
- which means tolerate the taint forever
- (do not evict). Zero and negative
- values will be treated as 0 (evict
- immediately) by the system.
+ description: |-
+ TolerationSeconds represents the period of time the toleration (which must be
+ of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
+ it is not set, which means tolerate the taint forever (do not evict). Zero and
+ negative values will be treated as 0 (evict immediately) by the system.
format: int64
type: integer
value:
- description: Value is the taint value
- the toleration matches to. If the
- operator is Exists, the value should
- be empty, otherwise just a regular
- string.
+ description: |-
+ Value is the taint value the toleration matches to.
+ If the operator is Exists, the value should be empty, otherwise just a regular string.
type: string
type: object
type: array
type: object
type: object
serviceType:
- description: Optional service type for Kubernetes
- solver service. Supported values are NodePort or
- ClusterIP. If unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
type: object
selector:
- description: Selector selects a set of DNSNames on the Certificate
- resource that should be solved using this challenge solver.
- If not specified, the solver will be treated as the 'default'
- solver with the lowest priority, i.e. if any other solver
- has a more specific match, it will be used instead.
+ description: |-
+ Selector selects a set of DNSNames on the Certificate resource that
+ should be solved using this challenge solver.
+ If not specified, the solver will be treated as the 'default' solver
+ with the lowest priority, i.e. if any other solver has a more specific
+ match, it will be used instead.
properties:
dnsNames:
- description: List of DNSNames that this solver will be
- used to solve. If specified and a match is found, a
- dnsNames selector will take precedence over a dnsZones
- selector. If multiple solvers match with the same dnsNames
- value, the solver with the most matching labels in matchLabels
- will be selected. If neither has more matches, the solver
- defined earlier in the list will be selected.
+ description: |-
+ List of DNSNames that this solver will be used to solve.
+ If specified and a match is found, a dnsNames selector will take
+ precedence over a dnsZones selector.
+ If multiple solvers match with the same dnsNames value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
dnsZones:
- description: List of DNSZones that this solver will be
- used to solve. The most specific DNS zone match specified
- here will take precedence over other DNS zone matches,
- so a solver specifying sys.example.com will be selected
- over one specifying example.com for the domain www.sys.example.com.
- If multiple solvers match with the same dnsZones value,
- the solver with the most matching labels in matchLabels
- will be selected. If neither has more matches, the solver
- defined earlier in the list will be selected.
+ description: |-
+ List of DNSZones that this solver will be used to solve.
+ The most specific DNS zone match specified here will take precedence
+ over other DNS zone matches, so a solver specifying sys.example.com
+ will be selected over one specifying example.com for the domain
+ www.sys.example.com.
+ If multiple solvers match with the same dnsZones value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
matchLabels:
additionalProperties:
type: string
- description: A label selector that is used to refine the
- set of certificate's that this challenge solver will
- apply to.
+ description: |-
+ A label selector that is used to refine the set of certificate's that
+ this challenge solver will apply to.
type: object
type: object
type: object
@@ -2536,90 +2113,100 @@ spec:
- server
type: object
ca:
- description: CA configures this issuer to sign certificates using a
- signing CA keypair stored in a Secret resource. This is used to build
- internal PKIs that are managed by cert-manager.
+ description: |-
+ CA configures this issuer to sign certificates using a signing CA keypair
+ stored in a Secret resource.
+ This is used to build internal PKIs that are managed by cert-manager.
properties:
crlDistributionPoints:
- description: The CRL distribution points is an X.509 v3 certificate
- extension which identifies the location of the CRL from which
- the revocation of this certificate can be checked. If not set,
- certificates will be issued without distribution points set.
+ description: |-
+ The CRL distribution points is an X.509 v3 certificate extension which identifies
+ the location of the CRL from which the revocation of this certificate can be checked.
+ If not set, certificates will be issued without distribution points set.
items:
type: string
type: array
issuingCertificateURLs:
- description: IssuingCertificateURLs is a list of URLs which this
- issuer should embed into certificates it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1
- for more details. As an example, such a URL might be "http://ca.domain.com/ca.crt".
+ description: |-
+ IssuingCertificateURLs is a list of URLs which this issuer should embed into certificates
+ it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1 for more details.
+ As an example, such a URL might be "http://ca.domain.com/ca.crt".
items:
type: string
type: array
ocspServers:
- description: The OCSP server list is an X.509 v3 extension that
- defines a list of URLs of OCSP responders. The OCSP responders
- can be queried for the revocation status of an issued certificate.
- If not set, the certificate will be issued with no OCSP servers
- set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org".
+ description: |-
+ The OCSP server list is an X.509 v3 extension that defines a list of
+ URLs of OCSP responders. The OCSP responders can be queried for the
+ revocation status of an issued certificate. If not set, the
+ certificate will be issued with no OCSP servers set. For example, an
+ OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org".
items:
type: string
type: array
secretName:
- description: SecretName is the name of the secret used to sign Certificates
- issued by this Issuer.
+ description: |-
+ SecretName is the name of the secret used to sign Certificates issued
+ by this Issuer.
type: string
required:
- secretName
type: object
selfSigned:
- description: SelfSigned configures this issuer to 'self sign' certificates
- using the private key used to create the CertificateRequest object.
+ description: |-
+ SelfSigned configures this issuer to 'self sign' certificates using the
+ private key used to create the CertificateRequest object.
properties:
crlDistributionPoints:
- description: The CRL distribution points is an X.509 v3 certificate
- extension which identifies the location of the CRL from which
- the revocation of this certificate can be checked. If not set
- certificate will be issued without CDP. Values are strings.
+ description: |-
+ The CRL distribution points is an X.509 v3 certificate extension which identifies
+ the location of the CRL from which the revocation of this certificate can be checked.
+ If not set certificate will be issued without CDP. Values are strings.
items:
type: string
type: array
type: object
vault:
- description: Vault configures this issuer to sign certificates using
- a HashiCorp Vault PKI backend.
+ description: |-
+ Vault configures this issuer to sign certificates using a HashiCorp Vault
+ PKI backend.
properties:
auth:
description: Auth configures how cert-manager authenticates with
the Vault server.
properties:
appRole:
- description: AppRole authenticates with Vault using the App
- Role auth mechanism, with the role and secret stored in a
- Kubernetes Secret resource.
+ description: |-
+ AppRole authenticates with Vault using the App Role auth mechanism,
+ with the role and secret stored in a Kubernetes Secret resource.
properties:
path:
- description: 'Path where the App Role authentication backend
- is mounted in Vault, e.g: "approle"'
+ description: |-
+ Path where the App Role authentication backend is mounted in Vault, e.g:
+ "approle"
type: string
roleId:
- description: RoleID configured in the App Role authentication
- backend when setting up the authentication backend in
- Vault.
+ description: |-
+ RoleID configured in the App Role authentication backend when setting
+ up the authentication backend in Vault.
type: string
secretRef:
- description: Reference to a key in a Secret that contains
- the App Role secret used to authenticate with Vault. The
- `key` field must be specified and denotes which entry
- within the Secret resource is used as the app role secret.
+ description: |-
+ Reference to a key in a Secret that contains the App Role secret used
+ to authenticate with Vault.
+ The `key` field must be specified and denotes which entry within the Secret
+ resource is used as the app role secret.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -2630,47 +2217,57 @@ spec:
- secretRef
type: object
kubernetes:
- description: Kubernetes authenticates with Vault by passing
- the ServiceAccount token stored in the named Secret resource
- to the Vault server.
+ description: |-
+ Kubernetes authenticates with Vault by passing the ServiceAccount
+ token stored in the named Secret resource to the Vault server.
properties:
mountPath:
- description: The Vault mountPath here is the mount path
- to use when authenticating with Vault. For example, setting
- a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login`
- to authenticate with Vault. If unspecified, the default
- value "/v1/auth/kubernetes" will be used.
+ description: |-
+ The Vault mountPath here is the mount path to use when authenticating with
+ Vault. For example, setting a value to `/v1/auth/foo`, will use the path
+ `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the
+ default value "/v1/auth/kubernetes" will be used.
type: string
role:
- description: A required field containing the Vault Role
- to assume. A Role binds a Kubernetes ServiceAccount with
- a set of Vault policies.
+ description: |-
+ A required field containing the Vault Role to assume. A Role binds a
+ Kubernetes ServiceAccount with a set of Vault policies.
type: string
secretRef:
- description: The required Secret field containing a Kubernetes
- ServiceAccount JWT used for authenticating with Vault.
- Use of 'ambient credentials' is not supported.
+ description: |-
+ The required Secret field containing a Kubernetes ServiceAccount JWT used
+ for authenticating with Vault. Use of 'ambient credentials' is not
+ supported.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
serviceAccountRef:
- description: A reference to a service account that will
- be used to request a bound token (also known as "projected
- token"). Compared to using "secretRef", using this field
- means that you don't rely on statically bound tokens.
- To use this field, you must configure an RBAC rule to
- let cert-manager request a token.
+ description: |-
+ A reference to a service account that will be used to request a bound
+ token (also known as "projected token"). Compared to using "secretRef",
+ using this field means that you don't rely on statically bound tokens. To
+ use this field, you must configure an RBAC rule to let cert-manager
+ request a token.
properties:
+ audiences:
+ description: |-
+ TokenAudiences is an optional list of extra audiences to include in the token passed to Vault. The default token
+ consisting of the issuer's namespace and name is always included.
+ items:
+ type: string
+ type: array
name:
description: Name of the ServiceAccount used to request
a token.
@@ -2686,58 +2283,100 @@ spec:
a token.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
type: object
caBundle:
- description: Base64-encoded bundle of PEM CAs which will be used
- to validate the certificate chain presented by Vault. Only used
- if using HTTPS to connect to Vault and ignored for HTTP connections.
- Mutually exclusive with CABundleSecretRef. If neither CABundle
- nor CABundleSecretRef are defined, the certificate bundle in the
- cert-manager controller container is used to validate the TLS
- connection.
+ description: |-
+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate
+ chain presented by Vault. Only used if using HTTPS to connect to Vault and
+ ignored for HTTP connections.
+ Mutually exclusive with CABundleSecretRef.
+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in
+ the cert-manager controller container is used to validate the TLS connection.
format: byte
type: string
caBundleSecretRef:
- description: Reference to a Secret containing a bundle of PEM-encoded
- CAs to use when verifying the certificate chain presented by Vault
- when using HTTPS. Mutually exclusive with CABundle. If neither
- CABundle nor CABundleSecretRef are defined, the certificate bundle
- in the cert-manager controller container is used to validate the
- TLS connection. If no key for the Secret is specified, cert-manager
- will default to 'ca.crt'.
+ description: |-
+ Reference to a Secret containing a bundle of PEM-encoded CAs to use when
+ verifying the certificate chain presented by Vault when using HTTPS.
+ Mutually exclusive with CABundle.
+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in
+ the cert-manager controller container is used to validate the TLS connection.
+ If no key for the Secret is specified, cert-manager will default to 'ca.crt'.
properties:
key:
- description: The key of the entry in the Secret resource's `data`
- field to be used. Some instances of this field may be defaulted,
- in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ required:
+ - name
+ type: object
+ clientCertSecretRef:
+ description: |-
+ Reference to a Secret containing a PEM-encoded Client Certificate to use when the
+ Vault server requires mTLS.
+ properties:
+ key:
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
+ type: string
+ name:
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ required:
+ - name
+ type: object
+ clientKeySecretRef:
+ description: |-
+ Reference to a Secret containing a PEM-encoded Client Private Key to use when the
+ Vault server requires mTLS.
+ properties:
+ key:
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
+ type: string
+ name:
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
namespace:
- description: 'Name of the vault namespace. Namespaces is a set of
- features within Vault Enterprise that allows Vault environments
- to support Secure Multi-tenancy. e.g: "ns1" More about namespaces
- can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
+ description: |-
+ Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1"
+ More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces
type: string
path:
- description: 'Path is the mount path of the Vault PKI backend''s
- `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".'
+ description: |-
+ Path is the mount path of the Vault PKI backend's `sign` endpoint, e.g:
+ "my_pki_mount/sign/my-role-name".
type: string
server:
description: 'Server is the connection address for the Vault server,
@@ -2749,11 +2388,13 @@ spec:
- server
type: object
venafi:
- description: Venafi configures this issuer to sign certificates using
- a Venafi TPP or Venafi Cloud policy zone.
+ description: |-
+ Venafi configures this issuer to sign certificates using a Venafi TPP
+ or Venafi Cloud policy zone.
properties:
cloud:
- description: Cloud specifies the Venafi cloud configuration settings.
+ description: |-
+ Cloud specifies the Venafi cloud configuration settings.
Only one of TPP or Cloud may be specified.
properties:
apiTokenSecretRef:
@@ -2761,60 +2402,69 @@ spec:
the Venafi Cloud API token.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
url:
- description: URL is the base URL for Venafi Cloud. Defaults
- to "https://api.venafi.cloud/v1".
+ description: |-
+ URL is the base URL for Venafi Cloud.
+ Defaults to "https://api.venafi.cloud/v1".
type: string
required:
- apiTokenSecretRef
type: object
tpp:
- description: TPP specifies Trust Protection Platform configuration
- settings. Only one of TPP or Cloud may be specified.
+ description: |-
+ TPP specifies Trust Protection Platform configuration settings.
+ Only one of TPP or Cloud may be specified.
properties:
caBundle:
- description: Base64-encoded bundle of PEM CAs which will be
- used to validate the certificate chain presented by the TPP
- server. Only used if using HTTPS; ignored for HTTP. If undefined,
- the certificate bundle in the cert-manager controller container
+ description: |-
+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate
+ chain presented by the TPP server. Only used if using HTTPS; ignored for HTTP.
+ If undefined, the certificate bundle in the cert-manager controller container
is used to validate the chain.
format: byte
type: string
credentialsRef:
- description: CredentialsRef is a reference to a Secret containing
- the username and password for the TPP server. The secret must
- contain two keys, 'username' and 'password'.
+ description: |-
+ CredentialsRef is a reference to a Secret containing the username and
+ password for the TPP server.
+ The secret must contain two keys, 'username' and 'password'.
properties:
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
url:
- description: 'URL is the base URL for the vedsdk endpoint of
- the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".'
+ description: |-
+ URL is the base URL for the vedsdk endpoint of the Venafi TPP instance,
+ for example: "https://tpp.example.com/vedsdk".
type: string
required:
- credentialsRef
- url
type: object
zone:
- description: Zone is the Venafi Policy Zone to use for this issuer.
- All requests made to the Venafi platform will be restricted by
- the named zone policy. This field is required.
+ description: |-
+ Zone is the Venafi Policy Zone to use for this issuer.
+ All requests made to the Venafi platform will be restricted by the named
+ zone policy.
+ This field is required.
type: string
required:
- zone
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/issuers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/issuers.yaml
index e7600d24c..ee996f70c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/issuers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cert-manager.io/v1/issuers.yaml
@@ -26,19 +26,26 @@ spec:
version: v1
validation:
openAPIV3Schema:
- description: An Issuer represents a certificate issuing authority which can
- be referenced as part of `issuerRef` fields. It is scoped to a single namespace
- and can therefore only be referenced by resources within the same namespace.
+ description: |-
+ An Issuer represents a certificate issuing authority which can be
+ referenced as part of `issuerRef` fields.
+ It is scoped to a single namespace and can therefore only be referenced by
+ resources within the same namespace.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -77,49 +84,57 @@ spec:
description: Desired state of the Issuer resource.
properties:
acme:
- description: ACME configures this issuer to communicate with a RFC8555
- (ACME) server to obtain signed x509 certificates.
+ description: |-
+ ACME configures this issuer to communicate with a RFC8555 (ACME) server
+ to obtain signed x509 certificates.
properties:
caBundle:
- description: Base64-encoded bundle of PEM CAs which can be used
- to validate the certificate chain presented by the ACME server.
- Mutually exclusive with SkipTLSVerify; prefer using CABundle to
- prevent various kinds of security vulnerabilities. If CABundle
- and SkipTLSVerify are unset, the system certificate bundle inside
+ description: |-
+ Base64-encoded bundle of PEM CAs which can be used to validate the certificate
+ chain presented by the ACME server.
+ Mutually exclusive with SkipTLSVerify; prefer using CABundle to prevent various
+ kinds of security vulnerabilities.
+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside
the container is used to validate the TLS connection.
format: byte
type: string
disableAccountKeyGeneration:
- description: Enables or disables generating a new ACME account key.
- If true, the Issuer resource will *not* request a new account
- but will expect the account key to be supplied via an existing
- secret. If false, the cert-manager system will generate a new
- ACME account key for the Issuer. Defaults to false.
+ description: |-
+ Enables or disables generating a new ACME account key.
+ If true, the Issuer resource will *not* request a new account but will expect
+ the account key to be supplied via an existing secret.
+ If false, the cert-manager system will generate a new ACME account key
+ for the Issuer.
+ Defaults to false.
type: boolean
email:
- description: Email is the email address to be associated with the
- ACME account. This field is optional, but it is strongly recommended
- to be set. It will be used to contact you in case of issues with
- your account or certificates, including expiry notification emails.
+ description: |-
+ Email is the email address to be associated with the ACME account.
+ This field is optional, but it is strongly recommended to be set.
+ It will be used to contact you in case of issues with your account or
+ certificates, including expiry notification emails.
This field may be updated after the account is initially registered.
type: string
enableDurationFeature:
- description: Enables requesting a Not After date on certificates
- that matches the duration of the certificate. This is not supported
- by all ACME servers like Let's Encrypt. If set to true when the
- ACME server does not support it it will create an error on the
- Order. Defaults to false.
+ description: |-
+ Enables requesting a Not After date on certificates that matches the
+ duration of the certificate. This is not supported by all ACME servers
+ like Let's Encrypt. If set to true when the ACME server does not support
+ it, it will create an error on the Order.
+ Defaults to false.
type: boolean
externalAccountBinding:
- description: ExternalAccountBinding is a reference to a CA external
- account of the ACME server. If set, upon registration cert-manager
- will attempt to associate the given external account credentials
- with the registered ACME account.
+ description: |-
+ ExternalAccountBinding is a reference to a CA external account of the ACME
+ server.
+ If set, upon registration cert-manager will attempt to associate the given
+ external account credentials with the registered ACME account.
properties:
keyAlgorithm:
- description: 'Deprecated: keyAlgorithm field exists for historical
- compatibility reasons and should not be used. The algorithm
- is now hardcoded to HS256 in golang/x/crypto/acme.'
+ description: |-
+ Deprecated: keyAlgorithm field exists for historical compatibility
+ reasons and should not be used. The algorithm is now hardcoded to HS256
+ in golang/x/crypto/acme.
enum:
- HS256
- HS384
@@ -130,23 +145,25 @@ spec:
Account is bound to.
type: string
keySecretRef:
- description: keySecretRef is a Secret Key Selector referencing
- a data item in a Kubernetes Secret which holds the symmetric
- MAC key of the External Account Binding. The `key` is the
- index string that is paired with the key data in the Secret
- and should not be confused with the key data itself, or indeed
- with the External Account Binding keyID above. The secret
- key stored in the Secret **must** be un-padded, base64 URL
+ description: |-
+ keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes
+ Secret which holds the symmetric MAC key of the External Account Binding.
+ The `key` is the index string that is paired with the key data in the
+ Secret and should not be confused with the key data itself, or indeed with
+ the External Account Binding keyID above.
+ The secret key stored in the Secret **must** be un-padded, base64 URL
encoded data.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -156,83 +173,96 @@ spec:
- keySecretRef
type: object
preferredChain:
- description: 'PreferredChain is the chain to use if the ACME server
- outputs multiple. PreferredChain is no guarantee that this one
- gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s
- DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1"
- for the newer Let''s Encrypt root CA. This value picks the first
- certificate bundle in the ACME alternative chains that has a certificate
- with this value as its issuer''s CN'
+ description: |-
+ PreferredChain is the chain to use if the ACME server outputs multiple.
+ PreferredChain is no guarantee that this one gets delivered by the ACME
+ endpoint.
+ For example, for Let's Encrypt's DST crosssign you would use:
+ "DST Root CA X3" or "ISRG Root X1" for the newer Let's Encrypt root CA.
+ This value picks the first certificate bundle in the combined set of
+ ACME default and alternative chains that has a root-most certificate with
+ this value as its issuer's commonname.
maxLength: 64
type: string
privateKeySecretRef:
- description: PrivateKey is the name of a Kubernetes Secret resource
- that will be used to store the automatically generated ACME account
- private key. Optionally, a `key` may be specified to select a
- specific entry within the named Secret resource. If `key` is not
- specified, a default of `tls.key` will be used.
+ description: |-
+ PrivateKey is the name of a Kubernetes Secret resource that will be used to
+ store the automatically generated ACME account private key.
+ Optionally, a `key` may be specified to select a specific entry within
+ the named Secret resource.
+ If `key` is not specified, a default of `tls.key` will be used.
properties:
key:
- description: The key of the entry in the Secret resource's `data`
- field to be used. Some instances of this field may be defaulted,
- in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
server:
- description: 'Server is the URL used to access the ACME server''s
- ''directory'' endpoint. For example, for Let''s Encrypt''s staging
- endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory".
- Only ACME v2 endpoints (i.e. RFC 8555) are supported.'
+ description: |-
+ Server is the URL used to access the ACME server's 'directory' endpoint.
+ For example, for Let's Encrypt's staging endpoint, you would use:
+ "https://acme-staging-v02.api.letsencrypt.org/directory".
+ Only ACME v2 endpoints (i.e. RFC 8555) are supported.
type: string
skipTLSVerify:
- description: 'INSECURE: Enables or disables validation of the ACME
- server TLS certificate. If true, requests to the ACME server will
- not have the TLS certificate chain validated. Mutually exclusive
- with CABundle; prefer using CABundle to prevent various kinds
- of security vulnerabilities. Only enable this option in development
- environments. If CABundle and SkipTLSVerify are unset, the system
- certificate bundle inside the container is used to validate the
- TLS connection. Defaults to false.'
+ description: |-
+ INSECURE: Enables or disables validation of the ACME server TLS certificate.
+ If true, requests to the ACME server will not have the TLS certificate chain
+ validated.
+ Mutually exclusive with CABundle; prefer using CABundle to prevent various
+ kinds of security vulnerabilities.
+ Only enable this option in development environments.
+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside
+ the container is used to validate the TLS connection.
+ Defaults to false.
type: boolean
solvers:
- description: 'Solvers is a list of challenge solvers that will be
- used to solve ACME challenges for the matching domains. Solver
- configurations must be provided in order to obtain certificates
- from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/'
+ description: |-
+ Solvers is a list of challenge solvers that will be used to solve
+ ACME challenges for the matching domains.
+ Solver configurations must be provided in order to obtain certificates
+ from an ACME server.
+ For more information, see: https://cert-manager.io/docs/configuration/acme/
items:
- description: An ACMEChallengeSolver describes how to solve ACME
- challenges for the issuer it is part of. A selector may be provided
- to use different solving strategies for different DNS names.
+ description: |-
+ An ACMEChallengeSolver describes how to solve ACME challenges for the issuer it is part of.
+ A selector may be provided to use different solving strategies for different DNS names.
Only one of HTTP01 or DNS01 must be provided.
properties:
dns01:
- description: Configures cert-manager to attempt to complete
- authorizations by performing the DNS01 challenge flow.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the DNS01 challenge flow.
properties:
acmeDNS:
- description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns)
- API to manage DNS01 challenge records.
+ description: |-
+ Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage
+ DNS01 challenge records.
properties:
accountSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -248,55 +278,58 @@ spec:
manage DNS01 challenge records.
properties:
accessTokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientSecretSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
clientTokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -314,26 +347,27 @@ spec:
DNS01 challenge records.
properties:
clientID:
- description: 'Auth: Azure Service Principal: The ClientID
- of the Azure Service Principal used to authenticate
- with Azure DNS. If set, ClientSecret and TenantID
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientSecret and TenantID must also be set.
type: string
clientSecretSecretRef:
- description: 'Auth: Azure Service Principal: A reference
- to a Secret containing the password associated with
- the Service Principal. If set, ClientID and TenantID
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ A reference to a Secret containing the password associated with the Service Principal.
+ If set, ClientID and TenantID must also be set.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -351,19 +385,18 @@ spec:
description: name of the DNS zone that should be used
type: string
managedIdentity:
- description: 'Auth: Azure Workload Identity or Azure
- Managed Service Identity: Settings to enable Azure
- Workload Identity or Azure Managed Service Identity
- If set, ClientID, ClientSecret and TenantID must
- not be set.'
+ description: |-
+ Auth: Azure Workload Identity or Azure Managed Service Identity:
+ Settings to enable Azure Workload Identity or Azure Managed Service Identity
+ If set, ClientID, ClientSecret and TenantID must not be set.
properties:
clientID:
description: client ID of the managed identity,
can not be used at the same time as resourceID
type: string
resourceID:
- description: resource ID of the managed identity,
- can not be used at the same time as clientID
+ description: |-
+ resource ID of the managed identity, can not be used at the same time as clientID
Cannot be used for Azure Managed Service Identity
type: string
type: object
@@ -375,10 +408,10 @@ spec:
description: ID of the Azure subscription
type: string
tenantID:
- description: 'Auth: Azure Service Principal: The TenantID
- of the Azure Service Principal used to authenticate
- with Azure DNS. If set, ClientID and ClientSecret
- must also be set.'
+ description: |-
+ Auth: Azure Service Principal:
+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.
+ If set, ClientID and ClientSecret must also be set.
type: string
required:
- resourceGroupName
@@ -389,27 +422,28 @@ spec:
challenge records.
properties:
hostedZoneName:
- description: HostedZoneName is an optional field that
- tells cert-manager in which Cloud DNS zone the challenge
- record has to be created. If left empty cert-manager
- will automatically choose a zone.
+ description: |-
+ HostedZoneName is an optional field that tells cert-manager in which
+ Cloud DNS zone the challenge record has to be created.
+ If left empty cert-manager will automatically choose a zone.
type: string
project:
type: string
serviceAccountSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -422,20 +456,21 @@ spec:
records.
properties:
apiKeySecretRef:
- description: 'API key to use to authenticate with
- Cloudflare. Note: using an API token to authenticate
- is now the recommended method as it allows greater
- control of permissions.'
+ description: |-
+ API key to use to authenticate with Cloudflare.
+ Note: using an API token to authenticate is now the recommended method
+ as it allows greater control of permissions.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -444,14 +479,15 @@ spec:
description: API token used to authenticate with Cloudflare.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -462,8 +498,9 @@ spec:
type: string
type: object
cnameStrategy:
- description: CNAMEStrategy configures how the DNS01 provider
- should handle CNAME records when found in DNS zones.
+ description: |-
+ CNAMEStrategy configures how the DNS01 provider should handle CNAME
+ records when found in DNS zones.
enum:
- None
- Follow
@@ -473,19 +510,20 @@ spec:
challenge records.
properties:
tokenSecretRef:
- description: A reference to a specific 'key' within
- a Secret resource. In some instances, `key` is a
- required field.
+ description: |-
+ A reference to a specific 'key' within a Secret resource.
+ In some instances, `key` is a required field.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -494,43 +532,44 @@ spec:
- tokenSecretRef
type: object
rfc2136:
- description: Use RFC2136 ("Dynamic Updates in the Domain
- Name System") (https://datatracker.ietf.org/doc/rfc2136/)
+ description: |-
+ Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/)
to manage DNS01 challenge records.
properties:
nameserver:
- description: The IP address or hostname of an authoritative
- DNS server supporting RFC2136 in the form host:port.
- If the host is an IPv6 address it must be enclosed
- in square brackets (e.g [2001:db8::1]) ; port is
- optional. This field is required.
+ description: |-
+ The IP address or hostname of an authoritative DNS server supporting
+ RFC2136 in the form host:port. If the host is an IPv6 address it must be
+ enclosed in square brackets (e.g [2001:db8::1]) ; port is optional.
+ This field is required.
type: string
tsigAlgorithm:
- description: 'The TSIG Algorithm configured in the
- DNS supporting RFC2136. Used only when ``tsigSecretSecretRef``
- and ``tsigKeyName`` are defined. Supported values
- are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``,
- ``HMACSHA256`` or ``HMACSHA512``.'
+ description: |-
+ The TSIG Algorithm configured in the DNS supporting RFC2136. Used only
+ when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined.
+ Supported values are (case-insensitive): ``HMACMD5`` (default),
+ ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.
type: string
tsigKeyName:
- description: The TSIG Key name configured in the DNS.
- If ``tsigSecretSecretRef`` is defined, this field
- is required.
+ description: |-
+ The TSIG Key name configured in the DNS.
+ If ``tsigSecretSecretRef`` is defined, this field is required.
type: string
tsigSecretSecretRef:
- description: The name of the secret containing the
- TSIG value. If ``tsigKeyName`` is defined, this
- field is required.
+ description: |-
+ The name of the secret containing the TSIG value.
+ If ``tsigKeyName`` is defined, this field is required.
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -543,33 +582,72 @@ spec:
records.
properties:
accessKeyID:
- description: 'The AccessKeyID is used for authentication.
- Cannot be set when SecretAccessKeyID is set. If
- neither the Access Key nor Key ID are set, we fall-back
- to using env vars, shared credentials file or AWS
- Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The AccessKeyID is used for authentication.
+ Cannot be set when SecretAccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
type: string
accessKeyIDSecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If set, pull the AWS access key ID from a key within
- a Kubernetes Secret. Cannot be set when AccessKeyID
- is set. If neither the Access Key nor Key ID are
- set, we fall-back to using env vars, shared credentials
- file or AWS Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication. If set, pull the AWS
+ access key ID from a key within a Kubernetes Secret.
+ Cannot be set when AccessKeyID is set.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
+ auth:
+ description: Auth configures how cert-manager authenticates.
+ properties:
+ kubernetes:
+ description: |-
+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity
+ by passing a bound ServiceAccount token.
+ properties:
+ serviceAccountRef:
+ description: |-
+ A reference to a service account that will be used to request a bound
+ token (also known as "projected token"). To use this field, you must
+ configure an RBAC rule to let cert-manager request a token.
+ properties:
+ audiences:
+ description: |-
+ TokenAudiences is an optional list of audiences to include in the
+ token passed to AWS. The default token consisting of the issuer's namespace
+ and name is always included.
+ If unset the audience defaults to `sts.amazonaws.com`.
+ items:
+ type: string
+ type: array
+ name:
+ description: Name of the ServiceAccount
+ used to request a token.
+ type: string
+ required:
+ - name
+ type: object
+ required:
+ - serviceAccountRef
+ type: object
+ required:
+ - kubernetes
+ type: object
hostedZoneID:
description: If set, the provider will manage only
this zone in Route53 and will not do an lookup using
@@ -580,27 +658,27 @@ spec:
and SecretAccessKey
type: string
role:
- description: Role is a Role ARN which the Route53
- provider will assume using either the explicit credentials
- AccessKeyID/SecretAccessKey or the inferred credentials
- from environment variables, shared credentials file
- or AWS Instance metadata
+ description: |-
+ Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey
+ or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata
type: string
secretAccessKeySecretRef:
- description: 'The SecretAccessKey is used for authentication.
- If neither the Access Key nor Key ID are set, we
- fall-back to using env vars, shared credentials
- file or AWS Instance metadata, see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
+ description: |-
+ The SecretAccessKey is used for authentication.
+ If neither the Access Key nor Key ID are set, we fall-back to using env
+ vars, shared credentials file or AWS Instance metadata,
+ see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials
properties:
key:
- description: The key of the entry in the Secret
- resource's `data` field to be used. Some instances
- of this field may be defaulted, in others it
- may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred
- to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -609,30 +687,33 @@ spec:
- region
type: object
webhook:
- description: Configure an external webhook based DNS01
- challenge solver to manage DNS01 challenge records.
+ description: |-
+ Configure an external webhook based DNS01 challenge solver to manage
+ DNS01 challenge records.
properties:
config:
- description: Additional configuration that should
- be passed to the webhook apiserver when challenges
- are processed. This can contain arbitrary JSON data.
+ description: |-
+ Additional configuration that should be passed to the webhook apiserver
+ when challenges are processed.
+ This can contain arbitrary JSON data.
Secret values should not be specified in this stanza.
- If secret values are needed (e.g. credentials for
- a DNS service), you should use a SecretKeySelector
- to reference a Secret resource. For details on the
- schema of this field, consult the webhook provider
+ If secret values are needed (e.g. credentials for a DNS service), you
+ should use a SecretKeySelector to reference a Secret resource.
+ For details on the schema of this field, consult the webhook provider
implementation's documentation.
x-kubernetes-preserve-unknown-fields: true
groupName:
- description: The API group name that should be used
- when POSTing ChallengePayload resources to the webhook
- apiserver. This should be the same as the GroupName
- specified in the webhook provider implementation.
+ description: |-
+ The API group name that should be used when POSTing ChallengePayload
+ resources to the webhook apiserver.
+ This should be the same as the GroupName specified in the webhook
+ provider implementation.
type: string
solverName:
- description: The name of the solver to use, as defined
- in the webhook provider implementation. This will
- typically be the name of the provider, e.g. 'cloudflare'.
+ description: |-
+ The name of the solver to use, as defined in the webhook provider
+ implementation.
+ This will typically be the name of the provider, e.g. 'cloudflare'.
type: string
required:
- groupName
@@ -640,173 +721,193 @@ spec:
type: object
type: object
http01:
- description: Configures cert-manager to attempt to complete
- authorizations by performing the HTTP01 challenge flow.
- It is not possible to obtain certificates for wildcard domain
- names (e.g. `*.example.com`) using the HTTP01 challenge
- mechanism.
+ description: |-
+ Configures cert-manager to attempt to complete authorizations by
+ performing the HTTP01 challenge flow.
+ It is not possible to obtain certificates for wildcard domain names
+ (e.g. `*.example.com`) using the HTTP01 challenge mechanism.
properties:
gatewayHTTPRoute:
- description: The Gateway API is a sig-network community
- API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/).
- The Gateway solver will create HTTPRoutes with the specified
- labels in the same namespace as the challenge. This
- solver is experimental, and fields / behaviour may change
- in the future.
+ description: |-
+ The Gateway API is a sig-network community API that models service networking
+ in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will
+ create HTTPRoutes with the specified labels in the same namespace as the challenge.
+ This solver is experimental, and fields / behaviour may change in the future.
properties:
labels:
additionalProperties:
type: string
- description: Custom labels that will be applied to
- HTTPRoutes created by cert-manager while solving
- HTTP-01 challenges.
+ description: |-
+ Custom labels that will be applied to HTTPRoutes created by cert-manager
+ while solving HTTP-01 challenges.
type: object
parentRefs:
- description: 'When solving an HTTP-01 challenge, cert-manager
- creates an HTTPRoute. cert-manager needs to know
- which parentRefs should be used when creating the
- HTTPRoute. Usually, the parentRef references a Gateway.
- See: https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways'
+ description: |-
+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.
+ cert-manager needs to know which parentRefs should be used when creating
+ the HTTPRoute. Usually, the parentRef references a Gateway. See:
+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways
items:
- description: "ParentReference identifies an API
- object (usually a Gateway) that can be considered
- a parent of this resource (usually a route). There
- are two kinds of parent resources with \"Core\"
- support: \n * Gateway (Gateway conformance profile)
- * Service (Mesh conformance profile, experimental,
- ClusterIP Services only) \n This API may be extended
- in the future to support additional kinds of parent
- resources. \n The API object must be valid in
- the cluster; the Group and Kind must be registered
- in the cluster for this reference to be valid."
+ description: |-
+ ParentReference identifies an API object (usually a Gateway) that can be considered
+ a parent of this resource (usually a route). There are two kinds of parent resources
+ with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ This API may be extended in the future to support additional kinds of parent
+ resources.
+
+
+ The API object must be valid in the cluster; the Group and Kind must
+ be registered in the cluster for this reference to be valid.
properties:
group:
default: gateway.networking.k8s.io
- description: "Group is the group of the referent.
- When unspecified, \"gateway.networking.k8s.io\"
- is inferred. To set the core API group (such
- as for a \"Service\" kind referent), Group
- must be explicitly set to \"\" (empty string).
- \n Support: Core"
+ description: |-
+ Group is the group of the referent.
+ When unspecified, "gateway.networking.k8s.io" is inferred.
+ To set the core API group (such as for a "Service" kind referent),
+ Group must be explicitly set to "" (empty string).
+
+
+ Support: Core
maxLength: 253
pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
type: string
kind:
default: Gateway
- description: "Kind is kind of the referent.
- \n There are two kinds of parent resources
- with \"Core\" support: \n * Gateway (Gateway
- conformance profile) * Service (Mesh conformance
- profile, experimental, ClusterIP Services
- only) \n Support for other resources is Implementation-Specific."
+ description: |-
+ Kind is kind of the referent.
+
+
+ There are two kinds of parent resources with "Core" support:
+
+
+ * Gateway (Gateway conformance profile)
+ * Service (Mesh conformance profile, ClusterIP Services only)
+
+
+ Support for other resources is Implementation-Specific.
maxLength: 63
minLength: 1
pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
type: string
name:
- description: "Name is the name of the referent.
- \n Support: Core"
+ description: |-
+ Name is the name of the referent.
+
+
+ Support: Core
maxLength: 253
minLength: 1
type: string
namespace:
- description: "Namespace is the namespace of
- the referent. When unspecified, this refers
- to the local namespace of the Route. \n Note
- that there are specific rules for ParentRefs
- which cross namespace boundaries. Cross-namespace
- references are only valid if they are explicitly
- allowed by something in the namespace they
- are referring to. For example: Gateway has
- the AllowedRoutes field, and ReferenceGrant
- provides a generic way to enable any other
- kind of cross-namespace reference. \n
- ParentRefs from a Route to a Service in the
- same namespace are \"producer\" routes, which
- apply default routing rules to inbound connections
- from any namespace to the Service. \n ParentRefs
- from a Route to a Service in a different namespace
- are \"consumer\" routes, and these routing
- rules are only applied to outbound connections
- originating from the same namespace as the
- Route, for which the intended destination
- of the connections are a Service targeted
- as a ParentRef of the Route.
- \n Support: Core"
+ description: |-
+ Namespace is the namespace of the referent. When unspecified, this refers
+ to the local namespace of the Route.
+
+
+ Note that there are specific rules for ParentRefs which cross namespace
+ boundaries. Cross-namespace references are only valid if they are explicitly
+ allowed by something in the namespace they are referring to. For example:
+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a
+ generic way to enable any other kind of cross-namespace reference.
+
+
+
+ ParentRefs from a Route to a Service in the same namespace are "producer"
+ routes, which apply default routing rules to inbound connections from
+ any namespace to the Service.
+
+
+ ParentRefs from a Route to a Service in a different namespace are
+ "consumer" routes, and these routing rules are only applied to outbound
+ connections originating from the same namespace as the Route, for which
+ the intended destination of the connections are a Service targeted as a
+ ParentRef of the Route.
+
+
+
+ Support: Core
maxLength: 63
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
type: string
port:
- description: "Port is the network port this
- Route targets. It can be interpreted differently
- based on the type of parent resource. \n When
- the parent resource is a Gateway, this targets
- all listeners listening on the specified port
- that also support this kind of Route(and select
- this Route). It's not recommended to set `Port`
- unless the networking behaviors specified
- in a Route must apply to a specific port as
- opposed to a listener(s) whose port(s) may
- be changed. When both Port and SectionName
- are specified, the name and port of the selected
- listener must match both specified values.
- \n When
- the parent resource is a Service, this targets
- a specific port in the Service spec. When
- both Port (experimental) and SectionName are
- specified, the name and port of the selected
- port must match both specified values.
- \n Implementations MAY choose to support other
- parent resources. Implementations supporting
- other types of parent resources MUST clearly
- document how/if Port is interpreted. \n For
- the purpose of status, an attachment is considered
- successful as long as the parent resource
- accepts it partially. For example, Gateway
- listeners can restrict which Routes can attach
- to them by Route kind, namespace, or hostname.
- If 1 of 2 Gateway listeners accept attachment
- from the referencing Route, the Route MUST
- be considered successfully attached. If no
- Gateway listeners accept attachment from this
- Route, the Route MUST be considered detached
- from the Gateway. \n Support: Extended \n
- "
+ description: |-
+ Port is the network port this Route targets. It can be interpreted
+ differently based on the type of parent resource.
+
+
+ When the parent resource is a Gateway, this targets all listeners
+ listening on the specified port that also support this kind of Route(and
+ select this Route). It's not recommended to set `Port` unless the
+ networking behaviors specified in a Route must apply to a specific port
+ as opposed to a listener(s) whose port(s) may be changed. When both Port
+ and SectionName are specified, the name and port of the selected listener
+ must match both specified values.
+
+
+
+ When the parent resource is a Service, this targets a specific port in the
+ Service spec. When both Port (experimental) and SectionName are specified,
+ the name and port of the selected port must match both specified values.
+
+
+
+ Implementations MAY choose to support other parent resources.
+ Implementations supporting other types of parent resources MUST clearly
+ document how/if Port is interpreted.
+
+
+ For the purpose of status, an attachment is considered successful as
+ long as the parent resource accepts it partially. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment
+ from the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route,
+ the Route MUST be considered detached from the Gateway.
+
+
+ Support: Extended
format: int32
maximum: 65535
minimum: 1
type: integer
sectionName:
- description: "SectionName is the name of a section
- within the target resource. In the following
- resources, SectionName is interpreted as the
- following: \n * Gateway: Listener Name. When
- both Port (experimental) and SectionName are
- specified, the name and port of the selected
- listener must match both specified values.
- * Service: Port Name. When both Port (experimental)
- and SectionName are specified, the name and
- port of the selected listener must match both
- specified values. Note that attaching Routes
- to Services as Parents is part of experimental
- Mesh support and is not supported for any
- other purpose. \n Implementations MAY choose
- to support attaching Routes to other resources.
- If that is the case, they MUST clearly document
- how SectionName is interpreted. \n When unspecified
- (empty string), this will reference the entire
- resource. For the purpose of status, an attachment
- is considered successful if at least one section
- in the parent resource accepts it. For example,
- Gateway listeners can restrict which Routes
- can attach to them by Route kind, namespace,
- or hostname. If 1 of 2 Gateway listeners accept
- attachment from the referencing Route, the
- Route MUST be considered successfully attached.
- If no Gateway listeners accept attachment
- from this Route, the Route MUST be considered
- detached from the Gateway. \n Support: Core"
+ description: |-
+ SectionName is the name of a section within the target resource. In the
+ following resources, SectionName is interpreted as the following:
+
+
+ * Gateway: Listener name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+ * Service: Port name. When both Port (experimental) and SectionName
+ are specified, the name and port of the selected listener must match
+ both specified values.
+
+
+ Implementations MAY choose to support attaching Routes to other resources.
+ If that is the case, they MUST clearly document how SectionName is
+ interpreted.
+
+
+ When unspecified (empty string), this will reference the entire resource.
+ For the purpose of status, an attachment is considered successful if at
+ least one section in the parent resource accepts it. For example, Gateway
+ listeners can restrict which Routes can attach to them by Route kind,
+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from
+ the referencing Route, the Route MUST be considered successfully
+ attached. If no Gateway listeners accept attachment from this Route, the
+ Route MUST be considered detached from the Gateway.
+
+
+ Support: Core
maxLength: 253
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
@@ -816,44 +917,43 @@ spec:
type: object
type: array
serviceType:
- description: Optional service type for Kubernetes
- solver service. Supported values are NodePort or
- ClusterIP. If unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
ingress:
- description: The ingress based HTTP01 challenge solver
- will solve challenges by creating or modifying Ingress
- resources in order to route requests for '/.well-known/acme-challenge/XYZ'
- to 'challenge solver' pods that are provisioned by cert-manager
- for each Challenge to be completed.
+ description: |-
+ The ingress based HTTP01 challenge solver will solve challenges by
+ creating or modifying Ingress resources in order to route requests for
+ '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are
+ provisioned by cert-manager for each Challenge to be completed.
properties:
class:
- description: This field configures the annotation
- `kubernetes.io/ingress.class` when creating Ingress
- resources to solve ACME challenges that use this
- challenge solver. Only one of `class`, `name` or
- `ingressClassName` may be specified.
+ description: |-
+ This field configures the annotation `kubernetes.io/ingress.class` when
+ creating Ingress resources to solve ACME challenges that use this
+ challenge solver. Only one of `class`, `name` or `ingressClassName` may
+ be specified.
type: string
ingressClassName:
- description: This field configures the field `ingressClassName`
- on the created Ingress resources used to solve ACME
- challenges that use this challenge solver. This
- is the recommended way of configuring the ingress
- class. Only one of `class`, `name` or `ingressClassName`
- may be specified.
+ description: |-
+ This field configures the field `ingressClassName` on the created Ingress
+ resources used to solve ACME challenges that use this challenge solver.
+ This is the recommended way of configuring the ingress class. Only one of
+ `class`, `name` or `ingressClassName` may be specified.
type: string
ingressTemplate:
- description: Optional ingress template used to configure
- the ACME challenge solver ingress used for HTTP01
- challenges.
+ description: |-
+ Optional ingress template used to configure the ACME challenge solver
+ ingress used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the ingress
- used to solve HTTP01 challenges. Only the 'labels'
- and 'annotations' fields may be set. If labels
- or annotations overlap with in-built values,
- the values here will override the in-built values.
+ description: |-
+ ObjectMeta overrides for the ingress used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -870,25 +970,25 @@ spec:
type: object
type: object
name:
- description: The name of the ingress resource that
- should have ACME challenge solving routes inserted
- into it in order to solve HTTP01 challenges. This
- is typically used in conjunction with ingress controllers
- like ingress-gce, which maintains a 1:1 mapping
- between external IPs and ingress resources. Only
- one of `class`, `name` or `ingressClassName` may
+ description: |-
+ The name of the ingress resource that should have ACME challenge solving
+ routes inserted into it in order to solve HTTP01 challenges.
+ This is typically used in conjunction with ingress controllers like
+ ingress-gce, which maintains a 1:1 mapping between external IPs and
+ ingress resources. Only one of `class`, `name` or `ingressClassName` may
be specified.
type: string
podTemplate:
- description: Optional pod template used to configure
- the ACME challenge solver pods used for HTTP01 challenges.
+ description: |-
+ Optional pod template used to configure the ACME challenge solver pods
+ used for HTTP01 challenges.
properties:
metadata:
- description: ObjectMeta overrides for the pod
- used to solve HTTP01 challenges. Only the 'labels'
- and 'annotations' fields may be set. If labels
- or annotations overlap with in-built values,
- the values here will override the in-built values.
+ description: |-
+ ObjectMeta overrides for the pod used to solve HTTP01 challenges.
+ Only the 'labels' and 'annotations' fields may be set.
+ If labels or annotations overlap with in-built values, the values here
+ will override the in-built values.
properties:
annotations:
additionalProperties:
@@ -904,10 +1004,10 @@ spec:
type: object
type: object
spec:
- description: PodSpec defines overrides for the
- HTTP01 challenge solver pod. Check ACMEChallengeSolverHTTP01IngressPodSpec
- to find out currently supported fields. All
- other fields will be ignored.
+ description: |-
+ PodSpec defines overrides for the HTTP01 challenge solver pod.
+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.
+ All other fields will be ignored.
properties:
affinity:
description: If specified, the pod's scheduling
@@ -918,31 +1018,20 @@ spec:
rules for the pod.
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- affinity expressions, etc.), compute
- a sum by iterating through the elements
- of this field and adding "weight"
- to the sum if the node matches the
- corresponding matchExpressions;
- the node(s) with the highest sum
- are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node matches the corresponding matchExpressions; the
+ node(s) with the highest sum are the most preferred.
items:
- description: An empty preferred
- scheduling term matches all objects
- with implicit weight 0 (i.e. it's
- a no-op). A null preferred scheduling
- term matches no objects (i.e.
- is also a no-op).
+ description: |-
+ An empty preferred scheduling term matches all objects with implicit weight 0
+ (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
properties:
preference:
description: A node selector
@@ -954,12 +1043,9 @@ spec:
selector requirements
by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -967,53 +1053,35 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node
selector requirements
by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1021,42 +1089,27 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1071,41 +1124,33 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not
- met at scheduling time, the pod
- will not be scheduled onto the node.
- If the affinity requirements specified
- by this field cease to be met at
- some point during pod execution
- (e.g. due to an update), the system
- may or may not try to eventually
- evict the pod from its node.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to an update), the system
+ may or may not try to eventually evict the pod from its node.
properties:
nodeSelectorTerms:
description: Required. A list
of node selector terms. The
terms are ORed.
items:
- description: A null or empty
- node selector term matches
- no objects. The requirements
- of them are ANDed. The TopologySelectorTerm
- type implements a subset of
- the NodeSelectorTerm.
+ description: |-
+ A null or empty node selector term matches no objects. The requirements of
+ them are ANDed.
+ The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
properties:
matchExpressions:
description: A list of node
selector requirements
by node's labels.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1113,53 +1158,35 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
description: A list of node
selector requirements
by node's fields.
items:
- description: A node selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A node selector requirement is a selector that contains values, a key, and an operator
+ that relates the key and values.
properties:
key:
description: The label
@@ -1167,45 +1194,31 @@ spec:
applies to.
type: string
operator:
- description: Represents
- a key's relationship
- to a set of values.
- Valid operators
- are In, NotIn, Exists,
- DoesNotExist. Gt,
- and Lt.
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
type: string
values:
- description: An array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. If
- the operator is
- Gt or Lt, the values
- array must have
- a single element,
- which will be interpreted
- as an integer. This
- array is replaced
- during a strategic
- merge patch.
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1218,24 +1231,16 @@ spec:
pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- affinity expressions, etc.), compute
- a sum by iterating through the elements
- of this field and adding "weight"
- to the sum if the node has pods
- which matches the corresponding
- podAffinityTerm; the node(s) with
- the highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all
of the matched WeightedPodAffinityTerm
@@ -1248,11 +1253,9 @@ spec:
with the corresponding weight.
properties:
labelSelector:
- description: A label query
- over a set of resources,
- in this case pods. If
- it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1261,13 +1264,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1277,138 +1276,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- in (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MatchLabelKeys
- and LabelSelector. Also,
- MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- notin (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also,
- MismatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query
- over the set of namespaces
- that the term applies
- to. The term is applied
- to the union of the namespaces
- selected by this field
- and the ones listed in
- the namespaces field.
- null selector and null
- or empty namespaces list
- means "this pod's namespace".
- An empty selector ({})
- matches all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1417,13 +1351,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1433,97 +1363,61 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces
- specifies a static list
- of namespace names that
- the term applies to. The
- term is applied to the
- union of the namespaces
- listed in this field and
- the ones selected by namespaceSelector.
- null or empty namespaces
- list and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity)
- or not co-located (anti-affinity)
- with the pods matching
- the labelSelector in the
- specified namespaces,
- where co-located is defined
- as running on a node whose
- value of the label with
- key topologyKey matches
- that of any node on which
- any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated
- with matching the corresponding
- podAffinityTerm, in the range
- 1-100.
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
+ in the range 1-100.
format: int32
type: integer
required:
@@ -1531,39 +1425,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the affinity requirements
- specified by this field are not
- met at scheduling time, the pod
- will not be scheduled onto the node.
- If the affinity requirements specified
- by this field cease to be met at
- some point during pod execution
- (e.g. due to a pod label update),
- the system may or may not try to
- eventually evict the pod from its
- node. When there are multiple elements,
- the lists of nodes corresponding
- to each podAffinityTerm are intersected,
- i.e. all terms must be satisfied.
+ description: |-
+ If the affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods
- (namely those matching the labelSelector
- relative to the given namespace(s))
- that this pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with, where co-located is defined
- as running on a node whose value
- of the label with key
- matches that of any node on which
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1571,12 +1455,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1585,126 +1466,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods
- which pods will be taken into
- consideration for the incoming
- pod's pod (anti) affinity.
- Keys that don't exist in the
- incoming pod labels will be
- ignored. The default value
- is empty. The same key is
- forbidden to exist in both
- MatchLabelKeys and LabelSelector.
- Also, MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key notin (value)` to
- select the group of existing
- pods which pods will be taken
- into consideration for the
- incoming pod's pod (anti)
- affinity. Keys that don't
- exist in the incoming pod
- labels will be ignored. The
- default value is empty. The
- same key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that
- the term applies to. The term
- is applied to the union of
- the namespaces selected by
- this field and the ones listed
- in the namespaces field. null
- selector and null or empty
- namespaces list means "this
- pod's namespace". An empty
- selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -1712,12 +1540,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -1726,86 +1551,59 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace
- names that the term applies
- to. The term is applied to
- the union of the namespaces
- listed in this field and the
- ones selected by namespaceSelector.
- null or empty namespaces list
- and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity) or
- not co-located (anti-affinity)
- with the pods matching the
- labelSelector in the specified
- namespaces, where co-located
- is defined as running on a
- node whose value of the label
- with key topologyKey matches
- that of any node on which
- any of the selected pods is
- running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
description: Describes pod anti-affinity
@@ -1814,24 +1612,16 @@ spec:
as some other pod(s)).
properties:
preferredDuringSchedulingIgnoredDuringExecution:
- description: The scheduler will prefer
- to schedule pods to nodes that satisfy
- the anti-affinity expressions specified
- by this field, but it may choose
- a node that violates one or more
- of the expressions. The node that
- is most preferred is the one with
- the greatest sum of weights, i.e.
- for each node that meets all of
- the scheduling requirements (resource
- request, requiredDuringScheduling
- anti-affinity expressions, etc.),
- compute a sum by iterating through
- the elements of this field and adding
- "weight" to the sum if the node
- has pods which matches the corresponding
- podAffinityTerm; the node(s) with
- the highest sum are the most preferred.
+ description: |-
+ The scheduler will prefer to schedule pods to nodes that satisfy
+ the anti-affinity expressions specified by this field, but it may choose
+ a node that violates one or more of the expressions. The node that is
+ most preferred is the one with the greatest sum of weights, i.e.
+ for each node that meets all of the scheduling requirements (resource
+ request, requiredDuringScheduling anti-affinity expressions, etc.),
+ compute a sum by iterating through the elements of this field and adding
+ "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
+ node(s) with the highest sum are the most preferred.
items:
description: The weights of all
of the matched WeightedPodAffinityTerm
@@ -1844,11 +1634,9 @@ spec:
with the corresponding weight.
properties:
labelSelector:
- description: A label query
- over a set of resources,
- in this case pods. If
- it's null, this PodAffinityTerm
- matches with no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -1857,13 +1645,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -1873,138 +1657,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- in (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MatchLabelKeys
- and LabelSelector. Also,
- MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label
- keys to select which pods
- will be taken into consideration.
- The keys are used to lookup
- values from the incoming
- pod labels, those key-value
- labels are merged with
- `LabelSelector` as `key
- notin (value)` to select
- the group of existing
- pods which pods will be
- taken into consideration
- for the incoming pod's
- pod (anti) affinity. Keys
- that don't exist in the
- incoming pod labels will
- be ignored. The default
- value is empty. The same
- key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also,
- MismatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an
- alpha field and requires
- enabling MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query
- over the set of namespaces
- that the term applies
- to. The term is applied
- to the union of the namespaces
- selected by this field
- and the ones listed in
- the namespaces field.
- null selector and null
- or empty namespaces list
- means "this pod's namespace".
- An empty selector ({})
- matches all namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -2013,13 +1732,9 @@ spec:
The requirements are
ANDed.
items:
- description: A label
- selector requirement
- is a selector that
- contains values,
- a key, and an operator
- that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key
@@ -2029,97 +1744,61 @@ spec:
to.
type: string
operator:
- description: operator
- represents a
- key's relationship
- to a set of
- values. Valid
- operators are
- In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array
- of string values.
- If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or
- DoesNotExist,
- the values array
- must be empty.
- This array is
- replaced during
- a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels
- map is equivalent
- to an element of matchExpressions,
- whose key field is
- "key", the operator
- is "In", and the values
- array contains only
- "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces
- specifies a static list
- of namespace names that
- the term applies to. The
- term is applied to the
- union of the namespaces
- listed in this field and
- the ones selected by namespaceSelector.
- null or empty namespaces
- list and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity)
- or not co-located (anti-affinity)
- with the pods matching
- the labelSelector in the
- specified namespaces,
- where co-located is defined
- as running on a node whose
- value of the label with
- key topologyKey matches
- that of any node on which
- any of the selected pods
- is running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
weight:
- description: weight associated
- with matching the corresponding
- podAffinityTerm, in the range
- 1-100.
+ description: |-
+ weight associated with matching the corresponding podAffinityTerm,
+ in the range 1-100.
format: int32
type: integer
required:
@@ -2127,39 +1806,29 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
- description: If the anti-affinity
- requirements specified by this field
- are not met at scheduling time,
- the pod will not be scheduled onto
- the node. If the anti-affinity requirements
- specified by this field cease to
- be met at some point during pod
- execution (e.g. due to a pod label
- update), the system may or may not
- try to eventually evict the pod
- from its node. When there are multiple
- elements, the lists of nodes corresponding
- to each podAffinityTerm are intersected,
- i.e. all terms must be satisfied.
+ description: |-
+ If the anti-affinity requirements specified by this field are not met at
+ scheduling time, the pod will not be scheduled onto the node.
+ If the anti-affinity requirements specified by this field cease to be met
+ at some point during pod execution (e.g. due to a pod label update), the
+ system may or may not try to eventually evict the pod from its node.
+ When there are multiple elements, the lists of nodes corresponding to each
+ podAffinityTerm are intersected, i.e. all terms must be satisfied.
items:
- description: Defines a set of pods
- (namely those matching the labelSelector
- relative to the given namespace(s))
- that this pod should be co-located
- (affinity) or not co-located (anti-affinity)
- with, where co-located is defined
- as running on a node whose value
- of the label with key
- matches that of any node on which
+ description: |-
+ Defines a set of pods (namely those matching the labelSelector
+ relative to the given namespace(s)) that this pod should be
+ co-located (affinity) or not co-located (anti-affinity) with,
+ where co-located is defined as running on a node whose value of
+ the label with key matches that of any node on which
a pod of the set of pods is running
properties:
labelSelector:
- description: A label query over
- a set of resources, in this
- case pods. If it's null, this
- PodAffinityTerm matches with
- no Pods.
+ description: |-
+ A label query over a set of resources, in this case pods.
+ If it's null, this PodAffinityTerm matches with no Pods.
properties:
matchExpressions:
description: matchExpressions
@@ -2167,12 +1836,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -2181,126 +1847,73 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
matchLabelKeys:
- description: MatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key in (value)` to select
- the group of existing pods
- which pods will be taken into
- consideration for the incoming
- pod's pod (anti) affinity.
- Keys that don't exist in the
- incoming pod labels will be
- ignored. The default value
- is empty. The same key is
- forbidden to exist in both
- MatchLabelKeys and LabelSelector.
- Also, MatchLabelKeys cannot
- be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.
+ Also, matchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
mismatchLabelKeys:
- description: MismatchLabelKeys
- is a set of pod label keys
- to select which pods will
- be taken into consideration.
- The keys are used to lookup
- values from the incoming pod
- labels, those key-value labels
- are merged with `LabelSelector`
- as `key notin (value)` to
- select the group of existing
- pods which pods will be taken
- into consideration for the
- incoming pod's pod (anti)
- affinity. Keys that don't
- exist in the incoming pod
- labels will be ignored. The
- default value is empty. The
- same key is forbidden to exist
- in both MismatchLabelKeys
- and LabelSelector. Also, MismatchLabelKeys
- cannot be set when LabelSelector
- isn't set. This is an alpha
- field and requires enabling
- MatchLabelKeysInPodAffinity
- feature gate.
+ description: |-
+ MismatchLabelKeys is a set of pod label keys to select which pods will
+ be taken into consideration. The keys are used to lookup values from the
+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
+ to select the group of existing pods which pods will be taken into consideration
+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
+ pod labels will be ignored. The default value is empty.
+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
+ This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
items:
type: string
type: array
x-kubernetes-list-type: atomic
namespaceSelector:
- description: A label query over
- the set of namespaces that
- the term applies to. The term
- is applied to the union of
- the namespaces selected by
- this field and the ones listed
- in the namespaces field. null
- selector and null or empty
- namespaces list means "this
- pod's namespace". An empty
- selector ({}) matches all
- namespaces.
+ description: |-
+ A label query over the set of namespaces that the term applies to.
+ The term is applied to the union of the namespaces selected by this field
+ and the ones listed in the namespaces field.
+ null selector and null or empty namespaces list means "this pod's namespace".
+ An empty selector ({}) matches all namespaces.
properties:
matchExpressions:
description: matchExpressions
@@ -2308,12 +1921,9 @@ spec:
requirements. The requirements
are ANDed.
items:
- description: A label selector
- requirement is a selector
- that contains values,
- a key, and an operator
- that relates the key
- and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is
@@ -2322,100 +1932,78 @@ spec:
to.
type: string
operator:
- description: operator
- represents a key's
- relationship to
- a set of values.
- Valid operators
- are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values
- is an array of string
- values. If the operator
- is In or NotIn,
- the values array
- must be non-empty.
- If the operator
- is Exists or DoesNotExist,
- the values array
- must be empty. This
- array is replaced
- during a strategic
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels
- is a map of {key,value}
- pairs. A single {key,value}
- in the matchLabels map
- is equivalent to an element
- of matchExpressions, whose
- key field is "key", the
- operator is "In", and
- the values array contains
- only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
namespaces:
- description: namespaces specifies
- a static list of namespace
- names that the term applies
- to. The term is applied to
- the union of the namespaces
- listed in this field and the
- ones selected by namespaceSelector.
- null or empty namespaces list
- and null namespaceSelector
- means "this pod's namespace".
+ description: |-
+ namespaces specifies a static list of namespace names that the term applies to.
+ The term is applied to the union of the namespaces listed in this field
+ and the ones selected by namespaceSelector.
+ null or empty namespaces list and null namespaceSelector means "this pod's namespace".
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
- description: This pod should
- be co-located (affinity) or
- not co-located (anti-affinity)
- with the pods matching the
- labelSelector in the specified
- namespaces, where co-located
- is defined as running on a
- node whose value of the label
- with key topologyKey matches
- that of any node on which
- any of the selected pods is
- running. Empty topologyKey
- is not allowed.
+ description: |-
+ This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
+ the labelSelector in the specified namespaces, where co-located is defined as running on a node
+ whose value of the label with key topologyKey matches that of any node on which any of the
+ selected pods is running.
+ Empty topologyKey is not allowed.
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
imagePullSecrets:
description: If specified, the pod's imagePullSecrets
items:
- description: LocalObjectReference contains
- enough information to let you locate the
+ description: |-
+ LocalObjectReference contains enough information to let you locate the
referenced object inside the same namespace.
properties:
name:
- description: 'Name of the referent.
+ default: ""
+ description: |-
+ Name of the referent.
+ This field is effectively required, but due to backwards compatibility is
+ allowed to be empty. Instances of this type with an empty value here are
+ almost certainly wrong.
+ TODO: Add other useful fields. apiVersion, kind, uid?
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion,
- kind, uid?'
+ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2423,11 +2011,10 @@ spec:
nodeSelector:
additionalProperties:
type: string
- description: 'NodeSelector is a selector which
- must be true for the pod to fit on a node.
- Selector which must match a node''s labels
- for the pod to be scheduled on that node.
- More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/'
+ description: |-
+ NodeSelector is a selector which must be true for the pod to fit on a node.
+ Selector which must match a node's labels for the pod to be scheduled on that node.
+ More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
type: object
priorityClassName:
description: If specified, the pod's priorityClassName.
@@ -2439,101 +2026,91 @@ spec:
tolerations:
description: If specified, the pod's tolerations.
items:
- description: The pod this Toleration is
- attached to tolerates any taint that matches
- the triple using the
- matching operator .
+ description: |-
+ The pod this Toleration is attached to tolerates any taint that matches
+ the triple using the matching operator .
properties:
effect:
- description: Effect indicates the taint
- effect to match. Empty means match
- all taint effects. When specified,
- allowed values are NoSchedule, PreferNoSchedule
- and NoExecute.
+ description: |-
+ Effect indicates the taint effect to match. Empty means match all taint effects.
+ When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
type: string
key:
- description: Key is the taint key that
- the toleration applies to. Empty means
- match all taint keys. If the key is
- empty, operator must be Exists; this
- combination means to match all values
- and all keys.
+ description: |-
+ Key is the taint key that the toleration applies to. Empty means match all taint keys.
+ If the key is empty, operator must be Exists; this combination means to match all values and all keys.
type: string
operator:
- description: Operator represents a key's
- relationship to the value. Valid operators
- are Exists and Equal. Defaults to
- Equal. Exists is equivalent to wildcard
- for value, so that a pod can tolerate
- all taints of a particular category.
+ description: |-
+ Operator represents a key's relationship to the value.
+ Valid operators are Exists and Equal. Defaults to Equal.
+ Exists is equivalent to wildcard for value, so that a pod can
+ tolerate all taints of a particular category.
type: string
tolerationSeconds:
- description: TolerationSeconds represents
- the period of time the toleration
- (which must be of effect NoExecute,
- otherwise this field is ignored) tolerates
- the taint. By default, it is not set,
- which means tolerate the taint forever
- (do not evict). Zero and negative
- values will be treated as 0 (evict
- immediately) by the system.
+ description: |-
+ TolerationSeconds represents the period of time the toleration (which must be
+ of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
+ it is not set, which means tolerate the taint forever (do not evict). Zero and
+ negative values will be treated as 0 (evict immediately) by the system.
format: int64
type: integer
value:
- description: Value is the taint value
- the toleration matches to. If the
- operator is Exists, the value should
- be empty, otherwise just a regular
- string.
+ description: |-
+ Value is the taint value the toleration matches to.
+ If the operator is Exists, the value should be empty, otherwise just a regular string.
type: string
type: object
type: array
type: object
type: object
serviceType:
- description: Optional service type for Kubernetes
- solver service. Supported values are NodePort or
- ClusterIP. If unset, defaults to NodePort.
+ description: |-
+ Optional service type for Kubernetes solver service. Supported values
+ are NodePort or ClusterIP. If unset, defaults to NodePort.
type: string
type: object
type: object
selector:
- description: Selector selects a set of DNSNames on the Certificate
- resource that should be solved using this challenge solver.
- If not specified, the solver will be treated as the 'default'
- solver with the lowest priority, i.e. if any other solver
- has a more specific match, it will be used instead.
+ description: |-
+ Selector selects a set of DNSNames on the Certificate resource that
+ should be solved using this challenge solver.
+ If not specified, the solver will be treated as the 'default' solver
+ with the lowest priority, i.e. if any other solver has a more specific
+ match, it will be used instead.
properties:
dnsNames:
- description: List of DNSNames that this solver will be
- used to solve. If specified and a match is found, a
- dnsNames selector will take precedence over a dnsZones
- selector. If multiple solvers match with the same dnsNames
- value, the solver with the most matching labels in matchLabels
- will be selected. If neither has more matches, the solver
- defined earlier in the list will be selected.
+ description: |-
+ List of DNSNames that this solver will be used to solve.
+ If specified and a match is found, a dnsNames selector will take
+ precedence over a dnsZones selector.
+ If multiple solvers match with the same dnsNames value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
dnsZones:
- description: List of DNSZones that this solver will be
- used to solve. The most specific DNS zone match specified
- here will take precedence over other DNS zone matches,
- so a solver specifying sys.example.com will be selected
- over one specifying example.com for the domain www.sys.example.com.
- If multiple solvers match with the same dnsZones value,
- the solver with the most matching labels in matchLabels
- will be selected. If neither has more matches, the solver
- defined earlier in the list will be selected.
+ description: |-
+ List of DNSZones that this solver will be used to solve.
+ The most specific DNS zone match specified here will take precedence
+ over other DNS zone matches, so a solver specifying sys.example.com
+ will be selected over one specifying example.com for the domain
+ www.sys.example.com.
+ If multiple solvers match with the same dnsZones value, the solver
+ with the most matching labels in matchLabels will be selected.
+ If neither has more matches, the solver defined earlier in the list
+ will be selected.
items:
type: string
type: array
matchLabels:
additionalProperties:
type: string
- description: A label selector that is used to refine the
- set of certificate's that this challenge solver will
- apply to.
+ description: |-
+ A label selector that is used to refine the set of certificate's that
+ this challenge solver will apply to.
type: object
type: object
type: object
@@ -2543,90 +2120,100 @@ spec:
- server
type: object
ca:
- description: CA configures this issuer to sign certificates using a
- signing CA keypair stored in a Secret resource. This is used to build
- internal PKIs that are managed by cert-manager.
+ description: |-
+ CA configures this issuer to sign certificates using a signing CA keypair
+ stored in a Secret resource.
+ This is used to build internal PKIs that are managed by cert-manager.
properties:
crlDistributionPoints:
- description: The CRL distribution points is an X.509 v3 certificate
- extension which identifies the location of the CRL from which
- the revocation of this certificate can be checked. If not set,
- certificates will be issued without distribution points set.
+ description: |-
+ The CRL distribution points is an X.509 v3 certificate extension which identifies
+ the location of the CRL from which the revocation of this certificate can be checked.
+ If not set, certificates will be issued without distribution points set.
items:
type: string
type: array
issuingCertificateURLs:
- description: IssuingCertificateURLs is a list of URLs which this
- issuer should embed into certificates it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1
- for more details. As an example, such a URL might be "http://ca.domain.com/ca.crt".
+ description: |-
+ IssuingCertificateURLs is a list of URLs which this issuer should embed into certificates
+ it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1 for more details.
+ As an example, such a URL might be "http://ca.domain.com/ca.crt".
items:
type: string
type: array
ocspServers:
- description: The OCSP server list is an X.509 v3 extension that
- defines a list of URLs of OCSP responders. The OCSP responders
- can be queried for the revocation status of an issued certificate.
- If not set, the certificate will be issued with no OCSP servers
- set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org".
+ description: |-
+ The OCSP server list is an X.509 v3 extension that defines a list of
+ URLs of OCSP responders. The OCSP responders can be queried for the
+ revocation status of an issued certificate. If not set, the
+ certificate will be issued with no OCSP servers set. For example, an
+ OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org".
items:
type: string
type: array
secretName:
- description: SecretName is the name of the secret used to sign Certificates
- issued by this Issuer.
+ description: |-
+ SecretName is the name of the secret used to sign Certificates issued
+ by this Issuer.
type: string
required:
- secretName
type: object
selfSigned:
- description: SelfSigned configures this issuer to 'self sign' certificates
- using the private key used to create the CertificateRequest object.
+ description: |-
+ SelfSigned configures this issuer to 'self sign' certificates using the
+ private key used to create the CertificateRequest object.
properties:
crlDistributionPoints:
- description: The CRL distribution points is an X.509 v3 certificate
- extension which identifies the location of the CRL from which
- the revocation of this certificate can be checked. If not set
- certificate will be issued without CDP. Values are strings.
+ description: |-
+ The CRL distribution points is an X.509 v3 certificate extension which identifies
+ the location of the CRL from which the revocation of this certificate can be checked.
+ If not set certificate will be issued without CDP. Values are strings.
items:
type: string
type: array
type: object
vault:
- description: Vault configures this issuer to sign certificates using
- a HashiCorp Vault PKI backend.
+ description: |-
+ Vault configures this issuer to sign certificates using a HashiCorp Vault
+ PKI backend.
properties:
auth:
description: Auth configures how cert-manager authenticates with
the Vault server.
properties:
appRole:
- description: AppRole authenticates with Vault using the App
- Role auth mechanism, with the role and secret stored in a
- Kubernetes Secret resource.
+ description: |-
+ AppRole authenticates with Vault using the App Role auth mechanism,
+ with the role and secret stored in a Kubernetes Secret resource.
properties:
path:
- description: 'Path where the App Role authentication backend
- is mounted in Vault, e.g: "approle"'
+ description: |-
+ Path where the App Role authentication backend is mounted in Vault, e.g:
+ "approle"
type: string
roleId:
- description: RoleID configured in the App Role authentication
- backend when setting up the authentication backend in
- Vault.
+ description: |-
+ RoleID configured in the App Role authentication backend when setting
+ up the authentication backend in Vault.
type: string
secretRef:
- description: Reference to a key in a Secret that contains
- the App Role secret used to authenticate with Vault. The
- `key` field must be specified and denotes which entry
- within the Secret resource is used as the app role secret.
+ description: |-
+ Reference to a key in a Secret that contains the App Role secret used
+ to authenticate with Vault.
+ The `key` field must be specified and denotes which entry within the Secret
+ resource is used as the app role secret.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
@@ -2637,47 +2224,57 @@ spec:
- secretRef
type: object
kubernetes:
- description: Kubernetes authenticates with Vault by passing
- the ServiceAccount token stored in the named Secret resource
- to the Vault server.
+ description: |-
+ Kubernetes authenticates with Vault by passing the ServiceAccount
+ token stored in the named Secret resource to the Vault server.
properties:
mountPath:
- description: The Vault mountPath here is the mount path
- to use when authenticating with Vault. For example, setting
- a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login`
- to authenticate with Vault. If unspecified, the default
- value "/v1/auth/kubernetes" will be used.
+ description: |-
+ The Vault mountPath here is the mount path to use when authenticating with
+ Vault. For example, setting a value to `/v1/auth/foo`, will use the path
+ `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the
+ default value "/v1/auth/kubernetes" will be used.
type: string
role:
- description: A required field containing the Vault Role
- to assume. A Role binds a Kubernetes ServiceAccount with
- a set of Vault policies.
+ description: |-
+ A required field containing the Vault Role to assume. A Role binds a
+ Kubernetes ServiceAccount with a set of Vault policies.
type: string
secretRef:
- description: The required Secret field containing a Kubernetes
- ServiceAccount JWT used for authenticating with Vault.
- Use of 'ambient credentials' is not supported.
+ description: |-
+ The required Secret field containing a Kubernetes ServiceAccount JWT used
+ for authenticating with Vault. Use of 'ambient credentials' is not
+ supported.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to.
- More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
serviceAccountRef:
- description: A reference to a service account that will
- be used to request a bound token (also known as "projected
- token"). Compared to using "secretRef", using this field
- means that you don't rely on statically bound tokens.
- To use this field, you must configure an RBAC rule to
- let cert-manager request a token.
+ description: |-
+ A reference to a service account that will be used to request a bound
+ token (also known as "projected token"). Compared to using "secretRef",
+ using this field means that you don't rely on statically bound tokens. To
+ use this field, you must configure an RBAC rule to let cert-manager
+ request a token.
properties:
+ audiences:
+ description: |-
+ TokenAudiences is an optional list of extra audiences to include in the token passed to Vault. The default token
+ consisting of the issuer's namespace and name is always included.
+ items:
+ type: string
+ type: array
name:
description: Name of the ServiceAccount used to request
a token.
@@ -2693,58 +2290,100 @@ spec:
a token.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
type: object
caBundle:
- description: Base64-encoded bundle of PEM CAs which will be used
- to validate the certificate chain presented by Vault. Only used
- if using HTTPS to connect to Vault and ignored for HTTP connections.
- Mutually exclusive with CABundleSecretRef. If neither CABundle
- nor CABundleSecretRef are defined, the certificate bundle in the
- cert-manager controller container is used to validate the TLS
- connection.
+ description: |-
+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate
+ chain presented by Vault. Only used if using HTTPS to connect to Vault and
+ ignored for HTTP connections.
+ Mutually exclusive with CABundleSecretRef.
+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in
+ the cert-manager controller container is used to validate the TLS connection.
format: byte
type: string
caBundleSecretRef:
- description: Reference to a Secret containing a bundle of PEM-encoded
- CAs to use when verifying the certificate chain presented by Vault
- when using HTTPS. Mutually exclusive with CABundle. If neither
- CABundle nor CABundleSecretRef are defined, the certificate bundle
- in the cert-manager controller container is used to validate the
- TLS connection. If no key for the Secret is specified, cert-manager
- will default to 'ca.crt'.
+ description: |-
+ Reference to a Secret containing a bundle of PEM-encoded CAs to use when
+ verifying the certificate chain presented by Vault when using HTTPS.
+ Mutually exclusive with CABundle.
+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in
+ the cert-manager controller container is used to validate the TLS connection.
+ If no key for the Secret is specified, cert-manager will default to 'ca.crt'.
properties:
key:
- description: The key of the entry in the Secret resource's `data`
- field to be used. Some instances of this field may be defaulted,
- in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ required:
+ - name
+ type: object
+ clientCertSecretRef:
+ description: |-
+ Reference to a Secret containing a PEM-encoded Client Certificate to use when the
+ Vault server requires mTLS.
+ properties:
+ key:
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
+ type: string
+ name:
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ required:
+ - name
+ type: object
+ clientKeySecretRef:
+ description: |-
+ Reference to a Secret containing a PEM-encoded Client Private Key to use when the
+ Vault server requires mTLS.
+ properties:
+ key:
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
+ type: string
+ name:
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
namespace:
- description: 'Name of the vault namespace. Namespaces is a set of
- features within Vault Enterprise that allows Vault environments
- to support Secure Multi-tenancy. e.g: "ns1" More about namespaces
- can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
+ description: |-
+ Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1"
+ More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces
type: string
path:
- description: 'Path is the mount path of the Vault PKI backend''s
- `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".'
+ description: |-
+ Path is the mount path of the Vault PKI backend's `sign` endpoint, e.g:
+ "my_pki_mount/sign/my-role-name".
type: string
server:
description: 'Server is the connection address for the Vault server,
@@ -2756,11 +2395,13 @@ spec:
- server
type: object
venafi:
- description: Venafi configures this issuer to sign certificates using
- a Venafi TPP or Venafi Cloud policy zone.
+ description: |-
+ Venafi configures this issuer to sign certificates using a Venafi TPP
+ or Venafi Cloud policy zone.
properties:
cloud:
- description: Cloud specifies the Venafi cloud configuration settings.
+ description: |-
+ Cloud specifies the Venafi cloud configuration settings.
Only one of TPP or Cloud may be specified.
properties:
apiTokenSecretRef:
@@ -2768,60 +2409,69 @@ spec:
the Venafi Cloud API token.
properties:
key:
- description: The key of the entry in the Secret resource's
- `data` field to be used. Some instances of this field
- may be defaulted, in others it may be required.
+ description: |-
+ The key of the entry in the Secret resource's `data` field to be used.
+ Some instances of this field may be defaulted, in others it may be
+ required.
type: string
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
url:
- description: URL is the base URL for Venafi Cloud. Defaults
- to "https://api.venafi.cloud/v1".
+ description: |-
+ URL is the base URL for Venafi Cloud.
+ Defaults to "https://api.venafi.cloud/v1".
type: string
required:
- apiTokenSecretRef
type: object
tpp:
- description: TPP specifies Trust Protection Platform configuration
- settings. Only one of TPP or Cloud may be specified.
+ description: |-
+ TPP specifies Trust Protection Platform configuration settings.
+ Only one of TPP or Cloud may be specified.
properties:
caBundle:
- description: Base64-encoded bundle of PEM CAs which will be
- used to validate the certificate chain presented by the TPP
- server. Only used if using HTTPS; ignored for HTTP. If undefined,
- the certificate bundle in the cert-manager controller container
+ description: |-
+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate
+ chain presented by the TPP server. Only used if using HTTPS; ignored for HTTP.
+ If undefined, the certificate bundle in the cert-manager controller container
is used to validate the chain.
format: byte
type: string
credentialsRef:
- description: CredentialsRef is a reference to a Secret containing
- the username and password for the TPP server. The secret must
- contain two keys, 'username' and 'password'.
+ description: |-
+ CredentialsRef is a reference to a Secret containing the username and
+ password for the TPP server.
+ The secret must contain two keys, 'username' and 'password'.
properties:
name:
- description: 'Name of the resource being referred to. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the resource being referred to.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
required:
- name
type: object
url:
- description: 'URL is the base URL for the vedsdk endpoint of
- the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".'
+ description: |-
+ URL is the base URL for the vedsdk endpoint of the Venafi TPP instance,
+ for example: "https://tpp.example.com/vedsdk".
type: string
required:
- credentialsRef
- url
type: object
zone:
- description: Zone is the Venafi Policy Zone to use for this issuer.
- All requests made to the Venafi platform will be restricted by
- the named zone policy. This field is required.
+ description: |-
+ Zone is the Venafi Policy Zone to use for this issuer.
+ All requests made to the Venafi platform will be restricted by the named
+ zone policy.
+ This field is required.
type: string
required:
- zone
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1/managedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1/managedclusters.yaml
index 83ca7f784..76424fbda 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1/managedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1/managedclusters.yaml
@@ -18,16 +18,17 @@ spec:
validation:
openAPIV3Schema:
description: "ManagedCluster represents the desired state and current status
- of managed cluster. ManagedCluster is a cluster scoped resource. The name
- is the cluster UID. \n The cluster join process follows a double opt-in process:
- \n 1. Agent on managed cluster creates CSR on hub with cluster UID and agent
- name. 2. Agent on managed cluster creates ManagedCluster on hub. 3. Cluster
- admin on hub approves the CSR for UID and agent name of the ManagedCluster.
- 4. Cluster admin sets spec.acceptClient of ManagedCluster to true. 5. Cluster
- admin on managed cluster creates credential of kubeconfig to hub. \n Once
- the hub creates the cluster namespace, the Klusterlet agent on the ManagedCluster
- pushes the credential to the hub to use against the kube-apiserver of the
- ManagedCluster."
+ of a managed cluster. ManagedCluster is a cluster-scoped resource. The name
+ is the cluster UID. \n The cluster join process is a double opt-in process.
+ See the following join process steps: \n 1. The agent on the managed cluster
+ creates a CSR on the hub with the cluster UID and agent name. 2. The agent
+ on the managed cluster creates a ManagedCluster on the hub. 3. The cluster
+ admin on the hub cluster approves the CSR for the UID and agent name of the
+ ManagedCluster. 4. The cluster admin sets the spec.acceptClient of the ManagedCluster
+ to true. 5. The cluster admin on the managed cluster creates a credential
+ of the kubeconfig for the hub cluster. \n After the hub cluster creates the
+ cluster namespace, the klusterlet agent on the ManagedCluster pushes the credential
+ to the hub cluster to use against the kube-apiserver of the ManagedCluster."
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
index 89df80176..854ff826b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
@@ -17,14 +17,14 @@ spec:
version: v1beta1
validation:
openAPIV3Schema:
- description: "PlacementDecision indicates a decision from a placement PlacementDecision
- should has a label cluster.open-cluster-management.io/placement={placement
- name} to reference a certain placement. \n If a placement has spec.numberOfClusters
- specified, the total number of decisions contained in status.decisions of
- PlacementDecisions should always be NumberOfClusters; otherwise, the total
- number of decisions should be the number of ManagedClusters which match the
- placement requirements. \n Some of the decisions might be empty when there
- are no enough ManagedClusters meet the placement requirements."
+ description: "PlacementDecision indicates a decision from a placement. PlacementDecision
+ must have a cluster.open-cluster-management.io/placement={placement name}
+ label to reference a certain placement. \n If a placement has spec.numberOfClusters
+ specified, the total number of decisions contained in the status.decisions
+ of PlacementDecisions must be the same as NumberOfClusters. Otherwise, the
+ total number of decisions must equal the number of ManagedClusters that match
+ the placement requirements. \n Some of the decisions might be empty when there
+ are not enough ManagedClusters to meet the placement requirements."
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placements.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placements.yaml
index 37ff99544..7907f4abe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placements.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta1/placements.yaml
@@ -43,11 +43,11 @@ spec:
ManagedClusterSets; 3. ManagedClusterSets are bound to workload namespaces;
4. Namespace-scoped Placements specify a slice of ManagedClusterSets which
select a working set of potential ManagedClusters; 5. Then Placements subselect
- from that working set using label/claim selection. \n No ManagedCluster will
- be selected if no ManagedClusterSet is bound to the placement namespace. User
- is able to bind a ManagedClusterSet to a namespace by creating a ManagedClusterSetBinding
- in that namespace if they have a RBAC rule to CREATE on the virtual subresource
- of `managedclustersets/bind`. \n A slice of PlacementDecisions with label
+ from that working set using label/claim selection. \n A ManagedCluster will
+ not be selected if no ManagedClusterSet is bound to the placement namespace.
+ A user is able to bind a ManagedClusterSet to a namespace by creating a ManagedClusterSetBinding
+ in that namespace if they have an RBAC rule to CREATE on the virtual subresource
+ of `managedclustersets/bind`. \n A slice of PlacementDecisions with the label
cluster.open-cluster-management.io/placement={placement name} will be created
to represent the ManagedClusters selected by this placement. \n If a ManagedCluster
is selected and added into the PlacementDecisions, other components may apply
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
index d1f6ebcd9..3e682e60b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
@@ -27,11 +27,11 @@ spec:
validation:
openAPIV3Schema:
description: ManagedClusterSetBinding projects a ManagedClusterSet into a certain
- namespace. User is able to create a ManagedClusterSetBinding in a namespace
- and bind it to a ManagedClusterSet if they have an RBAC rule to CREATE on
- the virtual subresource of managedclustersets/bind. Workloads created in the
- same namespace can only be distributed to ManagedClusters in ManagedClusterSets
- bound in this namespace by higher level controllers.
+ namespace. You can create a ManagedClusterSetBinding in a namespace and bind
+ it to a ManagedClusterSet if both have a RBAC rules to CREATE on the virtual
+ subresource of managedclustersets/bind. Workloads that you create in the same
+ namespace can only be distributed to ManagedClusters in ManagedClusterSets
+ that are bound in this namespace by higher-level controllers.
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
index d8f07b556..318d90de3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
@@ -27,17 +27,17 @@ spec:
version: v1beta2
validation:
openAPIV3Schema:
- description: "ManagedClusterSet defines a group of ManagedClusters that user's
- workload can run on. A workload can be defined to deployed on a ManagedClusterSet,
- which mean: 1. The workload can run on any ManagedCluster in the ManagedClusterSet
- 2. The workload cannot run on any ManagedCluster outside the ManagedClusterSet
- 3. The service exposed by the workload can be shared in any ManagedCluster
- in the ManagedClusterSet \n In order to assign a ManagedCluster to a certian
- ManagedClusterSet, add a label with name `cluster.open-cluster-management.io/clusterset`
- on the ManagedCluster to refers to the ManagedClusterSet. User is not allow
- to add/remove this label on a ManagedCluster unless they have a RBAC rule
- to CREATE on a virtual subresource of managedclustersets/join. In order to
- update this label, user must have the permission on both the old and new ManagedClusterSet."
+ description: "ManagedClusterSet defines a group of ManagedClusters that you
+ can run workloads on. You can define a workload to be deployed on a ManagedClusterSet.
+ See the following options for the workload: - The workload can run on any
+ ManagedCluster in the ManagedClusterSet - The workload cannot run on any ManagedCluster
+ outside the ManagedClusterSet - The service exposed by the workload can be
+ shared in any ManagedCluster in the ManagedClusterSet \n To assign a ManagedCluster
+ to a certain ManagedClusterSet, add a label with the name cluster.open-cluster-management.io/clusterset
+ on the ManagedCluster to refer to the ManagedClusterSet. You are not allowed
+ to add or remove this label on a ManagedCluster unless you have an RBAC rule
+ to CREATE on a virtual subresource of managedclustersets/join. To update this
+ label, you must have the permission on both the old and new ManagedClusterSet."
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/clusters.yaml
index 36d9bdb00..9483db7a1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/clusters.yaml
@@ -20,14 +20,19 @@ spec:
description: Cluster is the Schema for the clusters API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,8 +74,9 @@ spec:
description: Cluster network configuration.
properties:
apiServerPort:
- description: APIServerPort specifies the port the API Server should
- bind to. Defaults to 6443.
+ description: |-
+ APIServerPort specifies the port the API Server should bind to.
+ Defaults to 6443.
format: int32
type: integer
pods:
@@ -113,80 +119,94 @@ spec:
- port
type: object
controlPlaneRef:
- description: ControlPlaneRef is an optional reference to a provider-specific
- resource that holds the details for provisioning the Control Plane
- for a Cluster.
+ description: |-
+ ControlPlaneRef is an optional reference to a provider-specific resource that holds
+ the details for provisioning the Control Plane for a Cluster.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
infrastructureRef:
- description: InfrastructureRef is a reference to a provider-specific
- resource that holds the details for provisioning infrastructure for
- a cluster in said provider.
+ description: |-
+ InfrastructureRef is a reference to a provider-specific resource that holds the details
+ for provisioning infrastructure for a cluster in said provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinedeployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinedeployments.yaml
index 9408efa2e..7861c0200 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinedeployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinedeployments.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "MachineDeployment is the Schema for the machinedeployments API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ MachineDeployment is the Schema for the machinedeployments API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -72,227 +80,265 @@ spec:
minLength: 1
type: string
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- should be ready. Defaults to 0 (machine will be considered available
- as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
format: int32
type: integer
paused:
description: Indicates that the deployment is paused.
type: boolean
progressDeadlineSeconds:
- description: The maximum time in seconds for a deployment to make progress
- before it is considered to be failed. The deployment controller will
- continue to process failed deployments and a condition with a ProgressDeadlineExceeded
- reason will be surfaced in the deployment status. Note that progress
- will not be estimated during the time a deployment is paused. Defaults
- to 600s.
+ description: |-
+ The maximum time in seconds for a deployment to make progress before it
+ is considered to be failed. The deployment controller will continue to
+ process failed deployments and a condition with a ProgressDeadlineExceeded
+ reason will be surfaced in the deployment status. Note that progress will
+ not be estimated during the time a deployment is paused. Defaults to 600s.
format: int32
type: integer
replicas:
- description: Number of desired machines. Defaults to 1. This is a pointer
- to distinguish between explicit zero and not specified.
+ description: |-
+ Number of desired machines. Defaults to 1.
+ This is a pointer to distinguish between explicit zero and not specified.
format: int32
type: integer
revisionHistoryLimit:
- description: The number of old MachineSets to retain to allow rollback.
+ description: |-
+ The number of old MachineSets to retain to allow rollback.
This is a pointer to distinguish between explicit zero and not specified.
Defaults to 1.
format: int32
type: integer
selector:
- description: Label selector for machines. Existing MachineSets whose
- machines are selected by this will be the ones affected by this deployment.
+ description: |-
+ Label selector for machines. Existing MachineSets whose machines are
+ selected by this will be the ones affected by this deployment.
It must match the machine template's labels.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
strategy:
- description: The deployment strategy to use to replace existing machines
- with new ones.
+ description: |-
+ The deployment strategy to use to replace existing machines with
+ new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present only if MachineDeploymentStrategyType
- = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
maxSurge:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be scheduled
- above the desired number of machines. Value can be an absolute
- number (ex: 5) or a percentage of desired machines (ex: 10%).
- This can not be 0 if MaxUnavailable is 0. Absolute number
- is calculated from percentage by rounding up. Defaults to
- 1. Example: when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update starts, such
- that the total number of old and new machines do not exceed
- 130% of desired machines. Once old machines have been killed,
- new MachineSet can be scaled up further, ensuring that total
- number of machines running at any time during the update is
- at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be unavailable
- during the update. Value can be an absolute number (ex: 5)
- or a percentage of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down. This can not
- be 0 if MaxSurge is 0. Defaults to 0. Example: when this is
- set to 30%, the old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling update starts.
- Once new machines are ready, old MachineSet can be scaled
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
down further, followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all times during
- the update is at least 70% of desired machines.'
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Currently the only supported strategy
- is "RollingUpdate". Default is RollingUpdate.
+ description: |-
+ Type of deployment. Currently the only supported strategy is
+ "RollingUpdate".
+ Default is RollingUpdate.
type: string
type: object
template:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
generateName:
- description: "GenerateName is an optional prefix, used by the
- server, to generate a unique name ONLY IF the Name field has
- not been provided. If this field is used, the name returned
- to the client will be different than the name passed. This
- value will also be combined with a unique suffix. The provided
- value has the same validation rules as the Name field, and
- may be truncated by the length of the suffix required to make
- the value unique on the server. \n If this field is specified
- and the generated name exists, the server will NOT return
- a 409 - instead, it will either return 201 Created or 500
- with Reason ServerTimeout indicating a unique name could not
- be found in the time allotted, and the client should retry
- (optionally after the time indicated in the Retry-After header).
- \n Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ GenerateName is an optional prefix, used by the server, to generate a unique
+ name ONLY IF the Name field has not been provided.
+ If this field is used, the name returned to the client will be different
+ than the name passed. This value will also be combined with a unique suffix.
+ The provided value has the same validation rules as the Name field,
+ and may be truncated by the length of the suffix required to make the value
+ unique on the server.
+
+
+ If this field is specified and the generated name exists, the server will
+ NOT return a 409 - instead, it will either return 201 Created or 500 with Reason
+ ServerTimeout indicating a unique name could not be found in the time allotted, and the client
+ should retry (optionally after the time indicated in the Retry-After header).
+
+
+ Applied only if Name is not specified.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
name:
- description: "Name must be unique within a namespace. Is required
- when creating resources, although some resources may allow
- a client to request the generation of an appropriate name
- automatically. Name is primarily intended for creation idempotence
- and configuration definition. Cannot be updated. More info:
- http://kubernetes.io/docs/user-guide/identifiers#names \n
- Deprecated: This field has no function and is going to be
- removed in a next release."
+ description: |-
+ Name must be unique within a namespace. Is required when creating resources, although
+ some resources may allow a client to request the generation of an appropriate name
+ automatically. Name is primarily intended for creation idempotence and configuration
+ definition.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/identifiers#names
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
namespace:
- description: "Namespace defines the space within each name must
- be unique. An empty namespace is equivalent to the \"default\"
- namespace, but \"default\" is the canonical representation.
- Not all objects are required to be scoped to a namespace -
- the value of this field for those objects will be empty. \n
- Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ Namespace defines the space within each name must be unique. An empty namespace is
+ equivalent to the "default" namespace, but "default" is the canonical representation.
+ Not all objects are required to be scoped to a namespace - the value of this field for
+ those objects will be empty.
+
+
+ Must be a DNS_LABEL.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
ownerReferences:
- description: "List of objects depended by this object. If ALL
- objects in the list have been deleted, this object will be
- garbage collected. If this object is managed by a controller,
- then an entry in this list will point to this controller,
- with the controller field set to true. There cannot be more
- than one managing controller. \n Deprecated: This field has
- no function and is going to be removed in a next release."
+ description: |-
+ List of objects depended by this object. If ALL objects in the list have
+ been deleted, this object will be garbage collected. If this object is managed by a controller,
+ then an entry in this list will point to this controller, with the controller field set to true.
+ There cannot be more than one managing controller.
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
items:
- description: OwnerReference contains enough information to
- let you identify an owning object. An owning object must
- be in the same namespace as the dependent, or be cluster-scoped,
- so there is no namespace field.
+ description: |-
+ OwnerReference contains enough information to let you identify an owning
+ object. An owning object must be in the same namespace as the dependent, or
+ be cluster-scoped, so there is no namespace field.
properties:
apiVersion:
description: API version of the referent.
type: string
blockOwnerDeletion:
- description: If true, AND if the owner has the "foregroundDeletion"
- finalizer, then the owner cannot be deleted from the
- key-value store until this reference is removed. See
- https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
- for how the garbage collector interacts with this field
- and enforces the foreground deletion. Defaults to false.
- To set this field, a user needs "delete" permission
- of the owner, otherwise 422 (Unprocessable Entity) will
- be returned.
+ description: |-
+ If true, AND if the owner has the "foregroundDeletion" finalizer, then
+ the owner cannot be deleted from the key-value store until this
+ reference is removed.
+ See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
+ for how the garbage collector interacts with this field and enforces the foreground deletion.
+ Defaults to false.
+ To set this field, a user needs "delete" permission of the owner,
+ otherwise 422 (Unprocessable Entity) will be returned.
type: boolean
controller:
description: If true, this reference points to the managing
controller.
type: boolean
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
type: string
uid:
- description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
type: string
required:
- apiVersion
@@ -304,66 +350,75 @@ spec:
type: array
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.Data
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.Data without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
data:
- description: "Data contains the bootstrap data, such as
- cloud-init details scripts. If nil, the Machine should
- remain in the Pending state. \n Deprecated: Switch to
- DataSecretName."
+ description: |-
+ Data contains the bootstrap data, such as cloud-init details scripts.
+ If nil, the Machine should remain in the Pending state.
+
+
+ Deprecated: Switch to DataSecretName.
type: string
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -372,76 +427,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinehealthchecks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinehealthchecks.yaml
index 77fd2a088..7afdc4510 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinehealthchecks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinehealthchecks.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "MachineHealthCheck is the Schema for the machinehealthchecks API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ MachineHealthCheck is the Schema for the machinehealthchecks API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -75,51 +83,63 @@ spec:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if at most "MaxUnhealthy"
- machines selected by "selector" are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without a node will be
- considered to have failed and will be remediated.
+ description: |-
+ Machines older than this duration without a node will be considered to have
+ failed and will be remediated.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a remediation template
- provided by an infrastructure provider. \n This field is completely
- optional, when filled, the MachineHealthCheck controller creates a
- new object from the template referenced and hands off remediation
- of the machine to a controller that lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -130,53 +150,55 @@ spec:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the conditions that
- determine whether a node is considered unhealthy. The conditions
- are combined in a logical OR, i.e. if any of the conditions is met,
- the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition type and
- value with a timeout specified as a duration. When the named condition
- has been in the given status for at least the timeout value, a node
- is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinepools.yaml
index 07a60772c..b89d81cf2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinepools.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "MachinePool is the Schema for the machinepools API. \n Deprecated:
- This type will be removed in one of the next releases."
+ description: |-
+ MachinePool is the Schema for the machinepools API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -78,171 +86,204 @@ spec:
type: string
type: array
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- instances should be ready. Defaults to 0 (machine instance will be
- considered available as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine instances should
+ be ready.
+ Defaults to 0 (machine instance will be considered available as soon as it
+ is ready)
format: int32
type: integer
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
replicas:
- description: Number of desired machines. Defaults to 1. This is a pointer
- to distinguish between explicit zero and not specified.
+ description: |-
+ Number of desired machines. Defaults to 1.
+ This is a pointer to distinguish between explicit zero and not specified.
format: int32
type: integer
strategy:
- description: The deployment strategy to use to replace existing machine
- instances with new ones.
+ description: |-
+ The deployment strategy to use to replace existing machine instances with
+ new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present only if MachineDeploymentStrategyType
- = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
maxSurge:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be scheduled
- above the desired number of machines. Value can be an absolute
- number (ex: 5) or a percentage of desired machines (ex: 10%).
- This can not be 0 if MaxUnavailable is 0. Absolute number
- is calculated from percentage by rounding up. Defaults to
- 1. Example: when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update starts, such
- that the total number of old and new machines do not exceed
- 130% of desired machines. Once old machines have been killed,
- new MachineSet can be scaled up further, ensuring that total
- number of machines running at any time during the update is
- at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be unavailable
- during the update. Value can be an absolute number (ex: 5)
- or a percentage of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down. This can not
- be 0 if MaxSurge is 0. Defaults to 0. Example: when this is
- set to 30%, the old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling update starts.
- Once new machines are ready, old MachineSet can be scaled
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
down further, followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all times during
- the update is at least 70% of desired machines.'
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Currently the only supported strategy
- is "RollingUpdate". Default is RollingUpdate.
+ description: |-
+ Type of deployment. Currently the only supported strategy is
+ "RollingUpdate".
+ Default is RollingUpdate.
type: string
type: object
template:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
generateName:
- description: "GenerateName is an optional prefix, used by the
- server, to generate a unique name ONLY IF the Name field has
- not been provided. If this field is used, the name returned
- to the client will be different than the name passed. This
- value will also be combined with a unique suffix. The provided
- value has the same validation rules as the Name field, and
- may be truncated by the length of the suffix required to make
- the value unique on the server. \n If this field is specified
- and the generated name exists, the server will NOT return
- a 409 - instead, it will either return 201 Created or 500
- with Reason ServerTimeout indicating a unique name could not
- be found in the time allotted, and the client should retry
- (optionally after the time indicated in the Retry-After header).
- \n Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ GenerateName is an optional prefix, used by the server, to generate a unique
+ name ONLY IF the Name field has not been provided.
+ If this field is used, the name returned to the client will be different
+ than the name passed. This value will also be combined with a unique suffix.
+ The provided value has the same validation rules as the Name field,
+ and may be truncated by the length of the suffix required to make the value
+ unique on the server.
+
+
+ If this field is specified and the generated name exists, the server will
+ NOT return a 409 - instead, it will either return 201 Created or 500 with Reason
+ ServerTimeout indicating a unique name could not be found in the time allotted, and the client
+ should retry (optionally after the time indicated in the Retry-After header).
+
+
+ Applied only if Name is not specified.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
name:
- description: "Name must be unique within a namespace. Is required
- when creating resources, although some resources may allow
- a client to request the generation of an appropriate name
- automatically. Name is primarily intended for creation idempotence
- and configuration definition. Cannot be updated. More info:
- http://kubernetes.io/docs/user-guide/identifiers#names \n
- Deprecated: This field has no function and is going to be
- removed in a next release."
+ description: |-
+ Name must be unique within a namespace. Is required when creating resources, although
+ some resources may allow a client to request the generation of an appropriate name
+ automatically. Name is primarily intended for creation idempotence and configuration
+ definition.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/identifiers#names
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
namespace:
- description: "Namespace defines the space within each name must
- be unique. An empty namespace is equivalent to the \"default\"
- namespace, but \"default\" is the canonical representation.
- Not all objects are required to be scoped to a namespace -
- the value of this field for those objects will be empty. \n
- Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ Namespace defines the space within each name must be unique. An empty namespace is
+ equivalent to the "default" namespace, but "default" is the canonical representation.
+ Not all objects are required to be scoped to a namespace - the value of this field for
+ those objects will be empty.
+
+
+ Must be a DNS_LABEL.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
ownerReferences:
- description: "List of objects depended by this object. If ALL
- objects in the list have been deleted, this object will be
- garbage collected. If this object is managed by a controller,
- then an entry in this list will point to this controller,
- with the controller field set to true. There cannot be more
- than one managing controller. \n Deprecated: This field has
- no function and is going to be removed in a next release."
+ description: |-
+ List of objects depended by this object. If ALL objects in the list have
+ been deleted, this object will be garbage collected. If this object is managed by a controller,
+ then an entry in this list will point to this controller, with the controller field set to true.
+ There cannot be more than one managing controller.
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
items:
- description: OwnerReference contains enough information to
- let you identify an owning object. An owning object must
- be in the same namespace as the dependent, or be cluster-scoped,
- so there is no namespace field.
+ description: |-
+ OwnerReference contains enough information to let you identify an owning
+ object. An owning object must be in the same namespace as the dependent, or
+ be cluster-scoped, so there is no namespace field.
properties:
apiVersion:
description: API version of the referent.
type: string
blockOwnerDeletion:
- description: If true, AND if the owner has the "foregroundDeletion"
- finalizer, then the owner cannot be deleted from the
- key-value store until this reference is removed. See
- https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
- for how the garbage collector interacts with this field
- and enforces the foreground deletion. Defaults to false.
- To set this field, a user needs "delete" permission
- of the owner, otherwise 422 (Unprocessable Entity) will
- be returned.
+ description: |-
+ If true, AND if the owner has the "foregroundDeletion" finalizer, then
+ the owner cannot be deleted from the key-value store until this
+ reference is removed.
+ See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
+ for how the garbage collector interacts with this field and enforces the foreground deletion.
+ Defaults to false.
+ To set this field, a user needs "delete" permission of the owner,
+ otherwise 422 (Unprocessable Entity) will be returned.
type: boolean
controller:
description: If true, this reference points to the managing
controller.
type: boolean
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
type: string
uid:
- description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
type: string
required:
- apiVersion
@@ -254,66 +295,75 @@ spec:
type: array
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.Data
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.Data without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
data:
- description: "Data contains the bootstrap data, such as
- cloud-init details scripts. If nil, the Machine should
- remain in the Pending state. \n Deprecated: Switch to
- DataSecretName."
+ description: |-
+ Data contains the bootstrap data, such as cloud-init details scripts.
+ If nil, the Machine should remain in the Pending state.
+
+
+ Deprecated: Switch to DataSecretName.
type: string
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -322,76 +372,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machines.yaml
index 5df4457bc..62e268cd2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machines.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "Machine is the Schema for the machines API. \n Deprecated: This
- type will be removed in one of the next releases."
+ description: |-
+ Machine is the Schema for the machines API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,58 +75,70 @@ spec:
description: MachineSpec defines the desired state of Machine.
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which encapsulates
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference is optional
- to allow users/operators to specify Bootstrap.Data without the
- need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.Data without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
data:
- description: "Data contains the bootstrap data, such as cloud-init
- details scripts. If nil, the Machine should remain in the Pending
- state. \n Deprecated: Switch to DataSecretName."
+ description: |-
+ Data contains the bootstrap data, such as cloud-init details scripts.
+ If nil, the Machine should remain in the Pending state.
+
+
+ Deprecated: Switch to DataSecretName.
type: string
dataSecretName:
- description: DataSecretName is the name of the secret that stores
- the bootstrap data script. If nil, the Machine should remain in
- the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -127,73 +147,79 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine will be
- created in. Must match a key in the FailureDomains map stored on the
- cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a custom resource
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that the
- controller will spend on draining a node. The default value is 0,
- meaning that the node can be drained without any time limitations.
- NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine provided
- by the provider. This field must match the provider ID as seen on
- the node object corresponding to this machine. This field is required
- by higher level consumers of cluster-api. Example use case is cluster
- autoscaler with cluster-api as provider. Clean-up logic in the autoscaler
- compares machines to nodes to find out machines at provider which
- could not get registered as Kubernetes nodes. With cluster-api as
- a generic out-of-tree provider for autoscaler, this field is required
- by autoscaler to be able to have a provider view of the list of machines.
- Another list of nodes is queried from the k8s apiserver and then a
- comparison is done to find out unregistered machines and are marked
- for delete. This field will be set by the actuators and consumed by
- higher level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version. This field
- is meant to be optionally used by bootstrap providers.
+ description: |-
+ Version defines the desired Kubernetes version.
+ This field is meant to be optionally used by bootstrap providers.
type: string
required:
- bootstrap
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
index 4520525ad..f4cce3a8a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha3
validation:
openAPIV3Schema:
- description: "MachineSet is the Schema for the machinesets API. \n Deprecated:
- This type will be removed in one of the next releases."
+ description: |-
+ MachineSet is the Schema for the machinesets API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -72,175 +80,203 @@ spec:
minLength: 1
type: string
deletePolicy:
- description: DeletePolicy defines the policy used to identify nodes
- to delete when downscaling. Defaults to "Random". Valid values are
- "Random, "Newest", "Oldest"
+ description: |-
+ DeletePolicy defines the policy used to identify nodes to delete when downscaling.
+ Defaults to "Random". Valid values are "Random, "Newest", "Oldest"
enum:
- Random
- Newest
- Oldest
type: string
minReadySeconds:
- description: MinReadySeconds is the minimum number of seconds for which
- a newly created machine should be ready. Defaults to 0 (machine will
- be considered available as soon as it is ready)
+ description: |-
+ MinReadySeconds is the minimum number of seconds for which a newly created machine should be ready.
+ Defaults to 0 (machine will be considered available as soon as it is ready)
format: int32
type: integer
replicas:
- description: Replicas is the number of desired replicas. This is a pointer
- to distinguish between explicit zero and unspecified. Defaults to
- 1.
+ description: |-
+ Replicas is the number of desired replicas.
+ This is a pointer to distinguish between explicit zero and unspecified.
+ Defaults to 1.
format: int32
type: integer
selector:
- description: 'Selector is a label query over machines that should match
- the replica count. Label keys and values that must match in order
- to be controlled by this MachineSet. It must match the machine template''s
- labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors'
+ description: |-
+ Selector is a label query over machines that should match the replica count.
+ Label keys and values that must match in order to be controlled by this MachineSet.
+ It must match the machine template's labels.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
template:
- description: Template is the object that describes the machine that
- will be created if insufficient replicas are detected. Object references
- to custom resources are treated as templates.
+ description: |-
+ Template is the object that describes the machine that will be created if
+ insufficient replicas are detected.
+ Object references to custom resources are treated as templates.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
generateName:
- description: "GenerateName is an optional prefix, used by the
- server, to generate a unique name ONLY IF the Name field has
- not been provided. If this field is used, the name returned
- to the client will be different than the name passed. This
- value will also be combined with a unique suffix. The provided
- value has the same validation rules as the Name field, and
- may be truncated by the length of the suffix required to make
- the value unique on the server. \n If this field is specified
- and the generated name exists, the server will NOT return
- a 409 - instead, it will either return 201 Created or 500
- with Reason ServerTimeout indicating a unique name could not
- be found in the time allotted, and the client should retry
- (optionally after the time indicated in the Retry-After header).
- \n Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ GenerateName is an optional prefix, used by the server, to generate a unique
+ name ONLY IF the Name field has not been provided.
+ If this field is used, the name returned to the client will be different
+ than the name passed. This value will also be combined with a unique suffix.
+ The provided value has the same validation rules as the Name field,
+ and may be truncated by the length of the suffix required to make the value
+ unique on the server.
+
+
+ If this field is specified and the generated name exists, the server will
+ NOT return a 409 - instead, it will either return 201 Created or 500 with Reason
+ ServerTimeout indicating a unique name could not be found in the time allotted, and the client
+ should retry (optionally after the time indicated in the Retry-After header).
+
+
+ Applied only if Name is not specified.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
name:
- description: "Name must be unique within a namespace. Is required
- when creating resources, although some resources may allow
- a client to request the generation of an appropriate name
- automatically. Name is primarily intended for creation idempotence
- and configuration definition. Cannot be updated. More info:
- http://kubernetes.io/docs/user-guide/identifiers#names \n
- Deprecated: This field has no function and is going to be
- removed in a next release."
+ description: |-
+ Name must be unique within a namespace. Is required when creating resources, although
+ some resources may allow a client to request the generation of an appropriate name
+ automatically. Name is primarily intended for creation idempotence and configuration
+ definition.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/identifiers#names
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
namespace:
- description: "Namespace defines the space within each name must
- be unique. An empty namespace is equivalent to the \"default\"
- namespace, but \"default\" is the canonical representation.
- Not all objects are required to be scoped to a namespace -
- the value of this field for those objects will be empty. \n
- Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
- \n Deprecated: This field has no function and is going to
- be removed in a next release."
+ description: |-
+ Namespace defines the space within each name must be unique. An empty namespace is
+ equivalent to the "default" namespace, but "default" is the canonical representation.
+ Not all objects are required to be scoped to a namespace - the value of this field for
+ those objects will be empty.
+
+
+ Must be a DNS_LABEL.
+ Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
type: string
ownerReferences:
- description: "List of objects depended by this object. If ALL
- objects in the list have been deleted, this object will be
- garbage collected. If this object is managed by a controller,
- then an entry in this list will point to this controller,
- with the controller field set to true. There cannot be more
- than one managing controller. \n Deprecated: This field has
- no function and is going to be removed in a next release."
+ description: |-
+ List of objects depended by this object. If ALL objects in the list have
+ been deleted, this object will be garbage collected. If this object is managed by a controller,
+ then an entry in this list will point to this controller, with the controller field set to true.
+ There cannot be more than one managing controller.
+
+
+ Deprecated: This field has no function and is going to be removed in a next release.
items:
- description: OwnerReference contains enough information to
- let you identify an owning object. An owning object must
- be in the same namespace as the dependent, or be cluster-scoped,
- so there is no namespace field.
+ description: |-
+ OwnerReference contains enough information to let you identify an owning
+ object. An owning object must be in the same namespace as the dependent, or
+ be cluster-scoped, so there is no namespace field.
properties:
apiVersion:
description: API version of the referent.
type: string
blockOwnerDeletion:
- description: If true, AND if the owner has the "foregroundDeletion"
- finalizer, then the owner cannot be deleted from the
- key-value store until this reference is removed. See
- https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
- for how the garbage collector interacts with this field
- and enforces the foreground deletion. Defaults to false.
- To set this field, a user needs "delete" permission
- of the owner, otherwise 422 (Unprocessable Entity) will
- be returned.
+ description: |-
+ If true, AND if the owner has the "foregroundDeletion" finalizer, then
+ the owner cannot be deleted from the key-value store until this
+ reference is removed.
+ See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion
+ for how the garbage collector interacts with this field and enforces the foreground deletion.
+ Defaults to false.
+ To set this field, a user needs "delete" permission of the owner,
+ otherwise 422 (Unprocessable Entity) will be returned.
type: boolean
controller:
description: If true, this reference points to the managing
controller.
type: boolean
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
type: string
uid:
- description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
type: string
required:
- apiVersion
@@ -252,66 +288,75 @@ spec:
type: array
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.Data
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.Data without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
data:
- description: "Data contains the bootstrap data, such as
- cloud-init details scripts. If nil, the Machine should
- remain in the Pending state. \n Deprecated: Switch to
- DataSecretName."
+ description: |-
+ Data contains the bootstrap data, such as cloud-init details scripts.
+ If nil, the Machine should remain in the Pending state.
+
+
+ Deprecated: Switch to DataSecretName.
type: string
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -320,76 +365,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusterclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusterclasses.yaml
index b07d035b0..e11099d85 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusterclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusterclasses.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "ClusterClass is a template which can be used to create managed
- topologies. \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ ClusterClass is a template which can be used to create managed topologies.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,51 +75,62 @@ spec:
description: ClusterClassSpec describes the desired state of the ClusterClass.
properties:
controlPlane:
- description: ControlPlane is a reference to a local struct that holds
- the details for provisioning the Control Plane for the Cluster.
+ description: |-
+ ControlPlane is a reference to a local struct that holds the details
+ for provisioning the Control Plane for the Cluster.
properties:
machineInfrastructure:
- description: "MachineTemplate defines the metadata and infrastructure
- information for control plane machines. \n This field is supported
- if and only if the control plane provider template referenced
- above is Machine based and supports setting replicas."
+ description: |-
+ MachineTemplate defines the metadata and infrastructure information
+ for control plane machines.
+
+
+ This field is supported if and only if the control plane provider template
+ referenced above is Machine based and supports setting replicas.
properties:
ref:
- description: Ref is a required reference to a custom resource
+ description: |-
+ Ref is a required reference to a custom resource
offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -119,64 +138,76 @@ spec:
- ref
type: object
metadata:
- description: "Metadata is the metadata applied to the machines of
- the ControlPlane. At runtime this metadata is merged with the
- corresponding metadata from the topology. \n This field is supported
- if and only if the control plane provider template referenced
- is Machine based."
+ description: |-
+ Metadata is the metadata applied to the machines of the ControlPlane.
+ At runtime this metadata is merged with the corresponding metadata from the topology.
+
+
+ This field is supported if and only if the control plane provider template
+ referenced is Machine based.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
ref:
- description: Ref is a required reference to a custom resource offered
- by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -184,46 +215,56 @@ spec:
- ref
type: object
infrastructure:
- description: Infrastructure is a reference to a provider-specific template
- that holds the details for provisioning infrastructure specific cluster
- for the underlying provider. The underlying provider is responsible
- for the implementation of the template to an infrastructure cluster.
+ description: |-
+ Infrastructure is a reference to a provider-specific template that holds
+ the details for provisioning infrastructure specific cluster
+ for the underlying provider.
+ The underlying provider is responsible for the implementation
+ of the template to an infrastructure cluster.
properties:
ref:
- description: Ref is a required reference to a custom resource offered
- by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -231,75 +272,79 @@ spec:
- ref
type: object
workers:
- description: Workers describes the worker nodes for the cluster. It
- is a collection of node types which can be used to create the worker
- nodes of the cluster.
+ description: |-
+ Workers describes the worker nodes for the cluster.
+ It is a collection of node types which can be used to create
+ the worker nodes of the cluster.
properties:
machineDeployments:
- description: MachineDeployments is a list of machine deployment
- classes that can be used to create a set of worker nodes.
+ description: |-
+ MachineDeployments is a list of machine deployment classes that can be used to create
+ a set of worker nodes.
items:
- description: MachineDeploymentClass serves as a template to define
- a set of worker nodes of the cluster provisioned using the `ClusterClass`.
+ description: |-
+ MachineDeploymentClass serves as a template to define a set of worker nodes of the cluster
+ provisioned using the `ClusterClass`.
properties:
class:
- description: Class denotes a type of worker node present in
- the cluster, this name MUST be unique within a ClusterClass
- and can be referenced in the Cluster to create a managed
- MachineDeployment.
+ description: |-
+ Class denotes a type of worker node present in the cluster,
+ this name MUST be unique within a ClusterClass and can be referenced
+ in the Cluster to create a managed MachineDeployment.
type: string
template:
- description: Template is a local struct containing a collection
- of templates for creation of MachineDeployment objects representing
- a set of worker nodes.
+ description: |-
+ Template is a local struct containing a collection of templates for creation of
+ MachineDeployment objects representing a set of worker nodes.
properties:
bootstrap:
- description: Bootstrap contains the bootstrap template
- reference to be used for the creation of worker Machines.
+ description: |-
+ Bootstrap contains the bootstrap template reference to be used
+ for the creation of worker Machines.
properties:
ref:
- description: Ref is a required reference to a custom
- resource offered by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2].
- For example, if the object reference is to a
- container within a pod, this would take on a
- value like: "spec.containers{name}" (where "name"
- refers to the name of the container that triggered
- the event) or if no container name is specified
- "spec.containers[2]" (container with index 2
- in this pod). This syntax is chosen only to
- have some well-defined way of referencing a
- part of an object. TODO: this design is not
- final and this field is subject to change in
- the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info:
- https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which
- this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -307,53 +352,53 @@ spec:
- ref
type: object
infrastructure:
- description: Infrastructure contains the infrastructure
- template reference to be used for the creation of worker
- Machines.
+ description: |-
+ Infrastructure contains the infrastructure template reference to be used
+ for the creation of worker Machines.
properties:
ref:
- description: Ref is a required reference to a custom
- resource offered by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2].
- For example, if the object reference is to a
- container within a pod, this would take on a
- value like: "spec.containers{name}" (where "name"
- refers to the name of the container that triggered
- the event) or if no container name is specified
- "spec.containers[2]" (container with index 2
- in this pod). This syntax is chosen only to
- have some well-defined way of referencing a
- part of an object. TODO: this design is not
- final and this field is subject to change in
- the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info:
- https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which
- this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -361,26 +406,27 @@ spec:
- ref
type: object
metadata:
- description: Metadata is the metadata applied to the machines
- of the MachineDeployment. At runtime this metadata is
- merged with the corresponding metadata from the topology.
+ description: |-
+ Metadata is the metadata applied to the machines of the MachineDeployment.
+ At runtime this metadata is merged with the corresponding metadata from the topology.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value
- map stored with a resource that may be set by external
- tools to store and retrieve arbitrary metadata.
- They are not queryable and should be preserved when
- modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can
- be used to organize and categorize (scope and select)
- objects. May match selectors of replication controllers
- and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusters.yaml
index e328f1788..bd3df82b0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/clusters.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "Cluster is the Schema for the clusters API. \n Deprecated: This
- type will be removed in one of the next releases."
+ description: |-
+ Cluster is the Schema for the clusters API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,8 +78,9 @@ spec:
description: Cluster network configuration.
properties:
apiServerPort:
- description: APIServerPort specifies the port the API Server should
- bind to. Defaults to 6443.
+ description: |-
+ APIServerPort specifies the port the API Server should bind to.
+ Defaults to 6443.
format: int32
type: integer
pods:
@@ -114,80 +123,94 @@ spec:
- port
type: object
controlPlaneRef:
- description: ControlPlaneRef is an optional reference to a provider-specific
- resource that holds the details for provisioning the Control Plane
- for a Cluster.
+ description: |-
+ ControlPlaneRef is an optional reference to a provider-specific resource that holds
+ the details for provisioning the Control Plane for a Cluster.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
infrastructureRef:
- description: InfrastructureRef is a reference to a provider-specific
- resource that holds the details for provisioning infrastructure for
- a cluster in said provider.
+ description: |-
+ InfrastructureRef is a reference to a provider-specific resource that holds the details
+ for provisioning infrastructure for a cluster in said provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -196,10 +219,11 @@ spec:
the Cluster and all its associated objects.
type: boolean
topology:
- description: 'This encapsulates the topology for the cluster. NOTE:
- It is required to enable the ClusterTopology feature gate flag to
- activate managed topologies support; this feature is highly experimental,
- and parts of it might still be not implemented.'
+ description: |-
+ This encapsulates the topology for the cluster.
+ NOTE: It is required to enable the ClusterTopology
+ feature gate flag to activate managed topologies support;
+ this feature is highly experimental, and parts of it might still be not implemented.
properties:
class:
description: The name of the ClusterClass object to create the topology.
@@ -208,104 +232,106 @@ spec:
description: ControlPlane describes the cluster control plane.
properties:
metadata:
- description: "Metadata is the metadata applied to the machines
- of the ControlPlane. At runtime this metadata is merged with
- the corresponding metadata from the ClusterClass. \n This
- field is supported if and only if the control plane provider
- template referenced in the ClusterClass is Machine based."
+ description: |-
+ Metadata is the metadata applied to the machines of the ControlPlane.
+ At runtime this metadata is merged with the corresponding metadata from the ClusterClass.
+
+
+ This field is supported if and only if the control plane provider template
+ referenced in the ClusterClass is Machine based.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map
- stored with a resource that may be set by external tools
- to store and retrieve arbitrary metadata. They are not
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
queryable and should be preserved when modifying objects.
- More info: http://kubernetes.io/docs/user-guide/annotations'
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be
- used to organize and categorize (scope and select) objects.
- May match selectors of replication controllers and services.
- More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
replicas:
- description: Replicas is the number of control plane nodes.
- If the value is nil, the ControlPlane object is created without
- the number of Replicas and it's assumed that the control plane
- controller does not implement support for this field. When
- specified against a control plane provider that lacks support
- for this field, this value will be ignored.
+ description: |-
+ Replicas is the number of control plane nodes.
+ If the value is nil, the ControlPlane object is created without the number of Replicas
+ and it's assumed that the control plane controller does not implement support for this field.
+ When specified against a control plane provider that lacks support for this field, this value will be ignored.
format: int32
type: integer
type: object
rolloutAfter:
- description: RolloutAfter performs a rollout of the entire cluster
- one component at a time, control plane first and then machine
- deployments.
+ description: |-
+ RolloutAfter performs a rollout of the entire cluster one component at a time,
+ control plane first and then machine deployments.
format: date-time
type: string
version:
description: The Kubernetes version of the cluster.
type: string
workers:
- description: Workers encapsulates the different constructs that
- form the worker nodes for the cluster.
+ description: |-
+ Workers encapsulates the different constructs that form the worker nodes
+ for the cluster.
properties:
machineDeployments:
description: MachineDeployments is a list of machine deployments
in the cluster.
items:
- description: MachineDeploymentTopology specifies the different
- parameters for a set of worker nodes in the topology. This
- set of nodes is managed by a MachineDeployment object whose
- lifecycle is managed by the Cluster controller.
+ description: |-
+ MachineDeploymentTopology specifies the different parameters for a set of worker nodes in the topology.
+ This set of nodes is managed by a MachineDeployment object whose lifecycle is managed by the Cluster controller.
properties:
class:
- description: Class is the name of the MachineDeploymentClass
- used to create the set of worker nodes. This should
- match one of the deployment classes defined in the ClusterClass
- object mentioned in the `Cluster.Spec.Class` field.
+ description: |-
+ Class is the name of the MachineDeploymentClass used to create the set of worker nodes.
+ This should match one of the deployment classes defined in the ClusterClass object
+ mentioned in the `Cluster.Spec.Class` field.
type: string
metadata:
- description: Metadata is the metadata applied to the machines
- of the MachineDeployment. At runtime this metadata is
- merged with the corresponding metadata from the ClusterClass.
+ description: |-
+ Metadata is the metadata applied to the machines of the MachineDeployment.
+ At runtime this metadata is merged with the corresponding metadata from the ClusterClass.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value
- map stored with a resource that may be set by external
- tools to store and retrieve arbitrary metadata.
- They are not queryable and should be preserved when
- modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can
- be used to organize and categorize (scope and select)
- objects. May match selectors of replication controllers
- and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
name:
- description: Name is the unique identifier for this MachineDeploymentTopology.
- The value is used with other unique identifiers to create
- a MachineDeployment's Name (e.g. cluster's name, etc).
- In case the name is greater than the allowed maximum
- length, the values are hashed together.
+ description: |-
+ Name is the unique identifier for this MachineDeploymentTopology.
+ The value is used with other unique identifiers to create a MachineDeployment's Name
+ (e.g. cluster's name, etc). In case the name is greater than the allowed maximum length,
+ the values are hashed together.
type: string
replicas:
- description: Replicas is the number of worker nodes belonging
- to this set. If the value is nil, the MachineDeployment
- is created without the number of Replicas (defaulting
- to zero) and it's assumed that an external entity (like
- cluster autoscaler) is responsible for the management
+ description: |-
+ Replicas is the number of worker nodes belonging to this set.
+ If the value is nil, the MachineDeployment is created without the number of Replicas (defaulting to zero)
+ and it's assumed that an external entity (like cluster autoscaler) is responsible for the management
of this value.
format: int32
type: integer
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinedeployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinedeployments.yaml
index 7fc2f6e1a..fca422d10 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinedeployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinedeployments.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "MachineDeployment is the Schema for the machinedeployments API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ MachineDeployment is the Schema for the machinedeployments API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -72,94 +80,103 @@ spec:
minLength: 1
type: string
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- should be ready. Defaults to 0 (machine will be considered available
- as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
format: int32
type: integer
paused:
description: Indicates that the deployment is paused.
type: boolean
progressDeadlineSeconds:
- description: The maximum time in seconds for a deployment to make progress
- before it is considered to be failed. The deployment controller will
- continue to process failed deployments and a condition with a ProgressDeadlineExceeded
- reason will be surfaced in the deployment status. Note that progress
- will not be estimated during the time a deployment is paused. Defaults
- to 600s.
+ description: |-
+ The maximum time in seconds for a deployment to make progress before it
+ is considered to be failed. The deployment controller will continue to
+ process failed deployments and a condition with a ProgressDeadlineExceeded
+ reason will be surfaced in the deployment status. Note that progress will
+ not be estimated during the time a deployment is paused. Defaults to 600s.
format: int32
type: integer
replicas:
default: 1
- description: Number of desired machines. Defaults to 1. This is a pointer
- to distinguish between explicit zero and not specified.
+ description: |-
+ Number of desired machines. Defaults to 1.
+ This is a pointer to distinguish between explicit zero and not specified.
format: int32
type: integer
revisionHistoryLimit:
- description: The number of old MachineSets to retain to allow rollback.
+ description: |-
+ The number of old MachineSets to retain to allow rollback.
This is a pointer to distinguish between explicit zero and not specified.
Defaults to 1.
format: int32
type: integer
selector:
- description: Label selector for machines. Existing MachineSets whose
- machines are selected by this will be the ones affected by this deployment.
+ description: |-
+ Label selector for machines. Existing MachineSets whose machines are
+ selected by this will be the ones affected by this deployment.
It must match the machine template's labels.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
strategy:
- description: The deployment strategy to use to replace existing machines
- with new ones.
+ description: |-
+ The deployment strategy to use to replace existing machines with
+ new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present only if MachineDeploymentStrategyType
- = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
deletePolicy:
- description: DeletePolicy defines the policy used by the MachineDeployment
- to identify nodes to delete when downscaling. Valid values
- are "Random, "Newest", "Oldest" When no value is supplied,
- the default DeletePolicy of MachineSet is used
+ description: |-
+ DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling.
+ Valid values are "Random, "Newest", "Oldest"
+ When no value is supplied, the default DeletePolicy of MachineSet is used
enum:
- Random
- Newest
@@ -169,38 +186,44 @@ spec:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be scheduled
- above the desired number of machines. Value can be an absolute
- number (ex: 5) or a percentage of desired machines (ex: 10%).
- This can not be 0 if MaxUnavailable is 0. Absolute number
- is calculated from percentage by rounding up. Defaults to
- 1. Example: when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update starts, such
- that the total number of old and new machines do not exceed
- 130% of desired machines. Once old machines have been killed,
- new MachineSet can be scaled up further, ensuring that total
- number of machines running at any time during the update is
- at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be unavailable
- during the update. Value can be an absolute number (ex: 5)
- or a percentage of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down. This can not
- be 0 if MaxSurge is 0. Defaults to 0. Example: when this is
- set to 30%, the old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling update starts.
- Once new machines are ready, old MachineSet can be scaled
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
down further, followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all times during
- the update is at least 70% of desired machines.'
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Default is RollingUpdate.
+ description: |-
+ Type of deployment.
+ Default is RollingUpdate.
enum:
- RollingUpdate
- OnDelete
@@ -210,80 +233,91 @@ spec:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -292,76 +326,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinehealthchecks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinehealthchecks.yaml
index 209d7d040..a381524bc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinehealthchecks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinehealthchecks.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "MachineHealthCheck is the Schema for the machinehealthchecks API.
- \n Deprecated: This type will be removed in one of the next releases."
+ description: |-
+ MachineHealthCheck is the Schema for the machinehealthchecks API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -75,53 +83,65 @@ spec:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if at most "MaxUnhealthy"
- machines selected by "selector" are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without a node will be
- considered to have failed and will be remediated. If not set, this
- value is defaulted to 10 minutes. If you wish to disable this feature,
- set the value explicitly to 0.
+ description: |-
+ Machines older than this duration without a node will be considered to have
+ failed and will be remediated.
+ If not set, this value is defaulted to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a remediation template
- provided by an infrastructure provider. \n This field is completely
- optional, when filled, the MachineHealthCheck controller creates a
- new object from the template referenced and hands off remediation
- of the machine to a controller that lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -132,53 +152,55 @@ spec:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the conditions that
- determine whether a node is considered unhealthy. The conditions
- are combined in a logical OR, i.e. if any of the conditions is met,
- the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition type and
- value with a timeout specified as a duration. When the named condition
- has been in the given status for at least the timeout value, a node
- is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -196,12 +218,12 @@ spec:
minItems: 1
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed if the number
- of machines selected by "selector" as not healthy is within the range
- of "UnhealthyRange". Takes precedence over MaxUnhealthy. Eg. "[3-5]"
- - This means that remediation will be allowed only when: (a) there
- are at least 3 unhealthy machines (and) (b) there are at most 5 unhealthy
- machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinepools.yaml
index 96ca43788..4802fffd0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinepools.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "MachinePool is the Schema for the machinepools API. \n Deprecated:
- This type will be removed in one of the next releases."
+ description: |-
+ MachinePool is the Schema for the machinepools API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -78,102 +86,115 @@ spec:
type: string
type: array
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- instances should be ready. Defaults to 0 (machine instance will be
- considered available as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine instances should
+ be ready.
+ Defaults to 0 (machine instance will be considered available as soon as it
+ is ready)
format: int32
type: integer
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
replicas:
- description: Number of desired machines. Defaults to 1. This is a pointer
- to distinguish between explicit zero and not specified.
+ description: |-
+ Number of desired machines. Defaults to 1.
+ This is a pointer to distinguish between explicit zero and not specified.
format: int32
type: integer
template:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -182,76 +203,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machines.yaml
index d701484c7..81d1adf15 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machines.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "Machine is the Schema for the machines API. \n Deprecated: This
- type will be removed in one of the next releases."
+ description: |-
+ Machine is the Schema for the machines API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,53 +75,62 @@ spec:
description: MachineSpec defines the desired state of Machine.
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which encapsulates
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference is optional
- to allow users/operators to specify Bootstrap.DataSecretName without
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that stores
- the bootstrap data script. If nil, the Machine should remain in
- the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -122,73 +139,79 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine will be
- created in. Must match a key in the FailureDomains map stored on the
- cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a custom resource
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that the
- controller will spend on draining a node. The default value is 0,
- meaning that the node can be drained without any time limitations.
- NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine provided
- by the provider. This field must match the provider ID as seen on
- the node object corresponding to this machine. This field is required
- by higher level consumers of cluster-api. Example use case is cluster
- autoscaler with cluster-api as provider. Clean-up logic in the autoscaler
- compares machines to nodes to find out machines at provider which
- could not get registered as Kubernetes nodes. With cluster-api as
- a generic out-of-tree provider for autoscaler, this field is required
- by autoscaler to be able to have a provider view of the list of machines.
- Another list of nodes is queried from the k8s apiserver and then a
- comparison is done to find out unregistered machines and are marked
- for delete. This field will be set by the actuators and consumed by
- higher level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version. This field
- is meant to be optionally used by bootstrap providers.
+ description: |-
+ Version defines the desired Kubernetes version.
+ This field is meant to be optionally used by bootstrap providers.
type: string
required:
- bootstrap
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinesets.yaml
index fbebd89a4..047cb8799 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1alpha4/machinesets.yaml
@@ -17,18 +17,26 @@ spec:
version: v1alpha4
validation:
openAPIV3Schema:
- description: "MachineSet is the Schema for the machinesets API. \n Deprecated:
- This type will be removed in one of the next releases."
+ description: |-
+ MachineSet is the Schema for the machinesets API.
+
+
+ Deprecated: This type will be removed in one of the next releases.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -72,154 +80,170 @@ spec:
minLength: 1
type: string
deletePolicy:
- description: DeletePolicy defines the policy used to identify nodes
- to delete when downscaling. Defaults to "Random". Valid values are
- "Random, "Newest", "Oldest"
+ description: |-
+ DeletePolicy defines the policy used to identify nodes to delete when downscaling.
+ Defaults to "Random". Valid values are "Random, "Newest", "Oldest"
enum:
- Random
- Newest
- Oldest
type: string
minReadySeconds:
- description: MinReadySeconds is the minimum number of seconds for which
- a newly created machine should be ready. Defaults to 0 (machine will
- be considered available as soon as it is ready)
+ description: |-
+ MinReadySeconds is the minimum number of seconds for which a newly created machine should be ready.
+ Defaults to 0 (machine will be considered available as soon as it is ready)
format: int32
type: integer
replicas:
default: 1
- description: Replicas is the number of desired replicas. This is a pointer
- to distinguish between explicit zero and unspecified. Defaults to
- 1.
+ description: |-
+ Replicas is the number of desired replicas.
+ This is a pointer to distinguish between explicit zero and unspecified.
+ Defaults to 1.
format: int32
type: integer
selector:
- description: 'Selector is a label query over machines that should match
- the replica count. Label keys and values that must match in order
- to be controlled by this MachineSet. It must match the machine template''s
- labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors'
+ description: |-
+ Selector is a label query over machines that should match the replica count.
+ Label keys and values that must match in order to be controlled by this MachineSet.
+ It must match the machine template's labels.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
template:
- description: Template is the object that describes the machine that
- will be created if insufficient replicas are detected. Object references
- to custom resources are treated as templates.
+ description: |-
+ Template is the object that describes the machine that will be created if
+ insufficient replicas are detected.
+ Object references to custom resources are treated as templates.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -228,76 +252,78 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
index 91fe34880..814a47bb4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
@@ -21,14 +21,19 @@ spec:
topologies.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,81 +72,101 @@ spec:
description: ClusterClassSpec describes the desired state of the ClusterClass.
properties:
controlPlane:
- description: ControlPlane is a reference to a local struct that holds
- the details for provisioning the Control Plane for the Cluster.
+ description: |-
+ ControlPlane is a reference to a local struct that holds the details
+ for provisioning the Control Plane for the Cluster.
properties:
machineHealthCheck:
- description: MachineHealthCheck defines a MachineHealthCheck for
- this ControlPlaneClass. This field is supported if and only if
- the ControlPlane provider template referenced above is Machine
- based and supports setting replicas.
+ description: |-
+ MachineHealthCheck defines a MachineHealthCheck for this ControlPlaneClass.
+ This field is supported if and only if the ControlPlane provider template
+ referenced above is Machine based and supports setting replicas.
properties:
maxUnhealthy:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if at most
- "MaxUnhealthy" machines selected by "selector" are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without a node
- will be considered to have failed and will be remediated.
- If you wish to disable this feature, set the value explicitly
- to 0.
+ description: |-
+ NodeStartupTimeout allows to set the maximum time for MachineHealthCheck
+ to consider a Machine unhealthy if a corresponding Node isn't associated
+ through a `Spec.ProviderID` field.
+
+
+ The duration set in this field is compared to the greatest of:
+ - Cluster's infrastructure and control plane ready condition timestamp (if and when available)
+ - Machine's infrastructure ready condition timestamp (if and when available)
+ - Machine's metadata creation timestamp
+
+
+ Defaults to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a remediation
- template provided by an infrastructure provider. \n This field
- is completely optional, when filled, the MachineHealthCheck
- controller creates a new object from the template referenced
- and hands off remediation of the machine to a controller that
- lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the conditions
- that determine whether a node is considered unhealthy. The
- conditions are combined in a logical OR, i.e. if any of the
- conditions is met, the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition
- type and value with a timeout specified as a duration. When
- the named condition has been in the given status for at
- least the timeout value, a node is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -158,57 +183,67 @@ spec:
type: object
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed if the
- number of machines selected by "selector" as not healthy is
- within the range of "UnhealthyRange". Takes precedence over
- MaxUnhealthy. Eg. "[3-5]" - This means that remediation will
- be allowed only when: (a) there are at least 3 unhealthy machines
- (and) (b) there are at most 5 unhealthy machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
type: object
machineInfrastructure:
- description: "MachineInfrastructure defines the metadata and infrastructure
- information for control plane machines. \n This field is supported
- if and only if the control plane provider template referenced
- above is Machine based and supports setting replicas."
+ description: |-
+ MachineInfrastructure defines the metadata and infrastructure information
+ for control plane machines.
+
+
+ This field is supported if and only if the control plane provider template
+ referenced above is Machine based and supports setting replicas.
properties:
ref:
- description: Ref is a required reference to a custom resource
+ description: |-
+ Ref is a required reference to a custom resource
offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -216,87 +251,113 @@ spec:
- ref
type: object
metadata:
- description: "Metadata is the metadata applied to the ControlPlane
- and the Machines of the ControlPlane if the ControlPlaneTemplate
- referenced is machine based. If not, it is applied only to the
- ControlPlane. At runtime this metadata is merged with the corresponding
- metadata from the topology. \n This field is supported if and
- only if the control plane provider template referenced is Machine
- based."
+ description: |-
+ Metadata is the metadata applied to the ControlPlane and the Machines of the ControlPlane
+ if the ControlPlaneTemplate referenced is machine based. If not, it is applied only to the
+ ControlPlane.
+ At runtime this metadata is merged with the corresponding metadata from the topology.
+
+
+ This field is supported if and only if the control plane provider template
+ referenced is Machine based.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
+ namingStrategy:
+ description: NamingStrategy allows changing the naming pattern used
+ when creating the control plane provider object.
+ properties:
+ template:
+ description: |-
+ Template defines the template to use for generating the name of the ControlPlane object.
+ If not defined, it will fallback to `{{ .cluster.name }}-{{ .random }}`.
+ If the templated string exceeds 63 characters, it will be trimmed to 58 characters and will
+ get concatenated with a random suffix of length 5.
+ The templating mechanism provides the following arguments:
+ * `.cluster.name`: The name of the cluster object.
+ * `.random`: A random alphanumeric string, without vowels, of length 5.
+ type: string
+ type: object
nodeDeletionTimeout:
- description: 'NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after the
- Machine is marked for deletion. A duration of 0 will retry deletion
- indefinitely. Defaults to 10 seconds. NOTE: This value can be
- overridden while defining a Cluster.Topology.'
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
+ NOTE: This value can be overridden while defining a Cluster.Topology.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default value
- is 0, meaning that the node can be drained without any time limitations.
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
- NOTE: This value can be overridden while defining a Cluster.Topology.'
+ NOTE: This value can be overridden while defining a Cluster.Topology.
type: string
nodeVolumeDetachTimeout:
- description: 'NodeVolumeDetachTimeout is the total amount of time
- that the controller will spend on waiting for all volumes to be
- detached. The default value is 0, meaning that the volumes can
- be detached without any time limitations. NOTE: This value can
- be overridden while defining a Cluster.Topology.'
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
+ NOTE: This value can be overridden while defining a Cluster.Topology.
type: string
ref:
- description: Ref is a required reference to a custom resource offered
- by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -304,46 +365,56 @@ spec:
- ref
type: object
infrastructure:
- description: Infrastructure is a reference to a provider-specific template
- that holds the details for provisioning infrastructure specific cluster
- for the underlying provider. The underlying provider is responsible
- for the implementation of the template to an infrastructure cluster.
+ description: |-
+ Infrastructure is a reference to a provider-specific template that holds
+ the details for provisioning infrastructure specific cluster
+ for the underlying provider.
+ The underlying provider is responsible for the implementation
+ of the template to an infrastructure cluster.
properties:
ref:
- description: Ref is a required reference to a custom resource offered
- by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -351,69 +422,70 @@ spec:
- ref
type: object
patches:
- description: 'Patches defines the patches which are applied to customize
- referenced templates of a ClusterClass. Note: Patches will be applied
- in the order of the array.'
+ description: |-
+ Patches defines the patches which are applied to customize
+ referenced templates of a ClusterClass.
+ Note: Patches will be applied in the order of the array.
items:
description: ClusterClassPatch defines a patch which is applied to
customize the referenced templates.
properties:
definitions:
- description: 'Definitions define inline patches. Note: Patches
- will be applied in the order of the array. Note: Exactly one
- of Definitions or External must be set.'
+ description: |-
+ Definitions define inline patches.
+ Note: Patches will be applied in the order of the array.
+ Note: Exactly one of Definitions or External must be set.
items:
description: PatchDefinition defines a patch which is applied
to customize the referenced templates.
properties:
jsonPatches:
- description: 'JSONPatches defines the patches which should
- be applied on the templates matching the selector. Note:
- Patches will be applied in the order of the array.'
+ description: |-
+ JSONPatches defines the patches which should be applied on the templates
+ matching the selector.
+ Note: Patches will be applied in the order of the array.
items:
description: JSONPatch defines a JSON patch.
properties:
op:
- description: 'Op defines the operation of the patch.
- Note: Only `add`, `replace` and `remove` are supported.'
+ description: |-
+ Op defines the operation of the patch.
+ Note: Only `add`, `replace` and `remove` are supported.
type: string
path:
- description: 'Path defines the path of the patch.
- Note: Only the spec of a template can be patched,
- thus the path has to start with /spec/. Note: For
- now the only allowed array modifications are `append`
- and `prepend`, i.e.: * for op: `add`: only index
- 0 (prepend) and - (append) are allowed * for op:
- `replace` or `remove`: no indexes are allowed'
+ description: |-
+ Path defines the path of the patch.
+ Note: Only the spec of a template can be patched, thus the path has to start with /spec/.
+ Note: For now the only allowed array modifications are `append` and `prepend`, i.e.:
+ * for op: `add`: only index 0 (prepend) and - (append) are allowed
+ * for op: `replace` or `remove`: no indexes are allowed
type: string
value:
- description: 'Value defines the value of the patch.
- Note: Either Value or ValueFrom is required for
- add and replace operations. Only one of them is
- allowed to be set at the same time. Note: We have
- to use apiextensionsv1.JSON instead of our JSON
- type, because controller-tools has a hard-coded
- schema for apiextensionsv1.JSON which cannot be
- produced by another type (unset type field). Ref:
- https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111'
+ description: |-
+ Value defines the value of the patch.
+ Note: Either Value or ValueFrom is required for add and replace
+ operations. Only one of them is allowed to be set at the same time.
+ Note: We have to use apiextensionsv1.JSON instead of our JSON type,
+ because controller-tools has a hard-coded schema for apiextensionsv1.JSON
+ which cannot be produced by another type (unset type field).
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
x-kubernetes-preserve-unknown-fields: true
valueFrom:
- description: 'ValueFrom defines the value of the patch.
- Note: Either Value or ValueFrom is required for
- add and replace operations. Only one of them is
- allowed to be set at the same time.'
+ description: |-
+ ValueFrom defines the value of the patch.
+ Note: Either Value or ValueFrom is required for add and replace
+ operations. Only one of them is allowed to be set at the same time.
properties:
template:
- description: 'Template is the Go template to be
- used to calculate the value. A template can
- reference variables defined in .spec.variables
- and builtin variables. Note: The template must
- evaluate to a valid YAML or JSON value.'
+ description: |-
+ Template is the Go template to be used to calculate the value.
+ A template can reference variables defined in .spec.variables and builtin variables.
+ Note: The template must evaluate to a valid YAML or JSON value.
type: string
variable:
- description: Variable is the variable to be used
- as value. Variable can be one of the variables
- defined in .spec.variables or a builtin variable.
+ description: |-
+ Variable is the variable to be used as value.
+ Variable can be one of the variables defined in .spec.variables or a builtin variable.
type: string
type: object
required:
@@ -436,19 +508,31 @@ spec:
on where they are referenced.
properties:
controlPlane:
- description: 'ControlPlane selects templates referenced
- in .spec.ControlPlane. Note: this will match the
- controlPlane and also the controlPlane machineInfrastructure
- (depending on the kind and apiVersion).'
+ description: |-
+ ControlPlane selects templates referenced in .spec.ControlPlane.
+ Note: this will match the controlPlane and also the controlPlane
+ machineInfrastructure (depending on the kind and apiVersion).
type: boolean
infrastructureCluster:
description: InfrastructureCluster selects templates
referenced in .spec.infrastructure.
type: boolean
machineDeploymentClass:
- description: MachineDeploymentClass selects templates
- referenced in specific MachineDeploymentClasses
- in .spec.workers.machineDeployments.
+ description: |-
+ MachineDeploymentClass selects templates referenced in specific MachineDeploymentClasses in
+ .spec.workers.machineDeployments.
+ properties:
+ names:
+ description: Names selects templates by class
+ names.
+ items:
+ type: string
+ type: array
+ type: object
+ machinePoolClass:
+ description: |-
+ MachinePoolClass selects templates referenced in specific MachinePoolClasses in
+ .spec.workers.machinePools.
properties:
names:
description: Names selects templates by class
@@ -473,16 +557,17 @@ spec:
patch.
type: string
enabledIf:
- description: EnabledIf is a Go template to be used to calculate
- if a patch should be enabled. It can reference variables defined
- in .spec.variables and builtin variables. The patch will be
- enabled if the template evaluates to `true`, otherwise it will
- be disabled. If EnabledIf is not set, the patch will be enabled
- per default.
+ description: |-
+ EnabledIf is a Go template to be used to calculate if a patch should be enabled.
+ It can reference variables defined in .spec.variables and builtin variables.
+ The patch will be enabled if the template evaluates to `true`, otherwise it will
+ be disabled.
+ If EnabledIf is not set, the patch will be enabled per default.
type: string
external:
- description: 'External defines an external patch. Note: Exactly
- one of Definitions or External must be set.'
+ description: |-
+ External defines an external patch.
+ Note: Exactly one of Definitions or External must be set.
properties:
discoverVariablesExtension:
description: DiscoverVariablesExtension references an extension
@@ -495,9 +580,10 @@ spec:
settings:
additionalProperties:
type: string
- description: Settings defines key value pairs to be passed
- to the extensions. Values defined here take precedence over
- the values defined in the corresponding ExtensionConfig.
+ description: |-
+ Settings defines key value pairs to be passed to the extensions.
+ Values defined here take precedence over the values defined in the
+ corresponding ExtensionConfig.
type: object
validateExtension:
description: ValidateExtension references an extension which
@@ -512,48 +598,76 @@ spec:
type: object
type: array
variables:
- description: Variables defines the variables which can be configured
+ description: |-
+ Variables defines the variables which can be configured
in the Cluster topology and are then used in patches.
items:
- description: ClusterClassVariable defines a variable which can be
- configured in the Cluster topology and used in patches.
+ description: |-
+ ClusterClassVariable defines a variable which can
+ be configured in the Cluster topology and used in patches.
properties:
+ metadata:
+ description: |-
+ Metadata is the metadata of a variable.
+ It can be used to add additional data for higher level tools to
+ a ClusterClassVariable.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is an unstructured key value map that can be used to store and
+ retrieve arbitrary metadata.
+ They are not queryable.
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) variables.
+ type: object
+ type: object
name:
description: Name of the variable.
type: string
required:
- description: 'Required specifies if the variable is required.
- Note: this applies to the variable as a whole and thus the top-level
- object defined in the schema. If nested fields are required,
- this will be specified inside the schema.'
+ description: |-
+ Required specifies if the variable is required.
+ Note: this applies to the variable as a whole and thus the
+ top-level object defined in the schema. If nested fields are
+ required, this will be specified inside the schema.
type: boolean
schema:
description: Schema defines the schema of the variable.
properties:
openAPIV3Schema:
- description: OpenAPIV3Schema defines the schema of a variable
- via OpenAPI v3 schema. The schema is a subset of the schema
- used in Kubernetes CRDs.
+ description: |-
+ OpenAPIV3Schema defines the schema of a variable via OpenAPI v3
+ schema. The schema is a subset of the schema used in
+ Kubernetes CRDs.
properties:
additionalProperties:
- description: 'AdditionalProperties specifies the schema
- of values in a map (keys are always strings). NOTE:
- Can only be set if type is object. NOTE: AdditionalProperties
- is mutually exclusive with Properties. NOTE: This field
- uses PreserveUnknownFields and Schemaless, because recursive
- validation is not possible.'
+ description: |-
+ AdditionalProperties specifies the schema of values in a map (keys are always strings).
+ NOTE: Can only be set if type is object.
+ NOTE: AdditionalProperties is mutually exclusive with Properties.
+ NOTE: This field uses PreserveUnknownFields and Schemaless,
+ because recursive validation is not possible.
x-kubernetes-preserve-unknown-fields: true
default:
- description: 'Default is the default value of the variable.
- NOTE: Can be set for all types.'
+ description: |-
+ Default is the default value of the variable.
+ NOTE: Can be set for all types.
x-kubernetes-preserve-unknown-fields: true
description:
description: Description is a human-readable description
of this variable.
type: string
enum:
- description: 'Enum is the list of valid values of the
- variable. NOTE: Can be set for all types.'
+ description: |-
+ Enum is the list of valid values of the variable.
+ NOTE: Can be set for all types.
items:
x-kubernetes-preserve-unknown-fields: true
type: array
@@ -561,99 +675,104 @@ spec:
description: Example is an example for this variable.
x-kubernetes-preserve-unknown-fields: true
exclusiveMaximum:
- description: 'ExclusiveMaximum specifies if the Maximum
- is exclusive. NOTE: Can only be set if type is integer
- or number.'
+ description: |-
+ ExclusiveMaximum specifies if the Maximum is exclusive.
+ NOTE: Can only be set if type is integer or number.
type: boolean
exclusiveMinimum:
- description: 'ExclusiveMinimum specifies if the Minimum
- is exclusive. NOTE: Can only be set if type is integer
- or number.'
+ description: |-
+ ExclusiveMinimum specifies if the Minimum is exclusive.
+ NOTE: Can only be set if type is integer or number.
type: boolean
format:
- description: 'Format is an OpenAPI v3 format string. Unknown
- formats are ignored. For a list of supported formats
- please see: (of the k8s.io/apiextensions-apiserver version
- we''re currently using) https://github.com/kubernetes/apiextensions-apiserver/blob/master/pkg/apiserver/validation/formats.go
- NOTE: Can only be set if type is string.'
+ description: |-
+ Format is an OpenAPI v3 format string. Unknown formats are ignored.
+ For a list of supported formats please see: (of the k8s.io/apiextensions-apiserver version we're currently using)
+ https://github.com/kubernetes/apiextensions-apiserver/blob/master/pkg/apiserver/validation/formats.go
+ NOTE: Can only be set if type is string.
type: string
items:
- description: 'Items specifies fields of an array. NOTE:
- Can only be set if type is array. NOTE: This field uses
- PreserveUnknownFields and Schemaless, because recursive
- validation is not possible.'
+ description: |-
+ Items specifies fields of an array.
+ NOTE: Can only be set if type is array.
+ NOTE: This field uses PreserveUnknownFields and Schemaless,
+ because recursive validation is not possible.
x-kubernetes-preserve-unknown-fields: true
maxItems:
- description: 'MaxItems is the max length of an array variable.
- NOTE: Can only be set if type is array.'
+ description: |-
+ MaxItems is the max length of an array variable.
+ NOTE: Can only be set if type is array.
format: int64
type: integer
maxLength:
- description: 'MaxLength is the max length of a string
- variable. NOTE: Can only be set if type is string.'
+ description: |-
+ MaxLength is the max length of a string variable.
+ NOTE: Can only be set if type is string.
format: int64
type: integer
maximum:
- description: 'Maximum is the maximum of an integer or
- number variable. If ExclusiveMaximum is false, the variable
- is valid if it is lower than, or equal to, the value
- of Maximum. If ExclusiveMaximum is true, the variable
- is valid if it is strictly lower than the value of Maximum.
- NOTE: Can only be set if type is integer or number.'
+ description: |-
+ Maximum is the maximum of an integer or number variable.
+ If ExclusiveMaximum is false, the variable is valid if it is lower than, or equal to, the value of Maximum.
+ If ExclusiveMaximum is true, the variable is valid if it is strictly lower than the value of Maximum.
+ NOTE: Can only be set if type is integer or number.
format: int64
type: integer
minItems:
- description: 'MinItems is the min length of an array variable.
- NOTE: Can only be set if type is array.'
+ description: |-
+ MinItems is the min length of an array variable.
+ NOTE: Can only be set if type is array.
format: int64
type: integer
minLength:
- description: 'MinLength is the min length of a string
- variable. NOTE: Can only be set if type is string.'
+ description: |-
+ MinLength is the min length of a string variable.
+ NOTE: Can only be set if type is string.
format: int64
type: integer
minimum:
- description: 'Minimum is the minimum of an integer or
- number variable. If ExclusiveMinimum is false, the variable
- is valid if it is greater than, or equal to, the value
- of Minimum. If ExclusiveMinimum is true, the variable
- is valid if it is strictly greater than the value of
- Minimum. NOTE: Can only be set if type is integer or
- number.'
+ description: |-
+ Minimum is the minimum of an integer or number variable.
+ If ExclusiveMinimum is false, the variable is valid if it is greater than, or equal to, the value of Minimum.
+ If ExclusiveMinimum is true, the variable is valid if it is strictly greater than the value of Minimum.
+ NOTE: Can only be set if type is integer or number.
format: int64
type: integer
pattern:
- description: 'Pattern is the regex which a string variable
- must match. NOTE: Can only be set if type is string.'
+ description: |-
+ Pattern is the regex which a string variable must match.
+ NOTE: Can only be set if type is string.
type: string
properties:
- description: 'Properties specifies fields of an object.
- NOTE: Can only be set if type is object. NOTE: Properties
- is mutually exclusive with AdditionalProperties. NOTE:
- This field uses PreserveUnknownFields and Schemaless,
- because recursive validation is not possible.'
+ description: |-
+ Properties specifies fields of an object.
+ NOTE: Can only be set if type is object.
+ NOTE: Properties is mutually exclusive with AdditionalProperties.
+ NOTE: This field uses PreserveUnknownFields and Schemaless,
+ because recursive validation is not possible.
x-kubernetes-preserve-unknown-fields: true
required:
- description: 'Required specifies which fields of an object
- are required. NOTE: Can only be set if type is object.'
+ description: |-
+ Required specifies which fields of an object are required.
+ NOTE: Can only be set if type is object.
items:
type: string
type: array
type:
- description: 'Type is the type of the variable. Valid
- values are: object, array, string, integer, number or
- boolean.'
+ description: |-
+ Type is the type of the variable.
+ Valid values are: object, array, string, integer, number or boolean.
type: string
uniqueItems:
- description: 'UniqueItems specifies if items in an array
- must be unique. NOTE: Can only be set if type is array.'
+ description: |-
+ UniqueItems specifies if items in an array must be unique.
+ NOTE: Can only be set if type is array.
type: boolean
x-kubernetes-preserve-unknown-fields:
- description: XPreserveUnknownFields allows setting fields
- in a variable object which are not defined in the variable
- schema. This affects fields recursively, except if nested
- properties or additionalProperties are specified in
- the schema.
+ description: |-
+ XPreserveUnknownFields allows setting fields in a variable object
+ which are not defined in the variable schema. This affects fields recursively,
+ except if nested properties or additionalProperties are specified in the schema.
type: boolean
required:
- type
@@ -668,29 +787,31 @@ spec:
type: object
type: array
workers:
- description: Workers describes the worker nodes for the cluster. It
- is a collection of node types which can be used to create the worker
- nodes of the cluster.
+ description: |-
+ Workers describes the worker nodes for the cluster.
+ It is a collection of node types which can be used to create
+ the worker nodes of the cluster.
properties:
machineDeployments:
- description: MachineDeployments is a list of machine deployment
- classes that can be used to create a set of worker nodes.
+ description: |-
+ MachineDeployments is a list of machine deployment classes that can be used to create
+ a set of worker nodes.
items:
- description: MachineDeploymentClass serves as a template to define
- a set of worker nodes of the cluster provisioned using the `ClusterClass`.
+ description: |-
+ MachineDeploymentClass serves as a template to define a set of worker nodes of the cluster
+ provisioned using the `ClusterClass`.
properties:
class:
- description: Class denotes a type of worker node present in
- the cluster, this name MUST be unique within a ClusterClass
- and can be referenced in the Cluster to create a managed
- MachineDeployment.
+ description: |-
+ Class denotes a type of worker node present in the cluster,
+ this name MUST be unique within a ClusterClass and can be referenced
+ in the Cluster to create a managed MachineDeployment.
type: string
failureDomain:
- description: 'FailureDomain is the failure domain the machines
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object. NOTE: This value can be
- overridden while defining a Cluster.Topology using this
- MachineDeploymentClass.'
+ description: |-
+ FailureDomain is the failure domain the machines will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
type: string
machineHealthCheck:
description: MachineHealthCheck defines a MachineHealthCheck
@@ -700,73 +821,87 @@ spec:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if
- at most "MaxUnhealthy" machines selected by "selector"
- are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without
- a node will be considered to have failed and will be
- remediated. If you wish to disable this feature, set
- the value explicitly to 0.
+ description: |-
+ NodeStartupTimeout allows to set the maximum time for MachineHealthCheck
+ to consider a Machine unhealthy if a corresponding Node isn't associated
+ through a `Spec.ProviderID` field.
+
+
+ The duration set in this field is compared to the greatest of:
+ - Cluster's infrastructure and control plane ready condition timestamp (if and when available)
+ - Machine's infrastructure ready condition timestamp (if and when available)
+ - Machine's metadata creation timestamp
+
+
+ Defaults to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a
- remediation template provided by an infrastructure provider.
- \n This field is completely optional, when filled, the
- MachineHealthCheck controller creates a new object from
- the template referenced and hands off remediation of
- the machine to a controller that lives outside of Cluster
- API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2]. For
- example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part
- of an object. TODO: this design is not final and
- this field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the
- conditions that determine whether a node is considered
- unhealthy. The conditions are combined in a logical
- OR, i.e. if any of the conditions is met, the node is
- unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition
- type and value with a timeout specified as a duration. When
- the named condition has been in the given status for
- at least the timeout value, a node is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -783,63 +918,76 @@ spec:
type: object
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed
- if the number of machines selected by "selector" as
- not healthy is within the range of "UnhealthyRange".
- Takes precedence over MaxUnhealthy. Eg. "[3-5]" - This
- means that remediation will be allowed only when: (a)
- there are at least 3 unhealthy machines (and) (b) there
- are at most 5 unhealthy machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
type: object
minReadySeconds:
- description: 'Minimum number of seconds for which a newly
- created machine should be ready. Defaults to 0 (machine
- will be considered available as soon as it is ready) NOTE:
- This value can be overridden while defining a Cluster.Topology
- using this MachineDeploymentClass.'
+ description: |-
+ Minimum number of seconds for which a newly created machine should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
format: int32
type: integer
+ namingStrategy:
+ description: NamingStrategy allows changing the naming pattern
+ used when creating the MachineDeployment.
+ properties:
+ template:
+ description: |-
+ Template defines the template to use for generating the name of the MachineDeployment object.
+ If not defined, it will fallback to `{{ .cluster.name }}-{{ .machineDeployment.topologyName }}-{{ .random }}`.
+ If the templated string exceeds 63 characters, it will be trimmed to 58 characters and will
+ get concatenated with a random suffix of length 5.
+ The templating mechanism provides the following arguments:
+ * `.cluster.name`: The name of the cluster object.
+ * `.random`: A random alphanumeric string, without vowels, of length 5.
+ * `.machineDeployment.topologyName`: The name of the MachineDeployment topology (Cluster.spec.topology.workers.machineDeployments[].name).
+ type: string
+ type: object
nodeDeletionTimeout:
- description: 'NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after
- the Machine is marked for deletion. A duration of 0 will
- retry deletion indefinitely. Defaults to 10 seconds. NOTE:
- This value can be overridden while defining a Cluster.Topology
- using this MachineDeploymentClass.'
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time
- that the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without
- any time limitations. NOTE: NodeDrainTimeout is different
- from `kubectl drain --timeout` NOTE: This value can be overridden
- while defining a Cluster.Topology using this MachineDeploymentClass.'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
type: string
nodeVolumeDetachTimeout:
- description: 'NodeVolumeDetachTimeout is the total amount
- of time that the controller will spend on waiting for all
- volumes to be detached. The default value is 0, meaning
- that the volumes can be detached without any time limitations.
- NOTE: This value can be overridden while defining a Cluster.Topology
- using this MachineDeploymentClass.'
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
type: string
strategy:
- description: 'The deployment strategy to use to replace existing
- machines with new ones. NOTE: This value can be overridden
- while defining a Cluster.Topology using this MachineDeploymentClass.'
+ description: |-
+ The deployment strategy to use to replace existing machines with
+ new ones.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachineDeploymentClass.
properties:
rollingUpdate:
- description: Rolling update config params. Present only
- if MachineDeploymentStrategyType = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
deletePolicy:
- description: DeletePolicy defines the policy used
- by the MachineDeployment to identify nodes to delete
- when downscaling. Valid values are "Random, "Newest",
- "Oldest" When no value is supplied, the default
- DeletePolicy of MachineSet is used
+ description: |-
+ DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling.
+ Valid values are "Random, "Newest", "Oldest"
+ When no value is supplied, the default DeletePolicy of MachineSet is used
enum:
- Random
- Newest
@@ -849,100 +997,316 @@ spec:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that
- can be scheduled above the desired number of machines.
- Value can be an absolute number (ex: 5) or a percentage
- of desired machines (ex: 10%). This can not be 0
- if MaxUnavailable is 0. Absolute number is calculated
- from percentage by rounding up. Defaults to 1. Example:
- when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update
- starts, such that the total number of old and new
- machines do not exceed 130% of desired machines.
- Once old machines have been killed, new MachineSet
- can be scaled up further, ensuring that total number
- of machines running at any time during the update
- is at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that
- can be unavailable during the update. Value can
- be an absolute number (ex: 5) or a percentage of
- desired machines (ex: 10%). Absolute number is calculated
- from percentage by rounding down. This can not be
- 0 if MaxSurge is 0. Defaults to 0. Example: when
- this is set to 30%, the old MachineSet can be scaled
- down to 70% of desired machines immediately when
- the rolling update starts. Once new machines are
- ready, old MachineSet can be scaled down further,
- followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all
- times during the update is at least 70% of desired
- machines.'
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
+ down further, followed by scaling up the new MachineSet, ensuring
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Default is RollingUpdate.
+ description: |-
+ Type of deployment. Allowed values are RollingUpdate and OnDelete.
+ The default is RollingUpdate.
enum:
- RollingUpdate
- OnDelete
type: string
type: object
template:
- description: Template is a local struct containing a collection
- of templates for creation of MachineDeployment objects representing
- a set of worker nodes.
+ description: |-
+ Template is a local struct containing a collection of templates for creation of
+ MachineDeployment objects representing a set of worker nodes.
+ properties:
+ bootstrap:
+ description: |-
+ Bootstrap contains the bootstrap template reference to be used
+ for the creation of worker Machines.
+ properties:
+ ref:
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
+ properties:
+ apiVersion:
+ description: API version of the referent.
+ type: string
+ fieldPath:
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
+ type: string
+ kind:
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ name:
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
+ type: string
+ resourceVersion:
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
+ type: string
+ uid:
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - ref
+ type: object
+ infrastructure:
+ description: |-
+ Infrastructure contains the infrastructure template reference to be used
+ for the creation of worker Machines.
+ properties:
+ ref:
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
+ properties:
+ apiVersion:
+ description: API version of the referent.
+ type: string
+ fieldPath:
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
+ type: string
+ kind:
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ name:
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
+ type: string
+ resourceVersion:
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
+ type: string
+ uid:
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - ref
+ type: object
+ metadata:
+ description: |-
+ Metadata is the metadata applied to the MachineDeployment and the machines of the MachineDeployment.
+ At runtime this metadata is merged with the corresponding metadata from the topology.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
+ type: object
+ type: object
+ required:
+ - bootstrap
+ - infrastructure
+ type: object
+ required:
+ - class
+ - template
+ type: object
+ type: array
+ machinePools:
+ description: |-
+ MachinePools is a list of machine pool classes that can be used to create
+ a set of worker nodes.
+ items:
+ description: |-
+ MachinePoolClass serves as a template to define a pool of worker nodes of the cluster
+ provisioned using `ClusterClass`.
+ properties:
+ class:
+ description: |-
+ Class denotes a type of machine pool present in the cluster,
+ this name MUST be unique within a ClusterClass and can be referenced
+ in the Cluster to create a managed MachinePool.
+ type: string
+ failureDomains:
+ description: |-
+ FailureDomains is the list of failure domains the MachinePool should be attached to.
+ Must match a key in the FailureDomains map stored on the cluster object.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachinePoolClass.
+ items:
+ type: string
+ type: array
+ minReadySeconds:
+ description: |-
+ Minimum number of seconds for which a newly created machine pool should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachinePoolClass.
+ format: int32
+ type: integer
+ namingStrategy:
+ description: NamingStrategy allows changing the naming pattern
+ used when creating the MachinePool.
+ properties:
+ template:
+ description: |-
+ Template defines the template to use for generating the name of the MachinePool object.
+ If not defined, it will fallback to `{{ .cluster.name }}-{{ .machinePool.topologyName }}-{{ .random }}`.
+ If the templated string exceeds 63 characters, it will be trimmed to 58 characters and will
+ get concatenated with a random suffix of length 5.
+ The templating mechanism provides the following arguments:
+ * `.cluster.name`: The name of the cluster object.
+ * `.random`: A random alphanumeric string, without vowels, of length 5.
+ * `.machinePool.topologyName`: The name of the MachinePool topology (Cluster.spec.topology.workers.machinePools[].name).
+ type: string
+ type: object
+ nodeDeletionTimeout:
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine Pool is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachinePoolClass.
+ type: string
+ nodeDrainTimeout:
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachinePoolClass.
+ type: string
+ nodeVolumeDetachTimeout:
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
+ NOTE: This value can be overridden while defining a Cluster.Topology using this MachinePoolClass.
+ type: string
+ template:
+ description: |-
+ Template is a local struct containing a collection of templates for creation of
+ MachinePools objects representing a pool of worker nodes.
properties:
bootstrap:
- description: Bootstrap contains the bootstrap template
- reference to be used for the creation of worker Machines.
+ description: |-
+ Bootstrap contains the bootstrap template reference to be used
+ for the creation of the Machines in the MachinePool.
properties:
ref:
- description: Ref is a required reference to a custom
- resource offered by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2].
- For example, if the object reference is to a
- container within a pod, this would take on a
- value like: "spec.containers{name}" (where "name"
- refers to the name of the container that triggered
- the event) or if no container name is specified
- "spec.containers[2]" (container with index 2
- in this pod). This syntax is chosen only to
- have some well-defined way of referencing a
- part of an object. TODO: this design is not
- final and this field is subject to change in
- the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info:
- https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which
- this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -950,53 +1314,53 @@ spec:
- ref
type: object
infrastructure:
- description: Infrastructure contains the infrastructure
- template reference to be used for the creation of worker
- Machines.
+ description: |-
+ Infrastructure contains the infrastructure template reference to be used
+ for the creation of the MachinePool.
properties:
ref:
- description: Ref is a required reference to a custom
- resource offered by a provider.
+ description: |-
+ Ref is a required reference to a custom resource
+ offered by a provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2].
- For example, if the object reference is to a
- container within a pod, this would take on a
- value like: "spec.containers{name}" (where "name"
- refers to the name of the container that triggered
- the event) or if no container name is specified
- "spec.containers[2]" (container with index 2
- in this pod). This syntax is chosen only to
- have some well-defined way of referencing a
- part of an object. TODO: this design is not
- final and this field is subject to change in
- the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info:
- https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which
- this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1004,27 +1368,27 @@ spec:
- ref
type: object
metadata:
- description: Metadata is the metadata applied to the MachineDeployment
- and the machines of the MachineDeployment. At runtime
- this metadata is merged with the corresponding metadata
- from the topology.
+ description: |-
+ Metadata is the metadata applied to the MachinePool.
+ At runtime this metadata is merged with the corresponding metadata from the topology.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value
- map stored with a resource that may be set by external
- tools to store and retrieve arbitrary metadata.
- They are not queryable and should be preserved when
- modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can
- be used to organize and categorize (scope and select)
- objects. May match selectors of replication controllers
- and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusters.yaml
index e805f9ea8..949d202bf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/clusters.yaml
@@ -20,14 +20,19 @@ spec:
description: Cluster is the Schema for the clusters API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,8 +74,9 @@ spec:
description: Cluster network configuration.
properties:
apiServerPort:
- description: APIServerPort specifies the port the API Server should
- bind to. Defaults to 6443.
+ description: |-
+ APIServerPort specifies the port the API Server should bind to.
+ Defaults to 6443.
format: int32
type: integer
pods:
@@ -113,80 +119,94 @@ spec:
- port
type: object
controlPlaneRef:
- description: ControlPlaneRef is an optional reference to a provider-specific
- resource that holds the details for provisioning the Control Plane
- for a Cluster.
+ description: |-
+ ControlPlaneRef is an optional reference to a provider-specific resource that holds
+ the details for provisioning the Control Plane for a Cluster.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
infrastructureRef:
- description: InfrastructureRef is a reference to a provider-specific
- resource that holds the details for provisioning infrastructure for
- a cluster in said provider.
+ description: |-
+ InfrastructureRef is a reference to a provider-specific resource that holds the details
+ for provisioning infrastructure for a cluster in said provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -195,10 +215,11 @@ spec:
the Cluster and all its associated objects.
type: boolean
topology:
- description: 'This encapsulates the topology for the cluster. NOTE:
- It is required to enable the ClusterTopology feature gate flag to
- activate managed topologies support; this feature is highly experimental,
- and parts of it might still be not implemented.'
+ description: |-
+ This encapsulates the topology for the cluster.
+ NOTE: It is required to enable the ClusterTopology
+ feature gate flag to activate managed topologies support;
+ this feature is highly experimental, and parts of it might still be not implemented.
properties:
class:
description: The name of the ClusterClass object to create the topology.
@@ -207,89 +228,110 @@ spec:
description: ControlPlane describes the cluster control plane.
properties:
machineHealthCheck:
- description: MachineHealthCheck allows to enable, disable and
- override the MachineHealthCheck configuration in the ClusterClass
- for this control plane.
+ description: |-
+ MachineHealthCheck allows to enable, disable and override
+ the MachineHealthCheck configuration in the ClusterClass for this control plane.
properties:
enable:
- description: "Enable controls if a MachineHealthCheck should
- be created for the target machines. \n If false: No MachineHealthCheck
- will be created. \n If not set(default): A MachineHealthCheck
- will be created if it is defined here or in the associated
- ClusterClass. If no MachineHealthCheck is defined then
- none will be created. \n If true: A MachineHealthCheck
- is guaranteed to be created. Cluster validation will block
- if `enable` is true and no MachineHealthCheck definition
- is available."
+ description: |-
+ Enable controls if a MachineHealthCheck should be created for the target machines.
+
+
+ If false: No MachineHealthCheck will be created.
+
+
+ If not set(default): A MachineHealthCheck will be created if it is defined here or
+ in the associated ClusterClass. If no MachineHealthCheck is defined then none will be created.
+
+
+ If true: A MachineHealthCheck is guaranteed to be created. Cluster validation will
+ block if `enable` is true and no MachineHealthCheck definition is available.
type: boolean
maxUnhealthy:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if
- at most "MaxUnhealthy" machines selected by "selector"
- are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without a
- node will be considered to have failed and will be remediated.
- If you wish to disable this feature, set the value explicitly
- to 0.
+ description: |-
+ NodeStartupTimeout allows to set the maximum time for MachineHealthCheck
+ to consider a Machine unhealthy if a corresponding Node isn't associated
+ through a `Spec.ProviderID` field.
+
+
+ The duration set in this field is compared to the greatest of:
+ - Cluster's infrastructure and control plane ready condition timestamp (if and when available)
+ - Machine's infrastructure ready condition timestamp (if and when available)
+ - Machine's metadata creation timestamp
+
+
+ Defaults to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a remediation
- template provided by an infrastructure provider. \n This
- field is completely optional, when filled, the MachineHealthCheck
- controller creates a new object from the template referenced
- and hands off remediation of the machine to a controller
- that lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the
- conditions that determine whether a node is considered
- unhealthy. The conditions are combined in a logical OR,
- i.e. if any of the conditions is met, the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition
- type and value with a timeout specified as a duration. When
- the named condition has been in the given status for
- at least the timeout value, a node is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -306,105 +348,143 @@ spec:
type: object
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed if
- the number of machines selected by "selector" as not healthy
- is within the range of "UnhealthyRange". Takes precedence
- over MaxUnhealthy. Eg. "[3-5]" - This means that remediation
- will be allowed only when: (a) there are at least 3 unhealthy
- machines (and) (b) there are at most 5 unhealthy machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
type: object
metadata:
- description: Metadata is the metadata applied to the ControlPlane
- and the Machines of the ControlPlane if the ControlPlaneTemplate
- referenced by the ClusterClass is machine based. If not, it
- is applied only to the ControlPlane. At runtime this metadata
- is merged with the corresponding metadata from the ClusterClass.
+ description: |-
+ Metadata is the metadata applied to the ControlPlane and the Machines of the ControlPlane
+ if the ControlPlaneTemplate referenced by the ClusterClass is machine based. If not, it
+ is applied only to the ControlPlane.
+ At runtime this metadata is merged with the corresponding metadata from the ClusterClass.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map
- stored with a resource that may be set by external tools
- to store and retrieve arbitrary metadata. They are not
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
queryable and should be preserved when modifying objects.
- More info: http://kubernetes.io/docs/user-guide/annotations'
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be
- used to organize and categorize (scope and select) objects.
- May match selectors of replication controllers and services.
- More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after
- the Machine is marked for deletion. A duration of 0 will retry
- deletion indefinitely. Defaults to 10 seconds.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount of
- time that the controller will spend on waiting for all volumes
- to be detached. The default value is 0, meaning that the volumes
- can be detached without any time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
replicas:
- description: Replicas is the number of control plane nodes.
- If the value is nil, the ControlPlane object is created without
- the number of Replicas and it's assumed that the control plane
- controller does not implement support for this field. When
- specified against a control plane provider that lacks support
- for this field, this value will be ignored.
+ description: |-
+ Replicas is the number of control plane nodes.
+ If the value is nil, the ControlPlane object is created without the number of Replicas
+ and it's assumed that the control plane controller does not implement support for this field.
+ When specified against a control plane provider that lacks support for this field, this value will be ignored.
format: int32
type: integer
+ variables:
+ description: Variables can be used to customize the ControlPlane
+ through patches.
+ properties:
+ overrides:
+ description: Overrides can be used to override Cluster level
+ variables.
+ items:
+ description: |-
+ ClusterVariable can be used to customize the Cluster through patches. Each ClusterVariable is associated with a
+ Variable definition in the ClusterClass `status` variables.
+ properties:
+ definitionFrom:
+ description: |-
+ DefinitionFrom specifies where the definition of this Variable is from. DefinitionFrom is `inline` when the
+ definition is from the ClusterClass `.spec.variables` or the name of a patch defined in the ClusterClass
+ `.spec.patches` where the patch is external and provides external variables.
+ This field is mandatory if the variable has `DefinitionsConflict: true` in ClusterClass `status.variables[]`
+ type: string
+ name:
+ description: Name of the variable.
+ type: string
+ value:
+ description: |-
+ Value of the variable.
+ Note: the value will be validated against the schema of the corresponding ClusterClassVariable
+ from the ClusterClass.
+ Note: We have to use apiextensionsv1.JSON instead of a custom JSON type, because controller-tools has a
+ hard-coded schema for apiextensionsv1.JSON which cannot be produced by another type via controller-tools,
+ i.e. it is not possible to have no type field.
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ type: object
type: object
rolloutAfter:
- description: 'RolloutAfter performs a rollout of the entire cluster
- one component at a time, control plane first and then machine
- deployments. Deprecated: This field has no function and is going
- to be removed in the next apiVersion.'
+ description: |-
+ RolloutAfter performs a rollout of the entire cluster one component at a time,
+ control plane first and then machine deployments.
+
+
+ Deprecated: This field has no function and is going to be removed in the next apiVersion.
format: date-time
type: string
variables:
- description: Variables can be used to customize the Cluster through
- patches. They must comply to the corresponding VariableClasses
- defined in the ClusterClass.
+ description: |-
+ Variables can be used to customize the Cluster through
+ patches. They must comply to the corresponding
+ VariableClasses defined in the ClusterClass.
items:
- description: ClusterVariable can be used to customize the Cluster
- through patches. Each ClusterVariable is associated with a Variable
- definition in the ClusterClass `status` variables.
+ description: |-
+ ClusterVariable can be used to customize the Cluster through patches. Each ClusterVariable is associated with a
+ Variable definition in the ClusterClass `status` variables.
properties:
definitionFrom:
- description: 'DefinitionFrom specifies where the definition
- of this Variable is from. DefinitionFrom is `inline` when
- the definition is from the ClusterClass `.spec.variables`
- or the name of a patch defined in the ClusterClass `.spec.patches`
- where the patch is external and provides external variables.
- This field is mandatory if the variable has `DefinitionsConflict:
- true` in ClusterClass `status.variables[]`'
+ description: |-
+ DefinitionFrom specifies where the definition of this Variable is from. DefinitionFrom is `inline` when the
+ definition is from the ClusterClass `.spec.variables` or the name of a patch defined in the ClusterClass
+ `.spec.patches` where the patch is external and provides external variables.
+ This field is mandatory if the variable has `DefinitionsConflict: true` in ClusterClass `status.variables[]`
type: string
name:
description: Name of the variable.
type: string
value:
- description: 'Value of the variable. Note: the value will
- be validated against the schema of the corresponding ClusterClassVariable
- from the ClusterClass. Note: We have to use apiextensionsv1.JSON
- instead of a custom JSON type, because controller-tools
- has a hard-coded schema for apiextensionsv1.JSON which cannot
- be produced by another type via controller-tools, i.e. it
- is not possible to have no type field. Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111'
+ description: |-
+ Value of the variable.
+ Note: the value will be validated against the schema of the corresponding ClusterClassVariable
+ from the ClusterClass.
+ Note: We have to use apiextensionsv1.JSON instead of a custom JSON type, because controller-tools has a
+ hard-coded schema for apiextensionsv1.JSON which cannot be produced by another type via controller-tools,
+ i.e. it is not possible to have no type field.
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
x-kubernetes-preserve-unknown-fields: true
required:
- name
@@ -415,123 +495,134 @@ spec:
description: The Kubernetes version of the cluster.
type: string
workers:
- description: Workers encapsulates the different constructs that
- form the worker nodes for the cluster.
+ description: |-
+ Workers encapsulates the different constructs that form the worker nodes
+ for the cluster.
properties:
machineDeployments:
description: MachineDeployments is a list of machine deployments
in the cluster.
items:
- description: MachineDeploymentTopology specifies the different
- parameters for a set of worker nodes in the topology. This
- set of nodes is managed by a MachineDeployment object whose
- lifecycle is managed by the Cluster controller.
+ description: |-
+ MachineDeploymentTopology specifies the different parameters for a set of worker nodes in the topology.
+ This set of nodes is managed by a MachineDeployment object whose lifecycle is managed by the Cluster controller.
properties:
class:
- description: Class is the name of the MachineDeploymentClass
- used to create the set of worker nodes. This should
- match one of the deployment classes defined in the ClusterClass
- object mentioned in the `Cluster.Spec.Class` field.
+ description: |-
+ Class is the name of the MachineDeploymentClass used to create the set of worker nodes.
+ This should match one of the deployment classes defined in the ClusterClass object
+ mentioned in the `Cluster.Spec.Class` field.
type: string
failureDomain:
- description: FailureDomain is the failure domain the machines
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machines will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
machineHealthCheck:
- description: MachineHealthCheck allows to enable, disable
- and override the MachineHealthCheck configuration in
- the ClusterClass for this MachineDeployment.
+ description: |-
+ MachineHealthCheck allows to enable, disable and override
+ the MachineHealthCheck configuration in the ClusterClass for this MachineDeployment.
properties:
enable:
- description: "Enable controls if a MachineHealthCheck
- should be created for the target machines. \n If
- false: No MachineHealthCheck will be created. \n
- If not set(default): A MachineHealthCheck will be
- created if it is defined here or in the associated
- ClusterClass. If no MachineHealthCheck is defined
- then none will be created. \n If true: A MachineHealthCheck
- is guaranteed to be created. Cluster validation
- will block if `enable` is true and no MachineHealthCheck
- definition is available."
+ description: |-
+ Enable controls if a MachineHealthCheck should be created for the target machines.
+
+
+ If false: No MachineHealthCheck will be created.
+
+
+ If not set(default): A MachineHealthCheck will be created if it is defined here or
+ in the associated ClusterClass. If no MachineHealthCheck is defined then none will be created.
+
+
+ If true: A MachineHealthCheck is guaranteed to be created. Cluster validation will
+ block if `enable` is true and no MachineHealthCheck definition is available.
type: boolean
maxUnhealthy:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed
- if at most "MaxUnhealthy" machines selected by "selector"
- are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without
- a node will be considered to have failed and will
- be remediated. If you wish to disable this feature,
- set the value explicitly to 0.
+ description: |-
+ NodeStartupTimeout allows to set the maximum time for MachineHealthCheck
+ to consider a Machine unhealthy if a corresponding Node isn't associated
+ through a `Spec.ProviderID` field.
+
+
+ The duration set in this field is compared to the greatest of:
+ - Cluster's infrastructure and control plane ready condition timestamp (if and when available)
+ - Machine's infrastructure ready condition timestamp (if and when available)
+ - Machine's metadata creation timestamp
+
+
+ Defaults to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to
- a remediation template provided by an infrastructure
- provider. \n This field is completely optional,
- when filled, the MachineHealthCheck controller creates
- a new object from the template referenced and hands
- off remediation of the machine to a controller that
- lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object
- instead of an entire object, this string should
- contain a valid JSON/Go field access statement,
- such as desiredState.manifest.containers[2].
- For example, if the object reference is to a
- container within a pod, this would take on a
- value like: "spec.containers{name}" (where "name"
- refers to the name of the container that triggered
- the event) or if no container name is specified
- "spec.containers[2]" (container with index 2
- in this pod). This syntax is chosen only to
- have some well-defined way of referencing a
- part of an object. TODO: this design is not
- final and this field is subject to change in
- the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info:
- https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More
- info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which
- this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of
- the conditions that determine whether a node is
- considered unhealthy. The conditions are combined
- in a logical OR, i.e. if any of the conditions is
- met, the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node
- condition type and value with a timeout specified
- as a duration. When the named condition has been
- in the given status for at least the timeout value,
- a node is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -548,97 +639,94 @@ spec:
type: object
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed
- if the number of machines selected by "selector"
- as not healthy is within the range of "UnhealthyRange".
- Takes precedence over MaxUnhealthy. Eg. "[3-5]"
- - This means that remediation will be allowed only
- when: (a) there are at least 3 unhealthy machines
- (and) (b) there are at most 5 unhealthy machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
type: object
metadata:
- description: Metadata is the metadata applied to the MachineDeployment
- and the machines of the MachineDeployment. At runtime
- this metadata is merged with the corresponding metadata
- from the ClusterClass.
+ description: |-
+ Metadata is the metadata applied to the MachineDeployment and the machines of the MachineDeployment.
+ At runtime this metadata is merged with the corresponding metadata from the ClusterClass.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value
- map stored with a resource that may be set by external
- tools to store and retrieve arbitrary metadata.
- They are not queryable and should be preserved when
- modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can
- be used to organize and categorize (scope and select)
- objects. May match selectors of replication controllers
- and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
minReadySeconds:
- description: Minimum number of seconds for which a newly
- created machine should be ready. Defaults to 0 (machine
- will be considered available as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
format: int32
type: integer
name:
- description: Name is the unique identifier for this MachineDeploymentTopology.
- The value is used with other unique identifiers to create
- a MachineDeployment's Name (e.g. cluster's name, etc).
- In case the name is greater than the allowed maximum
- length, the values are hashed together.
+ description: |-
+ Name is the unique identifier for this MachineDeploymentTopology.
+ The value is used with other unique identifiers to create a MachineDeployment's Name
+ (e.g. cluster's name, etc). In case the name is greater than the allowed maximum length,
+ the values are hashed together.
type: string
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the
- controller will attempt to delete the Node that the
- Machine hosts after the Machine is marked for deletion.
- A duration of 0 will retry deletion indefinitely. Defaults
- to 10 seconds.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of
- time that the controller will spend on draining a node.
- The default value is 0, meaning that the node can be
- drained without any time limitations. NOTE: NodeDrainTimeout
- is different from `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount
- of time that the controller will spend on waiting for
- all volumes to be detached. The default value is 0,
- meaning that the volumes can be detached without any
- time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
replicas:
- description: Replicas is the number of worker nodes belonging
- to this set. If the value is nil, the MachineDeployment
- is created without the number of Replicas (defaulting
- to 1) and it's assumed that an external entity (like
- cluster autoscaler) is responsible for the management
+ description: |-
+ Replicas is the number of worker nodes belonging to this set.
+ If the value is nil, the MachineDeployment is created without the number of Replicas (defaulting to 1)
+ and it's assumed that an external entity (like cluster autoscaler) is responsible for the management
of this value.
format: int32
type: integer
strategy:
- description: The deployment strategy to use to replace
- existing machines with new ones.
+ description: |-
+ The deployment strategy to use to replace existing machines with
+ new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present
- only if MachineDeploymentStrategyType = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
deletePolicy:
- description: DeletePolicy defines the policy used
- by the MachineDeployment to identify nodes to
- delete when downscaling. Valid values are "Random,
- "Newest", "Oldest" When no value is supplied,
- the default DeletePolicy of MachineSet is used
+ description: |-
+ DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling.
+ Valid values are "Random, "Newest", "Oldest"
+ When no value is supplied, the default DeletePolicy of MachineSet is used
enum:
- Random
- Newest
@@ -648,45 +736,44 @@ spec:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that
- can be scheduled above the desired number of
- machines. Value can be an absolute number (ex:
- 5) or a percentage of desired machines (ex:
- 10%). This can not be 0 if MaxUnavailable is
- 0. Absolute number is calculated from percentage
- by rounding up. Defaults to 1. Example: when
- this is set to 30%, the new MachineSet can be
- scaled up immediately when the rolling update
- starts, such that the total number of old and
- new machines do not exceed 130% of desired machines.
- Once old machines have been killed, new MachineSet
- can be scaled up further, ensuring that total
- number of machines running at any time during
- the update is at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that
- can be unavailable during the update. Value
- can be an absolute number (ex: 5) or a percentage
- of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down.
- This can not be 0 if MaxSurge is 0. Defaults
- to 0. Example: when this is set to 30%, the
- old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling
- update starts. Once new machines are ready,
- old MachineSet can be scaled down further, followed
- by scaling up the new MachineSet, ensuring that
- the total number of machines available at all
- times during the update is at least 70% of desired
- machines.'
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
+ down further, followed by scaling up the new MachineSet, ensuring
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Default is RollingUpdate.
+ description: |-
+ Type of deployment. Allowed values are RollingUpdate and OnDelete.
+ The default is RollingUpdate.
enum:
- RollingUpdate
- OnDelete
@@ -700,36 +787,157 @@ spec:
description: Overrides can be used to override Cluster
level variables.
items:
- description: ClusterVariable can be used to customize
- the Cluster through patches. Each ClusterVariable
- is associated with a Variable definition in the
- ClusterClass `status` variables.
+ description: |-
+ ClusterVariable can be used to customize the Cluster through patches. Each ClusterVariable is associated with a
+ Variable definition in the ClusterClass `status` variables.
+ properties:
+ definitionFrom:
+ description: |-
+ DefinitionFrom specifies where the definition of this Variable is from. DefinitionFrom is `inline` when the
+ definition is from the ClusterClass `.spec.variables` or the name of a patch defined in the ClusterClass
+ `.spec.patches` where the patch is external and provides external variables.
+ This field is mandatory if the variable has `DefinitionsConflict: true` in ClusterClass `status.variables[]`
+ type: string
+ name:
+ description: Name of the variable.
+ type: string
+ value:
+ description: |-
+ Value of the variable.
+ Note: the value will be validated against the schema of the corresponding ClusterClassVariable
+ from the ClusterClass.
+ Note: We have to use apiextensionsv1.JSON instead of a custom JSON type, because controller-tools has a
+ hard-coded schema for apiextensionsv1.JSON which cannot be produced by another type via controller-tools,
+ i.e. it is not possible to have no type field.
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ type: object
+ required:
+ - class
+ - name
+ type: object
+ type: array
+ machinePools:
+ description: MachinePools is a list of machine pools in the
+ cluster.
+ items:
+ description: |-
+ MachinePoolTopology specifies the different parameters for a pool of worker nodes in the topology.
+ This pool of nodes is managed by a MachinePool object whose lifecycle is managed by the Cluster controller.
+ properties:
+ class:
+ description: |-
+ Class is the name of the MachinePoolClass used to create the pool of worker nodes.
+ This should match one of the deployment classes defined in the ClusterClass object
+ mentioned in the `Cluster.Spec.Class` field.
+ type: string
+ failureDomains:
+ description: |-
+ FailureDomains is the list of failure domains the machine pool will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
+ items:
+ type: string
+ type: array
+ metadata:
+ description: |-
+ Metadata is the metadata applied to the MachinePool.
+ At runtime this metadata is merged with the corresponding metadata from the ClusterClass.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
+ type: object
+ type: object
+ minReadySeconds:
+ description: |-
+ Minimum number of seconds for which a newly created machine pool should
+ be ready.
+ Defaults to 0 (machine will be considered available as soon as it
+ is ready)
+ format: int32
+ type: integer
+ name:
+ description: |-
+ Name is the unique identifier for this MachinePoolTopology.
+ The value is used with other unique identifiers to create a MachinePool's Name
+ (e.g. cluster's name, etc). In case the name is greater than the allowed maximum length,
+ the values are hashed together.
+ type: string
+ nodeDeletionTimeout:
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the MachinePool
+ hosts after the MachinePool is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
+ type: string
+ nodeDrainTimeout:
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
+ type: string
+ nodeVolumeDetachTimeout:
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
+ type: string
+ replicas:
+ description: |-
+ Replicas is the number of nodes belonging to this pool.
+ If the value is nil, the MachinePool is created without the number of Replicas (defaulting to 1)
+ and it's assumed that an external entity (like cluster autoscaler) is responsible for the management
+ of this value.
+ format: int32
+ type: integer
+ variables:
+ description: Variables can be used to customize the MachinePool
+ through patches.
+ properties:
+ overrides:
+ description: Overrides can be used to override Cluster
+ level variables.
+ items:
+ description: |-
+ ClusterVariable can be used to customize the Cluster through patches. Each ClusterVariable is associated with a
+ Variable definition in the ClusterClass `status` variables.
properties:
definitionFrom:
- description: 'DefinitionFrom specifies where
- the definition of this Variable is from. DefinitionFrom
- is `inline` when the definition is from the
- ClusterClass `.spec.variables` or the name
- of a patch defined in the ClusterClass `.spec.patches`
- where the patch is external and provides external
- variables. This field is mandatory if the
- variable has `DefinitionsConflict: true` in
- ClusterClass `status.variables[]`'
+ description: |-
+ DefinitionFrom specifies where the definition of this Variable is from. DefinitionFrom is `inline` when the
+ definition is from the ClusterClass `.spec.variables` or the name of a patch defined in the ClusterClass
+ `.spec.patches` where the patch is external and provides external variables.
+ This field is mandatory if the variable has `DefinitionsConflict: true` in ClusterClass `status.variables[]`
type: string
name:
description: Name of the variable.
type: string
value:
- description: 'Value of the variable. Note: the
- value will be validated against the schema
- of the corresponding ClusterClassVariable
- from the ClusterClass. Note: We have to use
- apiextensionsv1.JSON instead of a custom JSON
- type, because controller-tools has a hard-coded
- schema for apiextensionsv1.JSON which cannot
- be produced by another type via controller-tools,
+ description: |-
+ Value of the variable.
+ Note: the value will be validated against the schema of the corresponding ClusterClassVariable
+ from the ClusterClass.
+ Note: We have to use apiextensionsv1.JSON instead of a custom JSON type, because controller-tools has a
+ hard-coded schema for apiextensionsv1.JSON which cannot be produced by another type via controller-tools,
i.e. it is not possible to have no type field.
- Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111'
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
x-kubernetes-preserve-unknown-fields: true
required:
- name
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
index b0148699c..34bbbc532 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
@@ -20,14 +20,19 @@ spec:
description: MachineDeployment is the Schema for the machinedeployments API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,115 +76,126 @@ spec:
minLength: 1
type: string
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- should be ready. Defaults to 0 (machine will be considered available
- as soon as it is ready)
+ description: |-
+ MinReadySeconds is the minimum number of seconds for which a Node for a newly created machine should be ready before considering the replica available.
+ Defaults to 0 (machine will be considered available as soon as the Node is ready)
format: int32
type: integer
paused:
description: Indicates that the deployment is paused.
type: boolean
progressDeadlineSeconds:
- description: The maximum time in seconds for a deployment to make progress
- before it is considered to be failed. The deployment controller will
- continue to process failed deployments and a condition with a ProgressDeadlineExceeded
- reason will be surfaced in the deployment status. Note that progress
- will not be estimated during the time a deployment is paused. Defaults
- to 600s.
+ description: |-
+ The maximum time in seconds for a deployment to make progress before it
+ is considered to be failed. The deployment controller will continue to
+ process failed deployments and a condition with a ProgressDeadlineExceeded
+ reason will be surfaced in the deployment status. Note that progress will
+ not be estimated during the time a deployment is paused. Defaults to 600s.
format: int32
type: integer
replicas:
- description: "Number of desired machines. This is a pointer to distinguish
- between explicit zero and not specified. \n Defaults to: * if the
- Kubernetes autoscaler min size and max size annotations are set: -
- if it's a new MachineDeployment, use min size - if the replicas field
- of the old MachineDeployment is < min size, use min size - if the
- replicas field of the old MachineDeployment is > max size, use max
- size - if the replicas field of the old MachineDeployment is in the
- (min size, max size) range, keep the value from the oldMD * otherwise
- use 1 Note: Defaulting will be run whenever the replicas field is
- not set: * A new MachineDeployment is created with replicas not set.
- * On an existing MachineDeployment the replicas field was first set
- and is now unset. Those cases are especially relevant for the following
- Kubernetes autoscaler use cases: * A new MachineDeployment is created
- and replicas should be managed by the autoscaler * An existing MachineDeployment
- which initially wasn't controlled by the autoscaler should be later
- controlled by the autoscaler"
+ description: |-
+ Number of desired machines.
+ This is a pointer to distinguish between explicit zero and not specified.
+
+
+ Defaults to:
+ * if the Kubernetes autoscaler min size and max size annotations are set:
+ - if it's a new MachineDeployment, use min size
+ - if the replicas field of the old MachineDeployment is < min size, use min size
+ - if the replicas field of the old MachineDeployment is > max size, use max size
+ - if the replicas field of the old MachineDeployment is in the (min size, max size) range, keep the value from the oldMD
+ * otherwise use 1
+ Note: Defaulting will be run whenever the replicas field is not set:
+ * A new MachineDeployment is created with replicas not set.
+ * On an existing MachineDeployment the replicas field was first set and is now unset.
+ Those cases are especially relevant for the following Kubernetes autoscaler use cases:
+ * A new MachineDeployment is created and replicas should be managed by the autoscaler
+ * An existing MachineDeployment which initially wasn't controlled by the autoscaler
+ should be later controlled by the autoscaler
format: int32
type: integer
revisionHistoryLimit:
- description: The number of old MachineSets to retain to allow rollback.
+ description: |-
+ The number of old MachineSets to retain to allow rollback.
This is a pointer to distinguish between explicit zero and not specified.
Defaults to 1.
format: int32
type: integer
rolloutAfter:
- description: 'RolloutAfter is a field to indicate a rollout should be
- performed after the specified time even if no changes have been made
- to the MachineDeployment. Example: In the YAML the time can be specified
- in the RFC3339 format. To specify the rolloutAfter target as March
- 9, 2023, at 9 am UTC use "2023-03-09T09:00:00Z".'
+ description: |-
+ RolloutAfter is a field to indicate a rollout should be performed
+ after the specified time even if no changes have been made to the
+ MachineDeployment.
+ Example: In the YAML the time can be specified in the RFC3339 format.
+ To specify the rolloutAfter target as March 9, 2023, at 9 am UTC
+ use "2023-03-09T09:00:00Z".
format: date-time
type: string
selector:
- description: Label selector for machines. Existing MachineSets whose
- machines are selected by this will be the ones affected by this deployment.
+ description: |-
+ Label selector for machines. Existing MachineSets whose machines are
+ selected by this will be the ones affected by this deployment.
It must match the machine template's labels.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
strategy:
- description: The deployment strategy to use to replace existing machines
- with new ones.
+ description: |-
+ The deployment strategy to use to replace existing machines with
+ new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present only if MachineDeploymentStrategyType
- = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
deletePolicy:
- description: DeletePolicy defines the policy used by the MachineDeployment
- to identify nodes to delete when downscaling. Valid values
- are "Random, "Newest", "Oldest" When no value is supplied,
- the default DeletePolicy of MachineSet is used
+ description: |-
+ DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling.
+ Valid values are "Random, "Newest", "Oldest"
+ When no value is supplied, the default DeletePolicy of MachineSet is used
enum:
- Random
- Newest
@@ -189,38 +205,44 @@ spec:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be scheduled
- above the desired number of machines. Value can be an absolute
- number (ex: 5) or a percentage of desired machines (ex: 10%).
- This can not be 0 if MaxUnavailable is 0. Absolute number
- is calculated from percentage by rounding up. Defaults to
- 1. Example: when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update starts, such
- that the total number of old and new machines do not exceed
- 130% of desired machines. Once old machines have been killed,
- new MachineSet can be scaled up further, ensuring that total
- number of machines running at any time during the update is
- at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
- description: 'The maximum number of machines that can be unavailable
- during the update. Value can be an absolute number (ex: 5)
- or a percentage of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down. This can not
- be 0 if MaxSurge is 0. Defaults to 0. Example: when this is
- set to 30%, the old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling update starts.
- Once new machines are ready, old MachineSet can be scaled
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
down further, followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all times during
- the update is at least 70% of desired machines.'
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
- description: Type of deployment. Default is RollingUpdate.
+ description: |-
+ Type of deployment. Allowed values are RollingUpdate and OnDelete.
+ The default is RollingUpdate.
enum:
- RollingUpdate
- OnDelete
@@ -230,80 +252,91 @@ spec:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -312,88 +345,89 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after
- the Machine is marked for deletion. A duration of 0 will retry
- deletion indefinitely. Defaults to 10 seconds.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount of
- time that the controller will spend on waiting for all volumes
- to be detached. The default value is 0, meaning that the volumes
- can be detached without any time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
index 769fbe3b9..8aee494f2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
@@ -20,14 +20,19 @@ spec:
description: MachineHealthCheck is the Schema for the machinehealthchecks API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -74,53 +79,74 @@ spec:
anyOf:
- type: integer
- type: string
- description: Any further remediation is only allowed if at most "MaxUnhealthy"
- machines selected by "selector" are not healthy.
+ description: |-
+ Any further remediation is only allowed if at most "MaxUnhealthy" machines selected by
+ "selector" are not healthy.
x-kubernetes-int-or-string: true
nodeStartupTimeout:
- description: Machines older than this duration without a node will be
- considered to have failed and will be remediated. If not set, this
- value is defaulted to 10 minutes. If you wish to disable this feature,
- set the value explicitly to 0.
+ description: |-
+ NodeStartupTimeout allows to set the maximum time for MachineHealthCheck
+ to consider a Machine unhealthy if a corresponding Node isn't associated
+ through a `Spec.ProviderID` field.
+
+
+ The duration set in this field is compared to the greatest of:
+ - Cluster's infrastructure and control plane ready condition timestamp (if and when available)
+ - Machine's infrastructure ready condition timestamp (if and when available)
+ - Machine's metadata creation timestamp
+
+
+ Defaults to 10 minutes.
+ If you wish to disable this feature, set the value explicitly to 0.
type: string
remediationTemplate:
- description: "RemediationTemplate is a reference to a remediation template
- provided by an infrastructure provider. \n This field is completely
- optional, when filled, the MachineHealthCheck controller creates a
- new object from the template referenced and hands off remediation
- of the machine to a controller that lives outside of Cluster API."
+ description: |-
+ RemediationTemplate is a reference to a remediation template
+ provided by an infrastructure provider.
+
+
+ This field is completely optional, when filled, the MachineHealthCheck controller
+ creates a new object from the template referenced and hands off remediation of the machine to
+ a controller that lives outside of Cluster API.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -131,53 +157,55 @@ spec:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
unhealthyConditions:
- description: UnhealthyConditions contains a list of the conditions that
- determine whether a node is considered unhealthy. The conditions
- are combined in a logical OR, i.e. if any of the conditions is met,
- the node is unhealthy.
+ description: |-
+ UnhealthyConditions contains a list of the conditions that determine
+ whether a node is considered unhealthy. The conditions are combined in a
+ logical OR, i.e. if any of the conditions is met, the node is unhealthy.
items:
- description: UnhealthyCondition represents a Node condition type and
- value with a timeout specified as a duration. When the named condition
- has been in the given status for at least the timeout value, a node
- is considered unhealthy.
+ description: |-
+ UnhealthyCondition represents a Node condition type and value with a timeout
+ specified as a duration. When the named condition has been in the given
+ status for at least the timeout value, a node is considered unhealthy.
properties:
status:
minLength: 1
@@ -192,20 +220,18 @@ spec:
- timeout
- type
type: object
- minItems: 1
type: array
unhealthyRange:
- description: 'Any further remediation is only allowed if the number
- of machines selected by "selector" as not healthy is within the range
- of "UnhealthyRange". Takes precedence over MaxUnhealthy. Eg. "[3-5]"
- - This means that remediation will be allowed only when: (a) there
- are at least 3 unhealthy machines (and) (b) there are at most 5 unhealthy
- machines'
+ description: |-
+ Any further remediation is only allowed if the number of machines selected by "selector" as not healthy
+ is within the range of "UnhealthyRange". Takes precedence over MaxUnhealthy.
+ Eg. "[3-5]" - This means that remediation will be allowed only when:
+ (a) there are at least 3 unhealthy machines (and)
+ (b) there are at most 5 unhealthy machines
pattern: ^\[[0-9]+-[0-9]+\]$
type: string
required:
- clusterName
- selector
- - unhealthyConditions
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinepools.yaml
index 54296c677..d8de64a3f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinepools.yaml
@@ -20,14 +20,19 @@ spec:
description: MachinePool is the Schema for the machinepools API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -77,102 +82,115 @@ spec:
type: string
type: array
minReadySeconds:
- description: Minimum number of seconds for which a newly created machine
- instances should be ready. Defaults to 0 (machine instance will be
- considered available as soon as it is ready)
+ description: |-
+ Minimum number of seconds for which a newly created machine instances should
+ be ready.
+ Defaults to 0 (machine instance will be considered available as soon as it
+ is ready)
format: int32
type: integer
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
replicas:
- description: Number of desired machines. Defaults to 1. This is a pointer
- to distinguish between explicit zero and not specified.
+ description: |-
+ Number of desired machines. Defaults to 1.
+ This is a pointer to distinguish between explicit zero and not specified.
format: int32
type: integer
template:
description: Template describes the machines that will be created.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -181,88 +199,89 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after
- the Machine is marked for deletion. A duration of 0 will retry
- deletion indefinitely. Defaults to 10 seconds.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount of
- time that the controller will spend on waiting for all volumes
- to be detached. The default value is 0, meaning that the volumes
- can be detached without any time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machines.yaml
index 60412c058..4cfc6bbc1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machines.yaml
@@ -20,14 +20,19 @@ spec:
description: Machine is the Schema for the machines API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -66,53 +71,62 @@ spec:
description: MachineSpec defines the desired state of Machine.
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which encapsulates
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference is optional
- to allow users/operators to specify Bootstrap.DataSecretName without
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of
- an entire object, this string should contain a valid JSON/Go
- field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen
- only to have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this field is
- subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that stores
- the bootstrap data script. If nil, the Machine should remain in
- the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -121,85 +135,90 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine will be
- created in. Must match a key in the FailureDomains map stored on the
- cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a custom resource
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the controller will
- attempt to delete the Node that the Machine hosts after the Machine
- is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that the
- controller will spend on draining a node. The default value is 0,
- meaning that the node can be drained without any time limitations.
- NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount of time that
- the controller will spend on waiting for all volumes to be detached.
- The default value is 0, meaning that the volumes can be detached without
- any time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
providerID:
- description: ProviderID is the identification ID of the machine provided
- by the provider. This field must match the provider ID as seen on
- the node object corresponding to this machine. This field is required
- by higher level consumers of cluster-api. Example use case is cluster
- autoscaler with cluster-api as provider. Clean-up logic in the autoscaler
- compares machines to nodes to find out machines at provider which
- could not get registered as Kubernetes nodes. With cluster-api as
- a generic out-of-tree provider for autoscaler, this field is required
- by autoscaler to be able to have a provider view of the list of machines.
- Another list of nodes is queried from the k8s apiserver and then a
- comparison is done to find out unregistered machines and are marked
- for delete. This field will be set by the actuators and consumed by
- higher level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version. This field
- is meant to be optionally used by bootstrap providers.
+ description: |-
+ Version defines the desired Kubernetes version.
+ This field is meant to be optionally used by bootstrap providers.
type: string
required:
- bootstrap
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinesets.yaml
index 81bc5e9c1..cb0d0c130 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/cluster.x-k8s.io/v1beta1/machinesets.yaml
@@ -20,14 +20,19 @@ spec:
description: MachineSet is the Schema for the machinesets API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,154 +76,184 @@ spec:
minLength: 1
type: string
deletePolicy:
- description: DeletePolicy defines the policy used to identify nodes
- to delete when downscaling. Defaults to "Random". Valid values are
- "Random, "Newest", "Oldest"
+ description: |-
+ DeletePolicy defines the policy used to identify nodes to delete when downscaling.
+ Defaults to "Random". Valid values are "Random, "Newest", "Oldest"
enum:
- Random
- Newest
- Oldest
type: string
minReadySeconds:
- description: MinReadySeconds is the minimum number of seconds for which
- a newly created machine should be ready. Defaults to 0 (machine will
- be considered available as soon as it is ready)
+ description: |-
+ MinReadySeconds is the minimum number of seconds for which a Node for a newly created machine should be ready before considering the replica available.
+ Defaults to 0 (machine will be considered available as soon as the Node is ready)
format: int32
type: integer
replicas:
- default: 1
- description: Replicas is the number of desired replicas. This is a pointer
- to distinguish between explicit zero and unspecified. Defaults to
- 1.
+ description: |-
+ Replicas is the number of desired replicas.
+ This is a pointer to distinguish between explicit zero and unspecified.
+
+
+ Defaults to:
+ * if the Kubernetes autoscaler min size and max size annotations are set:
+ - if it's a new MachineSet, use min size
+ - if the replicas field of the old MachineSet is < min size, use min size
+ - if the replicas field of the old MachineSet is > max size, use max size
+ - if the replicas field of the old MachineSet is in the (min size, max size) range, keep the value from the oldMS
+ * otherwise use 1
+ Note: Defaulting will be run whenever the replicas field is not set:
+ * A new MachineSet is created with replicas not set.
+ * On an existing MachineSet the replicas field was first set and is now unset.
+ Those cases are especially relevant for the following Kubernetes autoscaler use cases:
+ * A new MachineSet is created and replicas should be managed by the autoscaler
+ * An existing MachineSet which initially wasn't controlled by the autoscaler
+ should be later controlled by the autoscaler
format: int32
type: integer
selector:
- description: 'Selector is a label query over machines that should match
- the replica count. Label keys and values that must match in order
- to be controlled by this MachineSet. It must match the machine template''s
- labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors'
+ description: |-
+ Selector is a label query over machines that should match the replica count.
+ Label keys and values that must match in order to be controlled by this MachineSet.
+ It must match the machine template's labels.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
template:
- description: Template is the object that describes the machine that
- will be created if insufficient replicas are detected. Object references
- to custom resources are treated as templates.
+ description: |-
+ Template is the object that describes the machine that will be created if
+ insufficient replicas are detected.
+ Object references to custom resources are treated as templates.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
- description: 'Specification of the desired behavior of the machine.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status'
+ description: |-
+ Specification of the desired behavior of the machine.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
properties:
bootstrap:
- description: Bootstrap is a reference to a local struct which
- encapsulates fields to configure the Machine’s bootstrapping
- mechanism.
+ description: |-
+ Bootstrap is a reference to a local struct which encapsulates
+ fields to configure the Machine’s bootstrapping mechanism.
properties:
configRef:
- description: ConfigRef is a reference to a bootstrap provider-specific
- resource that holds configuration details. The reference
- is optional to allow users/operators to specify Bootstrap.DataSecretName
- without the need of a controller.
+ description: |-
+ ConfigRef is a reference to a bootstrap provider-specific resource
+ that holds configuration details. The reference is optional to
+ allow users/operators to specify Bootstrap.DataSecretName without
+ the need of a controller.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a
- valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container
- that triggered the event) or if no container name
- is specified "spec.containers[2]" (container with
- index 2 in this pod). This syntax is chosen only to
- have some well-defined way of referencing a part of
- an object. TODO: this design is not final and this
- field is subject to change in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info:
- https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this
- reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
dataSecretName:
- description: DataSecretName is the name of the secret that
- stores the bootstrap data script. If nil, the Machine
- should remain in the Pending state.
+ description: |-
+ DataSecretName is the name of the secret that stores the bootstrap data script.
+ If nil, the Machine should remain in the Pending state.
type: string
type: object
clusterName:
@@ -227,88 +262,89 @@ spec:
minLength: 1
type: string
failureDomain:
- description: FailureDomain is the failure domain the machine
- will be created in. Must match a key in the FailureDomains
- map stored on the cluster object.
+ description: |-
+ FailureDomain is the failure domain the machine will be created in.
+ Must match a key in the FailureDomains map stored on the cluster object.
type: string
infrastructureRef:
- description: InfrastructureRef is a required reference to a
- custom resource offered by an infrastructure provider.
+ description: |-
+ InfrastructureRef is a required reference to a custom resource
+ offered by an infrastructure provider.
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
nodeDeletionTimeout:
- description: NodeDeletionTimeout defines how long the controller
- will attempt to delete the Node that the Machine hosts after
- the Machine is marked for deletion. A duration of 0 will retry
- deletion indefinitely. Defaults to 10 seconds.
+ description: |-
+ NodeDeletionTimeout defines how long the controller will attempt to delete the Node that the Machine
+ hosts after the Machine is marked for deletion. A duration of 0 will retry deletion indefinitely.
+ Defaults to 10 seconds.
type: string
nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that
- the controller will spend on draining a node. The default
- value is 0, meaning that the node can be drained without any
- time limitations. NOTE: NodeDrainTimeout is different from
- `kubectl drain --timeout`'
+ description: |-
+ NodeDrainTimeout is the total amount of time that the controller will spend on draining a node.
+ The default value is 0, meaning that the node can be drained without any time limitations.
+ NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`
type: string
nodeVolumeDetachTimeout:
- description: NodeVolumeDetachTimeout is the total amount of
- time that the controller will spend on waiting for all volumes
- to be detached. The default value is 0, meaning that the volumes
- can be detached without any time limitations.
+ description: |-
+ NodeVolumeDetachTimeout is the total amount of time that the controller will spend on waiting for all volumes
+ to be detached. The default value is 0, meaning that the volumes can be detached without any time limitations.
type: string
providerID:
- description: ProviderID is the identification ID of the machine
- provided by the provider. This field must match the provider
- ID as seen on the node object corresponding to this machine.
- This field is required by higher level consumers of cluster-api.
- Example use case is cluster autoscaler with cluster-api as
- provider. Clean-up logic in the autoscaler compares machines
- to nodes to find out machines at provider which could not
- get registered as Kubernetes nodes. With cluster-api as a
- generic out-of-tree provider for autoscaler, this field is
- required by autoscaler to be able to have a provider view
- of the list of machines. Another list of nodes is queried
- from the k8s apiserver and then a comparison is done to find
- out unregistered machines and are marked for delete. This
- field will be set by the actuators and consumed by higher
- level entities like autoscaler that will be interfacing with
- cluster-api as generic provider.
+ description: |-
+ ProviderID is the identification ID of the machine provided by the provider.
+ This field must match the provider ID as seen on the node object corresponding to this machine.
+ This field is required by higher level consumers of cluster-api. Example use case is cluster autoscaler
+ with cluster-api as provider. Clean-up logic in the autoscaler compares machines to nodes to find out
+ machines at provider which could not get registered as Kubernetes nodes. With cluster-api as a
+ generic out-of-tree provider for autoscaler, this field is required by autoscaler to be
+ able to have a provider view of the list of machines. Another list of nodes is queried from the k8s apiserver
+ and then a comparison is done to find out unregistered machines and are marked for delete.
+ This field will be set by the actuators and consumed by higher level entities like autoscaler that will
+ be interfacing with cluster-api as generic provider.
type: string
version:
- description: Version defines the desired Kubernetes version.
+ description: |-
+ Version defines the desired Kubernetes version.
This field is meant to be optionally used by bootstrap providers.
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml
new file mode 100644
index 000000000..317120a11
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml
@@ -0,0 +1,118 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: config.gateway.open-cluster-management.io
+ k8s.io/kind: ClusterGatewayConfiguration
+ k8s.io/resource: clustergatewayconfigurations
+ k8s.io/version: v1alpha1
+ name: config.gateway.open-cluster-management.io-v1alpha1-clustergatewayconfigurations
+spec:
+ resource:
+ group: config.gateway.open-cluster-management.io
+ kind: ClusterGatewayConfiguration
+ name: clustergatewayconfigurations
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ egress:
+ properties:
+ clusterProxy:
+ properties:
+ credentials:
+ properties:
+ namespace:
+ type: string
+ proxyClientCASecretName:
+ type: string
+ proxyClientSecretName:
+ type: string
+ required:
+ - namespace
+ - proxyClientCASecretName
+ - proxyClientSecretName
+ type: object
+ proxyServerHost:
+ type: string
+ proxyServerPort:
+ format: int32
+ type: integer
+ required:
+ - credentials
+ - proxyServerHost
+ - proxyServerPort
+ type: object
+ type: object
+ image:
+ type: string
+ replicas:
+ default: 1
+ description: '`replicas` is the expected replicas of the gateway servers.'
+ format: int32
+ type: integer
+ secretManagement:
+ properties:
+ managedServiceAccount:
+ properties:
+ name:
+ default: cluster-gateway
+ type: string
+ type: object
+ type:
+ default: ManagedServiceAccount
+ enum:
+ - Manual
+ - ManagedServiceAccount
+ type: string
+ type: object
+ required:
+ - egress
+ - image
+ - secretManagement
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta1/awsmanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta1/awsmanagedcontrolplanes.yaml
index ee074e4d9..74ad1a685 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta1/awsmanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta1/awsmanagedcontrolplanes.yaml
@@ -21,14 +21,19 @@ spec:
Control Plane API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,19 +75,23 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
addons:
description: Addons defines the EKS addons to enable with the EKS cluster.
items:
description: Addon represents a EKS addon.
properties:
+ configuration:
+ description: Configuration of the EKS addon
+ type: string
conflictResolution:
default: none
- description: ConflictResolution is used to declare what should
- happen if there are parameter conflicts. Defaults to none
+ description: |-
+ ConflictResolution is used to declare what should happen if there
+ are parameter conflicts. Defaults to none
enum:
- overwrite
- none
@@ -105,39 +114,40 @@ spec:
type: array
associateOIDCProvider:
default: false
- description: AssociateOIDCProvider can be enabled to automatically create
- an identity provider for the controller for use with IAM roles for
- service accounts
+ description: |-
+ AssociateOIDCProvider can be enabled to automatically create an identity
+ provider for the controller for use with IAM roles for service accounts
type: boolean
bastion:
description: Bastion contains options to configure the bastion host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks allowed
- to access the bastion host. They are set as ingress rules for
- the Bastion host's Security Group (defaults to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the bastion.
- If not specified, the AMI will default to one picked out in public
- space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no Ingress
- rules in the bastion host's security group. Requires AllowedCIDRBlocks
- to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion host
- instance with a public ip to access the VPC private network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance type for
- the bastion. If not specified, Cluster API Provider AWS will use
- t3.micro for all regions except us-east-1, where t2.micro will
- be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -157,18 +167,18 @@ spec:
type: object
disableVPCCNI:
default: false
- description: DisableVPCCNI indicates that the Amazon VPC CNI should
- be disabled. With EKS clusters the Amazon VPC CNI is automatically
- installed into the cluster. For clusters where you want to use an
- alternate CNI this option provides a way to specify that the Amazon
- VPC CNI should be deleted. You cannot set this to true if you are
- using the Amazon VPC CNI addon.
+ description: |-
+ DisableVPCCNI indicates that the Amazon VPC CNI should be disabled. With EKS clusters the
+ Amazon VPC CNI is automatically installed into the cluster. For clusters where you want
+ to use an alternate CNI this option provides a way to specify that the Amazon VPC CNI
+ should be deleted. You cannot set this to true if you are using the
+ Amazon VPC CNI addon.
type: boolean
eksClusterName:
- description: EKSClusterName allows you to specify the name of the EKS
- cluster in AWS. If you don't specify a name then a default name will
- be created based on the namespace and name of the managed control
- plane.
+ description: |-
+ EKSClusterName allows you to specify the name of the EKS cluster in
+ AWS. If you don't specify a name then a default name will be created
+ based on the namespace and name of the managed control plane.
type: string
encryptionConfig:
description: EncryptionConfig specifies the encryption configuration
@@ -204,10 +214,10 @@ spec:
type: array
type: object
iamAuthenticatorConfig:
- description: IAMAuthenticatorConfig allows the specification of any
- additional user or role mappings for use when generating the aws-iam-authenticator
- configuration. If this is nil the default configuration is still generated
- for the cluster.
+ description: |-
+ IAMAuthenticatorConfig allows the specification of any additional user or role mappings
+ for use when generating the aws-iam-authenticator configuration. If this is nil the
+ default configuration is still generated for the cluster.
properties:
mapRoles:
description: RoleMappings is a list of role mappings
@@ -259,8 +269,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be used when
- reconciling the managed control plane.
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -278,30 +289,32 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- used to look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines unless a
- machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- machine images when a machine does not specify an AMI. When set, this
- will be used for all cluster machines unless a machine specifies a
- different ImageLookupOrg. Supports substitutions for {{.BaseOS}} and
- {{.K8sVersion}} with the base OS and kubernetes version, respectively.
- The BaseOS will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced by
- kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look up machine
- images when a machine does not specify an AMI. When set, this will
- be used for all cluster machines unless a machine specifies a different
- ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
kubeProxy:
description: KubeProxy defines managed attributes of the kube-proxy
@@ -309,18 +322,18 @@ spec:
properties:
disable:
default: false
- description: Disable set to true indicates that kube-proxy should
- be disabled. With EKS clusters kube-proxy is automatically installed
- into the cluster. For clusters where you want to use kube-proxy
- functionality that is provided with an alternate CNI, this option
- provides a way to specify that the kube-proxy daemonset should
- be deleted. You cannot set this to true if you are using the Amazon
- kube-proxy addon.
+ description: |-
+ Disable set to true indicates that kube-proxy should be disabled. With EKS clusters
+ kube-proxy is automatically installed into the cluster. For clusters where you want
+ to use kube-proxy functionality that is provided with an alternate CNI, this option
+ provides a way to specify that the kube-proxy daemonset should be deleted. You cannot
+ set this to true if you are using the Amazon kube-proxy addon.
type: boolean
type: object
logging:
- description: Logging specifies which EKS Cluster logs should be enabled.
- Entries for each of the enabled logs will be sent to CloudWatch
+ description: |-
+ Logging specifies which EKS Cluster logs should be enabled. Entries for
+ each of the enabled logs will be sent to CloudWatch
properties:
apiServer:
default: false
@@ -357,14 +370,86 @@ spec:
network:
description: NetworkSpec encapsulates all things related to AWS network.
properties:
+ additionalControlPlaneIngressRules:
+ description: AdditionalControlPlaneIngressRules is an optional set
+ of ingress rules to add to the control plane
+ items:
+ description: IngressRule defines an AWS ingress rule for security
+ groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from. Cannot
+ be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information about
+ the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress rule.
+ Accepted values are "-1" (all), "4" (IP in IP),"tcp", "udp",
+ "icmp", and "58" (ICMPv6), "50" (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access from. Cannot
+ be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique role of
+ a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
cni:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply to control
- plane and worker node security groups. The source for the
- rule will be set to control plane and worker security group
- IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress rule for
CNI requirements.
@@ -392,9 +477,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of security
- groups to use for cluster instances This is optional - if not
- provided new security groups will be created for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -410,20 +495,27 @@ spec:
provider creates a managed VPC.
type: string
id:
- description: ID defines a unique identifier to reference this
- resource.
+ description: |-
+ ID defines a unique identifier to reference this resource.
+ If you're bringing your subnet, set the AWS subnet-id here, it must start with `subnet-`.
+
+
+ When the VPC is managed by CAPA, and you'd like the provider to create a subnet for you,
+ the id can be set to any placeholder value that does not start with `subnet-`;
+ upon creation, the subnet AWS identifier will be populated in the `ResourceID` field and
+ the `id` field is going to be used as the subnet name. If you specify a tag
+ called `Name`, it takes precedence.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block to be used
- when the provider creates a managed VPC. A subnet can have
- an IPv4 and an IPv6 address. IPv6 is only supported in managed
- clusters, this field cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6 subnet.
- A subnet is IPv6 when it is associated with a VPC that has
- IPv6 enabled. IPv6 is only supported in managed clusters,
- this field cannot be set on AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public subnet.
@@ -431,12 +523,23 @@ spec:
that has a route to an internet gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed by
- the provider, in which case this is set on the public subnet
- where the NAT gateway resides. It is then used to determine
- routes for private subnets in the same AZ as the public
- subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
+ type: string
+ parentZoneName:
+ description: |-
+ ParentZoneName is the zone name where the current subnet's zone is tied when
+ the zone is a Local Zone.
+
+
+ The subnets in Local Zone or Wavelength Zone locations consume the ParentZoneName
+ to select the correct private route table to egress traffic to the internet.
+ type: string
+ resourceID:
+ description: |-
+ ResourceID is the subnet identifier from AWS, READ ONLY.
+ This field is populated when the provider manages the subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id associated
@@ -447,6 +550,42 @@ spec:
type: string
description: Tags is a collection of tags describing the resource.
type: object
+ zoneType:
+ description: |-
+ ZoneType defines the type of the zone where the subnet is created.
+
+
+ The valid values are availability-zone, local-zone, and wavelength-zone.
+
+
+ Subnet with zone type availability-zone (regular) is always selected to create cluster
+ resources, like Load Balancers, NAT Gateways, Contol Plane nodes, etc.
+
+
+ Subnet with zone type local-zone or wavelength-zone is not eligible to automatically create
+ regular cluster resources.
+
+
+ The public subnet in availability-zone or local-zone is associated with regular public
+ route table with default route entry to a Internet Gateway.
+
+
+ The public subnet in wavelength-zone is associated with a carrier public
+ route table with default route entry to a Carrier Gateway.
+
+
+ The private subnet in the availability-zone is associated with a private route table with
+ the default route entry to a NAT Gateway created in that zone.
+
+
+ The private subnet in the local-zone or wavelength-zone is associated with a private route table with
+ the default route entry re-using the NAT Gateway in the Region (preferred from the
+ parent zone, the zone type availability-zone in the region, or first table available).
+ enum:
+ - availability-zone
+ - local-zone
+ - wavelength-zone
+ type: string
required:
- id
type: object
@@ -459,29 +598,52 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how AZs should
- be selected if there are more AZs in a region than specified
- by AvailabilityZoneUsageLimit. There are 2 selection schemes:
- Ordered - selects based on alphabetical order Random - selects
- AZs randomly in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the maximum
- number of availability zones (AZ) that should be used in a
- region when automatically creating subnets. If a region has
- more than this number of AZs then this number of AZs will
- be picked randomly when creating default subnets. Defaults
- to 3
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
+ default subnets. Defaults to 3
minimum: 1
type: integer
+ carrierGatewayId:
+ description: |-
+ CarrierGatewayID is the id of the internet gateway associated with the VPC,
+ for carrier network (Wavelength Zones).
+ type: string
+ x-kubernetes-validations:
+ - message: Carrier Gateway ID must start with 'cagw-'
+ rule: self.startsWith('cagw-')
cidrBlock:
- description: CidrBlock is the CIDR block to be used when the
- provider creates a managed VPC. Defaults to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
+ Mutually exclusive with IPAMPool.
type: string
+ emptyRoutesDefaultVPCSecurityGroup:
+ description: |-
+ EmptyRoutesDefaultVPCSecurityGroup specifies whether the default VPC security group ingress
+ and egress rules should be removed.
+
+
+ By default, when creating a VPC, AWS creates a security group called `default` with ingress and egress
+ rules that allow traffic from anywhere. The group could be used as a potential surface attack and
+ it's generally suggested that the group rules are removed or modified appropriately.
+
+
+ NOTE: This only applies when the VPC is managed by the Cluster API AWS controller.
+ type: boolean
id:
description: ID is the vpc-id of the VPC this provider should
use to create resources.
@@ -490,25 +652,79 @@ spec:
description: InternetGatewayID is the id of the internet gateway
associated with the VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv4 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
ipv6:
- description: IPv6 contains ipv6 specific settings for the network.
- Supported only in managed clusters. This field cannot be set
- on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
- description: CidrBlock is the CIDR block provided by Amazon
- when VPC has enabled IPv6.
+ description: |-
+ CidrBlock is the CIDR block provided by Amazon when VPC has enabled IPv6.
+ Mutually exclusive with IPAMPool.
type: string
egressOnlyInternetGatewayId:
description: EgressOnlyInternetGatewayID is the id of the
egress only internet gateway associated with an IPv6 enabled
VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv6 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
poolId:
- description: PoolID is the IP pool which must be defined
- in case of BYO IP is defined.
+ description: |-
+ PoolID is the IP pool which must be defined in case of BYO IP is defined.
+ Must be specified if CidrBlock is set.
+ Mutually exclusive with IPAMPool.
type: string
type: object
+ privateDnsHostnameTypeOnLaunch:
+ description: |-
+ PrivateDNSHostnameTypeOnLaunch is the type of hostname to assign to instances in the subnet at launch.
+ For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name)
+ or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).
+ enum:
+ - ip-name
+ - resource-name
+ type: string
tags:
additionalProperties:
type: string
@@ -517,46 +733,50 @@ spec:
type: object
type: object
oidcIdentityProviderConfig:
- description: IdentityProviderconfig is used to specify the oidc provider
- config to be attached with this eks cluster
+ description: |-
+ IdentityProviderconfig is used to specify the oidc provider config
+ to be attached with this eks cluster
properties:
clientId:
- description: This is also known as audience. The ID for the client
- application that makes authentication requests to the OpenID identity
- provider.
+ description: |-
+ This is also known as audience. The ID for the client application that makes
+ authentication requests to the OpenID identity provider.
type: string
groupsClaim:
description: The JWT claim that the provider uses to return your
groups.
type: string
groupsPrefix:
- description: 'The prefix that is prepended to group claims to prevent
- clashes with existing names (such as system: groups). For example,
- the valueoidc: will create group names like oidc:engineering and
- oidc:infra.'
+ description: |-
+ The prefix that is prepended to group claims to prevent clashes with existing
+ names (such as system: groups). For example, the valueoidc: will create group
+ names like oidc:engineering and oidc:infra.
type: string
identityProviderConfigName:
- description: "The name of the OIDC provider configuration. \n IdentityProviderConfigName
- is a required field"
+ description: |-
+ The name of the OIDC provider configuration.
+
+
+ IdentityProviderConfigName is a required field
type: string
issuerUrl:
- description: The URL of the OpenID identity provider that allows
- the API server to discover public signing keys for verifying tokens.
- The URL must begin with https:// and should correspond to the
- iss claim in the provider's OIDC ID tokens. Per the OIDC standard,
- path components are allowed but query parameters are not. Typically
- the URL consists of only a hostname, like https://server.example.org
- or https://example.com. This URL should point to the level below
- .well-known/openid-configuration and must be publicly accessible
- over the internet.
+ description: |-
+ The URL of the OpenID identity provider that allows the API server to discover
+ public signing keys for verifying tokens. The URL must begin with https://
+ and should correspond to the iss claim in the provider's OIDC ID tokens.
+ Per the OIDC standard, path components are allowed but query parameters are
+ not. Typically the URL consists of only a hostname, like https://server.example.org
+ or https://example.com. This URL should point to the level below .well-known/openid-configuration
+ and must be publicly accessible over the internet.
type: string
requiredClaims:
additionalProperties:
type: string
- description: The key value pairs that describe required claims in
- the identity token. If set, each claim is verified to be present
- in the token with a matching value. For the maximum number of
- claims that you can require, see Amazon EKS service quotas (https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html)
+ description: |-
+ The key value pairs that describe required claims in the identity token.
+ If set, each claim is verified to be present in the token with a matching
+ value. For the maximum number of claims that you can require, see Amazon
+ EKS service quotas (https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html)
in the Amazon EKS User Guide.
type: object
tags:
@@ -565,40 +785,45 @@ spec:
description: tags to apply to oidc identity provider association
type: object
usernameClaim:
- description: The JSON Web Token (JWT) claim to use as the username.
- The default is sub, which is expected to be a unique identifier
- of the end user. You can choose other claims, such as email or
- name, depending on the OpenID identity provider. Claims other
- than email are prefixed with the issuer URL to prevent naming
+ description: |-
+ The JSON Web Token (JWT) claim to use as the username. The default is sub,
+ which is expected to be a unique identifier of the end user. You can choose
+ other claims, such as email or name, depending on the OpenID identity provider.
+ Claims other than email are prefixed with the issuer URL to prevent naming
clashes with other plug-ins.
type: string
usernamePrefix:
- description: The prefix that is prepended to username claims to
- prevent clashes with existing names. If you do not provide this
- field, and username is a value other than email, the prefix defaults
- to issuerurl#. You can use the value - to disable all prefixing.
+ description: |-
+ The prefix that is prepended to username claims to prevent clashes with existing
+ names. If you do not provide this field, and username is a value other than
+ email, the prefix defaults to issuerurl#. You can use the value - to disable
+ all prefixing.
type: string
type: object
region:
description: The AWS Region the cluster lives in.
type: string
roleAdditionalPolicies:
- description: RoleAdditionalPolicies allows you to attach additional
- polices to the control plane role. You must enable the EKSAllowAddRoles
+ description: |-
+ RoleAdditionalPolicies allows you to attach additional polices to
+ the control plane role. You must enable the EKSAllowAddRoles
feature flag to incorporate these into the created role.
items:
type: string
type: array
roleName:
- description: RoleName specifies the name of IAM role that gives EKS
- permission to make API calls. If the role is pre-existing we will
- treat it as unmanaged and not delete it on deletion. If the EKSEnableIAM
- feature flag is true and no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role that gives EKS
+ permission to make API calls. If the role is pre-existing
+ we will treat it as unmanaged and not delete it on
+ deletion. If the EKSEnableIAM feature flag is true
+ and no name is supplied then a role is created.
minLength: 2
type: string
secondaryCidrBlock:
- description: SecondaryCidrBlock is the additional CIDR range to use
- for pod IPs. Must be within the 100.64.0.0/10 or 198.19.0.0/16 range.
+ description: |-
+ SecondaryCidrBlock is the additional CIDR range to use for pod IPs.
+ Must be within the 100.64.0.0/10 or 198.19.0.0/16 range.
type: string
sshKeyName:
description: SSHKeyName is the name of the ssh key to attach to the
@@ -607,18 +832,20 @@ spec:
type: string
tokenMethod:
default: iam-authenticator
- description: TokenMethod is used to specify the method for obtaining
- a client token for communicating with EKS iam-authenticator - obtains
- a client token using iam-authentictor aws-cli - obtains a client token
- using the AWS CLI Defaults to iam-authenticator
+ description: |-
+ TokenMethod is used to specify the method for obtaining a client token for communicating with EKS
+ iam-authenticator - obtains a client token using iam-authentictor
+ aws-cli - obtains a client token using the AWS CLI
+ Defaults to iam-authenticator
enum:
- iam-authenticator
- aws-cli
type: string
version:
- description: Version defines the desired Kubernetes version. If no version
- number is supplied then the latest version of Kubernetes that EKS
- supports will be used.
+ description: |-
+ Version defines the desired Kubernetes version. If no version number
+ is supplied then the latest version of Kubernetes that EKS supports
+ will be used.
minLength: 2
pattern: ^v?(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.?(\.0|[1-9][0-9]*)?$
type: string
@@ -637,15 +864,16 @@ spec:
description: Name of the environment variable. Must be a C_IDENTIFIER.
type: string
value:
- description: 'Variable references $(VAR_NAME) are expanded
- using the previously defined environment variables in the
- container and any service environment variables. If a variable
- cannot be resolved, the reference in the input string will
- be unchanged. Double $$ are reduced to a single $, which
- allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)"
- will produce the string literal "$(VAR_NAME)". Escaped references
- will never be expanded, regardless of whether the variable
- exists or not. Defaults to "".'
+ description: |-
+ Variable references $(VAR_NAME) are expanded
+ using the previously defined environment variables in the container and
+ any service environment variables. If a variable cannot be resolved,
+ the reference in the input string will be unchanged. Double $$ are reduced
+ to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.
+ "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
+ Escaped references will never be expanded, regardless of whether the variable
+ exists or not.
+ Defaults to "".
type: string
valueFrom:
description: Source for the environment variable's value.
@@ -658,9 +886,10 @@ spec:
description: The key to select.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the ConfigMap or its
@@ -669,11 +898,11 @@ spec:
required:
- key
type: object
+ x-kubernetes-map-type: atomic
fieldRef:
- description: 'Selects a field of the pod: supports metadata.name,
- metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`,
- spec.nodeName, spec.serviceAccountName, status.hostIP,
- status.podIP, status.podIPs.'
+ description: |-
+ Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`,
+ spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.
properties:
apiVersion:
description: Version of the schema the FieldPath is
@@ -686,11 +915,11 @@ spec:
required:
- fieldPath
type: object
+ x-kubernetes-map-type: atomic
resourceFieldRef:
- description: 'Selects a resource of the container: only
- resources limits and requests (limits.cpu, limits.memory,
- limits.ephemeral-storage, requests.cpu, requests.memory
- and requests.ephemeral-storage) are currently supported.'
+ description: |-
+ Selects a resource of the container: only resources limits and requests
+ (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.
properties:
containerName:
description: 'Container name: required for volumes,
@@ -710,6 +939,7 @@ spec:
required:
- resource
type: object
+ x-kubernetes-map-type: atomic
secretKeyRef:
description: Selects a key of a secret in the pod's namespace
properties:
@@ -718,9 +948,10 @@ spec:
be a valid secret key.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the Secret or its key
@@ -729,6 +960,7 @@ spec:
required:
- key
type: object
+ x-kubernetes-map-type: atomic
type: object
required:
- name
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
index 1ba31299a..d2f0259d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
@@ -21,14 +21,19 @@ spec:
Control Plane API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,19 +75,23 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
addons:
description: Addons defines the EKS addons to enable with the EKS cluster.
items:
description: Addon represents a EKS addon.
properties:
+ configuration:
+ description: Configuration of the EKS addon
+ type: string
conflictResolution:
default: overwrite
- description: ConflictResolution is used to declare what should
- happen if there are parameter conflicts. Defaults to none
+ description: |-
+ ConflictResolution is used to declare what should happen if there
+ are parameter conflicts. Defaults to none
enum:
- overwrite
- none
@@ -105,39 +114,40 @@ spec:
type: array
associateOIDCProvider:
default: false
- description: AssociateOIDCProvider can be enabled to automatically create
- an identity provider for the controller for use with IAM roles for
- service accounts
+ description: |-
+ AssociateOIDCProvider can be enabled to automatically create an identity
+ provider for the controller for use with IAM roles for service accounts
type: boolean
bastion:
description: Bastion contains options to configure the bastion host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks allowed
- to access the bastion host. They are set as ingress rules for
- the Bastion host's Security Group (defaults to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the bastion.
- If not specified, the AMI will default to one picked out in public
- space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no Ingress
- rules in the bastion host's security group. Requires AllowedCIDRBlocks
- to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion host
- instance with a public ip to access the VPC private network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance type for
- the bastion. If not specified, Cluster API Provider AWS will use
- t3.micro for all regions except us-east-1, where t2.micro will
- be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -156,10 +166,10 @@ spec:
- port
type: object
eksClusterName:
- description: EKSClusterName allows you to specify the name of the EKS
- cluster in AWS. If you don't specify a name then a default name will
- be created based on the namespace and name of the managed control
- plane.
+ description: |-
+ EKSClusterName allows you to specify the name of the EKS cluster in
+ AWS. If you don't specify a name then a default name will be created
+ based on the namespace and name of the managed control plane.
type: string
encryptionConfig:
description: EncryptionConfig specifies the encryption configuration
@@ -195,10 +205,10 @@ spec:
type: array
type: object
iamAuthenticatorConfig:
- description: IAMAuthenticatorConfig allows the specification of any
- additional user or role mappings for use when generating the aws-iam-authenticator
- configuration. If this is nil the default configuration is still generated
- for the cluster.
+ description: |-
+ IAMAuthenticatorConfig allows the specification of any additional user or role mappings
+ for use when generating the aws-iam-authenticator configuration. If this is nil the
+ default configuration is still generated for the cluster.
properties:
mapRoles:
description: RoleMappings is a list of role mappings
@@ -250,8 +260,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be used when
- reconciling the managed control plane.
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -269,30 +280,32 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- used to look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines unless a
- machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- machine images when a machine does not specify an AMI. When set, this
- will be used for all cluster machines unless a machine specifies a
- different ImageLookupOrg. Supports substitutions for {{.BaseOS}} and
- {{.K8sVersion}} with the base OS and kubernetes version, respectively.
- The BaseOS will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced by
- kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look up machine
- images when a machine does not specify an AMI. When set, this will
- be used for all cluster machines unless a machine specifies a different
- ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
kubeProxy:
description: KubeProxy defines managed attributes of the kube-proxy
@@ -300,18 +313,18 @@ spec:
properties:
disable:
default: false
- description: Disable set to true indicates that kube-proxy should
- be disabled. With EKS clusters kube-proxy is automatically installed
- into the cluster. For clusters where you want to use kube-proxy
- functionality that is provided with an alternate CNI, this option
- provides a way to specify that the kube-proxy daemonset should
- be deleted. You cannot set this to true if you are using the Amazon
- kube-proxy addon.
+ description: |-
+ Disable set to true indicates that kube-proxy should be disabled. With EKS clusters
+ kube-proxy is automatically installed into the cluster. For clusters where you want
+ to use kube-proxy functionality that is provided with an alternate CNI, this option
+ provides a way to specify that the kube-proxy daemonset should be deleted. You cannot
+ set this to true if you are using the Amazon kube-proxy addon.
type: boolean
type: object
logging:
- description: Logging specifies which EKS Cluster logs should be enabled.
- Entries for each of the enabled logs will be sent to CloudWatch
+ description: |-
+ Logging specifies which EKS Cluster logs should be enabled. Entries for
+ each of the enabled logs will be sent to CloudWatch
properties:
apiServer:
default: false
@@ -348,14 +361,86 @@ spec:
network:
description: NetworkSpec encapsulates all things related to AWS network.
properties:
+ additionalControlPlaneIngressRules:
+ description: AdditionalControlPlaneIngressRules is an optional set
+ of ingress rules to add to the control plane
+ items:
+ description: IngressRule defines an AWS ingress rule for security
+ groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from. Cannot
+ be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information about
+ the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress rule.
+ Accepted values are "-1" (all), "4" (IP in IP),"tcp", "udp",
+ "icmp", and "58" (ICMPv6), "50" (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access from. Cannot
+ be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique role of
+ a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
cni:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply to control
- plane and worker node security groups. The source for the
- rule will be set to control plane and worker security group
- IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress rule for
CNI requirements.
@@ -383,9 +468,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of security
- groups to use for cluster instances This is optional - if not
- provided new security groups will be created for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -401,20 +486,27 @@ spec:
provider creates a managed VPC.
type: string
id:
- description: ID defines a unique identifier to reference this
- resource.
+ description: |-
+ ID defines a unique identifier to reference this resource.
+ If you're bringing your subnet, set the AWS subnet-id here, it must start with `subnet-`.
+
+
+ When the VPC is managed by CAPA, and you'd like the provider to create a subnet for you,
+ the id can be set to any placeholder value that does not start with `subnet-`;
+ upon creation, the subnet AWS identifier will be populated in the `ResourceID` field and
+ the `id` field is going to be used as the subnet name. If you specify a tag
+ called `Name`, it takes precedence.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block to be used
- when the provider creates a managed VPC. A subnet can have
- an IPv4 and an IPv6 address. IPv6 is only supported in managed
- clusters, this field cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6 subnet.
- A subnet is IPv6 when it is associated with a VPC that has
- IPv6 enabled. IPv6 is only supported in managed clusters,
- this field cannot be set on AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public subnet.
@@ -422,12 +514,23 @@ spec:
that has a route to an internet gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed by
- the provider, in which case this is set on the public subnet
- where the NAT gateway resides. It is then used to determine
- routes for private subnets in the same AZ as the public
- subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
+ type: string
+ parentZoneName:
+ description: |-
+ ParentZoneName is the zone name where the current subnet's zone is tied when
+ the zone is a Local Zone.
+
+
+ The subnets in Local Zone or Wavelength Zone locations consume the ParentZoneName
+ to select the correct private route table to egress traffic to the internet.
+ type: string
+ resourceID:
+ description: |-
+ ResourceID is the subnet identifier from AWS, READ ONLY.
+ This field is populated when the provider manages the subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id associated
@@ -438,6 +541,42 @@ spec:
type: string
description: Tags is a collection of tags describing the resource.
type: object
+ zoneType:
+ description: |-
+ ZoneType defines the type of the zone where the subnet is created.
+
+
+ The valid values are availability-zone, local-zone, and wavelength-zone.
+
+
+ Subnet with zone type availability-zone (regular) is always selected to create cluster
+ resources, like Load Balancers, NAT Gateways, Contol Plane nodes, etc.
+
+
+ Subnet with zone type local-zone or wavelength-zone is not eligible to automatically create
+ regular cluster resources.
+
+
+ The public subnet in availability-zone or local-zone is associated with regular public
+ route table with default route entry to a Internet Gateway.
+
+
+ The public subnet in wavelength-zone is associated with a carrier public
+ route table with default route entry to a Carrier Gateway.
+
+
+ The private subnet in the availability-zone is associated with a private route table with
+ the default route entry to a NAT Gateway created in that zone.
+
+
+ The private subnet in the local-zone or wavelength-zone is associated with a private route table with
+ the default route entry re-using the NAT Gateway in the Region (preferred from the
+ parent zone, the zone type availability-zone in the region, or first table available).
+ enum:
+ - availability-zone
+ - local-zone
+ - wavelength-zone
+ type: string
required:
- id
type: object
@@ -450,29 +589,52 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how AZs should
- be selected if there are more AZs in a region than specified
- by AvailabilityZoneUsageLimit. There are 2 selection schemes:
- Ordered - selects based on alphabetical order Random - selects
- AZs randomly in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the maximum
- number of availability zones (AZ) that should be used in a
- region when automatically creating subnets. If a region has
- more than this number of AZs then this number of AZs will
- be picked randomly when creating default subnets. Defaults
- to 3
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
+ default subnets. Defaults to 3
minimum: 1
type: integer
+ carrierGatewayId:
+ description: |-
+ CarrierGatewayID is the id of the internet gateway associated with the VPC,
+ for carrier network (Wavelength Zones).
+ type: string
+ x-kubernetes-validations:
+ - message: Carrier Gateway ID must start with 'cagw-'
+ rule: self.startsWith('cagw-')
cidrBlock:
- description: CidrBlock is the CIDR block to be used when the
- provider creates a managed VPC. Defaults to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
+ Mutually exclusive with IPAMPool.
type: string
+ emptyRoutesDefaultVPCSecurityGroup:
+ description: |-
+ EmptyRoutesDefaultVPCSecurityGroup specifies whether the default VPC security group ingress
+ and egress rules should be removed.
+
+
+ By default, when creating a VPC, AWS creates a security group called `default` with ingress and egress
+ rules that allow traffic from anywhere. The group could be used as a potential surface attack and
+ it's generally suggested that the group rules are removed or modified appropriately.
+
+
+ NOTE: This only applies when the VPC is managed by the Cluster API AWS controller.
+ type: boolean
id:
description: ID is the vpc-id of the VPC this provider should
use to create resources.
@@ -481,25 +643,79 @@ spec:
description: InternetGatewayID is the id of the internet gateway
associated with the VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv4 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
ipv6:
- description: IPv6 contains ipv6 specific settings for the network.
- Supported only in managed clusters. This field cannot be set
- on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
- description: CidrBlock is the CIDR block provided by Amazon
- when VPC has enabled IPv6.
+ description: |-
+ CidrBlock is the CIDR block provided by Amazon when VPC has enabled IPv6.
+ Mutually exclusive with IPAMPool.
type: string
egressOnlyInternetGatewayId:
description: EgressOnlyInternetGatewayID is the id of the
egress only internet gateway associated with an IPv6 enabled
VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv6 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
poolId:
- description: PoolID is the IP pool which must be defined
- in case of BYO IP is defined.
+ description: |-
+ PoolID is the IP pool which must be defined in case of BYO IP is defined.
+ Must be specified if CidrBlock is set.
+ Mutually exclusive with IPAMPool.
type: string
type: object
+ privateDnsHostnameTypeOnLaunch:
+ description: |-
+ PrivateDNSHostnameTypeOnLaunch is the type of hostname to assign to instances in the subnet at launch.
+ For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name)
+ or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).
+ enum:
+ - ip-name
+ - resource-name
+ type: string
tags:
additionalProperties:
type: string
@@ -508,46 +724,50 @@ spec:
type: object
type: object
oidcIdentityProviderConfig:
- description: IdentityProviderconfig is used to specify the oidc provider
- config to be attached with this eks cluster
+ description: |-
+ IdentityProviderconfig is used to specify the oidc provider config
+ to be attached with this eks cluster
properties:
clientId:
- description: This is also known as audience. The ID for the client
- application that makes authentication requests to the OpenID identity
- provider.
+ description: |-
+ This is also known as audience. The ID for the client application that makes
+ authentication requests to the OpenID identity provider.
type: string
groupsClaim:
description: The JWT claim that the provider uses to return your
groups.
type: string
groupsPrefix:
- description: 'The prefix that is prepended to group claims to prevent
- clashes with existing names (such as system: groups). For example,
- the valueoidc: will create group names like oidc:engineering and
- oidc:infra.'
+ description: |-
+ The prefix that is prepended to group claims to prevent clashes with existing
+ names (such as system: groups). For example, the valueoidc: will create group
+ names like oidc:engineering and oidc:infra.
type: string
identityProviderConfigName:
- description: "The name of the OIDC provider configuration. \n IdentityProviderConfigName
- is a required field"
+ description: |-
+ The name of the OIDC provider configuration.
+
+
+ IdentityProviderConfigName is a required field
type: string
issuerUrl:
- description: The URL of the OpenID identity provider that allows
- the API server to discover public signing keys for verifying tokens.
- The URL must begin with https:// and should correspond to the
- iss claim in the provider's OIDC ID tokens. Per the OIDC standard,
- path components are allowed but query parameters are not. Typically
- the URL consists of only a hostname, like https://server.example.org
- or https://example.com. This URL should point to the level below
- .well-known/openid-configuration and must be publicly accessible
- over the internet.
+ description: |-
+ The URL of the OpenID identity provider that allows the API server to discover
+ public signing keys for verifying tokens. The URL must begin with https://
+ and should correspond to the iss claim in the provider's OIDC ID tokens.
+ Per the OIDC standard, path components are allowed but query parameters are
+ not. Typically the URL consists of only a hostname, like https://server.example.org
+ or https://example.com. This URL should point to the level below .well-known/openid-configuration
+ and must be publicly accessible over the internet.
type: string
requiredClaims:
additionalProperties:
type: string
- description: The key value pairs that describe required claims in
- the identity token. If set, each claim is verified to be present
- in the token with a matching value. For the maximum number of
- claims that you can require, see Amazon EKS service quotas (https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html)
+ description: |-
+ The key value pairs that describe required claims in the identity token.
+ If set, each claim is verified to be present in the token with a matching
+ value. For the maximum number of claims that you can require, see Amazon
+ EKS service quotas (https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html)
in the Amazon EKS User Guide.
type: object
tags:
@@ -556,40 +776,49 @@ spec:
description: tags to apply to oidc identity provider association
type: object
usernameClaim:
- description: The JSON Web Token (JWT) claim to use as the username.
- The default is sub, which is expected to be a unique identifier
- of the end user. You can choose other claims, such as email or
- name, depending on the OpenID identity provider. Claims other
- than email are prefixed with the issuer URL to prevent naming
+ description: |-
+ The JSON Web Token (JWT) claim to use as the username. The default is sub,
+ which is expected to be a unique identifier of the end user. You can choose
+ other claims, such as email or name, depending on the OpenID identity provider.
+ Claims other than email are prefixed with the issuer URL to prevent naming
clashes with other plug-ins.
type: string
usernamePrefix:
- description: The prefix that is prepended to username claims to
- prevent clashes with existing names. If you do not provide this
- field, and username is a value other than email, the prefix defaults
- to issuerurl#. You can use the value - to disable all prefixing.
+ description: |-
+ The prefix that is prepended to username claims to prevent clashes with existing
+ names. If you do not provide this field, and username is a value other than
+ email, the prefix defaults to issuerurl#. You can use the value - to disable
+ all prefixing.
type: string
type: object
+ partition:
+ description: Partition is the AWS security partition being used. Defaults
+ to "aws"
+ type: string
region:
description: The AWS Region the cluster lives in.
type: string
roleAdditionalPolicies:
- description: RoleAdditionalPolicies allows you to attach additional
- polices to the control plane role. You must enable the EKSAllowAddRoles
+ description: |-
+ RoleAdditionalPolicies allows you to attach additional polices to
+ the control plane role. You must enable the EKSAllowAddRoles
feature flag to incorporate these into the created role.
items:
type: string
type: array
roleName:
- description: RoleName specifies the name of IAM role that gives EKS
- permission to make API calls. If the role is pre-existing we will
- treat it as unmanaged and not delete it on deletion. If the EKSEnableIAM
- feature flag is true and no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role that gives EKS
+ permission to make API calls. If the role is pre-existing
+ we will treat it as unmanaged and not delete it on
+ deletion. If the EKSEnableIAM feature flag is true
+ and no name is supplied then a role is created.
minLength: 2
type: string
secondaryCidrBlock:
- description: SecondaryCidrBlock is the additional CIDR range to use
- for pod IPs. Must be within the 100.64.0.0/10 or 198.19.0.0/16 range.
+ description: |-
+ SecondaryCidrBlock is the additional CIDR range to use for pod IPs.
+ Must be within the 100.64.0.0/10 or 198.19.0.0/16 range.
type: string
sshKeyName:
description: SSHKeyName is the name of the ssh key to attach to the
@@ -598,18 +827,20 @@ spec:
type: string
tokenMethod:
default: iam-authenticator
- description: TokenMethod is used to specify the method for obtaining
- a client token for communicating with EKS iam-authenticator - obtains
- a client token using iam-authentictor aws-cli - obtains a client token
- using the AWS CLI Defaults to iam-authenticator
+ description: |-
+ TokenMethod is used to specify the method for obtaining a client token for communicating with EKS
+ iam-authenticator - obtains a client token using iam-authentictor
+ aws-cli - obtains a client token using the AWS CLI
+ Defaults to iam-authenticator
enum:
- iam-authenticator
- aws-cli
type: string
version:
- description: Version defines the desired Kubernetes version. If no version
- number is supplied then the latest version of Kubernetes that EKS
- supports will be used.
+ description: |-
+ Version defines the desired Kubernetes version. If no version number
+ is supplied then the latest version of Kubernetes that EKS supports
+ will be used.
minLength: 2
pattern: ^v?(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.?(\.0|[1-9][0-9]*)?$
type: string
@@ -619,12 +850,12 @@ spec:
properties:
disable:
default: false
- description: Disable indicates that the Amazon VPC CNI should be
- disabled. With EKS clusters the Amazon VPC CNI is automatically
- installed into the cluster. For clusters where you want to use
- an alternate CNI this option provides a way to specify that the
- Amazon VPC CNI should be deleted. You cannot set this to true
- if you are using the Amazon VPC CNI addon.
+ description: |-
+ Disable indicates that the Amazon VPC CNI should be disabled. With EKS clusters the
+ Amazon VPC CNI is automatically installed into the cluster. For clusters where you want
+ to use an alternate CNI this option provides a way to specify that the Amazon VPC CNI
+ should be deleted. You cannot set this to true if you are using the
+ Amazon VPC CNI addon.
type: boolean
env:
description: Env defines a list of environment variables to apply
@@ -637,15 +868,16 @@ spec:
description: Name of the environment variable. Must be a C_IDENTIFIER.
type: string
value:
- description: 'Variable references $(VAR_NAME) are expanded
- using the previously defined environment variables in the
- container and any service environment variables. If a variable
- cannot be resolved, the reference in the input string will
- be unchanged. Double $$ are reduced to a single $, which
- allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)"
- will produce the string literal "$(VAR_NAME)". Escaped references
- will never be expanded, regardless of whether the variable
- exists or not. Defaults to "".'
+ description: |-
+ Variable references $(VAR_NAME) are expanded
+ using the previously defined environment variables in the container and
+ any service environment variables. If a variable cannot be resolved,
+ the reference in the input string will be unchanged. Double $$ are reduced
+ to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.
+ "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
+ Escaped references will never be expanded, regardless of whether the variable
+ exists or not.
+ Defaults to "".
type: string
valueFrom:
description: Source for the environment variable's value.
@@ -658,9 +890,10 @@ spec:
description: The key to select.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the ConfigMap or its
@@ -669,11 +902,11 @@ spec:
required:
- key
type: object
+ x-kubernetes-map-type: atomic
fieldRef:
- description: 'Selects a field of the pod: supports metadata.name,
- metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`,
- spec.nodeName, spec.serviceAccountName, status.hostIP,
- status.podIP, status.podIPs.'
+ description: |-
+ Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`,
+ spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.
properties:
apiVersion:
description: Version of the schema the FieldPath is
@@ -686,11 +919,11 @@ spec:
required:
- fieldPath
type: object
+ x-kubernetes-map-type: atomic
resourceFieldRef:
- description: 'Selects a resource of the container: only
- resources limits and requests (limits.cpu, limits.memory,
- limits.ephemeral-storage, requests.cpu, requests.memory
- and requests.ephemeral-storage) are currently supported.'
+ description: |-
+ Selects a resource of the container: only resources limits and requests
+ (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.
properties:
containerName:
description: 'Container name: required for volumes,
@@ -710,6 +943,7 @@ spec:
required:
- resource
type: object
+ x-kubernetes-map-type: atomic
secretKeyRef:
description: Selects a key of a secret in the pod's namespace
properties:
@@ -718,9 +952,10 @@ spec:
be a valid secret key.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the Secret or its key
@@ -729,6 +964,7 @@ spec:
required:
- key
type: object
+ x-kubernetes-map-type: atomic
type: object
required:
- name
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml
new file mode 100644
index 000000000..4d7ff007c
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml
@@ -0,0 +1,749 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: controlplane.cluster.x-k8s.io
+ k8s.io/kind: ROSAControlPlane
+ k8s.io/resource: rosacontrolplanes
+ k8s.io/version: v1beta2
+ name: controlplane.cluster.x-k8s.io-v1beta2-rosacontrolplanes
+spec:
+ resource:
+ group: controlplane.cluster.x-k8s.io
+ kind: ROSAControlPlane
+ name: rosacontrolplanes
+ scope: Namespaced
+ version: v1beta2
+ validation:
+ openAPIV3Schema:
+ description: ROSAControlPlane is the Schema for the ROSAControlPlanes API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: RosaControlPlaneSpec defines the desired state of ROSAControlPlane.
+ properties:
+ additionalTags:
+ additionalProperties:
+ type: string
+ description: AdditionalTags are user-defined tags to be added on the
+ AWS resources associated with the control plane.
+ type: object
+ auditLogRoleARN:
+ description: |-
+ AuditLogRoleARN defines the role that is used to forward audit logs to AWS CloudWatch.
+ If not set, audit log forwarding is disabled.
+ type: string
+ availabilityZones:
+ description: |-
+ AvailabilityZones describe AWS AvailabilityZones of the worker nodes.
+ should match the AvailabilityZones of the provided Subnets.
+ a machinepool will be created for each availabilityZone.
+ items:
+ type: string
+ type: array
+ billingAccount:
+ description: |-
+ BillingAccount is an optional AWS account to use for billing the subscription fees for ROSA clusters.
+ The cost of running each ROSA cluster will be billed to the infrastructure account in which the cluster
+ is running.
+ type: string
+ x-kubernetes-validations:
+ - message: billingAccount is immutable
+ rule: self == oldSelf
+ - message: billingAccount must be a valid AWS account ID
+ rule: self.matches('^[0-9]{12}$')
+ controlPlaneEndpoint:
+ description: ControlPlaneEndpoint represents the endpoint used to communicate
+ with the control plane.
+ properties:
+ host:
+ description: The hostname on which the API server is serving.
+ type: string
+ port:
+ description: The port on which the API server is serving.
+ format: int32
+ type: integer
+ required:
+ - host
+ - port
+ type: object
+ credentialsSecretRef:
+ description: |-
+ CredentialsSecretRef references a secret with necessary credentials to connect to the OCM API.
+ The secret should contain the following data keys:
+ - ocmToken: eyJhbGciOiJIUzI1NiIsI....
+ - ocmApiUrl: Optional, defaults to 'https://api.openshift.com'
+ properties:
+ name:
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Add other useful fields. apiVersion, kind, uid?
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ defaultMachinePoolSpec:
+ description: |-
+ DefaultMachinePoolSpec defines the configuration for the default machinepool(s) provisioned as part of the cluster creation.
+ One MachinePool will be created with this configuration per AvailabilityZone. Those default machinepools are required for openshift cluster operators
+ to work properly.
+ As these machinepool not created using ROSAMachinePool CR, they will not be visible/managed by ROSA CAPI provider.
+ `rosa list machinepools -c ` can be used to view those machinepools.
+
+
+ This field will be removed in the future once the current limitation is resolved.
+ properties:
+ autoscaling:
+ description: |-
+ Autoscaling specifies auto scaling behaviour for the default MachinePool. Autoscaling min/max value
+ must be equal or multiple of the availability zones count.
+ properties:
+ maxReplicas:
+ minimum: 1
+ type: integer
+ minReplicas:
+ minimum: 1
+ type: integer
+ type: object
+ instanceType:
+ description: The instance type to use, for example `r5.xlarge`.
+ Instance type ref; https://aws.amazon.com/ec2/instance-types/
+ type: string
+ type: object
+ domainPrefix:
+ description: |-
+ DomainPrefix is an optional prefix added to the cluster's domain name. It will be used
+ when generating a sub-domain for the cluster on openshiftapps domain. It must be valid DNS-1035 label
+ consisting of lower case alphanumeric characters or '-', start with an alphabetic character
+ end with an alphanumeric character and have a max length of 15 characters.
+ maxLength: 15
+ pattern: ^[a-z]([-a-z0-9]*[a-z0-9])?$
+ type: string
+ x-kubernetes-validations:
+ - message: domainPrefix is immutable
+ rule: self == oldSelf
+ enableExternalAuthProviders:
+ default: false
+ description: EnableExternalAuthProviders enables external authentication
+ configuration for the cluster.
+ type: boolean
+ x-kubernetes-validations:
+ - message: enableExternalAuthProviders is immutable
+ rule: self == oldSelf
+ endpointAccess:
+ default: Public
+ description: |-
+ EndpointAccess specifies the publishing scope of cluster endpoints. The
+ default is Public.
+ enum:
+ - Public
+ - Private
+ type: string
+ etcdEncryptionKMSARN:
+ description: |-
+ EtcdEncryptionKMSARN is the ARN of the KMS key used to encrypt etcd. The key itself needs to be
+ created out-of-band by the user and tagged with `red-hat:true`.
+ type: string
+ externalAuthProviders:
+ description: |-
+ ExternalAuthProviders are external OIDC identity providers that can issue tokens for this cluster.
+ Can only be set if "enableExternalAuthProviders" is set to "True".
+
+
+ At most one provider can be configured.
+ items:
+ description: ExternalAuthProvider is an external OIDC identity provider
+ that can issue tokens for this cluster
+ properties:
+ claimMappings:
+ description: |-
+ ClaimMappings describes rules on how to transform information from an
+ ID token into a cluster identity
+ properties:
+ groups:
+ description: |-
+ Groups is a name of the claim that should be used to construct
+ groups for the cluster identity.
+ The referenced claim must use array of strings values.
+ properties:
+ claim:
+ description: Claim is a JWT token claim to be used in
+ the mapping
+ type: string
+ prefix:
+ description: |-
+ Prefix is a string to prefix the value from the token in the result of the
+ claim mapping.
+
+
+ By default, no prefixing occurs.
+
+
+ Example: if `prefix` is set to "myoidc:"" and the `claim` in JWT contains
+ an array of strings "a", "b" and "c", the mapping will result in an
+ array of string "myoidc:a", "myoidc:b" and "myoidc:c".
+ type: string
+ required:
+ - claim
+ type: object
+ username:
+ description: |-
+ Username is a name of the claim that should be used to construct
+ usernames for the cluster identity.
+
+
+ Default value: "sub"
+ properties:
+ claim:
+ description: Claim is a JWT token claim to be used in
+ the mapping
+ type: string
+ prefix:
+ description: Prefix is prepended to claim to prevent clashes
+ with existing names.
+ minLength: 1
+ type: string
+ prefixPolicy:
+ description: |-
+ PrefixPolicy specifies how a prefix should apply.
+
+
+ By default, claims other than `email` will be prefixed with the issuer URL to
+ prevent naming clashes with other plugins.
+
+
+ Set to "NoPrefix" to disable prefixing.
+
+
+ Example:
+ (1) `prefix` is set to "myoidc:" and `claim` is set to "username".
+ If the JWT claim `username` contains value `userA`, the resulting
+ mapped value will be "myoidc:userA".
+ (2) `prefix` is set to "myoidc:" and `claim` is set to "email". If the
+ JWT `email` claim contains value "userA@myoidc.tld", the resulting
+ mapped value will be "myoidc:userA@myoidc.tld".
+ (3) `prefix` is unset, `issuerURL` is set to `https://myoidc.tld`,
+ the JWT claims include "username":"userA" and "email":"userA@myoidc.tld",
+ and `claim` is set to:
+ (a) "username": the mapped value will be "https://myoidc.tld#userA"
+ (b) "email": the mapped value will be "userA@myoidc.tld"
+ enum:
+ - ""
+ - NoPrefix
+ - Prefix
+ type: string
+ required:
+ - claim
+ type: object
+ x-kubernetes-validations:
+ - message: prefix must be set if prefixPolicy is 'Prefix',
+ but must remain unset otherwise
+ rule: 'self.prefixPolicy == ''Prefix'' ? has(self.prefix)
+ : !has(self.prefix)'
+ type: object
+ claimValidationRules:
+ description: ClaimValidationRules are rules that are applied to
+ validate token claims to authenticate users.
+ items:
+ description: TokenClaimValidationRule validates token claims
+ to authenticate users.
+ properties:
+ requiredClaim:
+ description: RequiredClaim allows configuring a required
+ claim name and its expected value
+ properties:
+ claim:
+ description: |-
+ Claim is a name of a required claim. Only claims with string values are
+ supported.
+ minLength: 1
+ type: string
+ requiredValue:
+ description: RequiredValue is the required value for
+ the claim.
+ minLength: 1
+ type: string
+ required:
+ - claim
+ - requiredValue
+ type: object
+ type:
+ default: RequiredClaim
+ description: Type sets the type of the validation rule
+ enum:
+ - RequiredClaim
+ type: string
+ required:
+ - requiredClaim
+ - type
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ issuer:
+ description: Issuer describes attributes of the OIDC token issuer
+ properties:
+ audiences:
+ description: |-
+ Audiences is an array of audiences that the token was issued for.
+ Valid tokens must include at least one of these values in their
+ "aud" claim.
+ Must be set to exactly one value.
+ items:
+ description: TokenAudience is the audience that the token
+ was issued for.
+ minLength: 1
+ type: string
+ maxItems: 10
+ minItems: 1
+ type: array
+ x-kubernetes-list-type: set
+ issuerCertificateAuthority:
+ description: |-
+ CertificateAuthority is a reference to a config map in the
+ configuration namespace. The .data of the configMap must contain
+ the "ca-bundle.crt" key.
+ If unset, system trust is used instead.
+ properties:
+ name:
+ description: Name is the metadata.name of the referenced
+ object.
+ type: string
+ required:
+ - name
+ type: object
+ issuerURL:
+ description: |-
+ URL is the serving URL of the token issuer.
+ Must use the https:// scheme.
+ pattern: ^https:\/\/[^\s]
+ type: string
+ required:
+ - audiences
+ - issuerURL
+ type: object
+ name:
+ description: Name of the OIDC provider
+ minLength: 1
+ type: string
+ oidcClients:
+ description: |-
+ OIDCClients contains configuration for the platform's clients that
+ need to request tokens from the issuer
+ items:
+ description: |-
+ OIDCClientConfig contains configuration for the platform's client that
+ need to request tokens from the issuer.
+ properties:
+ clientID:
+ description: ClientID is the identifier of the OIDC client
+ from the OIDC provider
+ minLength: 1
+ type: string
+ clientSecret:
+ description: |-
+ ClientSecret refers to a secret that
+ contains the client secret in the `clientSecret` key of the `.data` field
+ properties:
+ name:
+ description: Name is the metadata.name of the referenced
+ object.
+ type: string
+ required:
+ - name
+ type: object
+ componentName:
+ description: |-
+ ComponentName is the name of the component that is supposed to consume this
+ client configuration
+ maxLength: 256
+ minLength: 1
+ type: string
+ componentNamespace:
+ description: |-
+ ComponentNamespace is the namespace of the component that is supposed to consume this
+ client configuration
+ maxLength: 63
+ minLength: 1
+ type: string
+ extraScopes:
+ description: ExtraScopes is an optional set of scopes to
+ request tokens with.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: set
+ required:
+ - clientID
+ - clientSecret
+ - componentName
+ - componentNamespace
+ type: object
+ maxItems: 20
+ type: array
+ x-kubernetes-list-map-keys:
+ - componentNamespace
+ - componentName
+ x-kubernetes-list-type: map
+ required:
+ - issuer
+ - name
+ type: object
+ maxItems: 1
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ identityRef:
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
+ properties:
+ kind:
+ description: Kind of the identity.
+ enum:
+ - AWSClusterControllerIdentity
+ - AWSClusterRoleIdentity
+ - AWSClusterStaticIdentity
+ type: string
+ name:
+ description: Name of the identity.
+ minLength: 1
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ installerRoleARN:
+ description: InstallerRoleARN is an AWS IAM role that OpenShift Cluster
+ Manager will assume to create the cluster..
+ type: string
+ network:
+ description: Network config for the ROSA HCP cluster.
+ properties:
+ hostPrefix:
+ default: 23
+ description: Network host prefix which is defaulted to `23` if not
+ specified.
+ type: integer
+ machineCIDR:
+ description: IP addresses block used by OpenShift while installing
+ the cluster, for example "10.0.0.0/16".
+ format: cidr
+ type: string
+ networkType:
+ default: OVNKubernetes
+ description: The CNI network type default is OVNKubernetes.
+ enum:
+ - OVNKubernetes
+ - Other
+ type: string
+ podCIDR:
+ description: IP address block from which to assign pod IP addresses,
+ for example `10.128.0.0/14`.
+ format: cidr
+ type: string
+ serviceCIDR:
+ description: IP address block from which to assign service IP addresses,
+ for example `172.30.0.0/16`.
+ format: cidr
+ type: string
+ type: object
+ oidcID:
+ description: The ID of the internal OpenID Connect Provider.
+ type: string
+ x-kubernetes-validations:
+ - message: oidcID is immutable
+ rule: self == oldSelf
+ provisionShardID:
+ description: ProvisionShardID defines the shard where rosa control plane
+ components will be hosted.
+ type: string
+ x-kubernetes-validations:
+ - message: provisionShardID is immutable
+ rule: self == oldSelf
+ region:
+ description: The AWS Region the cluster lives in.
+ type: string
+ rolesRef:
+ description: AWS IAM roles used to perform credential requests by the
+ openshift operators.
+ properties:
+ controlPlaneOperatorARN:
+ description: "ControlPlaneOperatorARN is an ARN value referencing
+ a role appropriate for the Control Plane Operator.\n\n\nThe following
+ is an example of a valid policy document:\n\n\n{\n\t\"Version\":
+ \"2012-10-17\",\n\t\"Statement\": [\n\t\t{\n\t\t\t\"Effect\":
+ \"Allow\",\n\t\t\t\"Action\": [\n\t\t\t\t\"ec2:CreateVpcEndpoint\",\n\t\t\t\t\"ec2:DescribeVpcEndpoints\",\n\t\t\t\t\"ec2:ModifyVpcEndpoint\",\n\t\t\t\t\"ec2:DeleteVpcEndpoints\",\n\t\t\t\t\"ec2:CreateTags\",\n\t\t\t\t\"route53:ListHostedZones\",\n\t\t\t\t\"ec2:CreateSecurityGroup\",\n\t\t\t\t\"ec2:AuthorizeSecurityGroupIngress\",\n\t\t\t\t\"ec2:AuthorizeSecurityGroupEgress\",\n\t\t\t\t\"ec2:DeleteSecurityGroup\",\n\t\t\t\t\"ec2:RevokeSecurityGroupIngress\",\n\t\t\t\t\"ec2:RevokeSecurityGroupEgress\",\n\t\t\t\t\"ec2:DescribeSecurityGroups\",\n\t\t\t\t\"ec2:DescribeVpcs\",\n\t\t\t],\n\t\t\t\"Resource\":
+ \"*\"\n\t\t},\n\t\t{\n\t\t\t\"Effect\": \"Allow\",\n\t\t\t\"Action\":
+ [\n\t\t\t\t\"route53:ChangeResourceRecordSets\",\n\t\t\t\t\"route53:ListResourceRecordSets\"\n\t\t\t],\n\t\t\t\"Resource\":
+ \"arn:aws:route53:::%s\"\n\t\t}\n\t]\n}"
+ type: string
+ imageRegistryARN:
+ description: "ImageRegistryARN is an ARN value referencing a role
+ appropriate for the Image Registry Operator.\n\n\nThe following
+ is an example of a valid policy document:\n\n\n{\n\t\"Version\":
+ \"2012-10-17\",\n\t\"Statement\": [\n\t\t{\n\t\t\t\"Effect\":
+ \"Allow\",\n\t\t\t\"Action\": [\n\t\t\t\t\"s3:CreateBucket\",\n\t\t\t\t\"s3:DeleteBucket\",\n\t\t\t\t\"s3:PutBucketTagging\",\n\t\t\t\t\"s3:GetBucketTagging\",\n\t\t\t\t\"s3:PutBucketPublicAccessBlock\",\n\t\t\t\t\"s3:GetBucketPublicAccessBlock\",\n\t\t\t\t\"s3:PutEncryptionConfiguration\",\n\t\t\t\t\"s3:GetEncryptionConfiguration\",\n\t\t\t\t\"s3:PutLifecycleConfiguration\",\n\t\t\t\t\"s3:GetLifecycleConfiguration\",\n\t\t\t\t\"s3:GetBucketLocation\",\n\t\t\t\t\"s3:ListBucket\",\n\t\t\t\t\"s3:GetObject\",\n\t\t\t\t\"s3:PutObject\",\n\t\t\t\t\"s3:DeleteObject\",\n\t\t\t\t\"s3:ListBucketMultipartUploads\",\n\t\t\t\t\"s3:AbortMultipartUpload\",\n\t\t\t\t\"s3:ListMultipartUploadParts\"\n\t\t\t],\n\t\t\t\"Resource\":
+ \"*\"\n\t\t}\n\t]\n}"
+ type: string
+ ingressARN:
+ description: "The referenced role must have a trust relationship
+ that allows it to be assumed via web identity.\nhttps://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc.html.\nExample:\n{\n\t\t\"Version\":
+ \"2012-10-17\",\n\t\t\"Statement\": [\n\t\t\t{\n\t\t\t\t\"Effect\":
+ \"Allow\",\n\t\t\t\t\"Principal\": {\n\t\t\t\t\t\"Federated\":
+ \"{{ .ProviderARN }}\"\n\t\t\t\t},\n\t\t\t\t\t\"Action\": \"sts:AssumeRoleWithWebIdentity\",\n\t\t\t\t\"Condition\":
+ {\n\t\t\t\t\t\"StringEquals\": {\n\t\t\t\t\t\t\"{{ .ProviderName
+ }}:sub\": {{ .ServiceAccounts }}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n\n\nIngressARN
+ is an ARN value referencing a role appropriate for the Ingress
+ Operator.\n\n\nThe following is an example of a valid policy document:\n\n\n{\n\t\"Version\":
+ \"2012-10-17\",\n\t\"Statement\": [\n\t\t{\n\t\t\t\"Effect\":
+ \"Allow\",\n\t\t\t\"Action\": [\n\t\t\t\t\"elasticloadbalancing:DescribeLoadBalancers\",\n\t\t\t\t\"tag:GetResources\",\n\t\t\t\t\"route53:ListHostedZones\"\n\t\t\t],\n\t\t\t\"Resource\":
+ \"*\"\n\t\t},\n\t\t{\n\t\t\t\"Effect\": \"Allow\",\n\t\t\t\"Action\":
+ [\n\t\t\t\t\"route53:ChangeResourceRecordSets\"\n\t\t\t],\n\t\t\t\"Resource\":
+ [\n\t\t\t\t\"arn:aws:route53:::PUBLIC_ZONE_ID\",\n\t\t\t\t\"arn:aws:route53:::PRIVATE_ZONE_ID\"\n\t\t\t]\n\t\t}\n\t]\n}"
+ type: string
+ kmsProviderARN:
+ type: string
+ kubeCloudControllerARN:
+ description: |-
+ KubeCloudControllerARN is an ARN value referencing a role appropriate for the KCM/KCC.
+ Source: https://cloud-provider-aws.sigs.k8s.io/prerequisites/#iam-policies
+
+
+ The following is an example of a valid policy document:
+
+
+ {
+ "Version": "2012-10-17",
+ "Statement": [
+ {
+ "Action": [
+ "autoscaling:DescribeAutoScalingGroups",
+ "autoscaling:DescribeLaunchConfigurations",
+ "autoscaling:DescribeTags",
+ "ec2:DescribeAvailabilityZones",
+ "ec2:DescribeInstances",
+ "ec2:DescribeImages",
+ "ec2:DescribeRegions",
+ "ec2:DescribeRouteTables",
+ "ec2:DescribeSecurityGroups",
+ "ec2:DescribeSubnets",
+ "ec2:DescribeVolumes",
+ "ec2:CreateSecurityGroup",
+ "ec2:CreateTags",
+ "ec2:CreateVolume",
+ "ec2:ModifyInstanceAttribute",
+ "ec2:ModifyVolume",
+ "ec2:AttachVolume",
+ "ec2:AuthorizeSecurityGroupIngress",
+ "ec2:CreateRoute",
+ "ec2:DeleteRoute",
+ "ec2:DeleteSecurityGroup",
+ "ec2:DeleteVolume",
+ "ec2:DetachVolume",
+ "ec2:RevokeSecurityGroupIngress",
+ "ec2:DescribeVpcs",
+ "elasticloadbalancing:AddTags",
+ "elasticloadbalancing:AttachLoadBalancerToSubnets",
+ "elasticloadbalancing:ApplySecurityGroupsToLoadBalancer",
+ "elasticloadbalancing:CreateLoadBalancer",
+ "elasticloadbalancing:CreateLoadBalancerPolicy",
+ "elasticloadbalancing:CreateLoadBalancerListeners",
+ "elasticloadbalancing:ConfigureHealthCheck",
+ "elasticloadbalancing:DeleteLoadBalancer",
+ "elasticloadbalancing:DeleteLoadBalancerListeners",
+ "elasticloadbalancing:DescribeLoadBalancers",
+ "elasticloadbalancing:DescribeLoadBalancerAttributes",
+ "elasticloadbalancing:DetachLoadBalancerFromSubnets",
+ "elasticloadbalancing:DeregisterInstancesFromLoadBalancer",
+ "elasticloadbalancing:ModifyLoadBalancerAttributes",
+ "elasticloadbalancing:RegisterInstancesWithLoadBalancer",
+ "elasticloadbalancing:SetLoadBalancerPoliciesForBackendServer",
+ "elasticloadbalancing:AddTags",
+ "elasticloadbalancing:CreateListener",
+ "elasticloadbalancing:CreateTargetGroup",
+ "elasticloadbalancing:DeleteListener",
+ "elasticloadbalancing:DeleteTargetGroup",
+ "elasticloadbalancing:DeregisterTargets",
+ "elasticloadbalancing:DescribeListeners",
+ "elasticloadbalancing:DescribeLoadBalancerPolicies",
+ "elasticloadbalancing:DescribeTargetGroups",
+ "elasticloadbalancing:DescribeTargetHealth",
+ "elasticloadbalancing:ModifyListener",
+ "elasticloadbalancing:ModifyTargetGroup",
+ "elasticloadbalancing:RegisterTargets",
+ "elasticloadbalancing:SetLoadBalancerPoliciesOfListener",
+ "iam:CreateServiceLinkedRole",
+ "kms:DescribeKey"
+ ],
+ "Resource": [
+ "*"
+ ],
+ "Effect": "Allow"
+ }
+ ]
+ }
+ type: string
+ networkARN:
+ description: "NetworkARN is an ARN value referencing a role appropriate
+ for the Network Operator.\n\n\nThe following is an example of
+ a valid policy document:\n\n\n{\n\t\"Version\": \"2012-10-17\",\n\t\"Statement\":
+ [\n\t\t{\n\t\t\t\"Effect\": \"Allow\",\n\t\t\t\"Action\": [\n\t\t\t\t\"ec2:DescribeInstances\",\n
+ \ \"ec2:DescribeInstanceStatus\",\n \"ec2:DescribeInstanceTypes\",\n
+ \ \"ec2:UnassignPrivateIpAddresses\",\n \"ec2:AssignPrivateIpAddresses\",\n
+ \ \"ec2:UnassignIpv6Addresses\",\n \"ec2:AssignIpv6Addresses\",\n
+ \ \"ec2:DescribeSubnets\",\n \"ec2:DescribeNetworkInterfaces\"\n\t\t\t],\n\t\t\t\"Resource\":
+ \"*\"\n\t\t}\n\t]\n}"
+ type: string
+ nodePoolManagementARN:
+ description: "NodePoolManagementARN is an ARN value referencing
+ a role appropriate for the CAPI Controller.\n\n\nThe following
+ is an example of a valid policy document:\n\n\n{\n \"Version\":
+ \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n
+ \ \"ec2:AssociateRouteTable\",\n \"ec2:AttachInternetGateway\",\n
+ \ \"ec2:AuthorizeSecurityGroupIngress\",\n \"ec2:CreateInternetGateway\",\n
+ \ \"ec2:CreateNatGateway\",\n \"ec2:CreateRoute\",\n
+ \ \"ec2:CreateRouteTable\",\n \"ec2:CreateSecurityGroup\",\n
+ \ \"ec2:CreateSubnet\",\n \"ec2:CreateTags\",\n \"ec2:DeleteInternetGateway\",\n
+ \ \"ec2:DeleteNatGateway\",\n \"ec2:DeleteRouteTable\",\n
+ \ \"ec2:DeleteSecurityGroup\",\n \"ec2:DeleteSubnet\",\n
+ \ \"ec2:DeleteTags\",\n \"ec2:DescribeAccountAttributes\",\n
+ \ \"ec2:DescribeAddresses\",\n \"ec2:DescribeAvailabilityZones\",\n
+ \ \"ec2:DescribeImages\",\n \"ec2:DescribeInstances\",\n
+ \ \"ec2:DescribeInternetGateways\",\n \"ec2:DescribeNatGateways\",\n
+ \ \"ec2:DescribeNetworkInterfaces\",\n \"ec2:DescribeNetworkInterfaceAttribute\",\n
+ \ \"ec2:DescribeRouteTables\",\n \"ec2:DescribeSecurityGroups\",\n
+ \ \"ec2:DescribeSubnets\",\n \"ec2:DescribeVpcs\",\n
+ \ \"ec2:DescribeVpcAttribute\",\n \"ec2:DescribeVolumes\",\n
+ \ \"ec2:DetachInternetGateway\",\n \"ec2:DisassociateRouteTable\",\n
+ \ \"ec2:DisassociateAddress\",\n \"ec2:ModifyInstanceAttribute\",\n
+ \ \"ec2:ModifyNetworkInterfaceAttribute\",\n \"ec2:ModifySubnetAttribute\",\n
+ \ \"ec2:RevokeSecurityGroupIngress\",\n \"ec2:RunInstances\",\n
+ \ \"ec2:TerminateInstances\",\n \"tag:GetResources\",\n
+ \ \"ec2:CreateLaunchTemplate\",\n \"ec2:CreateLaunchTemplateVersion\",\n
+ \ \"ec2:DescribeLaunchTemplates\",\n \"ec2:DescribeLaunchTemplateVersions\",\n
+ \ \"ec2:DeleteLaunchTemplate\",\n \"ec2:DeleteLaunchTemplateVersions\"\n
+ \ ],\n \"Resource\": [\n \"*\"\n ],\n \"Effect\":
+ \"Allow\"\n },\n {\n \"Condition\": {\n \"StringLike\":
+ {\n \"iam:AWSServiceName\": \"elasticloadbalancing.amazonaws.com\"\n
+ \ }\n },\n \"Action\": [\n \"iam:CreateServiceLinkedRole\"\n
+ \ ],\n \"Resource\": [\n \"arn:*:iam::*:role/aws-service-role/elasticloadbalancing.amazonaws.com/AWSServiceRoleForElasticLoadBalancing\"\n
+ \ ],\n \"Effect\": \"Allow\"\n },\n {\n \"Action\":
+ [\n \"iam:PassRole\"\n ],\n \"Resource\": [\n \"arn:*:iam::*:role/*-worker-role\"\n
+ \ ],\n \"Effect\": \"Allow\"\n },\n\t {\n\t \t\"Effect\":
+ \"Allow\",\n\t \t\"Action\": [\n\t \t\t\"kms:Decrypt\",\n\t
+ \ \t\t\"kms:ReEncrypt\",\n\t \t\t\"kms:GenerateDataKeyWithoutPlainText\",\n\t
+ \ \t\t\"kms:DescribeKey\"\n\t \t],\n\t \t\"Resource\": \"*\"\n\t
+ \ },\n\t {\n\t \t\"Effect\": \"Allow\",\n\t \t\"Action\": [\n\t
+ \ \t\t\"kms:CreateGrant\"\n\t \t],\n\t \t\"Resource\": \"*\",\n\t
+ \ \t\"Condition\": {\n\t \t\t\"Bool\": {\n\t \t\t\t\"kms:GrantIsForAWSResource\":
+ true\n\t \t\t}\n\t \t}\n\t }\n ]\n}"
+ type: string
+ storageARN:
+ description: "StorageARN is an ARN value referencing a role appropriate
+ for the Storage Operator.\n\n\nThe following is an example of
+ a valid policy document:\n\n\n{\n\t\"Version\": \"2012-10-17\",\n\t\"Statement\":
+ [\n\t\t{\n\t\t\t\"Effect\": \"Allow\",\n\t\t\t\"Action\": [\n\t\t\t\t\"ec2:AttachVolume\",\n\t\t\t\t\"ec2:CreateSnapshot\",\n\t\t\t\t\"ec2:CreateTags\",\n\t\t\t\t\"ec2:CreateVolume\",\n\t\t\t\t\"ec2:DeleteSnapshot\",\n\t\t\t\t\"ec2:DeleteTags\",\n\t\t\t\t\"ec2:DeleteVolume\",\n\t\t\t\t\"ec2:DescribeInstances\",\n\t\t\t\t\"ec2:DescribeSnapshots\",\n\t\t\t\t\"ec2:DescribeTags\",\n\t\t\t\t\"ec2:DescribeVolumes\",\n\t\t\t\t\"ec2:DescribeVolumesModifications\",\n\t\t\t\t\"ec2:DetachVolume\",\n\t\t\t\t\"ec2:ModifyVolume\"\n\t\t\t],\n\t\t\t\"Resource\":
+ \"*\"\n\t\t}\n\t]\n}"
+ type: string
+ required:
+ - controlPlaneOperatorARN
+ - imageRegistryARN
+ - ingressARN
+ - kmsProviderARN
+ - kubeCloudControllerARN
+ - networkARN
+ - nodePoolManagementARN
+ - storageARN
+ type: object
+ rosaClusterName:
+ description: |-
+ Cluster name must be valid DNS-1035 label, so it must consist of lower case alphanumeric
+ characters or '-', start with an alphabetic character, end with an alphanumeric character
+ and have a max length of 54 characters.
+ maxLength: 54
+ pattern: ^[a-z]([-a-z0-9]*[a-z0-9])?$
+ type: string
+ x-kubernetes-validations:
+ - message: rosaClusterName is immutable
+ rule: self == oldSelf
+ subnets:
+ description: |-
+ The Subnet IDs to use when installing the cluster.
+ SubnetIDs should come in pairs; two per availability zone, one private and one public.
+ items:
+ type: string
+ type: array
+ supportRoleARN:
+ description: |-
+ SupportRoleARN is an AWS IAM role used by Red Hat SREs to enable
+ access to the cluster account in order to provide support.
+ type: string
+ version:
+ description: OpenShift semantic version, for example "4.14.5".
+ type: string
+ workerRoleARN:
+ description: WorkerRoleARN is an AWS IAM role that will be attached
+ to worker instances.
+ type: string
+ required:
+ - availabilityZones
+ - installerRoleARN
+ - oidcID
+ - region
+ - rolesRef
+ - rosaClusterName
+ - subnets
+ - supportRoleARN
+ - version
+ - workerRoleARN
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresources.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
index bdba9f239..cf9f96f20 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
@@ -134,10 +134,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
index e01146cc5..b2f2ea76e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
@@ -88,10 +88,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/podviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/podviews.yaml
index ffafe3668..1edecd3bf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/podviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/podviews.yaml
@@ -126,9 +126,15 @@ spec:
description: The key to select.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ default: ""
+ description: 'Name of the referent. This field is
+ effectively required, but due to backwards compatibility
+ is allowed to be empty. Instances of this type
+ with an empty value here are almost certainly
+ wrong. TODO: Add other useful fields. apiVersion,
+ kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the ConfigMap or its
@@ -191,9 +197,15 @@ spec:
be a valid secret key.
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind,
- uid?'
+ default: ""
+ description: 'Name of the referent. This field is
+ effectively required, but due to backwards compatibility
+ is allowed to be empty. Instances of this type
+ with an empty value here are almost certainly
+ wrong. TODO: Add other useful fields. apiVersion,
+ kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the Secret or its key
@@ -224,8 +236,14 @@ spec:
description: The ConfigMap to select from
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind, uid?'
+ default: ""
+ description: 'Name of the referent. This field is effectively
+ required, but due to backwards compatibility is allowed
+ to be empty. Instances of this type with an empty
+ value here are almost certainly wrong. TODO: Add other
+ useful fields. apiVersion, kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the ConfigMap must be defined
@@ -240,8 +258,14 @@ spec:
description: The Secret to select from
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind, uid?'
+ default: ""
+ description: 'Name of the referent. This field is effectively
+ required, but due to backwards compatibility is allowed
+ to be empty. Instances of this type with an empty
+ value here are almost certainly wrong. TODO: Add other
+ useful fields. apiVersion, kind, uid? More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen
+ doesn''t need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.'
type: string
optional:
description: Specify whether the Secret must be defined
@@ -287,6 +311,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
description: HTTPGet specifies the http request to perform.
@@ -316,6 +341,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -395,6 +421,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
description: HTTPGet specifies the http request to perform.
@@ -424,6 +451,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -496,6 +524,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe to
@@ -548,6 +577,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -697,6 +727,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe to
@@ -749,6 +780,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -878,6 +910,29 @@ spec:
2) has CAP_SYS_ADMIN Note that this field cannot be set
when spec.os.name is windows.'
type: boolean
+ appArmorProfile:
+ description: appArmorProfile is the AppArmor options to use
+ by this container. If set, this profile overrides the pod's
+ appArmorProfile. Note that this field cannot be set when
+ spec.os.name is windows.
+ properties:
+ localhostProfile:
+ description: localhostProfile indicates a profile loaded
+ on the node that should be used. The profile must be
+ preconfigured on the node to work. Must match the loaded
+ name of the profile. Must be set if and only if type
+ is "Localhost".
+ type: string
+ type:
+ description: 'type indicates which kind of AppArmor profile
+ will be applied. Valid options are: Localhost - a profile
+ pre-loaded on the node. RuntimeDefault - the container
+ runtime''s default profile. Unconfined - no AppArmor
+ enforcement.'
+ type: string
+ required:
+ - type
+ type: object
capabilities:
description: The capabilities to add/drop when running containers.
Defaults to the default set of capabilities granted by the
@@ -891,6 +946,7 @@ spec:
type
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
description: Removed capabilities
items:
@@ -898,6 +954,7 @@ spec:
type
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
description: Run container in privileged mode. Processes in
@@ -1057,6 +1114,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
description: Minimum consecutive failures for the probe to
@@ -1109,6 +1167,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
description: Path to access on the HTTP server.
type: string
@@ -1261,7 +1320,9 @@ spec:
description: mountPropagation determines how mounts are
propagated from the host to container and the other way
around. When not set, MountPropagationNone is used. This
- field is beta in 1.10.
+ field is beta in 1.10. When RecursiveReadOnly is set to
+ IfPossible or to Enabled, MountPropagation must be None
+ or unspecified (which defaults to None).
type: string
name:
description: This must match the Name of a Volume.
@@ -1270,6 +1331,23 @@ spec:
description: Mounted read-only if true, read-write otherwise
(false or unspecified). Defaults to false.
type: boolean
+ recursiveReadOnly:
+ description: "RecursiveReadOnly specifies whether read-only
+ mounts should be handled recursively. \n If ReadOnly is
+ false, this field has no meaning and must be unspecified.
+ \n If ReadOnly is true, and this field is set to Disabled,
+ the mount is not made recursively read-only. If this
+ field is set to IfPossible, the mount is made recursively
+ read-only, if it is supported by the container runtime.
+ \ If this field is set to Enabled, the mount is made recursively
+ read-only if it is supported by the container runtime,
+ otherwise the pod will not be started and an error will
+ be generated to indicate the reason. \n If this field
+ is set to IfPossible or Enabled, MountPropagation must
+ be set to None (or be unspecified, which defaults to None).
+ \n If this field is not specified, it is treated as an
+ equivalent of Disabled."
+ type: string
subPath:
description: Path within the volume from which the container's
volume should be mounted. Defaults to "" (volume's root).
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/projects.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/projects.yaml
index 1071a31ca..ebecf7268 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/projects.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/projects.yaml
@@ -123,11 +123,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
index 32c6ded6c..eefab8db5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
@@ -134,10 +134,18 @@ spec:
type: object
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
index 8a12a9551..a8e730121 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
@@ -60,18 +60,21 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -123,11 +126,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -139,11 +144,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -154,6 +161,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -170,11 +178,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -186,14 +196,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -219,11 +232,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -253,11 +268,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -268,6 +285,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -281,6 +299,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -297,11 +316,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -331,11 +352,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -346,12 +369,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -373,11 +398,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -407,11 +434,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -422,6 +451,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -435,6 +465,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -451,11 +482,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -485,11 +518,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -500,12 +535,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -516,16 +553,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -579,6 +627,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -588,10 +637,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -611,6 +662,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -649,6 +701,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -671,6 +724,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -682,10 +736,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -700,6 +756,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -738,6 +795,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -750,12 +808,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -766,6 +828,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -773,6 +836,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -787,6 +851,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -804,6 +869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -845,6 +911,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -862,6 +929,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -904,6 +972,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -934,6 +1003,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1008,6 +1078,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1038,6 +1109,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1128,16 +1200,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1193,6 +1276,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1223,6 +1307,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1285,6 +1370,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1296,6 +1384,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1305,6 +1395,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1321,6 +1414,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1338,6 +1432,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1379,6 +1474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1396,6 +1492,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1438,6 +1535,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1468,6 +1566,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1513,6 +1612,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -1526,6 +1632,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1556,6 +1663,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1633,6 +1741,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -1671,6 +1788,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -1683,6 +1801,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -1734,11 +1853,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1785,6 +1906,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1847,6 +1970,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -1856,6 +1980,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1873,6 +1998,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1901,7 +2027,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1916,6 +2044,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1971,6 +2100,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2033,6 +2163,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2092,11 +2223,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2129,10 +2262,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2149,6 +2284,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2218,11 +2354,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2299,11 +2437,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2338,7 +2478,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2384,6 +2526,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2402,7 +2545,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2422,6 +2567,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2453,6 +2599,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2460,6 +2607,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2482,6 +2630,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2520,6 +2669,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -2534,6 +2684,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml
new file mode 100644
index 000000000..209a6923f
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml
@@ -0,0 +1,4072 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: fluxcd.open-cluster-management.io
+ k8s.io/kind: FluxCDConfig
+ k8s.io/resource: fluxcdconfigs
+ k8s.io/version: v1alpha1
+ name: fluxcd.open-cluster-management.io-v1alpha1-fluxcdconfigs
+spec:
+ resource:
+ group: fluxcd.open-cluster-management.io
+ kind: FluxCDConfig
+ name: fluxcdconfigs
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ cli:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ image:
+ type: string
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ serviceAccount:
+ properties:
+ automount:
+ type: boolean
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ type: object
+ clusterDomain:
+ type: string
+ crds:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ extraObjects:
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ helmController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ imageAutomationController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ imagePullSecrets:
+ items:
+ properties:
+ name:
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ imageReflectionController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ installCRDs:
+ type: boolean
+ kustomizeController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ envFrom:
+ properties:
+ map:
+ properties:
+ name:
+ type: string
+ type: object
+ secret:
+ properties:
+ name:
+ type: string
+ type: object
+ type: object
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ extraSecretMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ secret:
+ properties:
+ create:
+ type: boolean
+ data:
+ additionalProperties:
+ type: string
+ type: object
+ name:
+ type: string
+ required:
+ - create
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ logLevel:
+ type: string
+ multitenancy:
+ properties:
+ defaultServiceAccount:
+ type: string
+ enabled:
+ type: boolean
+ privileged:
+ type: boolean
+ type: object
+ notificationController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ service:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ webhookReceiver:
+ properties:
+ ingress:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ create:
+ type: boolean
+ hosts:
+ items:
+ properties:
+ host:
+ type: string
+ paths:
+ items:
+ properties:
+ path:
+ type: string
+ pathType:
+ type: string
+ required:
+ - path
+ - pathType
+ type: object
+ type: array
+ required:
+ - host
+ - paths
+ type: object
+ type: array
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ tls:
+ items:
+ properties:
+ hosts:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ secretName:
+ type: string
+ type: object
+ type: array
+ required:
+ - annotations
+ - create
+ - hosts
+ - labels
+ - tls
+ type: object
+ service:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ type: object
+ required:
+ - create
+ type: object
+ policies:
+ properties:
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ prometheus:
+ properties:
+ podMonitor:
+ properties:
+ create:
+ type: boolean
+ podMetricsEndpoints:
+ items:
+ properties:
+ port:
+ type: string
+ relabelings:
+ items:
+ properties:
+ action:
+ type: string
+ regex:
+ type: string
+ sourceLabels:
+ items:
+ type: string
+ type: array
+ type: object
+ type: array
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ type: object
+ rbac:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ create:
+ type: boolean
+ createAggregation:
+ type: boolean
+ roleRef:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ required:
+ - create
+ type: object
+ sourceController:
+ properties:
+ affinity:
+ properties:
+ nodeAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ preference:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ weight:
+ format: int32
+ type: integer
+ required:
+ - preference
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ properties:
+ nodeSelectorTerms:
+ items:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchFields:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ required:
+ - nodeSelectorTerms
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ podAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ podAntiAffinity:
+ properties:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ podAffinityTerm:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ weight:
+ format: int32
+ type: integer
+ required:
+ - podAffinityTerm
+ - weight
+ type: object
+ type: array
+ requiredDuringSchedulingIgnoredDuringExecution:
+ items:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ matchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ mismatchLabelKeys:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ namespaceSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ topologyKey:
+ type: string
+ required:
+ - topologyKey
+ type: object
+ type: array
+ type: object
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ container:
+ properties:
+ additionalArgs:
+ items:
+ type: string
+ type: array
+ type: object
+ create:
+ type: boolean
+ extraEnv:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ image:
+ type: string
+ imagePullPolicy:
+ enum:
+ - Always
+ - Never
+ - IfNotPresent
+ - ""
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ priorityClassName:
+ type: string
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ service:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ serviceAccount:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ automount:
+ type: boolean
+ create:
+ type: boolean
+ required:
+ - create
+ type: object
+ tag:
+ type: string
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ required:
+ - create
+ type: object
+ watchAllNamespaces:
+ type: boolean
+ required:
+ - installCRDs
+ type: object
+ required:
+ - metadata
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml
new file mode 100644
index 000000000..7c5077e32
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml
@@ -0,0 +1,205 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: gateway.open-cluster-management.io
+ k8s.io/kind: ClusterGateway
+ k8s.io/resource: clustergateways
+ k8s.io/version: v1alpha1
+ name: gateway.open-cluster-management.io-v1alpha1-clustergateways
+spec:
+ resource:
+ group: gateway.open-cluster-management.io
+ kind: ClusterGateway
+ name: clustergateways
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: |-
+ ClusterGateway is an extension model for ManagedCluster which implements
+ the Tier-II cluster model based on OCM's original abstraction of
+ ManagedCluster. The Tier-II cluster model should be highly protected under
+ RBAC policies and only the admin shall have the access to view the content
+ of cluster credentials.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ClusterGatewaySpec defines the desired state of ClusterGateway
+ properties:
+ access:
+ properties:
+ credential:
+ description: |-
+ Credential holds authentication configuration for
+ accessing the target cluster.
+ properties:
+ type:
+ description: Type is the union discriminator for credential
+ contents.
+ type: string
+ required:
+ - type
+ type: object
+ endpoint:
+ description: |-
+ Endpoint is a qualified URL string for accessing the cluster.
+ e.g. https://example.com:6443/
+ properties:
+ const:
+ description: Const prescribes fixed endpoint for requesting
+ target clusters.
+ properties:
+ address:
+ description: Address is a qualified hostname for accessing
+ the local kube-apiserver.
+ type: string
+ caBundle:
+ description: CABundle is used for verifying cluster's serving
+ CA certificate.
+ format: byte
+ type: string
+ insecure:
+ description: |-
+ Insecure indicates the cluster should be access'd w/o verifying
+ CA certificate at client-side.
+ type: boolean
+ proxy-url:
+ description: ProxyURL indicates the proxy url of the server
+ type: string
+ required:
+ - address
+ type: object
+ type:
+ description: Type is the union discriminator for prescribing
+ apiserver endpoint.
+ type: string
+ required:
+ - type
+ type: object
+ required:
+ - endpoint
+ type: object
+ proxyConfig:
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ spec:
+ properties:
+ clientIdentityExchanger:
+ properties:
+ rules:
+ items:
+ properties:
+ name:
+ type: string
+ source:
+ properties:
+ cluster:
+ type: string
+ clusterPattern:
+ type: string
+ group:
+ type: string
+ groupPattern:
+ type: string
+ uid:
+ type: string
+ user:
+ type: string
+ userPattern:
+ type: string
+ type: object
+ target:
+ properties:
+ groups:
+ items:
+ type: string
+ type: array
+ uid:
+ type: string
+ user:
+ type: string
+ type: object
+ type:
+ type: string
+ url:
+ type: string
+ required:
+ - name
+ - source
+ - type
+ type: object
+ type: array
+ type: object
+ required:
+ - clientIdentityExchanger
+ type: object
+ required:
+ - spec
+ type: object
+ required:
+ - access
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
index 13129290a..f98197ae2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
@@ -9,6 +9,15 @@ metadata:
k8s.io/version: v2
name: helm.toolkit.fluxcd.io-v2-helmreleases
spec:
+ connections:
+ - labels:
+ - offshoot
+ references:
+ - '{.metadata.namespace}-{.spec.chart.spec.chart}'
+ target:
+ apiVersion: source.toolkit.fluxcd.io/v1beta2
+ kind: HelmChart
+ type: MatchRef
resource:
group: helm.toolkit.fluxcd.io
kind: HelmRelease
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml
new file mode 100644
index 000000000..22d28c5be
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml
@@ -0,0 +1,64 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: identity.k8s.appscode.com
+ k8s.io/kind: ClusterIdentity
+ k8s.io/resource: clusteridentitys
+ k8s.io/version: v1alpha1
+ name: identity.k8s.appscode.com-v1alpha1-clusteridentitys
+spec:
+ resource:
+ group: identity.k8s.appscode.com
+ kind: ClusterIdentity
+ name: clusteridentitys
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml
new file mode 100644
index 000000000..11bfe6a86
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml
@@ -0,0 +1,119 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: identity.k8s.appscode.com
+ k8s.io/kind: SelfSubjectNamespaceAccessReview
+ k8s.io/resource: selfsubjectnamespaceaccessreviews
+ k8s.io/version: v1alpha1
+ name: identity.k8s.appscode.com-v1alpha1-selfsubjectnamespaceaccessreviews
+spec:
+ resource:
+ group: identity.k8s.appscode.com
+ kind: SelfSubjectNamespaceAccessReview
+ name: selfsubjectnamespaceaccessreviews
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: Spec holds information about the request being evaluated. user
+ and groups must be empty
+ properties:
+ nonResourceAttributes:
+ description: NonResourceAttributes describes information for a non-resource
+ access request
+ items:
+ description: NonResourceAttributes includes the authorization attributes
+ available for non-resource requests to the Authorizer interface
+ properties:
+ path:
+ description: Path is the URL path of the request
+ type: string
+ verb:
+ description: Verb is the standard HTTP verb
+ type: string
+ type: object
+ type: array
+ resourceAttributes:
+ description: ResourceAuthorizationAttributes describes information for
+ a resource access request
+ items:
+ description: ResourceAttributes includes the authorization attributes
+ available for resource requests to the Authorizer interface
+ properties:
+ group:
+ description: Group is the API Group of the Resource. "*" means
+ all.
+ type: string
+ name:
+ description: Name is the name of the resource being requested
+ for a "get" or deleted for a "delete". "" (empty) means all.
+ type: string
+ namespace:
+ description: Namespace is the namespace of the action being requested. Currently,
+ there is no distinction between no namespace and all namespaces
+ "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty)
+ is empty for cluster-scoped resources "" (empty) means "all"
+ for namespace scoped resources from a SubjectAccessReview or
+ SelfSubjectAccessReview
+ type: string
+ resource:
+ description: Resource is one of the existing resource types. "*"
+ means all.
+ type: string
+ subresource:
+ description: Subresource is one of the existing resource types. ""
+ means none.
+ type: string
+ verb:
+ description: 'Verb is a kubernetes resource API verb, like: get,
+ list, watch, create, update, delete, proxy. "*" means all.'
+ type: string
+ version:
+ description: Version is the API Version of the Resource. "*"
+ means all.
+ type: string
+ type: object
+ type: array
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/auditor.appscode.com/v1alpha1/siteinfos.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
similarity index 95%
rename from vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/auditor.appscode.com/v1alpha1/siteinfos.yaml
rename to vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
index 4b92e33a0..496daacae 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/auditor.appscode.com/v1alpha1/siteinfos.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
@@ -3,14 +3,14 @@ kind: ResourceDescriptor
metadata:
creationTimestamp: null
labels:
- k8s.io/group: auditor.appscode.com
+ k8s.io/group: identity.k8s.appscode.com
k8s.io/kind: SiteInfo
k8s.io/resource: siteinfos
k8s.io/version: v1alpha1
- name: auditor.appscode.com-v1alpha1-siteinfos
+ name: identity.k8s.appscode.com-v1alpha1-siteinfos
spec:
resource:
- group: auditor.appscode.com
+ group: identity.k8s.appscode.com
kind: SiteInfo
name: siteinfos
scope: Cluster
@@ -32,10 +32,18 @@ spec:
properties:
cluster:
properties:
+ apiEndpoint:
+ type: string
+ caBundle:
+ type: string
displayName:
type: string
name:
type: string
+ ownerID:
+ type: string
+ ownerType:
+ type: string
provider:
enum:
- Aws
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml
new file mode 100644
index 000000000..70531d923
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml
@@ -0,0 +1,100 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedCluster
+ k8s.io/resource: azureasomanagedclusters
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedclusters
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedCluster
+ name: azureasomanagedclusters
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedCluster is the Schema for the azureasomanagedclusters
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedClusterSpec defines the desired state of AzureASOManagedCluster.
+ properties:
+ controlPlaneEndpoint:
+ description: |-
+ ControlPlaneEndpoint is the location of the API server within the control plane. CAPZ manages this field
+ and it should not be set by the user. It fulfills Cluster API's cluster infrastructure provider contract.
+ Because this field is programmatically set by CAPZ after resource creation, we define it as +optional
+ in the API schema to permit resource admission.
+ properties:
+ host:
+ description: The hostname on which the API server is serving.
+ type: string
+ port:
+ description: The port on which the API server is serving.
+ format: int32
+ type: integer
+ required:
+ - host
+ - port
+ type: object
+ resources:
+ description: Resources are embedded ASO resources to be managed by this
+ resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml
new file mode 100644
index 000000000..88e550199
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml
@@ -0,0 +1,95 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedClusterTemplate
+ k8s.io/resource: azureasomanagedclustertemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedclustertemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedClusterTemplate
+ name: azureasomanagedclustertemplates
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedClusterTemplate is the Schema for the azureasomanagedclustertemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedClusterTemplateSpec defines the desired state
+ of AzureASOManagedClusterTemplate.
+ properties:
+ template:
+ description: AzureASOManagedClusterTemplateResource defines the templated
+ resource.
+ properties:
+ spec:
+ description: AzureASOManagedClusterTemplateResourceSpec defines
+ the desired state of the templated resource.
+ properties:
+ resources:
+ description: Resources are embedded ASO resources to be managed
+ by this resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ type: object
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml
new file mode 100644
index 000000000..697cbef43
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml
@@ -0,0 +1,88 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedControlPlane
+ k8s.io/resource: azureasomanagedcontrolplanes
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedcontrolplanes
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedControlPlane
+ name: azureasomanagedcontrolplanes
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedControlPlane is the Schema for the azureasomanagedcontrolplanes
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedControlPlaneSpec defines the desired state of
+ AzureASOManagedControlPlane.
+ properties:
+ resources:
+ description: Resources are embedded ASO resources to be managed by this
+ resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ version:
+ description: |-
+ Version is the Kubernetes version of the control plane. It fulfills Cluster API's control plane
+ provider contract.
+ type: string
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml
new file mode 100644
index 000000000..3747e337e
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml
@@ -0,0 +1,100 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedControlPlaneTemplate
+ k8s.io/resource: azureasomanagedcontrolplanetemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedcontrolplanetemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedControlPlaneTemplate
+ name: azureasomanagedcontrolplanetemplates
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedControlPlaneTemplate is the Schema for the azureasomanagedcontrolplanetemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedControlPlaneTemplateSpec defines the desired
+ state of AzureASOManagedControlPlane.
+ properties:
+ template:
+ description: AzureASOManagedControlPlaneResource defines the templated
+ resource.
+ properties:
+ spec:
+ description: AzureASOManagedControlPlaneTemplateResourceSpec defines
+ the desired state of the templated resource.
+ properties:
+ resources:
+ description: Resources are embedded ASO resources to be managed
+ by this resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ version:
+ description: |-
+ Version is the Kubernetes version of the control plane. It fulfills Cluster API's control plane
+ provider contract.
+ type: string
+ type: object
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml
new file mode 100644
index 000000000..7f3b20e30
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml
@@ -0,0 +1,90 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedMachinePool
+ k8s.io/resource: azureasomanagedmachinepools
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedmachinepools
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedMachinePool
+ name: azureasomanagedmachinepools
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedMachinePool is the Schema for the azureasomanagedmachinepools
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedMachinePoolSpec defines the desired state of
+ AzureASOManagedMachinePool.
+ properties:
+ providerIDList:
+ description: |-
+ ProviderIDList is the list of cloud provider IDs for the instances. It fulfills Cluster API's machine
+ pool infrastructure provider contract.
+ items:
+ type: string
+ type: array
+ resources:
+ description: Resources are embedded ASO resources to be managed by this
+ resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml
new file mode 100644
index 000000000..61f1e8118
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml
@@ -0,0 +1,100 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedMachinePoolTemplate
+ k8s.io/resource: azureasomanagedmachinepooltemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedmachinepooltemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedMachinePoolTemplate
+ name: azureasomanagedmachinepooltemplates
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: AzureASOManagedMachinePoolTemplate is the Schema for the azureasomanagedmachinepooltemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureASOManagedMachinePoolTemplateSpec defines the desired
+ state of AzureASOManagedMachinePoolTemplate.
+ properties:
+ template:
+ description: AzureASOManagedControlPlaneResource defines the templated
+ resource.
+ properties:
+ spec:
+ description: AzureASOManagedControlPlaneTemplateResourceSpec defines
+ the desired state of the templated resource.
+ properties:
+ resources:
+ description: Resources are embedded ASO resources to be managed
+ by this resource.
+ items:
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: array
+ version:
+ description: |-
+ Version is the Kubernetes version of the control plane. It fulfills Cluster API's control plane
+ provider contract.
+ type: string
+ type: object
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustercontrolleridentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustercontrolleridentities.yaml
index 5f94ae175..30e6e7fe6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustercontrolleridentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustercontrolleridentities.yaml
@@ -17,19 +17,24 @@ spec:
version: v1beta1
validation:
openAPIV3Schema:
- description: AWSClusterControllerIdentity is the Schema for the awsclustercontrolleridentities
- API It is used to grant access to use Cluster API Provider AWS Controller
- credentials.
+ description: |-
+ AWSClusterControllerIdentity is the Schema for the awsclustercontrolleridentities API
+ It is used to grant access to use Cluster API Provider AWS Controller credentials.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -60,13 +65,12 @@ spec:
description: Spec for this AWSClusterControllerIdentity.
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -77,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -114,11 +119,10 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterroleidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterroleidentities.yaml
index 85923ff66..51ab0e5cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterroleidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterroleidentities.yaml
@@ -17,18 +17,24 @@ spec:
version: v1beta1
validation:
openAPIV3Schema:
- description: AWSClusterRoleIdentity is the Schema for the awsclusterroleidentities
- API It is used to assume a role using the provided sourceRef.
+ description: |-
+ AWSClusterRoleIdentity is the Schema for the awsclusterroleidentities API
+ It is used to assume a role using the provided sourceRef.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -59,13 +65,12 @@ spec:
description: Spec for this AWSClusterRoleIdentity.
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -76,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -113,11 +119,10 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
@@ -130,26 +135,26 @@ spec:
minimum: 900
type: integer
externalID:
- description: A unique identifier that might be required when you assume
- a role in another account. If the administrator of the account to
- which the role belongs provided you with an external ID, then provide
- that value in the ExternalId parameter. This value can be any string,
- such as a passphrase or account number. A cross-account role is usually
- set up to trust everyone in an account. Therefore, the administrator
- of the trusting account might send an external ID to the administrator
- of the trusted account. That way, only someone with the ID can assume
- the role, rather than everyone in the account. For more information
- about the external ID, see How to Use an External ID When Granting
- Access to Your AWS Resources to a Third Party in the IAM User Guide.
+ description: |-
+ A unique identifier that might be required when you assume a role in another account.
+ If the administrator of the account to which the role belongs provided you with an
+ external ID, then provide that value in the ExternalId parameter. This value can be
+ any string, such as a passphrase or account number. A cross-account role is usually
+ set up to trust everyone in an account. Therefore, the administrator of the trusting
+ account might send an external ID to the administrator of the trusted account. That
+ way, only someone with the ID can assume the role, rather than everyone in the
+ account. For more information about the external ID, see How to Use an External ID
+ When Granting Access to Your AWS Resources to a Third Party in the IAM User Guide.
type: string
inlinePolicy:
description: An IAM policy as a JSON-encoded string that you want to
use as an inline session policy.
type: string
policyARNs:
- description: The Amazon Resource Names (ARNs) of the IAM managed policies
- that you want to use as managed session policies. The policies must
- exist in the same account as the role.
+ description: |-
+ The Amazon Resource Names (ARNs) of the IAM managed policies that you want
+ to use as managed session policies.
+ The policies must exist in the same account as the role.
items:
type: string
type: array
@@ -160,8 +165,9 @@ spec:
description: An identifier for the assumed role session
type: string
sourceIdentityRef:
- description: SourceIdentityRef is a reference to another identity which
- will be chained to do role assumption. All identity types are accepted.
+ description: |-
+ SourceIdentityRef is a reference to another identity which will be chained to do
+ role assumption. All identity types are accepted.
properties:
kind:
description: Kind of the identity.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusters.yaml
index 78246f1c6..71b07e4ef 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusters.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,39 +75,40 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
bastion:
description: Bastion contains options to configure the bastion host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks allowed
- to access the bastion host. They are set as ingress rules for
- the Bastion host's Security Group (defaults to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the bastion.
- If not specified, the AMI will default to one picked out in public
- space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no Ingress
- rules in the bastion host's security group. Requires AllowedCIDRBlocks
- to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion host
- instance with a public ip to access the VPC private network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance type for
- the bastion. If not specified, Cluster API Provider AWS will use
- t3.micro for all regions except us-east-1, where t2.micro will
- be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -125,33 +131,36 @@ spec:
customizing control plane behavior.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups sets the security groups used
- by the load balancer. Expected to be security group IDs This is
- optional - if not provided new security groups will be created
- for the load balancer
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
items:
type: string
type: array
crossZoneLoadBalancing:
- description: "CrossZoneLoadBalancing enables the classic ELB cross
- availability zone balancing. \n With cross-zone load balancing,
- each load balancer node for your Classic Load Balancer distributes
- requests evenly across the registered instances in all enabled
- Availability Zones. If cross-zone load balancing is disabled,
- each load balancer node distributes requests evenly across the
- registered instances in its Availability Zone only. \n Defaults
- to false."
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
type: boolean
healthCheckProtocol:
- description: HealthCheckProtocol sets the protocol type for classic
- ELB health check target default value is ClassicELBProtocolSSL
+ description: |-
+ HealthCheckProtocol sets the protocol type for classic ELB health check target
+ default value is ClassicELBProtocolSSL
type: string
name:
- description: Name sets the name of the classic ELB load balancer.
- As per AWS, the name must be unique within your set of load balancers
- for the region, must have a maximum of 32 characters, must contain
- only alphanumeric characters or hyphens, and cannot begin or end
- with a hyphen. Once set, the value cannot be changed.
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
+ set, the value cannot be changed.
maxLength: 32
pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
type: string
@@ -172,8 +181,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be used when
- reconciling this cluster
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -191,30 +201,32 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- used to look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines unless a
- machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- machine images when a machine does not specify an AMI. When set, this
- will be used for all cluster machines unless a machine specifies a
- different ImageLookupOrg. Supports substitutions for {{.BaseOS}} and
- {{.K8sVersion}} with the base OS and kubernetes version, respectively.
- The BaseOS will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced by
- kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look up machine
- images when a machine does not specify an AMI. When set, this will
- be used for all cluster machines unless a machine specifies a different
- ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
network:
description: NetworkSpec encapsulates all things related to AWS network.
@@ -223,10 +235,9 @@ spec:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply to control
- plane and worker node security groups. The source for the
- rule will be set to control plane and worker security group
- IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress rule for
CNI requirements.
@@ -254,9 +265,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of security
- groups to use for cluster instances This is optional - if not
- provided new security groups will be created for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -276,16 +287,15 @@ spec:
resource.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block to be used
- when the provider creates a managed VPC. A subnet can have
- an IPv4 and an IPv6 address. IPv6 is only supported in managed
- clusters, this field cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6 subnet.
- A subnet is IPv6 when it is associated with a VPC that has
- IPv6 enabled. IPv6 is only supported in managed clusters,
- this field cannot be set on AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public subnet.
@@ -293,12 +303,9 @@ spec:
that has a route to an internet gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed by
- the provider, in which case this is set on the public subnet
- where the NAT gateway resides. It is then used to determine
- routes for private subnets in the same AZ as the public
- subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id associated
@@ -316,28 +323,29 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how AZs should
- be selected if there are more AZs in a region than specified
- by AvailabilityZoneUsageLimit. There are 2 selection schemes:
- Ordered - selects based on alphabetical order Random - selects
- AZs randomly in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the maximum
- number of availability zones (AZ) that should be used in a
- region when automatically creating subnets. If a region has
- more than this number of AZs then this number of AZs will
- be picked randomly when creating default subnets. Defaults
- to 3
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
+ default subnets. Defaults to 3
minimum: 1
type: integer
cidrBlock:
- description: CidrBlock is the CIDR block to be used when the
- provider creates a managed VPC. Defaults to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
type: string
id:
description: ID is the vpc-id of the VPC this provider should
@@ -348,9 +356,9 @@ spec:
associated with the VPC.
type: string
ipv6:
- description: IPv6 contains ipv6 specific settings for the network.
- Supported only in managed clusters. This field cannot be set
- on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
description: CidrBlock is the CIDR block provided by Amazon
@@ -377,15 +385,16 @@ spec:
description: The AWS Region the cluster lives in.
type: string
s3Bucket:
- description: S3Bucket contains options to configure a supporting S3
- bucket for this cluster - currently used for nodes requiring Ignition
- (https://coreos.github.io/ignition/) for bootstrapping (requires BootstrapFormatIgnition
- feature flag to be enabled).
+ description: |-
+ S3Bucket contains options to configure a supporting S3 bucket for this
+ cluster - currently used for nodes requiring Ignition
+ (https://coreos.github.io/ignition/) for bootstrapping (requires
+ BootstrapFormatIgnition feature flag to be enabled).
properties:
controlPlaneIAMInstanceProfile:
- description: ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile,
- which will be allowed to read control-plane node bootstrap data
- from S3 Bucket.
+ description: |-
+ ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile, which will be allowed
+ to read control-plane node bootstrap data from S3 Bucket.
type: string
name:
description: Name defines name of S3 Bucket to be created.
@@ -394,9 +403,9 @@ spec:
pattern: ^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
type: string
nodesIAMInstanceProfiles:
- description: NodesIAMInstanceProfiles is a list of IAM instance
- profiles, which will be allowed to read worker nodes bootstrap
- data from S3 Bucket.
+ description: |-
+ NodesIAMInstanceProfiles is a list of IAM instance profiles, which will be allowed to read
+ worker nodes bootstrap data from S3 Bucket.
items:
type: string
type: array
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterstaticidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterstaticidentities.yaml
index 37b05d982..58e603d28 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterstaticidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclusterstaticidentities.yaml
@@ -17,19 +17,24 @@ spec:
version: v1beta1
validation:
openAPIV3Schema:
- description: AWSClusterStaticIdentity is the Schema for the awsclusterstaticidentities
- API It represents a reference to an AWS access key ID and secret access key,
- stored in a secret.
+ description: |-
+ AWSClusterStaticIdentity is the Schema for the awsclusterstaticidentities API
+ It represents a reference to an AWS access key ID and secret access key, stored in a secret.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -60,13 +65,12 @@ spec:
description: Spec for this AWSClusterStaticIdentity
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -77,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -114,20 +119,21 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
type: object
secretRef:
- description: 'Reference to a secret containing the credentials. The
- secret should contain the following data keys: AccessKeyID: AKIAIOSFODNN7EXAMPLE
- SecretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY SessionToken:
- Optional'
+ description: |-
+ Reference to a secret containing the credentials. The secret should
+ contain the following data keys:
+ AccessKeyID: AKIAIOSFODNN7EXAMPLE
+ SecretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
+ SessionToken: Optional
type: string
required:
- secretRef
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustertemplates.yaml
index 5f843b024..20e3f067b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsclustertemplates.yaml
@@ -21,14 +21,19 @@ spec:
Cluster Templates.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,25 +72,31 @@ spec:
description: AWSClusterTemplateSpec defines the desired state of AWSClusterTemplate.
properties:
template:
+ description: AWSClusterTemplateResource defines the desired state of
+ AWSClusterTemplate.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -95,42 +106,41 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to AWS resources managed by the AWS provider, in addition
- to the ones added by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
bastion:
description: Bastion contains options to configure the bastion
host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks
- allowed to access the bastion host. They are set as ingress
- rules for the Bastion host's Security Group (defaults
- to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the
- bastion. If not specified, the AMI will default to one
- picked out in public space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no
- Ingress rules in the bastion host's security group. Requires
- AllowedCIDRBlocks to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion
- host instance with a public ip to access the VPC private
- network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance
- type for the bastion. If not specified, Cluster API Provider
- AWS will use t3.micro for all regions except us-east-1,
- where t2.micro will be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -153,33 +163,35 @@ spec:
for customizing control plane behavior.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups sets the security
- groups used by the load balancer. Expected to be security
- group IDs This is optional - if not provided new security
- groups will be created for the load balancer
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
items:
type: string
type: array
crossZoneLoadBalancing:
- description: "CrossZoneLoadBalancing enables the classic
- ELB cross availability zone balancing. \n With cross-zone
- load balancing, each load balancer node for your Classic
- Load Balancer distributes requests evenly across the registered
- instances in all enabled Availability Zones. If cross-zone
- load balancing is disabled, each load balancer node distributes
- requests evenly across the registered instances in its
- Availability Zone only. \n Defaults to false."
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
type: boolean
healthCheckProtocol:
- description: HealthCheckProtocol sets the protocol type
- for classic ELB health check target default value is ClassicELBProtocolSSL
+ description: |-
+ HealthCheckProtocol sets the protocol type for classic ELB health check target
+ default value is ClassicELBProtocolSSL
type: string
name:
- description: Name sets the name of the classic ELB load
- balancer. As per AWS, the name must be unique within your
- set of load balancers for the region, must have a maximum
- of 32 characters, must contain only alphanumeric characters
- or hyphens, and cannot begin or end with a hyphen. Once
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
set, the value cannot be changed.
maxLength: 32
pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
@@ -202,8 +214,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be
- used when reconciling this cluster
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -221,31 +234,32 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system used to look up machine images when a machine does
- not specify an AMI. When set, this will be used for all cluster
- machines unless a machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to
- look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines
- unless a machine specifies a different ImageLookupOrg. Supports
- substitutions for {{.BaseOS}} and {{.K8sVersion}} with the
- base OS and kubernetes version, respectively. The BaseOS will
- be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the
- ubuntu base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look
- up machine images when a machine does not specify an AMI.
- When set, this will be used for all cluster machines unless
- a machine specifies a different ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
network:
description: NetworkSpec encapsulates all things related to
@@ -255,10 +269,9 @@ spec:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply
- to control plane and worker node security groups.
- The source for the rule will be set to control plane
- and worker security group IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress
rule for CNI requirements.
@@ -286,10 +299,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of
- security groups to use for cluster instances This is optional
- - if not provided new security groups will be created
- for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -309,18 +321,15 @@ spec:
this resource.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block
- to be used when the provider creates a managed VPC.
- A subnet can have an IPv4 and an IPv6 address. IPv6
- is only supported in managed clusters, this field
- cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6
- subnet. A subnet is IPv6 when it is associated with
- a VPC that has IPv6 enabled. IPv6 is only supported
- in managed clusters, this field cannot be set on
- AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public
@@ -329,12 +338,9 @@ spec:
gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed
- by the provider, in which case this is set on the
- public subnet where the NAT gateway resides. It
- is then used to determine routes for private subnets
- in the same AZ as the public subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id
@@ -353,30 +359,29 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how
- AZs should be selected if there are more AZs in a
- region than specified by AvailabilityZoneUsageLimit.
- There are 2 selection schemes: Ordered - selects based
- on alphabetical order Random - selects AZs randomly
- in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the
- maximum number of availability zones (AZ) that should
- be used in a region when automatically creating subnets.
- If a region has more than this number of AZs then
- this number of AZs will be picked randomly when creating
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
default subnets. Defaults to 3
minimum: 1
type: integer
cidrBlock:
- description: CidrBlock is the CIDR block to be used
- when the provider creates a managed VPC. Defaults
- to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
type: string
id:
description: ID is the vpc-id of the VPC this provider
@@ -387,9 +392,9 @@ spec:
gateway associated with the VPC.
type: string
ipv6:
- description: IPv6 contains ipv6 specific settings for
- the network. Supported only in managed clusters. This
- field cannot be set on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
description: CidrBlock is the CIDR block provided
@@ -417,15 +422,16 @@ spec:
description: The AWS Region the cluster lives in.
type: string
s3Bucket:
- description: S3Bucket contains options to configure a supporting
- S3 bucket for this cluster - currently used for nodes requiring
- Ignition (https://coreos.github.io/ignition/) for bootstrapping
- (requires BootstrapFormatIgnition feature flag to be enabled).
+ description: |-
+ S3Bucket contains options to configure a supporting S3 bucket for this
+ cluster - currently used for nodes requiring Ignition
+ (https://coreos.github.io/ignition/) for bootstrapping (requires
+ BootstrapFormatIgnition feature flag to be enabled).
properties:
controlPlaneIAMInstanceProfile:
- description: ControlPlaneIAMInstanceProfile is a name of
- the IAMInstanceProfile, which will be allowed to read
- control-plane node bootstrap data from S3 Bucket.
+ description: |-
+ ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile, which will be allowed
+ to read control-plane node bootstrap data from S3 Bucket.
type: string
name:
description: Name defines name of S3 Bucket to be created.
@@ -434,9 +440,9 @@ spec:
pattern: ^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
type: string
nodesIAMInstanceProfiles:
- description: NodesIAMInstanceProfiles is a list of IAM instance
- profiles, which will be allowed to read worker nodes bootstrap
- data from S3 Bucket.
+ description: |-
+ NodesIAMInstanceProfiles is a list of IAM instance profiles, which will be allowed to read
+ worker nodes bootstrap data from S3 Bucket.
items:
type: string
type: array
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsfargateprofiles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsfargateprofiles.yaml
index 02c046430..32c2e17e5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsfargateprofiles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsfargateprofiles.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSFargateProfile is the Schema for the awsfargateprofiles API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,9 +73,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
clusterName:
description: ClusterName is the name of the Cluster this object belongs
@@ -81,10 +86,11 @@ spec:
description: ProfileName specifies the profile name.
type: string
roleName:
- description: RoleName specifies the name of IAM role for this fargate
- pool If the role is pre-existing we will treat it as unmanaged and
- not delete it on deletion. If the EKSEnableIAM feature flag is true
- and no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role for this fargate pool
+ If the role is pre-existing we will treat it as unmanaged
+ and not delete it on deletion. If the EKSEnableIAM feature
+ flag is true and no name is supplied then a role is created.
type: string
selectors:
description: Selectors specify fargate pod selectors.
@@ -105,8 +111,9 @@ spec:
type: object
type: array
subnetIDs:
- description: SubnetIDs specifies which subnets are used for the auto
- scaling group of this nodegroup.
+ description: |-
+ SubnetIDs specifies which subnets are used for the
+ auto scaling group of this nodegroup.
items:
type: string
type: array
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinepools.yaml
index 1ceba8b36..9f0228959 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinepools.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSMachinePool is the Schema for the awsmachinepools API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,8 +73,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the AWS provider.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider.
type: object
availabilityZones:
description: AvailabilityZones is an array of availability zones instances
@@ -82,20 +88,21 @@ spec:
to use when an instance is launched.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instances. These
- security groups would be set in addition to any security groups
- defined at the cluster level or in the actuator.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instances. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters may
- be specified. Specifying more than one will result in a validation
- error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the rules
- defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -135,26 +142,29 @@ spec:
type: string
type: object
iamInstanceProfile:
- description: The name or the Amazon Resource Name (ARN) of the instance
- profile associated with the IAM role for the instance. The instance
- profile contains the IAM role.
+ description: |-
+ The name or the Amazon Resource Name (ARN) of the instance profile associated
+ with the IAM role for the instance. The instance profile contains the IAM
+ role.
type: string
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look
- up the image for this machine It will be ignored if an explicit
- AMI is set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}}
- with the base OS and kubernetes version, respectively. The BaseOS
- will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for
@@ -179,9 +189,9 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be used.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
The key must already exist and be accessible by the controller.
type: string
iops:
@@ -190,9 +200,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -218,16 +228,17 @@ spec:
type: string
type: object
sshKeyName:
- description: SSHKeyName is the name of the ssh key to attach to
- the instance. Valid values are empty string (do not use SSH keys),
- a valid SSH key name, or omitted (use the default SSH key name)
+ description: |-
+ SSHKeyName is the name of the ssh key to attach to the instance. Valid values are empty string
+ (do not use SSH keys), a valid SSH key name, or omitted (use the default SSH key name)
type: string
versionNumber:
- description: 'VersionNumber is the version of the launch template
- that is applied. Typically a new version is created when at least
- one of the following happens: 1) A new launch template spec is
- applied. 2) One or more parameters in an existing template is
- changed. 3) A new AMI is discovered.'
+ description: |-
+ VersionNumber is the version of the launch template that is applied.
+ Typically a new version is created when at least one of the following happens:
+ 1) A new launch template spec is applied.
+ 2) One or more parameters in an existing template is changed.
+ 3) A new AMI is discovered.
format: int64
type: integer
type: object
@@ -236,9 +247,9 @@ spec:
feature
type: boolean
defaultCoolDown:
- description: The amount of time, in seconds, after a scaling activity
- completes before another scaling activity can start. If no value is
- supplied by user a default value of 300 seconds is set
+ description: |-
+ The amount of time, in seconds, after a scaling activity completes before another scaling activity can start.
+ If no value is supplied by user a default value of 300 seconds is set
type: string
maxSize:
default: 1
@@ -286,9 +297,9 @@ spec:
type: object
overrides:
items:
- description: Overrides are used to override the instance type
- specified by the launch template with multiple instance types
- that can be used to launch On-Demand Instances and Spot Instances.
+ description: |-
+ Overrides are used to override the instance type specified by the launch template with multiple
+ instance types that can be used to launch On-Demand Instances and Spot Instances.
properties:
instanceType:
type: string
@@ -301,10 +312,9 @@ spec:
description: ProviderID is the ARN of the associated ASG
type: string
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
@@ -313,36 +323,38 @@ spec:
with the instance refresh request.
properties:
instanceWarmup:
- description: The number of seconds until a newly launched instance
- is configured and ready to use. During this time, the next replacement
- will not be initiated. The default is to use the value for the
- health check grace period defined for the group.
+ description: |-
+ The number of seconds until a newly launched instance is configured and ready
+ to use. During this time, the next replacement will not be initiated.
+ The default is to use the value for the health check grace period defined for the group.
format: int64
type: integer
minHealthyPercentage:
- description: The amount of capacity as a percentage in ASG that
- must remain healthy during an instance refresh. The default is
- 90.
+ description: |-
+ The amount of capacity as a percentage in ASG that must remain healthy
+ during an instance refresh. The default is 90.
format: int64
type: integer
strategy:
- description: The strategy to use for the instance refresh. The only
- valid value is Rolling. A rolling update is an update that is
- applied to all instances in an Auto Scaling group until all instances
- have been updated.
+ description: |-
+ The strategy to use for the instance refresh. The only valid value is Rolling.
+ A rolling update is an update that is applied to all instances in an Auto
+ Scaling group until all instances have been updated.
type: string
type: object
subnets:
description: Subnets is an array of subnet configurations
items:
- description: AWSResourceReference is a reference to a specific AWS
- resource by ID or filters. Only one of ID or Filters may be specified.
- Specifying more than one will result in a validation error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachines.yaml
index 8e63cc6b3..5e3528422 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachines.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSMachine is the schema for Amazon EC2 machines.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -66,25 +71,27 @@ spec:
description: AWSMachineSpec defines the desired state of an Amazon EC2 instance.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references to security
- groups that should be applied to the instance. These security groups
- would be set in addition to any security groups defined at the cluster
- level or in the actuator. It is possible to specify either IDs of
- Filters. Using Filters will cause additional requests to AWS API and
- if tags change the attached security groups might change too.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instance. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator. It is possible to specify either IDs of Filters. Using Filters
+ will cause additional requests to AWS API and if tags change the attached security groups might change too.
items:
- description: AWSResourceReference is a reference to a specific AWS
- resource by ID or filters. Only one of ID or Filters may be specified.
- Specifying more than one will result in a validation error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
arn:
- description: 'ARN of resource. Deprecated: This field has no function
- and is going to be removed in the next release.'
+ description: |-
+ ARN of resource.
+ Deprecated: This field has no function and is going to be removed in the next release.
type: string
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
@@ -110,10 +117,10 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the AWS provider.
- If both the AWSCluster and the AWSMachine specify the same tag name
- with different values, the AWSMachine's value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider. If both the AWSCluster and the AWSMachine specify the same tag name with different values, the
+ AWSMachine's value takes precedence.
type: object
ami:
description: AMI is the reference to the AMI from which to create the
@@ -131,15 +138,16 @@ spec:
type: string
type: object
cloudInit:
- description: CloudInit defines options related to the bootstrapping
- systems where CloudInit is used.
+ description: |-
+ CloudInit defines options related to the bootstrapping systems where
+ CloudInit is used.
properties:
insecureSkipSecretsManager:
- description: InsecureSkipSecretsManager, when set to true will not
- use AWS Secrets Manager or AWS Systems Manager Parameter Store
- to ensure privacy of userdata. By default, a cloud-init boothook
- shell script is prepended to download the userdata from Secrets
- Manager and additionally delete the secret.
+ description: |-
+ InsecureSkipSecretsManager, when set to true will not use AWS Secrets Manager
+ or AWS Systems Manager Parameter Store to ensure privacy of userdata.
+ By default, a cloud-init boothook shell script is prepended to download
+ the userdata from Secrets Manager and additionally delete the secret.
type: boolean
secretCount:
description: SecretCount is the number of secrets used to form the
@@ -147,26 +155,26 @@ spec:
format: int32
type: integer
secretPrefix:
- description: SecretPrefix is the prefix for the secret name. This
- is stored temporarily, and deleted when the machine registers
- as a node against the workload cluster.
+ description: |-
+ SecretPrefix is the prefix for the secret name. This is stored
+ temporarily, and deleted when the machine registers as a node against
+ the workload cluster.
type: string
secureSecretsBackend:
- description: SecureSecretsBackend, when set to parameter-store will
- utilize the AWS Systems Manager Parameter Storage to distribute
- secrets. By default or with the value of secrets-manager, will
- use AWS Secrets Manager instead.
+ description: |-
+ SecureSecretsBackend, when set to parameter-store will utilize the AWS Systems Manager
+ Parameter Storage to distribute secrets. By default or with the value of secrets-manager,
+ will use AWS Secrets Manager instead.
enum:
- secrets-manager
- ssm-parameter-store
type: string
type: object
failureDomain:
- description: FailureDomain is the failure domain unique identifier this
- Machine should be attached to, as defined in Cluster API. For this
- infrastructure provider, the ID is equivalent to an AWS Availability
- Zone. If multiple subnets are matched for the availability zone, the
- first one returned is picked.
+ description: |-
+ FailureDomain is the failure domain unique identifier this Machine should be attached to, as defined in Cluster API.
+ For this infrastructure provider, the ID is equivalent to an AWS Availability Zone.
+ If multiple subnets are matched for the availability zone, the first one returned is picked.
type: string
iamInstanceProfile:
description: IAMInstanceProfile is a name of an IAM instance profile
@@ -185,21 +193,23 @@ spec:
type: string
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- the image for this machine It will be ignored if an explicit AMI is
- set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with
- the base OS and kubernetes version, respectively. The BaseOS will
- be the value in ImageLookupBaseOS or ubuntu (the default), and the
- kubernetes version as defined by the packages produced by kubernetes/release
- without v as a prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example,
- the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for image
@@ -214,8 +224,9 @@ spec:
minLength: 2
type: string
networkInterfaces:
- description: NetworkInterfaces is a list of ENIs to associate with the
- instance. A maximum of 2 may be specified.
+ description: |-
+ NetworkInterfaces is a list of ENIs to associate with the instance.
+ A maximum of 2 may be specified.
items:
type: string
maxItems: 2
@@ -234,10 +245,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt the
- volume. Can be either a KMS key ID or ARN. If Encrypted is set
- and this is omitted, the default AWS key will be used. The key
- must already exist and be accessible by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the disk.
@@ -245,9 +256,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -268,9 +279,12 @@ spec:
cloud provider.
type: string
publicIP:
- description: 'PublicIP specifies whether the instance should get a public
- IP. Precedence for this setting is as follows: 1. This field if set
- 2. Cluster/flavor setting 3. Subnet default'
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Precedence for this setting is as follows:
+ 1. This field if set
+ 2. Cluster/flavor setting
+ 3. Subnet default
type: boolean
rootVolume:
description: RootVolume encapsulates the configuration options for the
@@ -284,10 +298,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt the
- volume. Can be either a KMS key ID or ARN. If Encrypted is set
- and this is omitted, the default AWS key will be used. The key
- must already exist and be accessible by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the disk.
@@ -295,9 +309,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever is
- greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -327,17 +341,20 @@ spec:
SSH key name, or omitted (use the default SSH key name)
type: string
subnet:
- description: Subnet is a reference to the subnet to use for this instance.
- If not specified, the cluster subnet will be used.
+ description: |-
+ Subnet is a reference to the subnet to use for this instance. If not specified,
+ the cluster subnet will be used.
properties:
arn:
- description: 'ARN of resource. Deprecated: This field has no function
- and is going to be removed in the next release.'
+ description: |-
+ ARN of resource.
+ Deprecated: This field has no function and is going to be removed in the next release.
type: string
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
@@ -368,10 +385,10 @@ spec:
- host
type: string
uncompressedUserData:
- description: UncompressedUserData specify whether the user data is gzip-compressed
- before it is sent to ec2 instance. cloud-init has built-in support
- for gzip-compressed user data user data stored in aws secret manager
- is always gzip-compressed.
+ description: |-
+ UncompressedUserData specify whether the user data is gzip-compressed before it is sent to ec2 instance.
+ cloud-init has built-in support for gzip-compressed user data
+ user data stored in aws secret manager is always gzip-compressed.
type: boolean
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinetemplates.yaml
index 991142849..0b357381b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmachinetemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,23 +76,27 @@ spec:
create am AWSMachine from a template.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -95,28 +104,27 @@ spec:
the machine.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instance.
- These security groups would be set in addition to any security
- groups defined at the cluster level or in the actuator. It
- is possible to specify either IDs of Filters. Using Filters
- will cause additional requests to AWS API and if tags change
- the attached security groups might change too.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instance. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator. It is possible to specify either IDs of Filters. Using Filters
+ will cause additional requests to AWS API and if tags change the attached security groups might change too.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters
- may be specified. Specifying more than one will result in
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
a validation error.
properties:
arn:
- description: 'ARN of resource. Deprecated: This field
- has no function and is going to be removed in the next
- release.'
+ description: |-
+ ARN of resource.
+ Deprecated: This field has no function and is going to be removed in the next release.
type: string
filters:
- description: 'Filters is a set of key/value pairs used
- to identify a resource They are applied according to
- the rules defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an
AWS resource.
@@ -144,11 +152,10 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to an instance, in addition to the ones added by default by
- the AWS provider. If both the AWSCluster and the AWSMachine
- specify the same tag name with different values, the AWSMachine's
- value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider. If both the AWSCluster and the AWSMachine specify the same tag name with different values, the
+ AWSMachine's value takes precedence.
type: object
ami:
description: AMI is the reference to the AMI from which to create
@@ -166,16 +173,16 @@ spec:
type: string
type: object
cloudInit:
- description: CloudInit defines options related to the bootstrapping
- systems where CloudInit is used.
+ description: |-
+ CloudInit defines options related to the bootstrapping systems where
+ CloudInit is used.
properties:
insecureSkipSecretsManager:
- description: InsecureSkipSecretsManager, when set to true
- will not use AWS Secrets Manager or AWS Systems Manager
- Parameter Store to ensure privacy of userdata. By default,
- a cloud-init boothook shell script is prepended to download
- the userdata from Secrets Manager and additionally delete
- the secret.
+ description: |-
+ InsecureSkipSecretsManager, when set to true will not use AWS Secrets Manager
+ or AWS Systems Manager Parameter Store to ensure privacy of userdata.
+ By default, a cloud-init boothook shell script is prepended to download
+ the userdata from Secrets Manager and additionally delete the secret.
type: boolean
secretCount:
description: SecretCount is the number of secrets used to
@@ -183,26 +190,26 @@ spec:
format: int32
type: integer
secretPrefix:
- description: SecretPrefix is the prefix for the secret name.
- This is stored temporarily, and deleted when the machine
- registers as a node against the workload cluster.
+ description: |-
+ SecretPrefix is the prefix for the secret name. This is stored
+ temporarily, and deleted when the machine registers as a node against
+ the workload cluster.
type: string
secureSecretsBackend:
- description: SecureSecretsBackend, when set to parameter-store
- will utilize the AWS Systems Manager Parameter Storage
- to distribute secrets. By default or with the value of
- secrets-manager, will use AWS Secrets Manager instead.
+ description: |-
+ SecureSecretsBackend, when set to parameter-store will utilize the AWS Systems Manager
+ Parameter Storage to distribute secrets. By default or with the value of secrets-manager,
+ will use AWS Secrets Manager instead.
enum:
- secrets-manager
- ssm-parameter-store
type: string
type: object
failureDomain:
- description: FailureDomain is the failure domain unique identifier
- this Machine should be attached to, as defined in Cluster
- API. For this infrastructure provider, the ID is equivalent
- to an AWS Availability Zone. If multiple subnets are matched
- for the availability zone, the first one returned is picked.
+ description: |-
+ FailureDomain is the failure domain unique identifier this Machine should be attached to, as defined in Cluster API.
+ For this infrastructure provider, the ID is equivalent to an AWS Availability Zone.
+ If multiple subnets are matched for the availability zone, the first one returned is picked.
type: string
iamInstanceProfile:
description: IAMInstanceProfile is a name of an IAM instance
@@ -221,22 +228,23 @@ spec:
type: string
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to
- look up the image for this machine It will be ignored if an
- explicit AMI is set. Supports substitutions for {{.BaseOS}}
- and {{.K8sVersion}} with the base OS and kubernetes version,
- respectively. The BaseOS will be the value in ImageLookupBaseOS
- or ubuntu (the default), and the kubernetes version as defined
- by the packages produced by kubernetes/release without v as
- a prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example,
- the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the
- ubuntu base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use
@@ -251,8 +259,9 @@ spec:
minLength: 2
type: string
networkInterfaces:
- description: NetworkInterfaces is a list of ENIs to associate
- with the instance. A maximum of 2 may be specified.
+ description: |-
+ NetworkInterfaces is a list of ENIs to associate with the instance.
+ A maximum of 2 may be specified.
items:
type: string
maxItems: 2
@@ -272,11 +281,10 @@ spec:
encrypted or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will
- be used. The key must already exist and be accessible
- by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for
@@ -284,9 +292,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage
- device. Must be greater than the image snapshot size
- or 8 (whichever is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -308,9 +316,12 @@ spec:
by the cloud provider.
type: string
publicIP:
- description: 'PublicIP specifies whether the instance should
- get a public IP. Precedence for this setting is as follows:
- 1. This field if set 2. Cluster/flavor setting 3. Subnet default'
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Precedence for this setting is as follows:
+ 1. This field if set
+ 2. Cluster/flavor setting
+ 3. Subnet default
type: boolean
rootVolume:
description: RootVolume encapsulates the configuration options
@@ -324,11 +335,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be
- used. The key must already exist and be accessible by
- the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the
@@ -336,9 +346,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage
- device. Must be greater than the image snapshot size or
- 8 (whichever is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -370,18 +380,20 @@ spec:
SSH key name)
type: string
subnet:
- description: Subnet is a reference to the subnet to use for
- this instance. If not specified, the cluster subnet will be
- used.
+ description: |-
+ Subnet is a reference to the subnet to use for this instance. If not specified,
+ the cluster subnet will be used.
properties:
arn:
- description: 'ARN of resource. Deprecated: This field has
- no function and is going to be removed in the next release.'
+ description: |-
+ ARN of resource.
+ Deprecated: This field has no function and is going to be removed in the next release.
type: string
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the
- rules defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -414,10 +426,10 @@ spec:
- host
type: string
uncompressedUserData:
- description: UncompressedUserData specify whether the user data
- is gzip-compressed before it is sent to ec2 instance. cloud-init
- has built-in support for gzip-compressed user data user data
- stored in aws secret manager is always gzip-compressed.
+ description: |-
+ UncompressedUserData specify whether the user data is gzip-compressed before it is sent to ec2 instance.
+ cloud-init has built-in support for gzip-compressed user data
+ user data stored in aws secret manager is always gzip-compressed.
type: boolean
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmanagedmachinepools.yaml
index 5acea3ebb..035000b5c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/awsmanagedmachinepools.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,9 +74,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
amiType:
default: AL2_x86_64
@@ -80,12 +85,15 @@ spec:
- AL2_x86_64
- AL2_x86_64_GPU
- AL2_ARM_64
+ - AL2023_x86_64_STANDARD
+ - AL2023_ARM_64_STANDARD
- CUSTOM
type: string
amiVersion:
- description: AMIVersion defines the desired AMI release version. If
- no version number is supplied then the latest version for the Kubernetes
- version will be used
+ description: |-
+ AMIVersion defines the desired AMI release version. If no version number
+ is supplied then the latest version for the Kubernetes version
+ will be used
minLength: 2
type: string
availabilityZones:
@@ -95,26 +103,27 @@ spec:
type: string
type: array
awsLaunchTemplate:
- description: AWSLaunchTemplate specifies the launch template to use
- to create the managed node group. If AWSLaunchTemplate is specified,
- certain node group configuraions outside of launch template are prohibited
- (https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html).
+ description: |-
+ AWSLaunchTemplate specifies the launch template to use to create the managed node group.
+ If AWSLaunchTemplate is specified, certain node group configuraions outside of launch template
+ are prohibited (https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html).
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instances. These
- security groups would be set in addition to any security groups
- defined at the cluster level or in the actuator.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instances. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters may
- be specified. Specifying more than one will result in a validation
- error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the rules
- defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -154,26 +163,29 @@ spec:
type: string
type: object
iamInstanceProfile:
- description: The name or the Amazon Resource Name (ARN) of the instance
- profile associated with the IAM role for the instance. The instance
- profile contains the IAM role.
+ description: |-
+ The name or the Amazon Resource Name (ARN) of the instance profile associated
+ with the IAM role for the instance. The instance profile contains the IAM
+ role.
type: string
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look
- up the image for this machine It will be ignored if an explicit
- AMI is set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}}
- with the base OS and kubernetes version, respectively. The BaseOS
- will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for
@@ -198,9 +210,9 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be used.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
The key must already exist and be accessible by the controller.
type: string
iops:
@@ -209,9 +221,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -237,16 +249,17 @@ spec:
type: string
type: object
sshKeyName:
- description: SSHKeyName is the name of the ssh key to attach to
- the instance. Valid values are empty string (do not use SSH keys),
- a valid SSH key name, or omitted (use the default SSH key name)
+ description: |-
+ SSHKeyName is the name of the ssh key to attach to the instance. Valid values are empty string
+ (do not use SSH keys), a valid SSH key name, or omitted (use the default SSH key name)
type: string
versionNumber:
- description: 'VersionNumber is the version of the launch template
- that is applied. Typically a new version is created when at least
- one of the following happens: 1) A new launch template spec is
- applied. 2) One or more parameters in an existing template is
- changed. 3) A new AMI is discovered.'
+ description: |-
+ VersionNumber is the version of the launch template that is applied.
+ Typically a new version is created when at least one of the following happens:
+ 1) A new launch template spec is applied.
+ 2) One or more parameters in an existing template is changed.
+ 3) A new AMI is discovered.
format: int64
type: integer
type: object
@@ -263,10 +276,11 @@ spec:
format: int32
type: integer
eksNodegroupName:
- description: EKSNodegroupName specifies the name of the nodegroup in
- AWS corresponding to this MachinePool. If you don't specify a name
- then a default name will be created based on the namespace and name
- of the managed machine pool.
+ description: |-
+ EKSNodegroupName specifies the name of the nodegroup in AWS
+ corresponding to this MachinePool. If you don't specify a name
+ then a default name will be created based on the namespace and
+ name of the managed machine pool.
type: string
instanceType:
description: InstanceType specifies the AWS instance type
@@ -277,7 +291,8 @@ spec:
description: Labels specifies labels for the Kubernetes node objects
type: object
providerIDList:
- description: ProviderIDList are the provider IDs of instances in the
+ description: |-
+ ProviderIDList are the provider IDs of instances in the
autoscaling group corresponding to the nodegroup represented by this
machine pool
items:
@@ -297,23 +312,25 @@ spec:
type: string
type: array
sshKeyName:
- description: SSHKeyName specifies which EC2 SSH key can be used
- to access machines. If left empty, the key from the control plane
- is used.
+ description: |-
+ SSHKeyName specifies which EC2 SSH key can be used to access machines.
+ If left empty, the key from the control plane is used.
type: string
type: object
roleAdditionalPolicies:
- description: RoleAdditionalPolicies allows you to attach additional
- polices to the node group role. You must enable the EKSAllowAddRoles
+ description: |-
+ RoleAdditionalPolicies allows you to attach additional polices to
+ the node group role. You must enable the EKSAllowAddRoles
feature flag to incorporate these into the created role.
items:
type: string
type: array
roleName:
- description: RoleName specifies the name of IAM role for the node group.
- If the role is pre-existing we will treat it as unmanaged and not
- delete it on deletion. If the EKSEnableIAM feature flag is true and
- no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role for the node group.
+ If the role is pre-existing we will treat it as unmanaged
+ and not delete it on deletion. If the EKSEnableIAM feature
+ flag is true and no name is supplied then a role is created.
type: string
scaling:
description: Scaling specifies scaling for the ASG behind this pool
@@ -326,8 +343,9 @@ spec:
type: integer
type: object
subnetIDs:
- description: SubnetIDs specifies which subnets are used for the auto
- scaling group of this nodegroup
+ description: |-
+ SubnetIDs specifies which subnets are used for the
+ auto scaling group of this nodegroup
items:
type: string
type: array
@@ -357,20 +375,21 @@ spec:
type: object
type: array
updateConfig:
- description: UpdateConfig holds the optional config to control the behaviour
- of the update to the nodegroup.
+ description: |-
+ UpdateConfig holds the optional config to control the behaviour of the update
+ to the nodegroup.
properties:
maxUnavailable:
- description: MaxUnavailable is the maximum number of nodes unavailable
- at once during a version update. Nodes will be updated in parallel.
- The maximum number is 100.
+ description: |-
+ MaxUnavailable is the maximum number of nodes unavailable at once during a version update.
+ Nodes will be updated in parallel. The maximum number is 100.
maximum: 100
minimum: 1
type: integer
maxUnavailablePrecentage:
- description: MaxUnavailablePercentage is the maximum percentage
- of nodes unavailable during a version update. This percentage
- of nodes will be updated in parallel, up to 100 nodes at once.
+ description: |-
+ MaxUnavailablePercentage is the maximum percentage of nodes unavailable during a version update. This
+ percentage of nodes will be updated in parallel, up to 100 nodes at once.
maximum: 100
minimum: 1
type: integer
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
index d6a795d61..c37fca125 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,14 +73,12 @@ spec:
to create an AzureIdentity.
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify the namespaces the
- clusters are allowed to use the identity from. Namespaces can be selected
- either using an array of namespaces or with label selector. An empty
- allowedNamespaces object indicates that AzureClusters can use this
- identity from any namespace. If this object is nil, no namespaces
- will be allowed (default behaviour, if this field is not provided)
- A namespace should be either in the NamespaceList or match with Selector
- to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify the namespaces the clusters are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AzureClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -86,36 +89,39 @@ spec:
nullable: true
type: array
selector:
- description: "Selector is a selector of namespaces that AzureCluster
- can use this Identity from. This is a standard Kubernetes LabelSelector,
- a label query over a set of resources. The result of matchLabels
- and matchExpressions are ANDed. \n A nil or empty selector indicates
- that AzureCluster cannot use this AzureClusterIdentity from any
- namespace."
+ description: |-
+ Selector is a selector of namespaces that AzureCluster can
+ use this Identity from. This is a standard Kubernetes LabelSelector,
+ a label query over a set of resources. The result of matchLabels and
+ matchExpressions are ANDed.
+
+
+ A nil or empty selector indicates that AzureCluster cannot use this
+ AzureClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -127,18 +133,18 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
type: object
clientID:
- description: ClientID is the service principal client ID. Both User
- Assigned MSI and SP can use this field.
+ description: |-
+ ClientID is the service principal client ID.
+ Both User Assigned MSI and SP can use this field.
type: string
clientSecret:
description: ClientSecret is a secret reference which should contain
@@ -155,20 +161,26 @@ spec:
type: object
x-kubernetes-map-type: atomic
resourceID:
- description: ResourceID is the Azure resource ID for the User Assigned
- MSI resource. Only applicable when type is UserAssignedMSI.
+ description: |-
+ ResourceID is the Azure resource ID for the User Assigned MSI resource.
+ Only applicable when type is UserAssignedMSI.
+
+
+ Deprecated: This field no longer has any effect.
type: string
tenantID:
description: TenantID is the service principal primary tenant id.
type: string
type:
- description: Type is the type of Azure Identity used. ServicePrincipal,
- ServicePrincipalCertificate, UserAssignedMSI or ManualServicePrincipal.
+ description: |-
+ Type is the type of Azure Identity used.
+ ServicePrincipal, ServicePrincipalCertificate, UserAssignedMSI, ManualServicePrincipal or WorkloadIdentity.
enum:
- ServicePrincipal
- UserAssignedMSI
- ManualServicePrincipal
- ServicePrincipalCertificate
+ - WorkloadIdentity
type: string
required:
- clientID
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
index 9a56d3d91..58f0fcca3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
@@ -20,14 +20,19 @@ spec:
description: AzureCluster is the Schema for the azureclusters API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,15 +73,33 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to Azure
- resources managed by the Azure provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the Azure provider, in addition to the
+ ones added by default.
type: object
azureEnvironment:
- description: 'AzureEnvironment is the name of the AzureCloud to be used.
- The default value that would be used by most users is "AzurePublicCloud",
- other values are: - ChinaCloud: "AzureChinaCloud" - GermanCloud: "AzureGermanCloud"
- - PublicCloud: "AzurePublicCloud" - USGovernmentCloud: "AzureUSGovernmentCloud"'
+ description: |-
+ AzureEnvironment is the name of the AzureCloud to be used.
+ The default value that would be used by most users is "AzurePublicCloud", other values are:
+ - ChinaCloud: "AzureChinaCloud"
+ - GermanCloud: "AzureGermanCloud"
+ - PublicCloud: "AzurePublicCloud"
+ - USGovernmentCloud: "AzureUSGovernmentCloud"
+
+
+ Note that values other than the default must also be accompanied by corresponding changes to the
+ aso-controller-settings Secret to configure ASO to refer to the non-Public cloud. ASO currently does
+ not support referring to multiple different clouds in a single installation. The following fields must
+ be defined in the Secret:
+ - AZURE_AUTHORITY_HOST
+ - AZURE_RESOURCE_MANAGER_ENDPOINT
+ - AZURE_RESOURCE_MANAGER_AUDIENCE
+
+
+ See the [ASO docs] for more details.
+
+
+ [ASO docs]: https://azure.github.io/azure-service-operator/guide/aso-controller-settings-options/
type: string
bastionSpec:
description: BastionSpec encapsulates all things related to the Bastions
@@ -141,7 +164,8 @@ spec:
type: string
type: array
id:
- description: ID is the Azure resource ID of the subnet.
+ description: |-
+ ID is the Azure resource ID of the subnet.
READ-ONLY
type: string
name:
@@ -151,8 +175,9 @@ spec:
description: NatGateway associated with this subnet.
properties:
id:
- description: ID is the Azure resource ID of the NAT
- gateway. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the NAT gateway.
+ READ-ONLY
type: string
ip:
description: PublicIPSpec defines the inputs to create
@@ -213,21 +238,19 @@ spec:
the private endpoint.
type: string
manualApproval:
- description: ManualApproval specifies if the connection
- approval needs to be done manually or not. Set it
- true when the network admin does not have access
- to approve connections to the remote resource. Defaults
- to false.
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
type: boolean
name:
description: Name specifies the name of the private
endpoint.
type: string
privateIPAddresses:
- description: PrivateIPAddresses specifies the IP addresses
- for the network interface associated with the private
- endpoint. They have to be part of the subnet where
- the private endpoint is linked.
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
items:
type: string
type: array
@@ -277,14 +300,16 @@ spec:
- node
- control-plane
- bastion
+ - all
type: string
routeTable:
description: RouteTable defines the route table that should
be attached to this subnet.
properties:
id:
- description: ID is the Azure resource ID of the route
- table. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the route table.
+ READ-ONLY
type: string
name:
type: string
@@ -296,8 +321,9 @@ spec:
group) that should be attached to this subnet.
properties:
id:
- description: ID is the Azure resource ID of the security
- group. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the security group.
+ READ-ONLY
type: string
name:
type: string
@@ -308,6 +334,15 @@ spec:
description: SecurityRule defines an Azure security
rule for security groups.
properties:
+ action:
+ default: Allow
+ description: Action specifies whether network
+ traffic is allowed or denied. Can either be
+ "Allow" or "Deny". Defaults to "Allow".
+ enum:
+ - Allow
+ - Deny
+ type: string
description:
description: A description for this rule. Restricted
to 140 chars.
@@ -368,6 +403,12 @@ spec:
or range. Integer or range between 0 and 65535.
Asterix '*' can also be used to match all ports.
type: string
+ sources:
+ description: Sources specifies The CIDR or source
+ IP ranges.
+ items:
+ type: string
+ type: array
required:
- description
- direction
@@ -414,15 +455,12 @@ spec:
type: object
type: object
cloudProviderConfigOverrides:
- description: 'CloudProviderConfigOverrides is an optional set of configuration
- values that can be overridden in azure cloud provider config. This
- is only a subset of options that are available in azure cloud provider
- config. Some values for the cloud provider config are inferred from
- other parts of cluster api provider azure spec, and may not be available
- for overrides. See: https://kubernetes-sigs.github.io/cloud-provider-azure/install/configs
- Note: All cloud provider config values can be customized by creating
- the secret beforehand. CloudProviderConfigOverrides is only used when
- the secret is managed by the Azure Provider.'
+ description: |-
+ CloudProviderConfigOverrides is an optional set of configuration values that can be overridden in azure cloud provider config.
+ This is only a subset of options that are available in azure cloud provider config.
+ Some values for the cloud provider config are inferred from other parts of cluster api provider azure spec, and may not be available for overrides.
+ See: https://cloud-provider-azure.sigs.k8s.io/install/configs
+ Note: All cloud provider config values can be customized by creating the secret beforehand. CloudProviderConfigOverrides is only used when the secret is managed by the Azure Provider.
properties:
backOffs:
description: BackOffConfig indicates the back-off config options.
@@ -448,14 +486,13 @@ spec:
type: object
rateLimits:
items:
- description: 'RateLimitSpec represents the rate limit configuration
- for a particular kind of resource. Eg. loadBalancerRateLimit
- is used to configure rate limits for load balancers. This eventually
- gets converted to CloudProviderRateLimitConfig that cloud-provider-azure
- expects. See: https://github.com/kubernetes-sigs/cloud-provider-azure/blob/d585c2031925b39c925624302f22f8856e29e352/pkg/provider/azure_ratelimit.go#L25
- We cannot use CloudProviderRateLimitConfig directly because
- floating point values are not supported in controller-tools.
- See: https://github.com/kubernetes-sigs/controller-tools/issues/245'
+ description: |-
+ RateLimitSpec represents the rate limit configuration for a particular kind of resource.
+ Eg. loadBalancerRateLimit is used to configure rate limits for load balancers.
+ This eventually gets converted to CloudProviderRateLimitConfig that cloud-provider-azure expects.
+ See: https://github.com/kubernetes-sigs/cloud-provider-azure/blob/d585c2031925b39c925624302f22f8856e29e352/pkg/provider/azure_ratelimit.go#L25
+ We cannot use CloudProviderRateLimitConfig directly because floating point values are not supported in controller-tools.
+ See: https://github.com/kubernetes-sigs/controller-tools/issues/245
properties:
config:
description: RateLimitConfig indicates the rate limit config
@@ -505,10 +542,9 @@ spec:
type: array
type: object
controlPlaneEndpoint:
- description: ControlPlaneEndpoint represents the endpoint used to communicate
- with the control plane. It is not recommended to set this when creating
- an AzureCluster as CAPZ will set this for you. However, if it is set,
- CAPZ will not change it.
+ description: |-
+ ControlPlaneEndpoint represents the endpoint used to communicate with the control plane. It is not recommended to set
+ this when creating an AzureCluster as CAPZ will set this for you. However, if it is set, CAPZ will not change it.
properties:
host:
description: The hostname on which the API server is serving.
@@ -537,6 +573,29 @@ spec:
- name
- type
type: object
+ failureDomains:
+ additionalProperties:
+ description: |-
+ FailureDomainSpec is the Schema for Cluster API failure domains.
+ It allows controllers to understand how many failure domains a cluster can optionally span across.
+ properties:
+ attributes:
+ additionalProperties:
+ type: string
+ description: Attributes is a free form map of attributes an infrastructure
+ provider might use or require.
+ type: object
+ controlPlane:
+ description: ControlPlane determines if this failure domain is
+ suitable for use by control plane machines.
+ type: boolean
+ type: object
+ description: |-
+ FailureDomains is a list of failure domains in the cluster's region, used to restrict
+ eligibility to host the control plane. A FailureDomain maps to an availability zone,
+ which is a separated group of datacenters within a region.
+ See: https://learn.microsoft.com/azure/reliability/availability-zones-overview
+ type: object
identityRef:
description: IdentityRef is a reference to an AzureIdentity to be used
when reconciling this cluster
@@ -545,33 +604,40 @@ spec:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -589,9 +655,9 @@ spec:
balancer.
properties:
name:
- description: Name specifies the name of backend pool for
- the load balancer. If not specified, the default name
- will be set, depending on the load balancer role.
+ description: |-
+ Name specifies the name of backend pool for the load balancer. If not specified, the default name will
+ be set, depending on the load balancer role.
type: string
type: object
frontendIPs:
@@ -644,7 +710,8 @@ spec:
format: int32
type: integer
id:
- description: ID is the Azure resource ID of the load balancer.
+ description: |-
+ ID is the Azure resource ID of the load balancer.
READ-ONLY
type: string
idleTimeoutInMinutes:
@@ -662,19 +729,18 @@ spec:
type: string
type: object
controlPlaneOutboundLB:
- description: ControlPlaneOutboundLB is the configuration for the
- control-plane outbound load balancer. This is different from APIServerLB,
- and is used only in private clusters (optionally) for enabling
- outbound traffic.
+ description: |-
+ ControlPlaneOutboundLB is the configuration for the control-plane outbound load balancer.
+ This is different from APIServerLB, and is used only in private clusters (optionally) for enabling outbound traffic.
properties:
backendPool:
description: BackendPool describes the backend pool of the load
balancer.
properties:
name:
- description: Name specifies the name of backend pool for
- the load balancer. If not specified, the default name
- will be set, depending on the load balancer role.
+ description: |-
+ Name specifies the name of backend pool for the load balancer. If not specified, the default name will
+ be set, depending on the load balancer role.
type: string
type: object
frontendIPs:
@@ -727,7 +793,8 @@ spec:
format: int32
type: integer
id:
- description: ID is the Azure resource ID of the load balancer.
+ description: |-
+ ID is the Azure resource ID of the load balancer.
READ-ONLY
type: string
idleTimeoutInMinutes:
@@ -753,9 +820,9 @@ spec:
balancer.
properties:
name:
- description: Name specifies the name of backend pool for
- the load balancer. If not specified, the default name
- will be set, depending on the load balancer role.
+ description: |-
+ Name specifies the name of backend pool for the load balancer. If not specified, the default name will
+ be set, depending on the load balancer role.
type: string
type: object
frontendIPs:
@@ -808,7 +875,8 @@ spec:
format: int32
type: integer
id:
- description: ID is the Azure resource ID of the load balancer.
+ description: |-
+ ID is the Azure resource ID of the load balancer.
READ-ONLY
type: string
idleTimeoutInMinutes:
@@ -842,7 +910,9 @@ spec:
type: string
type: array
id:
- description: ID is the Azure resource ID of the subnet. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the subnet.
+ READ-ONLY
type: string
name:
description: Name defines a name for the subnet resource.
@@ -851,7 +921,8 @@ spec:
description: NatGateway associated with this subnet.
properties:
id:
- description: ID is the Azure resource ID of the NAT gateway.
+ description: |-
+ ID is the Azure resource ID of the NAT gateway.
READ-ONLY
type: string
ip:
@@ -913,21 +984,19 @@ spec:
the private endpoint.
type: string
manualApproval:
- description: ManualApproval specifies if the connection
- approval needs to be done manually or not. Set it
- true when the network admin does not have access to
- approve connections to the remote resource. Defaults
- to false.
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
type: boolean
name:
description: Name specifies the name of the private
endpoint.
type: string
privateIPAddresses:
- description: PrivateIPAddresses specifies the IP addresses
- for the network interface associated with the private
- endpoint. They have to be part of the subnet where
- the private endpoint is linked.
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
items:
type: string
type: array
@@ -975,14 +1044,16 @@ spec:
- node
- control-plane
- bastion
+ - all
type: string
routeTable:
description: RouteTable defines the route table that should
be attached to this subnet.
properties:
id:
- description: ID is the Azure resource ID of the route
- table. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the route table.
+ READ-ONLY
type: string
name:
type: string
@@ -994,8 +1065,9 @@ spec:
group) that should be attached to this subnet.
properties:
id:
- description: ID is the Azure resource ID of the security
- group. READ-ONLY
+ description: |-
+ ID is the Azure resource ID of the security group.
+ READ-ONLY
type: string
name:
type: string
@@ -1006,6 +1078,15 @@ spec:
description: SecurityRule defines an Azure security
rule for security groups.
properties:
+ action:
+ default: Allow
+ description: Action specifies whether network traffic
+ is allowed or denied. Can either be "Allow" or
+ "Deny". Defaults to "Allow".
+ enum:
+ - Allow
+ - Deny
+ type: string
description:
description: A description for this rule. Restricted
to 140 chars.
@@ -1065,6 +1146,12 @@ spec:
range. Integer or range between 0 and 65535. Asterix
'*' can also be used to match all ports.
type: string
+ sources:
+ description: Sources specifies The CIDR or source
+ IP ranges.
+ items:
+ type: string
+ type: array
required:
- description
- direction
@@ -1122,7 +1209,8 @@ spec:
type: string
type: array
id:
- description: ID is the Azure resource ID of the virtual network.
+ description: |-
+ ID is the Azure resource ID of the virtual network.
READ-ONLY
type: string
name:
@@ -1136,6 +1224,34 @@ spec:
virtual network to peer with the AzureCluster's virtual
network.
properties:
+ forwardPeeringProperties:
+ description: |-
+ ForwardPeeringProperties specifies VnetPeeringProperties for peering from the cluster's virtual network to the
+ remote virtual network.
+ properties:
+ allowForwardedTraffic:
+ description: |-
+ AllowForwardedTraffic specifies whether the forwarded traffic from the VMs in the local virtual network will be
+ allowed/disallowed in remote virtual network.
+ type: boolean
+ allowGatewayTransit:
+ description: |-
+ AllowGatewayTransit specifies if gateway links can be used in remote virtual networking to link to this virtual
+ network.
+ type: boolean
+ allowVirtualNetworkAccess:
+ description: |-
+ AllowVirtualNetworkAccess specifies whether the VMs in the local virtual network space would be able to access
+ the VMs in remote virtual network space.
+ type: boolean
+ useRemoteGateways:
+ description: |-
+ UseRemoteGateways specifies if remote gateways can be used on this virtual network.
+ If the flag is set to true, and allowGatewayTransit on remote peering is also set to true, the virtual network
+ will use the gateways of the remote virtual network for transit. Only one peering can have this flag set to true.
+ This flag cannot be set if virtual network already has a gateway.
+ type: boolean
+ type: object
remoteVnetName:
description: RemoteVnetName defines name of the remote
virtual network.
@@ -1144,14 +1260,42 @@ spec:
description: ResourceGroup is the resource group name
of the remote virtual network.
type: string
+ reversePeeringProperties:
+ description: |-
+ ReversePeeringProperties specifies VnetPeeringProperties for peering from the remote virtual network to the
+ cluster's virtual network.
+ properties:
+ allowForwardedTraffic:
+ description: |-
+ AllowForwardedTraffic specifies whether the forwarded traffic from the VMs in the local virtual network will be
+ allowed/disallowed in remote virtual network.
+ type: boolean
+ allowGatewayTransit:
+ description: |-
+ AllowGatewayTransit specifies if gateway links can be used in remote virtual networking to link to this virtual
+ network.
+ type: boolean
+ allowVirtualNetworkAccess:
+ description: |-
+ AllowVirtualNetworkAccess specifies whether the VMs in the local virtual network space would be able to access
+ the VMs in remote virtual network space.
+ type: boolean
+ useRemoteGateways:
+ description: |-
+ UseRemoteGateways specifies if remote gateways can be used on this virtual network.
+ If the flag is set to true, and allowGatewayTransit on remote peering is also set to true, the virtual network
+ will use the gateways of the remote virtual network for transit. Only one peering can have this flag set to true.
+ This flag cannot be set if virtual network already has a gateway.
+ type: boolean
+ type: object
required:
- remoteVnetName
type: object
type: array
resourceGroup:
- description: ResourceGroup is the name of the resource group
- of the existing virtual network or the resource group where
- a managed virtual network should be created.
+ description: |-
+ ResourceGroup is the name of the resource group of the existing virtual network
+ or the resource group where a managed virtual network should be created.
type: string
tags:
additionalProperties:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
index e8cd34703..1f63462c1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -77,16 +82,33 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to Azure resources managed by the Azure provider, in addition
- to the ones added by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the Azure provider, in addition to the
+ ones added by default.
type: object
azureEnvironment:
- description: 'AzureEnvironment is the name of the AzureCloud
- to be used. The default value that would be used by most users
- is "AzurePublicCloud", other values are: - ChinaCloud: "AzureChinaCloud"
- - GermanCloud: "AzureGermanCloud" - PublicCloud: "AzurePublicCloud"
- - USGovernmentCloud: "AzureUSGovernmentCloud"'
+ description: |-
+ AzureEnvironment is the name of the AzureCloud to be used.
+ The default value that would be used by most users is "AzurePublicCloud", other values are:
+ - ChinaCloud: "AzureChinaCloud"
+ - GermanCloud: "AzureGermanCloud"
+ - PublicCloud: "AzurePublicCloud"
+ - USGovernmentCloud: "AzureUSGovernmentCloud"
+
+
+ Note that values other than the default must also be accompanied by corresponding changes to the
+ aso-controller-settings Secret to configure ASO to refer to the non-Public cloud. ASO currently does
+ not support referring to multiple different clouds in a single installation. The following fields must
+ be defined in the Secret:
+ - AZURE_AUTHORITY_HOST
+ - AZURE_RESOURCE_MANAGER_ENDPOINT
+ - AZURE_RESOURCE_MANAGER_AUDIENCE
+
+
+ See the [ASO docs] for more details.
+
+
+ [ASO docs]: https://azure.github.io/azure-service-operator/guide/aso-controller-settings-options/
type: string
bastionSpec:
description: BastionSpec encapsulates all things related to
@@ -145,22 +167,19 @@ spec:
to create the private endpoint.
type: string
manualApproval:
- description: ManualApproval specifies if the
- connection approval needs to be done manually
- or not. Set it true when the network admin
- does not have access to approve connections
- to the remote resource. Defaults to false.
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
type: boolean
name:
description: Name specifies the name of the
private endpoint.
type: string
privateIPAddresses:
- description: PrivateIPAddresses specifies
- the IP addresses for the network interface
- associated with the private endpoint. They
- have to be part of the subnet where the
- private endpoint is linked.
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
items:
type: string
type: array
@@ -214,6 +233,7 @@ spec:
- node
- control-plane
- bastion
+ - all
type: string
securityGroup:
description: SecurityGroup defines the NSG (network
@@ -227,6 +247,16 @@ spec:
description: SecurityRule defines an Azure
security rule for security groups.
properties:
+ action:
+ default: Allow
+ description: Action specifies whether
+ network traffic is allowed or denied.
+ Can either be "Allow" or "Deny". Defaults
+ to "Allow".
+ enum:
+ - Allow
+ - Deny
+ type: string
description:
description: A description for this rule.
Restricted to 140 chars.
@@ -292,6 +322,12 @@ spec:
0 and 65535. Asterix '*' can also be
used to match all ports.
type: string
+ sources:
+ description: Sources specifies The CIDR
+ or source IP ranges.
+ items:
+ type: string
+ type: array
required:
- description
- direction
@@ -336,16 +372,12 @@ spec:
type: object
type: object
cloudProviderConfigOverrides:
- description: 'CloudProviderConfigOverrides is an optional set
- of configuration values that can be overridden in azure cloud
- provider config. This is only a subset of options that are
- available in azure cloud provider config. Some values for
- the cloud provider config are inferred from other parts of
- cluster api provider azure spec, and may not be available
- for overrides. See: https://kubernetes-sigs.github.io/cloud-provider-azure/install/configs
- Note: All cloud provider config values can be customized by
- creating the secret beforehand. CloudProviderConfigOverrides
- is only used when the secret is managed by the Azure Provider.'
+ description: |-
+ CloudProviderConfigOverrides is an optional set of configuration values that can be overridden in azure cloud provider config.
+ This is only a subset of options that are available in azure cloud provider config.
+ Some values for the cloud provider config are inferred from other parts of cluster api provider azure spec, and may not be available for overrides.
+ See: https://cloud-provider-azure.sigs.k8s.io/install/configs
+ Note: All cloud provider config values can be customized by creating the secret beforehand. CloudProviderConfigOverrides is only used when the secret is managed by the Azure Provider.
properties:
backOffs:
description: BackOffConfig indicates the back-off config
@@ -372,15 +404,13 @@ spec:
type: object
rateLimits:
items:
- description: 'RateLimitSpec represents the rate limit
- configuration for a particular kind of resource. Eg.
- loadBalancerRateLimit is used to configure rate limits
- for load balancers. This eventually gets converted to
- CloudProviderRateLimitConfig that cloud-provider-azure
- expects. See: https://github.com/kubernetes-sigs/cloud-provider-azure/blob/d585c2031925b39c925624302f22f8856e29e352/pkg/provider/azure_ratelimit.go#L25
- We cannot use CloudProviderRateLimitConfig directly
- because floating point values are not supported in controller-tools.
- See: https://github.com/kubernetes-sigs/controller-tools/issues/245'
+ description: |-
+ RateLimitSpec represents the rate limit configuration for a particular kind of resource.
+ Eg. loadBalancerRateLimit is used to configure rate limits for load balancers.
+ This eventually gets converted to CloudProviderRateLimitConfig that cloud-provider-azure expects.
+ See: https://github.com/kubernetes-sigs/cloud-provider-azure/blob/d585c2031925b39c925624302f22f8856e29e352/pkg/provider/azure_ratelimit.go#L25
+ We cannot use CloudProviderRateLimitConfig directly because floating point values are not supported in controller-tools.
+ See: https://github.com/kubernetes-sigs/controller-tools/issues/245
properties:
config:
description: RateLimitConfig indicates the rate limit
@@ -445,6 +475,29 @@ spec:
- name
- type
type: object
+ failureDomains:
+ additionalProperties:
+ description: |-
+ FailureDomainSpec is the Schema for Cluster API failure domains.
+ It allows controllers to understand how many failure domains a cluster can optionally span across.
+ properties:
+ attributes:
+ additionalProperties:
+ type: string
+ description: Attributes is a free form map of attributes
+ an infrastructure provider might use or require.
+ type: object
+ controlPlane:
+ description: ControlPlane determines if this failure domain
+ is suitable for use by control plane machines.
+ type: boolean
+ type: object
+ description: |-
+ FailureDomains is a list of failure domains in the cluster's region, used to restrict
+ eligibility to host the control plane. A FailureDomain maps to an availability zone,
+ which is a separated group of datacenters within a region.
+ See: https://learn.microsoft.com/azure/reliability/availability-zones-overview
+ type: object
identityRef:
description: IdentityRef is a reference to an AzureIdentity
to be used when reconciling this cluster
@@ -453,34 +506,40 @@ spec:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead
- of an entire object, this string should contain a valid
- JSON/Go field access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container
- within a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that
- triggered the event) or if no container name is specified
- "spec.containers[2]" (container with index 2 in this pod).
- This syntax is chosen only to have some well-defined way
- of referencing a part of an object. TODO: this design
- is not final and this field is subject to change in the
- future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference
- is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
@@ -507,10 +566,9 @@ spec:
type: string
type: object
controlPlaneOutboundLB:
- description: ControlPlaneOutboundLB is the configuration
- for the control-plane outbound load balancer. This is
- different from APIServerLB, and is used only in private
- clusters (optionally) for enabling outbound traffic.
+ description: |-
+ ControlPlaneOutboundLB is the configuration for the control-plane outbound load balancer.
+ This is different from APIServerLB, and is used only in private clusters (optionally) for enabling outbound traffic.
properties:
idleTimeoutInMinutes:
description: IdleTimeoutInMinutes specifies the timeout
@@ -593,22 +651,19 @@ spec:
create the private endpoint.
type: string
manualApproval:
- description: ManualApproval specifies if the
- connection approval needs to be done manually
- or not. Set it true when the network admin
- does not have access to approve connections
- to the remote resource. Defaults to false.
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
type: boolean
name:
description: Name specifies the name of the
private endpoint.
type: string
privateIPAddresses:
- description: PrivateIPAddresses specifies the
- IP addresses for the network interface associated
- with the private endpoint. They have to be
- part of the subnet where the private endpoint
- is linked.
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
items:
type: string
type: array
@@ -662,6 +717,7 @@ spec:
- node
- control-plane
- bastion
+ - all
type: string
securityGroup:
description: SecurityGroup defines the NSG (network
@@ -675,6 +731,15 @@ spec:
description: SecurityRule defines an Azure security
rule for security groups.
properties:
+ action:
+ default: Allow
+ description: Action specifies whether network
+ traffic is allowed or denied. Can either
+ be "Allow" or "Deny". Defaults to "Allow".
+ enum:
+ - Allow
+ - Deny
+ type: string
description:
description: A description for this rule.
Restricted to 140 chars.
@@ -738,6 +803,12 @@ spec:
0 and 65535. Asterix '*' can also be used
to match all ports.
type: string
+ sources:
+ description: Sources specifies The CIDR
+ or source IP ranges.
+ items:
+ type: string
+ type: array
required:
- description
- direction
@@ -802,6 +873,34 @@ spec:
description: VnetPeeringClassSpec specifies a virtual
network peering class.
properties:
+ forwardPeeringProperties:
+ description: |-
+ ForwardPeeringProperties specifies VnetPeeringProperties for peering from the cluster's virtual network to the
+ remote virtual network.
+ properties:
+ allowForwardedTraffic:
+ description: |-
+ AllowForwardedTraffic specifies whether the forwarded traffic from the VMs in the local virtual network will be
+ allowed/disallowed in remote virtual network.
+ type: boolean
+ allowGatewayTransit:
+ description: |-
+ AllowGatewayTransit specifies if gateway links can be used in remote virtual networking to link to this virtual
+ network.
+ type: boolean
+ allowVirtualNetworkAccess:
+ description: |-
+ AllowVirtualNetworkAccess specifies whether the VMs in the local virtual network space would be able to access
+ the VMs in remote virtual network space.
+ type: boolean
+ useRemoteGateways:
+ description: |-
+ UseRemoteGateways specifies if remote gateways can be used on this virtual network.
+ If the flag is set to true, and allowGatewayTransit on remote peering is also set to true, the virtual network
+ will use the gateways of the remote virtual network for transit. Only one peering can have this flag set to true.
+ This flag cannot be set if virtual network already has a gateway.
+ type: boolean
+ type: object
remoteVnetName:
description: RemoteVnetName defines name of the
remote virtual network.
@@ -810,6 +909,34 @@ spec:
description: ResourceGroup is the resource group
name of the remote virtual network.
type: string
+ reversePeeringProperties:
+ description: |-
+ ReversePeeringProperties specifies VnetPeeringProperties for peering from the remote virtual network to the
+ cluster's virtual network.
+ properties:
+ allowForwardedTraffic:
+ description: |-
+ AllowForwardedTraffic specifies whether the forwarded traffic from the VMs in the local virtual network will be
+ allowed/disallowed in remote virtual network.
+ type: boolean
+ allowGatewayTransit:
+ description: |-
+ AllowGatewayTransit specifies if gateway links can be used in remote virtual networking to link to this virtual
+ network.
+ type: boolean
+ allowVirtualNetworkAccess:
+ description: |-
+ AllowVirtualNetworkAccess specifies whether the VMs in the local virtual network space would be able to access
+ the VMs in remote virtual network space.
+ type: boolean
+ useRemoteGateways:
+ description: |-
+ UseRemoteGateways specifies if remote gateways can be used on this virtual network.
+ If the flag is set to true, and allowGatewayTransit on remote peering is also set to true, the virtual network
+ will use the gateways of the remote virtual network for transit. Only one peering can have this flag set to true.
+ This flag cannot be set if virtual network already has a gateway.
+ type: boolean
+ type: object
required:
- remoteVnetName
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
index c94d58ed1..4101d4b77 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
index b5180f8b1..eef307d41 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
@@ -20,14 +20,19 @@ spec:
description: AzureMachinePool is the Schema for the azuremachinepools API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,18 +73,19 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the Azure provider.
- If both the AzureCluster and the AzureMachine specify the same tag
- name with different values, the AzureMachine's value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ Azure provider. If both the AzureCluster and the AzureMachine specify the same tag name with different values, the
+ AzureMachine's value takes precedence.
type: object
identity:
default: None
- description: Identity is the type of identity used for the Virtual Machine
- Scale Set. The type 'SystemAssigned' is an implicitly created identity.
- The generated identity will be assigned a Subscription contributor
- role. The type 'UserAssigned' is a standalone Azure resource provided
- by the user and assigned to the VM
+ description: |-
+ Identity is the type of identity used for the Virtual Machine Scale Set.
+ The type 'SystemAssigned' is an implicitly created identity.
+ The generated identity will be assigned a Subscription contributor role.
+ The type 'UserAssigned' is a standalone Azure resource provided by the user
+ and assigned to the VM
enum:
- None
- SystemAssigned
@@ -88,12 +94,6 @@ spec:
location:
description: Location is the Azure region location e.g. westus2
type: string
- nodeDrainTimeout:
- description: 'NodeDrainTimeout is the total amount of time that the
- controller will spend on draining a node. The default value is 0,
- meaning that the node can be drained without any time limitations.
- NOTE: NodeDrainTimeout is different from `kubectl drain --timeout`'
- type: string
orchestrationMode:
default: Uniform
description: OrchestrationMode specifies the orchestration mode for
@@ -102,15 +102,20 @@ spec:
- Flexible
- Uniform
type: string
+ platformFaultDomainCount:
+ description: |-
+ PlatformFaultDomainCount specifies the number of fault domains that the Virtual Machine Scale Set can use.
+ The count determines the spreading algorithm of the Azure fault domain.
+ format: int32
+ type: integer
providerID:
description: ProviderID is the identification ID of the Virtual Machine
Scale Set
type: string
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
@@ -129,15 +134,16 @@ spec:
with new ones.
properties:
rollingUpdate:
- description: Rolling update config params. Present only if MachineDeploymentStrategyType
- = RollingUpdate.
+ description: |-
+ Rolling update config params. Present only if
+ MachineDeploymentStrategyType = RollingUpdate.
properties:
deletePolicy:
default: Oldest
- description: DeletePolicy defines the policy used by the MachineDeployment
- to identify nodes to delete when downscaling. Valid values
- are "Random, "Newest", "Oldest" When no value is supplied,
- the default is Oldest
+ description: |-
+ DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling.
+ Valid values are "Random, "Newest", "Oldest"
+ When no value is supplied, the default is Oldest
enum:
- Random
- Newest
@@ -148,35 +154,39 @@ spec:
- type: integer
- type: string
default: 1
- description: 'The maximum number of machines that can be scheduled
- above the desired number of machines. Value can be an absolute
- number (ex: 5) or a percentage of desired machines (ex: 10%).
- This can not be 0 if MaxUnavailable is 0. Absolute number
- is calculated from percentage by rounding up. Defaults to
- 1. Example: when this is set to 30%, the new MachineSet can
- be scaled up immediately when the rolling update starts, such
- that the total number of old and new machines do not exceed
- 130% of desired machines. Once old machines have been killed,
- new MachineSet can be scaled up further, ensuring that total
- number of machines running at any time during the update is
- at most 130% of desired machines.'
+ description: |-
+ The maximum number of machines that can be scheduled above the
+ desired number of machines.
+ Value can be an absolute number (ex: 5) or a percentage of
+ desired machines (ex: 10%).
+ This can not be 0 if MaxUnavailable is 0.
+ Absolute number is calculated from percentage by rounding up.
+ Defaults to 1.
+ Example: when this is set to 30%, the new MachineSet can be scaled
+ up immediately when the rolling update starts, such that the total
+ number of old and new machines do not exceed 130% of desired
+ machines. Once old machines have been killed, new MachineSet can
+ be scaled up further, ensuring that total number of machines running
+ at any time during the update is at most 130% of desired machines.
x-kubernetes-int-or-string: true
maxUnavailable:
anyOf:
- type: integer
- type: string
default: 0
- description: 'The maximum number of machines that can be unavailable
- during the update. Value can be an absolute number (ex: 5)
- or a percentage of desired machines (ex: 10%). Absolute number
- is calculated from percentage by rounding down. This can not
- be 0 if MaxSurge is 0. Defaults to 0. Example: when this is
- set to 30%, the old MachineSet can be scaled down to 70% of
- desired machines immediately when the rolling update starts.
- Once new machines are ready, old MachineSet can be scaled
+ description: |-
+ The maximum number of machines that can be unavailable during the update.
+ Value can be an absolute number (ex: 5) or a percentage of desired
+ machines (ex: 10%).
+ Absolute number is calculated from percentage by rounding down.
+ This can not be 0 if MaxSurge is 0.
+ Defaults to 0.
+ Example: when this is set to 30%, the old MachineSet can be scaled
+ down to 70% of desired machines immediately when the rolling update
+ starts. Once new machines are ready, old MachineSet can be scaled
down further, followed by scaling up the new MachineSet, ensuring
- that the total number of machines available at all times during
- the update is at least 70% of desired machines.'
+ that the total number of machines available at all times
+ during the update is at least 70% of desired machines.
x-kubernetes-int-or-string: true
type: object
type:
@@ -192,19 +202,19 @@ spec:
assign to the system assigned identity.
properties:
definitionID:
- description: 'DefinitionID is the ID of the role definition to create
- for a system assigned identity. It can be an Azure built-in role
- or a custom role. Refer to built-in roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles'
+ description: |-
+ DefinitionID is the ID of the role definition to create for a system assigned identity. It can be an Azure built-in role or a custom role.
+ Refer to built-in roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles
type: string
name:
- description: Name is the name of the role assignment to create for
- a system assigned identity. It can be any valid UUID. If not specified,
- a random UUID will be generated.
+ description: |-
+ Name is the name of the role assignment to create for a system assigned identity. It can be any valid UUID.
+ If not specified, a random UUID will be generated.
type: string
scope:
- description: Scope is the scope that the role assignment or definition
- applies to. The scope can be any REST resource instance. If not
- specified, the scope will be the subscription.
+ description: |-
+ Scope is the scope that the role assignment or definition applies to. The scope can be any REST resource instance.
+ If not specified, the scope will be the subscription.
type: string
type: object
template:
@@ -235,10 +245,9 @@ spec:
format: int32
type: integer
lun:
- description: Lun Specifies the logical unit number of the
- data disk. This value is used to identify data disks within
- the VM and therefore must be unique for each data disk attached
- to a VM. The value must be between 0 and 63.
+ description: |-
+ Lun Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
+ The value must be between 0 and 63.
format: int32
type: integer
managedDisk:
@@ -246,21 +255,50 @@ spec:
for the data disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk
- encryption options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security profile
+ for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
nameSuffix:
- description: NameSuffix is the suffix to be appended to the
- machine name to generate the disk name. Each disk name will
- be in format _.
+ description: |-
+ NameSuffix is the suffix to be appended to the machine name to generate the disk name.
+ Each disk name will be in format _.
type: string
required:
- diskSizeGB
@@ -268,22 +306,21 @@ spec:
type: object
type: array
diagnostics:
- description: Diagnostics specifies the diagnostics settings for
- a virtual machine. If not specified then Boot diagnostics (Managed)
- will be enabled.
+ description: |-
+ Diagnostics specifies the diagnostics settings for a virtual machine.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
boot:
- description: Boot configures the boot diagnostics settings for
- the virtual machine. This allows to configure capturing serial
- output from the virtual machine on boot. This is useful for
- debugging software based launch issues. If not specified then
- Boot diagnostics (Managed) will be enabled.
+ description: |-
+ Boot configures the boot diagnostics settings for the virtual machine.
+ This allows to configure capturing serial output from the virtual machine on boot.
+ This is useful for debugging software based launch issues.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
storageAccountType:
- description: StorageAccountType determines if the storage
- account for storing the diagnostics data should be disabled
- (Disabled), provisioned by Azure (Managed) or by the user
- (UserManaged).
+ description: |-
+ StorageAccountType determines if the storage account for storing the diagnostics data
+ should be disabled (Disabled), provisioned by Azure (Managed) or by the user (UserManaged).
enum:
- Managed
- UserManaged
@@ -294,14 +331,13 @@ spec:
storage account.
properties:
storageAccountURI:
- description: 'StorageAccountURI is the URI of the user-managed
- storage account. The URI typically will be `https://.blob.core.windows.net/`
+ description: |-
+ StorageAccountURI is the URI of the user-managed storage account.
+ The URI typically will be `https://.blob.core.windows.net/`
but may differ if you are using Azure DNS zone endpoints.
- You can find the correct endpoint by looking for the
- Blob Primary Endpoint in the endpoints tab in the
- Azure console or with the CLI by issuing `az storage
- account list --query=''[].{name: name, "resource group":
- resourceGroup, "blob endpoint": primaryEndpoints.blob}''`.'
+ You can find the correct endpoint by looking for the Blob Primary Endpoint in the
+ endpoints tab in the Azure console or with the CLI by issuing
+ `az storage account list --query='[].{name: name, "resource group": resourceGroup, "blob endpoint": primaryEndpoints.blob}'`.
maxLength: 1024
pattern: ^https://
type: string
@@ -313,10 +349,10 @@ spec:
type: object
type: object
image:
- description: Image is used to provide details of an image to use
- during VM creation. If image details are omitted the image will
- default the Azure Marketplace "capi" offer, which is based on
- Ubuntu.
+ description: |-
+ Image is used to provide details of an image to use during VM creation.
+ If image details are omitted the image will default the Azure Marketplace "capi" offer,
+ which is based on Ubuntu.
properties:
computeGallery:
description: ComputeGallery specifies an image to use from the
@@ -335,9 +371,9 @@ spec:
description: Plan contains plan information.
properties:
offer:
- description: Offer specifies the name of a group of
- related images created by the publisher. For example,
- UbuntuServer, WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -346,9 +382,9 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer,
- such as a major release of a distribution. For example,
- 18.04-LTS, 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
required:
@@ -365,13 +401,12 @@ spec:
that contains the private compute gallery.
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or 'latest'.
- Major, Minor, and Build are decimal numbers. Specify 'latest'
- to use the latest version of an image available at deploy
- time. Even if you use 'latest', the VM image will not
- automatically update after deploy time even if a new version
- becomes available.
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -387,9 +422,9 @@ spec:
Azure Marketplace
properties:
offer:
- description: Offer specifies the name of a group of related
- images created by the publisher. For example, UbuntuServer,
- WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -398,25 +433,24 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer, such
- as a major release of a distribution. For example, 18.04-LTS,
- 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
thirdPartyImage:
default: false
- description: ThirdPartyImage indicates the image is published
- by a third party publisher and a Plan will be generated
- for it.
+ description: |-
+ ThirdPartyImage indicates the image is published by a third party publisher and a Plan
+ will be generated for it.
type: boolean
version:
- description: Version specifies the version of an image sku.
- The allowed formats are Major.Minor.Build or 'latest'.
- Major, Minor, and Build are decimal numbers. Specify 'latest'
- to use the latest version of an image available at deploy
- time. Even if you use 'latest', the VM image will not
- automatically update after deploy time even if a new version
- becomes available.
+ description: |-
+ Version specifies the version of an image sku. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -426,9 +460,9 @@ spec:
- version
type: object
sharedGallery:
- description: 'SharedGallery specifies an image to use from an
- Azure Shared Image Gallery Deprecated: use ComputeGallery
- instead.'
+ description: |-
+ SharedGallery specifies an image to use from an Azure Shared Image Gallery
+ Deprecated: use ComputeGallery instead.
properties:
gallery:
description: Gallery specifies the name of the shared image
@@ -440,19 +474,17 @@ spec:
minLength: 1
type: string
offer:
- description: Offer specifies the name of a group of related
- images created by the publisher. For example, UbuntuServer,
- WindowsServer This value will be used to add a `Plan`
- in the API request when creating the VM/VMSS resource.
- This is needed when the source image from which this SIG
- image was built requires the `Plan` to be used.
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
publisher:
- description: Publisher is the name of the organization that
- created the image. This value will be used to add a `Plan`
- in the API request when creating the VM/VMSS resource.
- This is needed when the source image from which this SIG
- image was built requires the `Plan` to be used.
+ description: |-
+ Publisher is the name of the organization that created the image.
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
resourceGroup:
description: ResourceGroup specifies the resource group
@@ -460,12 +492,11 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer, such
- as a major release of a distribution. For example, 18.04-LTS,
- 2019-Datacenter This value will be used to add a `Plan`
- in the API request when creating the VM/VMSS resource.
- This is needed when the source image from which this SIG
- image was built requires the `Plan` to be used.
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
subscriptionID:
description: SubscriptionID is the identifier of the subscription
@@ -473,13 +504,12 @@ spec:
minLength: 1
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or 'latest'.
- Major, Minor, and Build are decimal numbers. Specify 'latest'
- to use the latest version of an image available at deploy
- time. Even if you use 'latest', the VM image will not
- automatically update after deploy time even if a new version
- becomes available.
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -491,25 +521,24 @@ spec:
type: object
type: object
networkInterfaces:
- description: NetworkInterfaces specifies a list of network interface
- configurations. If left unspecified, the VM will get a single
- network interface with a single IPConfig in the subnet specified
- in the cluster's node subnet field. The primary interface will
- be the first networkInterface specified (index 0) in the list.
+ description: |-
+ NetworkInterfaces specifies a list of network interface configurations.
+ If left unspecified, the VM will get a single network interface with a
+ single IPConfig in the subnet specified in the cluster's node subnet field.
+ The primary interface will be the first networkInterface specified (index 0) in the list.
items:
description: NetworkInterface defines a network interface.
properties:
acceleratedNetworking:
- description: AcceleratedNetworking enables or disables Azure
- accelerated networking. If omitted, it will be set based
- on whether the requested VMSize supports accelerated networking.
- If AcceleratedNetworking is set to true with a VMSize that
- does not support it, Azure will return an error.
+ description: |-
+ AcceleratedNetworking enables or disables Azure accelerated networking. If omitted, it will be set based on
+ whether the requested VMSize supports accelerated networking.
+ If AcceleratedNetworking is set to true with a VMSize that does not support it, Azure will return an error.
type: boolean
privateIPConfigs:
- description: PrivateIPConfigs specifies the number of private
- IP addresses to attach to the interface. Defaults to 1 if
- not specified.
+ description: |-
+ PrivateIPConfigs specifies the number of private IP addresses to attach to the interface.
+ Defaults to 1 if not specified.
type: integer
subnetName:
description: SubnetName specifies the subnet in which the
@@ -533,9 +562,9 @@ spec:
for the os disk.
properties:
option:
- description: Option enables ephemeral OS when set to "Local"
- See https://docs.microsoft.com/en-us/azure/virtual-machines/ephemeral-os-disks
- for full details
+ description: |-
+ Option enables ephemeral OS when set to "Local"
+ See https://learn.microsoft.com/azure/virtual-machines/ephemeral-os-disks for full details
enum:
- Local
type: string
@@ -543,8 +572,9 @@ spec:
- option
type: object
diskSizeGB:
- description: DiskSizeGB is the size in GB to assign to the OS
- disk. Will have a default of 30GB if not provided
+ description: |-
+ DiskSizeGB is the size in GB to assign to the OS disk.
+ Will have a default of 30GB if not provided
format: int32
type: integer
managedDisk:
@@ -552,14 +582,43 @@ spec:
for the OS disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk encryption
- options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security profile
+ for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
@@ -573,10 +632,39 @@ spec:
for a virtual machine.
properties:
encryptionAtHost:
- description: This field indicates whether Host Encryption should
- be enabled or disabled for a virtual machine or virtual machine
- scale set. Default is disabled.
+ description: |-
+ This field indicates whether Host Encryption should be enabled
+ or disabled for a virtual machine or virtual machine scale set.
+ This should be disabled when SecurityEncryptionType is set to DiskWithVMGuestState.
+ Default is disabled.
type: boolean
+ securityType:
+ description: |-
+ SecurityType specifies the SecurityType of the virtual machine. It has to be set to any specified value to
+ enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
+ enum:
+ - ConfidentialVM
+ - TrustedLaunch
+ type: string
+ uefiSettings:
+ description: UefiSettings specifies the security settings like
+ secure boot and vTPM used while creating the virtual machine.
+ properties:
+ secureBootEnabled:
+ description: |-
+ SecureBootEnabled specifies whether secure boot should be enabled on the virtual machine.
+ Secure Boot verifies the digital signature of all boot components and halts the boot process if signature verification fails.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ vTpmEnabled:
+ description: |-
+ VTpmEnabled specifies whether vTPM should be enabled on the virtual machine.
+ When true it enables the virtualized trusted platform module measurements to create a known good boot integrity policy baseline.
+ The integrity policy baseline is used for comparison with measurements from subsequent VM boots to determine if anything has changed.
+ This is required to be set to Enabled if SecurityEncryptionType is defined.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ type: object
type: object
spotVMOptions:
description: SpotVMOptions allows the ability to specify the Machine
@@ -599,17 +687,17 @@ spec:
x-kubernetes-int-or-string: true
type: object
sshPublicKey:
- description: SSHPublicKey is the SSH public key string, base64-encoded
- to add to a Virtual Machine. Linux only. Refer to documentation
- on how to set up SSH access on Windows instances.
+ description: |-
+ SSHPublicKey is the SSH public key string, base64-encoded to add to a Virtual Machine. Linux only.
+ Refer to documentation on how to set up SSH access on Windows instances.
type: string
subnetName:
description: 'Deprecated: SubnetName should be set in the networkInterfaces
field.'
type: string
terminateNotificationTimeout:
- description: TerminateNotificationTimeout enables or disables VMSS
- scheduled events termination notification with specified timeout
+ description: |-
+ TerminateNotificationTimeout enables or disables VMSS scheduled events termination notification with specified timeout
allowed values are between 5 and 15 (mins)
type: integer
vmExtensions:
@@ -648,30 +736,38 @@ spec:
type: object
type: array
vmSize:
- description: VMSize is the size of the Virtual Machine to build.
- See https://docs.microsoft.com/en-us/rest/api/compute/virtualmachines/createorupdate#virtualmachinesizetypes
+ description: |-
+ VMSize is the size of the Virtual Machine to build.
+ See https://learn.microsoft.com/rest/api/compute/virtualmachines/createorupdate#virtualmachinesizetypes
type: string
required:
- osDisk
- vmSize
type: object
userAssignedIdentities:
- description: UserAssignedIdentities is a list of standalone Azure identities
- provided by the user The lifecycle of a user-assigned identity is
- managed separately from the lifecycle of the AzureMachinePool. See
- https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
+ description: |-
+ UserAssignedIdentities is a list of standalone Azure identities provided by the user
+ The lifecycle of a user-assigned identity is managed separately from the lifecycle of
+ the AzureMachinePool.
+ See https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
items:
- description: UserAssignedIdentity defines the user-assigned identities
- provided by the user to be assigned to Azure resources.
+ description: |-
+ UserAssignedIdentity defines the user-assigned identities provided
+ by the user to be assigned to Azure resources.
properties:
providerID:
- description: 'ProviderID is the identification ID of the user-assigned
- Identity, the format of an identity is: ''azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'''
+ description: |-
+ ProviderID is the identification ID of the user-assigned Identity, the format of an identity is:
+ 'azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'
type: string
required:
- providerID
type: object
type: array
+ zoneBalance:
+ description: ZoneBalane dictates whether to force strictly even Virtual
+ Machine distribution cross x-zones in case there is zone outage.
+ type: boolean
required:
- location
- template
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
index 05aa60c99..845490981 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
@@ -20,14 +20,19 @@ spec:
description: AzureMachine is the Schema for the azuremachines API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -74,24 +79,33 @@ spec:
enabled or disabled on the virtual machine.
properties:
ultraSSDEnabled:
- description: UltraSSDEnabled enables or disables Azure UltraSSD
- capability for the virtual machine. Defaults to true if Ultra
- SSD data disks are specified, otherwise it doesn't set the capability
- on the VM.
+ description: |-
+ UltraSSDEnabled enables or disables Azure UltraSSD capability for the virtual machine.
+ Defaults to true if Ultra SSD data disks are specified,
+ otherwise it doesn't set the capability on the VM.
type: boolean
type: object
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the Azure provider.
- If both the AzureCluster and the AzureMachine specify the same tag
- name with different values, the AzureMachine's value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ Azure provider. If both the AzureCluster and the AzureMachine specify the same tag name with different values, the
+ AzureMachine's value takes precedence.
type: object
allocatePublicIP:
description: AllocatePublicIP allows the ability to create dynamic public
ips for machines where this value is true.
type: boolean
+ capacityReservationGroupID:
+ description: |-
+ CapacityReservationGroupID specifies the capacity reservation group resource id that should be
+ used for allocating the virtual machine.
+ The field size should be greater than 0 and the field input must start with '/'.
+ The input for capacityReservationGroupID must be similar to '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}'.
+ The keys which are used should be among 'subscriptions', 'providers' and 'resourcegroups' followed by valid ID or names respectively.
+ It is optional but may not be changed once set.
+ type: string
dataDisks:
description: DataDisk specifies the parameters that are used to add
one or more data disks to the machine
@@ -112,10 +126,9 @@ spec:
format: int32
type: integer
lun:
- description: Lun Specifies the logical unit number of the data
- disk. This value is used to identify data disks within the VM
- and therefore must be unique for each data disk attached to
- a VM. The value must be between 0 and 63.
+ description: |-
+ Lun Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
+ The value must be between 0 and 63.
format: int32
type: integer
managedDisk:
@@ -123,21 +136,50 @@ spec:
for the data disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk encryption
- options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security profile
+ for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
nameSuffix:
- description: NameSuffix is the suffix to be appended to the machine
- name to generate the disk name. Each disk name will be in format
- _.
+ description: |-
+ NameSuffix is the suffix to be appended to the machine name to generate the disk name.
+ Each disk name will be in format _.
type: string
required:
- diskSizeGB
@@ -145,21 +187,21 @@ spec:
type: object
type: array
diagnostics:
- description: Diagnostics specifies the diagnostics settings for a virtual
- machine. If not specified then Boot diagnostics (Managed) will be
- enabled.
+ description: |-
+ Diagnostics specifies the diagnostics settings for a virtual machine.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
boot:
- description: Boot configures the boot diagnostics settings for the
- virtual machine. This allows to configure capturing serial output
- from the virtual machine on boot. This is useful for debugging
- software based launch issues. If not specified then Boot diagnostics
- (Managed) will be enabled.
+ description: |-
+ Boot configures the boot diagnostics settings for the virtual machine.
+ This allows to configure capturing serial output from the virtual machine on boot.
+ This is useful for debugging software based launch issues.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
storageAccountType:
- description: StorageAccountType determines if the storage account
- for storing the diagnostics data should be disabled (Disabled),
- provisioned by Azure (Managed) or by the user (UserManaged).
+ description: |-
+ StorageAccountType determines if the storage account for storing the diagnostics data
+ should be disabled (Disabled), provisioned by Azure (Managed) or by the user (UserManaged).
enum:
- Managed
- UserManaged
@@ -170,14 +212,13 @@ spec:
storage account.
properties:
storageAccountURI:
- description: 'StorageAccountURI is the URI of the user-managed
- storage account. The URI typically will be `https://.blob.core.windows.net/`
+ description: |-
+ StorageAccountURI is the URI of the user-managed storage account.
+ The URI typically will be `https://.blob.core.windows.net/`
but may differ if you are using Azure DNS zone endpoints.
- You can find the correct endpoint by looking for the Blob
- Primary Endpoint in the endpoints tab in the Azure console
- or with the CLI by issuing `az storage account list --query=''[].{name:
- name, "resource group": resourceGroup, "blob endpoint":
- primaryEndpoints.blob}''`.'
+ You can find the correct endpoint by looking for the Blob Primary Endpoint in the
+ endpoints tab in the Azure console or with the CLI by issuing
+ `az storage account list --query='[].{name: name, "resource group": resourceGroup, "blob endpoint": primaryEndpoints.blob}'`.
maxLength: 1024
pattern: ^https://
type: string
@@ -188,6 +229,12 @@ spec:
- storageAccountType
type: object
type: object
+ disableExtensionOperations:
+ description: |-
+ DisableExtensionOperations specifies whether extension operations should be disabled on the virtual machine.
+ Use this setting only if VMExtensions are not supported by your image, as it disables CAPZ bootstrapping extension used for detecting Kubernetes bootstrap failure.
+ This may only be set to True when no extensions are configured on the virtual machine.
+ type: boolean
dnsServers:
description: DNSServers adds a list of DNS Server IP addresses to the
VM NICs.
@@ -195,23 +242,23 @@ spec:
type: string
type: array
enableIPForwarding:
- description: EnableIPForwarding enables IP Forwarding in Azure which
- is required for some CNI's to send traffic from a pods on one machine
- to another. This is required for IpV6 with Calico in combination with
- User Defined Routes (set by the Azure Cloud Controller manager). Default
- is false for disabled.
+ description: |-
+ EnableIPForwarding enables IP Forwarding in Azure which is required for some CNI's to send traffic from a pods on one machine
+ to another. This is required for IpV6 with Calico in combination with User Defined Routes (set by the Azure Cloud Controller
+ manager). Default is false for disabled.
type: boolean
failureDomain:
- description: FailureDomain is the failure domain unique identifier this
- Machine should be attached to, as defined in Cluster API. This relates
- to an Azure Availability Zone
+ description: |-
+ FailureDomain is the failure domain unique identifier this Machine should be attached to,
+ as defined in Cluster API. This relates to an Azure Availability Zone
type: string
identity:
default: None
- description: Identity is the type of identity used for the virtual machine.
- The type 'SystemAssigned' is an implicitly created identity. The generated
- identity will be assigned a Subscription contributor role. The type
- 'UserAssigned' is a standalone Azure resource provided by the user
+ description: |-
+ Identity is the type of identity used for the virtual machine.
+ The type 'SystemAssigned' is an implicitly created identity.
+ The generated identity will be assigned a Subscription contributor role.
+ The type 'UserAssigned' is a standalone Azure resource provided by the user
and assigned to the VM
enum:
- None
@@ -219,9 +266,10 @@ spec:
- UserAssigned
type: string
image:
- description: Image is used to provide details of an image to use during
- VM creation. If image details are omitted the image will default the
- Azure Marketplace "capi" offer, which is based on Ubuntu.
+ description: |-
+ Image is used to provide details of an image to use during VM creation.
+ If image details are omitted the image will default the Azure Marketplace "capi" offer,
+ which is based on Ubuntu.
properties:
computeGallery:
description: ComputeGallery specifies an image to use from the Azure
@@ -240,9 +288,9 @@ spec:
description: Plan contains plan information.
properties:
offer:
- description: Offer specifies the name of a group of related
- images created by the publisher. For example, UbuntuServer,
- WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -251,9 +299,9 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer, such
- as a major release of a distribution. For example, 18.04-LTS,
- 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
required:
@@ -270,12 +318,12 @@ spec:
that contains the private compute gallery.
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or 'latest'.
- Major, Minor, and Build are decimal numbers. Specify 'latest'
- to use the latest version of an image available at deploy
- time. Even if you use 'latest', the VM image will not automatically
- update after deploy time even if a new version becomes available.
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -291,9 +339,9 @@ spec:
Marketplace
properties:
offer:
- description: Offer specifies the name of a group of related
- images created by the publisher. For example, UbuntuServer,
- WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -302,24 +350,24 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer, such as
- a major release of a distribution. For example, 18.04-LTS,
- 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
thirdPartyImage:
default: false
- description: ThirdPartyImage indicates the image is published
- by a third party publisher and a Plan will be generated for
- it.
+ description: |-
+ ThirdPartyImage indicates the image is published by a third party publisher and a Plan
+ will be generated for it.
type: boolean
version:
- description: Version specifies the version of an image sku.
- The allowed formats are Major.Minor.Build or 'latest'. Major,
- Minor, and Build are decimal numbers. Specify 'latest' to
- use the latest version of an image available at deploy time.
- Even if you use 'latest', the VM image will not automatically
- update after deploy time even if a new version becomes available.
+ description: |-
+ Version specifies the version of an image sku. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -329,8 +377,9 @@ spec:
- version
type: object
sharedGallery:
- description: 'SharedGallery specifies an image to use from an Azure
- Shared Image Gallery Deprecated: use ComputeGallery instead.'
+ description: |-
+ SharedGallery specifies an image to use from an Azure Shared Image Gallery
+ Deprecated: use ComputeGallery instead.
properties:
gallery:
description: Gallery specifies the name of the shared image
@@ -342,19 +391,17 @@ spec:
minLength: 1
type: string
offer:
- description: Offer specifies the name of a group of related
- images created by the publisher. For example, UbuntuServer,
- WindowsServer This value will be used to add a `Plan` in the
- API request when creating the VM/VMSS resource. This is needed
- when the source image from which this SIG image was built
- requires the `Plan` to be used.
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
publisher:
- description: Publisher is the name of the organization that
- created the image. This value will be used to add a `Plan`
- in the API request when creating the VM/VMSS resource. This
- is needed when the source image from which this SIG image
- was built requires the `Plan` to be used.
+ description: |-
+ Publisher is the name of the organization that created the image.
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
resourceGroup:
description: ResourceGroup specifies the resource group containing
@@ -362,12 +409,11 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer, such as
- a major release of a distribution. For example, 18.04-LTS,
- 2019-Datacenter This value will be used to add a `Plan` in
- the API request when creating the VM/VMSS resource. This is
- needed when the source image from which this SIG image was
- built requires the `Plan` to be used.
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
subscriptionID:
description: SubscriptionID is the identifier of the subscription
@@ -375,12 +421,12 @@ spec:
minLength: 1
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or 'latest'.
- Major, Minor, and Build are decimal numbers. Specify 'latest'
- to use the latest version of an image available at deploy
- time. Even if you use 'latest', the VM image will not automatically
- update after deploy time even if a new version becomes available.
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
+ time even if a new version becomes available.
minLength: 1
type: string
required:
@@ -392,25 +438,24 @@ spec:
type: object
type: object
networkInterfaces:
- description: NetworkInterfaces specifies a list of network interface
- configurations. If left unspecified, the VM will get a single network
- interface with a single IPConfig in the subnet specified in the cluster's
- node subnet field. The primary interface will be the first networkInterface
- specified (index 0) in the list.
+ description: |-
+ NetworkInterfaces specifies a list of network interface configurations.
+ If left unspecified, the VM will get a single network interface with a
+ single IPConfig in the subnet specified in the cluster's node subnet field.
+ The primary interface will be the first networkInterface specified (index 0) in the list.
items:
description: NetworkInterface defines a network interface.
properties:
acceleratedNetworking:
- description: AcceleratedNetworking enables or disables Azure accelerated
- networking. If omitted, it will be set based on whether the
- requested VMSize supports accelerated networking. If AcceleratedNetworking
- is set to true with a VMSize that does not support it, Azure
- will return an error.
+ description: |-
+ AcceleratedNetworking enables or disables Azure accelerated networking. If omitted, it will be set based on
+ whether the requested VMSize supports accelerated networking.
+ If AcceleratedNetworking is set to true with a VMSize that does not support it, Azure will return an error.
type: boolean
privateIPConfigs:
- description: PrivateIPConfigs specifies the number of private
- IP addresses to attach to the interface. Defaults to 1 if not
- specified.
+ description: |-
+ PrivateIPConfigs specifies the number of private IP addresses to attach to the interface.
+ Defaults to 1 if not specified.
type: integer
subnetName:
description: SubnetName specifies the subnet in which the new
@@ -434,9 +479,9 @@ spec:
the os disk.
properties:
option:
- description: Option enables ephemeral OS when set to "Local"
- See https://docs.microsoft.com/en-us/azure/virtual-machines/ephemeral-os-disks
- for full details
+ description: |-
+ Option enables ephemeral OS when set to "Local"
+ See https://learn.microsoft.com/azure/virtual-machines/ephemeral-os-disks for full details
enum:
- Local
type: string
@@ -444,7 +489,8 @@ spec:
- option
type: object
diskSizeGB:
- description: DiskSizeGB is the size in GB to assign to the OS disk.
+ description: |-
+ DiskSizeGB is the size in GB to assign to the OS disk.
Will have a default of 30GB if not provided
format: int32
type: integer
@@ -453,14 +499,43 @@ spec:
the OS disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk encryption
- options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security profile
+ for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
@@ -482,10 +557,39 @@ spec:
for a virtual machine.
properties:
encryptionAtHost:
- description: This field indicates whether Host Encryption should
- be enabled or disabled for a virtual machine or virtual machine
- scale set. Default is disabled.
+ description: |-
+ This field indicates whether Host Encryption should be enabled
+ or disabled for a virtual machine or virtual machine scale set.
+ This should be disabled when SecurityEncryptionType is set to DiskWithVMGuestState.
+ Default is disabled.
type: boolean
+ securityType:
+ description: |-
+ SecurityType specifies the SecurityType of the virtual machine. It has to be set to any specified value to
+ enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
+ enum:
+ - ConfidentialVM
+ - TrustedLaunch
+ type: string
+ uefiSettings:
+ description: UefiSettings specifies the security settings like secure
+ boot and vTPM used while creating the virtual machine.
+ properties:
+ secureBootEnabled:
+ description: |-
+ SecureBootEnabled specifies whether secure boot should be enabled on the virtual machine.
+ Secure Boot verifies the digital signature of all boot components and halts the boot process if signature verification fails.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ vTpmEnabled:
+ description: |-
+ VTpmEnabled specifies whether vTPM should be enabled on the virtual machine.
+ When true it enables the virtualized trusted platform module measurements to create a known good boot integrity policy baseline.
+ The integrity policy baseline is used for comparison with measurements from subsequent VM boots to determine if anything has changed.
+ This is required to be set to Enabled if SecurityEncryptionType is defined.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ type: object
type: object
spotVMOptions:
description: SpotVMOptions allows the ability to specify the Machine
@@ -508,9 +612,9 @@ spec:
x-kubernetes-int-or-string: true
type: object
sshPublicKey:
- description: SSHPublicKey is the SSH public key string, base64-encoded
- to add to a Virtual Machine. Linux only. Refer to documentation on
- how to set up SSH access on Windows instances.
+ description: |-
+ SSHPublicKey is the SSH public key string, base64-encoded to add to a Virtual Machine. Linux only.
+ Refer to documentation on how to set up SSH access on Windows instances.
type: string
subnetName:
description: 'Deprecated: SubnetName should be set in the networkInterfaces
@@ -521,32 +625,36 @@ spec:
assign to the system-assigned identity.
properties:
definitionID:
- description: 'DefinitionID is the ID of the role definition to create
- for a system assigned identity. It can be an Azure built-in role
- or a custom role. Refer to built-in roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles'
+ description: |-
+ DefinitionID is the ID of the role definition to create for a system assigned identity. It can be an Azure built-in role or a custom role.
+ Refer to built-in roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles
type: string
name:
- description: Name is the name of the role assignment to create for
- a system assigned identity. It can be any valid UUID. If not specified,
- a random UUID will be generated.
+ description: |-
+ Name is the name of the role assignment to create for a system assigned identity. It can be any valid UUID.
+ If not specified, a random UUID will be generated.
type: string
scope:
- description: Scope is the scope that the role assignment or definition
- applies to. The scope can be any REST resource instance. If not
- specified, the scope will be the subscription.
+ description: |-
+ Scope is the scope that the role assignment or definition applies to. The scope can be any REST resource instance.
+ If not specified, the scope will be the subscription.
type: string
type: object
userAssignedIdentities:
- description: UserAssignedIdentities is a list of standalone Azure identities
- provided by the user The lifecycle of a user-assigned identity is
- managed separately from the lifecycle of the AzureMachine. See https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
+ description: |-
+ UserAssignedIdentities is a list of standalone Azure identities provided by the user
+ The lifecycle of a user-assigned identity is managed separately from the lifecycle of
+ the AzureMachine.
+ See https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
items:
- description: UserAssignedIdentity defines the user-assigned identities
- provided by the user to be assigned to Azure resources.
+ description: |-
+ UserAssignedIdentity defines the user-assigned identities provided
+ by the user to be assigned to Azure resources.
properties:
providerID:
- description: 'ProviderID is the identification ID of the user-assigned
- Identity, the format of an identity is: ''azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'''
+ description: |-
+ ProviderID is the identification ID of the user-assigned Identity, the format of an identity is:
+ 'azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'
type: string
required:
- providerID
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
index 6783fdd81..f2224fb64 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,44 +76,50 @@ spec:
to create an AzureMachine from a template.
properties:
metadata:
- description: "ObjectMeta is metadata that all persisted resources
- must have, which includes all objects users must create. This
- is a copy of customizable fields from metav1.ObjectMeta. \n ObjectMeta
- is embedded in `Machine.Spec`, `MachineDeployment.Template` and
- `MachineSet.Template`, which are not top-level Kubernetes objects.
- Given that metav1.ObjectMeta has lots of special cases and read-only
- fields which end up in the generated CRD validation, having it
- as a subset simplifies the API and some issues that can impact
- user experience. \n During the [upgrade to controller-tools@v2](https://github.com/kubernetes-sigs/cluster-api/pull/1054)
- for v1alpha2, we noticed a failure would occur running Cluster
- API test suite against the new CRDs, specifically `spec.metadata.creationTimestamp
- in body must be of type string: \"null\"`. The investigation showed
- that `controller-tools@v2` behaves differently than its previous
- version when handling types from [metav1](k8s.io/apimachinery/pkg/apis/meta/v1)
- package. \n In more details, we found that embedded (non-top level)
- types that embedded `metav1.ObjectMeta` had validation properties,
- including for `creationTimestamp` (metav1.Time). The `metav1.Time`
- type specifies a custom json marshaller that, when IsZero() is
- true, returns `null` which breaks validation because the field
- isn't marked as nullable. \n In future versions, controller-tools@v2
- might allow overriding the type and validation for embedded types.
- When that happens, this hack should be revisited."
+ description: |-
+ ObjectMeta is metadata that all persisted resources must have, which includes all objects
+ users must create. This is a copy of customizable fields from metav1.ObjectMeta.
+
+
+ ObjectMeta is embedded in `Machine.Spec`, `MachineDeployment.Template` and `MachineSet.Template`,
+ which are not top-level Kubernetes objects. Given that metav1.ObjectMeta has lots of special cases
+ and read-only fields which end up in the generated CRD validation, having it as a subset simplifies
+ the API and some issues that can impact user experience.
+
+
+ During the [upgrade to controller-tools@v2](https://github.com/kubernetes-sigs/cluster-api/pull/1054)
+ for v1alpha2, we noticed a failure would occur running Cluster API test suite against the new CRDs,
+ specifically `spec.metadata.creationTimestamp in body must be of type string: "null"`.
+ The investigation showed that `controller-tools@v2` behaves differently than its previous version
+ when handling types from [metav1](k8s.io/apimachinery/pkg/apis/meta/v1) package.
+
+
+ In more details, we found that embedded (non-top level) types that embedded `metav1.ObjectMeta`
+ had validation properties, including for `creationTimestamp` (metav1.Time).
+ The `metav1.Time` type specifies a custom json marshaller that, when IsZero() is true, returns `null`
+ which breaks validation because the field isn't marked as nullable.
+
+
+ In future versions, controller-tools@v2 might allow overriding the type and validation for embedded
+ types. When that happens, this hack should be revisited.
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -124,25 +135,33 @@ spec:
enabled or disabled on the virtual machine.
properties:
ultraSSDEnabled:
- description: UltraSSDEnabled enables or disables Azure UltraSSD
- capability for the virtual machine. Defaults to true if
- Ultra SSD data disks are specified, otherwise it doesn't
- set the capability on the VM.
+ description: |-
+ UltraSSDEnabled enables or disables Azure UltraSSD capability for the virtual machine.
+ Defaults to true if Ultra SSD data disks are specified,
+ otherwise it doesn't set the capability on the VM.
type: boolean
type: object
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to an instance, in addition to the ones added by default by
- the Azure provider. If both the AzureCluster and the AzureMachine
- specify the same tag name with different values, the AzureMachine's
- value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ Azure provider. If both the AzureCluster and the AzureMachine specify the same tag name with different values, the
+ AzureMachine's value takes precedence.
type: object
allocatePublicIP:
description: AllocatePublicIP allows the ability to create dynamic
public ips for machines where this value is true.
type: boolean
+ capacityReservationGroupID:
+ description: |-
+ CapacityReservationGroupID specifies the capacity reservation group resource id that should be
+ used for allocating the virtual machine.
+ The field size should be greater than 0 and the field input must start with '/'.
+ The input for capacityReservationGroupID must be similar to '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}'.
+ The keys which are used should be among 'subscriptions', 'providers' and 'resourcegroups' followed by valid ID or names respectively.
+ It is optional but may not be changed once set.
+ type: string
dataDisks:
description: DataDisk specifies the parameters that are used
to add one or more data disks to the machine
@@ -163,11 +182,9 @@ spec:
format: int32
type: integer
lun:
- description: Lun Specifies the logical unit number of
- the data disk. This value is used to identify data disks
- within the VM and therefore must be unique for each
- data disk attached to a VM. The value must be between
- 0 and 63.
+ description: |-
+ Lun Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
+ The value must be between 0 and 63.
format: int32
type: integer
managedDisk:
@@ -175,21 +192,51 @@ spec:
for the data disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk
- encryption options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed
+ disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security
+ profile for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
nameSuffix:
- description: NameSuffix is the suffix to be appended to
- the machine name to generate the disk name. Each disk
- name will be in format _.
+ description: |-
+ NameSuffix is the suffix to be appended to the machine name to generate the disk name.
+ Each disk name will be in format _.
type: string
required:
- diskSizeGB
@@ -197,23 +244,21 @@ spec:
type: object
type: array
diagnostics:
- description: Diagnostics specifies the diagnostics settings
- for a virtual machine. If not specified then Boot diagnostics
- (Managed) will be enabled.
+ description: |-
+ Diagnostics specifies the diagnostics settings for a virtual machine.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
boot:
- description: Boot configures the boot diagnostics settings
- for the virtual machine. This allows to configure capturing
- serial output from the virtual machine on boot. This is
- useful for debugging software based launch issues. If
- not specified then Boot diagnostics (Managed) will be
- enabled.
+ description: |-
+ Boot configures the boot diagnostics settings for the virtual machine.
+ This allows to configure capturing serial output from the virtual machine on boot.
+ This is useful for debugging software based launch issues.
+ If not specified then Boot diagnostics (Managed) will be enabled.
properties:
storageAccountType:
- description: StorageAccountType determines if the storage
- account for storing the diagnostics data should be
- disabled (Disabled), provisioned by Azure (Managed)
- or by the user (UserManaged).
+ description: |-
+ StorageAccountType determines if the storage account for storing the diagnostics data
+ should be disabled (Disabled), provisioned by Azure (Managed) or by the user (UserManaged).
enum:
- Managed
- UserManaged
@@ -224,16 +269,13 @@ spec:
user-managed storage account.
properties:
storageAccountURI:
- description: 'StorageAccountURI is the URI of the
- user-managed storage account. The URI typically
- will be `https://.blob.core.windows.net/`
- but may differ if you are using Azure DNS zone
- endpoints. You can find the correct endpoint by
- looking for the Blob Primary Endpoint in the endpoints
- tab in the Azure console or with the CLI by issuing
- `az storage account list --query=''[].{name: name,
- "resource group": resourceGroup, "blob endpoint":
- primaryEndpoints.blob}''`.'
+ description: |-
+ StorageAccountURI is the URI of the user-managed storage account.
+ The URI typically will be `https://.blob.core.windows.net/`
+ but may differ if you are using Azure DNS zone endpoints.
+ You can find the correct endpoint by looking for the Blob Primary Endpoint in the
+ endpoints tab in the Azure console or with the CLI by issuing
+ `az storage account list --query='[].{name: name, "resource group": resourceGroup, "blob endpoint": primaryEndpoints.blob}'`.
maxLength: 1024
pattern: ^https://
type: string
@@ -244,6 +286,12 @@ spec:
- storageAccountType
type: object
type: object
+ disableExtensionOperations:
+ description: |-
+ DisableExtensionOperations specifies whether extension operations should be disabled on the virtual machine.
+ Use this setting only if VMExtensions are not supported by your image, as it disables CAPZ bootstrapping extension used for detecting Kubernetes bootstrap failure.
+ This may only be set to True when no extensions are configured on the virtual machine.
+ type: boolean
dnsServers:
description: DNSServers adds a list of DNS Server IP addresses
to the VM NICs.
@@ -251,34 +299,34 @@ spec:
type: string
type: array
enableIPForwarding:
- description: EnableIPForwarding enables IP Forwarding in Azure
- which is required for some CNI's to send traffic from a pods
- on one machine to another. This is required for IpV6 with
- Calico in combination with User Defined Routes (set by the
- Azure Cloud Controller manager). Default is false for disabled.
+ description: |-
+ EnableIPForwarding enables IP Forwarding in Azure which is required for some CNI's to send traffic from a pods on one machine
+ to another. This is required for IpV6 with Calico in combination with User Defined Routes (set by the Azure Cloud Controller
+ manager). Default is false for disabled.
type: boolean
failureDomain:
- description: FailureDomain is the failure domain unique identifier
- this Machine should be attached to, as defined in Cluster
- API. This relates to an Azure Availability Zone
+ description: |-
+ FailureDomain is the failure domain unique identifier this Machine should be attached to,
+ as defined in Cluster API. This relates to an Azure Availability Zone
type: string
identity:
default: None
- description: Identity is the type of identity used for the virtual
- machine. The type 'SystemAssigned' is an implicitly created
- identity. The generated identity will be assigned a Subscription
- contributor role. The type 'UserAssigned' is a standalone
- Azure resource provided by the user and assigned to the VM
+ description: |-
+ Identity is the type of identity used for the virtual machine.
+ The type 'SystemAssigned' is an implicitly created identity.
+ The generated identity will be assigned a Subscription contributor role.
+ The type 'UserAssigned' is a standalone Azure resource provided by the user
+ and assigned to the VM
enum:
- None
- SystemAssigned
- UserAssigned
type: string
image:
- description: Image is used to provide details of an image to
- use during VM creation. If image details are omitted the image
- will default the Azure Marketplace "capi" offer, which is
- based on Ubuntu.
+ description: |-
+ Image is used to provide details of an image to use during VM creation.
+ If image details are omitted the image will default the Azure Marketplace "capi" offer,
+ which is based on Ubuntu.
properties:
computeGallery:
description: ComputeGallery specifies an image to use from
@@ -297,9 +345,9 @@ spec:
description: Plan contains plan information.
properties:
offer:
- description: Offer specifies the name of a group
- of related images created by the publisher. For
- example, UbuntuServer, WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -308,9 +356,9 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer,
- such as a major release of a distribution. For
- example, 18.04-LTS, 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
required:
@@ -327,12 +375,11 @@ spec:
subscription that contains the private compute gallery.
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or
- 'latest'. Major, Minor, and Build are decimal numbers.
- Specify 'latest' to use the latest version of an image
- available at deploy time. Even if you use 'latest',
- the VM image will not automatically update after deploy
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
time even if a new version becomes available.
minLength: 1
type: string
@@ -349,9 +396,9 @@ spec:
the Azure Marketplace
properties:
offer:
- description: Offer specifies the name of a group of
- related images created by the publisher. For example,
- UbuntuServer, WindowsServer
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
minLength: 1
type: string
publisher:
@@ -360,24 +407,23 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer,
- such as a major release of a distribution. For example,
- 18.04-LTS, 2019-Datacenter
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
minLength: 1
type: string
thirdPartyImage:
default: false
- description: ThirdPartyImage indicates the image is
- published by a third party publisher and a Plan will
- be generated for it.
+ description: |-
+ ThirdPartyImage indicates the image is published by a third party publisher and a Plan
+ will be generated for it.
type: boolean
version:
- description: Version specifies the version of an image
- sku. The allowed formats are Major.Minor.Build or
- 'latest'. Major, Minor, and Build are decimal numbers.
- Specify 'latest' to use the latest version of an image
- available at deploy time. Even if you use 'latest',
- the VM image will not automatically update after deploy
+ description: |-
+ Version specifies the version of an image sku. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
time even if a new version becomes available.
minLength: 1
type: string
@@ -388,9 +434,9 @@ spec:
- version
type: object
sharedGallery:
- description: 'SharedGallery specifies an image to use from
- an Azure Shared Image Gallery Deprecated: use ComputeGallery
- instead.'
+ description: |-
+ SharedGallery specifies an image to use from an Azure Shared Image Gallery
+ Deprecated: use ComputeGallery instead.
properties:
gallery:
description: Gallery specifies the name of the shared
@@ -402,21 +448,17 @@ spec:
minLength: 1
type: string
offer:
- description: Offer specifies the name of a group of
- related images created by the publisher. For example,
- UbuntuServer, WindowsServer This value will be used
- to add a `Plan` in the API request when creating the
- VM/VMSS resource. This is needed when the source image
- from which this SIG image was built requires the `Plan`
- to be used.
+ description: |-
+ Offer specifies the name of a group of related images created by the publisher.
+ For example, UbuntuServer, WindowsServer
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
publisher:
- description: Publisher is the name of the organization
- that created the image. This value will be used to
- add a `Plan` in the API request when creating the
- VM/VMSS resource. This is needed when the source image
- from which this SIG image was built requires the `Plan`
- to be used.
+ description: |-
+ Publisher is the name of the organization that created the image.
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
resourceGroup:
description: ResourceGroup specifies the resource group
@@ -424,13 +466,11 @@ spec:
minLength: 1
type: string
sku:
- description: SKU specifies an instance of an offer,
- such as a major release of a distribution. For example,
- 18.04-LTS, 2019-Datacenter This value will be used
- to add a `Plan` in the API request when creating the
- VM/VMSS resource. This is needed when the source image
- from which this SIG image was built requires the `Plan`
- to be used.
+ description: |-
+ SKU specifies an instance of an offer, such as a major release of a distribution.
+ For example, 18.04-LTS, 2019-Datacenter
+ This value will be used to add a `Plan` in the API request when creating the VM/VMSS resource.
+ This is needed when the source image from which this SIG image was built requires the `Plan` to be used.
type: string
subscriptionID:
description: SubscriptionID is the identifier of the
@@ -438,12 +478,11 @@ spec:
minLength: 1
type: string
version:
- description: Version specifies the version of the marketplace
- image. The allowed formats are Major.Minor.Build or
- 'latest'. Major, Minor, and Build are decimal numbers.
- Specify 'latest' to use the latest version of an image
- available at deploy time. Even if you use 'latest',
- the VM image will not automatically update after deploy
+ description: |-
+ Version specifies the version of the marketplace image. The allowed formats
+ are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers.
+ Specify 'latest' to use the latest version of an image available at deploy time.
+ Even if you use 'latest', the VM image will not automatically update after deploy
time even if a new version becomes available.
minLength: 1
type: string
@@ -456,27 +495,24 @@ spec:
type: object
type: object
networkInterfaces:
- description: NetworkInterfaces specifies a list of network interface
- configurations. If left unspecified, the VM will get a single
- network interface with a single IPConfig in the subnet specified
- in the cluster's node subnet field. The primary interface
- will be the first networkInterface specified (index 0) in
- the list.
+ description: |-
+ NetworkInterfaces specifies a list of network interface configurations.
+ If left unspecified, the VM will get a single network interface with a
+ single IPConfig in the subnet specified in the cluster's node subnet field.
+ The primary interface will be the first networkInterface specified (index 0) in the list.
items:
description: NetworkInterface defines a network interface.
properties:
acceleratedNetworking:
- description: AcceleratedNetworking enables or disables
- Azure accelerated networking. If omitted, it will be
- set based on whether the requested VMSize supports accelerated
- networking. If AcceleratedNetworking is set to true
- with a VMSize that does not support it, Azure will return
- an error.
+ description: |-
+ AcceleratedNetworking enables or disables Azure accelerated networking. If omitted, it will be set based on
+ whether the requested VMSize supports accelerated networking.
+ If AcceleratedNetworking is set to true with a VMSize that does not support it, Azure will return an error.
type: boolean
privateIPConfigs:
- description: PrivateIPConfigs specifies the number of
- private IP addresses to attach to the interface. Defaults
- to 1 if not specified.
+ description: |-
+ PrivateIPConfigs specifies the number of private IP addresses to attach to the interface.
+ Defaults to 1 if not specified.
type: integer
subnetName:
description: SubnetName specifies the subnet in which
@@ -500,9 +536,9 @@ spec:
for the os disk.
properties:
option:
- description: Option enables ephemeral OS when set to
- "Local" See https://docs.microsoft.com/en-us/azure/virtual-machines/ephemeral-os-disks
- for full details
+ description: |-
+ Option enables ephemeral OS when set to "Local"
+ See https://learn.microsoft.com/azure/virtual-machines/ephemeral-os-disks for full details
enum:
- Local
type: string
@@ -510,8 +546,9 @@ spec:
- option
type: object
diskSizeGB:
- description: DiskSizeGB is the size in GB to assign to the
- OS disk. Will have a default of 30GB if not provided
+ description: |-
+ DiskSizeGB is the size in GB to assign to the OS disk.
+ Will have a default of 30GB if not provided
format: int32
type: integer
managedDisk:
@@ -519,14 +556,43 @@ spec:
for the OS disk.
properties:
diskEncryptionSet:
- description: DiskEncryptionSetParameters defines disk
- encryption options.
+ description: DiskEncryptionSet specifies the customer-managed
+ disk encryption set resource id for the managed disk.
properties:
id:
description: ID defines resourceID for diskEncryptionSet
resource. It must be in the same subscription
type: string
type: object
+ securityProfile:
+ description: SecurityProfile specifies the security
+ profile for the managed disk.
+ properties:
+ diskEncryptionSet:
+ description: |-
+ DiskEncryptionSet specifies the customer-managed disk encryption set resource id for the
+ managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and
+ VMGuest blob.
+ properties:
+ id:
+ description: ID defines resourceID for diskEncryptionSet
+ resource. It must be in the same subscription
+ type: string
+ type: object
+ securityEncryptionType:
+ description: |-
+ SecurityEncryptionType specifies the encryption type of the managed disk.
+ It is set to DiskWithVMGuestState to encrypt the managed disk along with the VMGuestState
+ blob, and to VMGuestStateOnly to encrypt the VMGuestState blob only.
+ When set to VMGuestStateOnly, VirtualizedTrustedPlatformModule should be set to Enabled.
+ When set to DiskWithVMGuestState, EncryptionAtHost should be disabled, SecureBoot and
+ VirtualizedTrustedPlatformModule should be set to Enabled.
+ It can be set only for Confidential VMs.
+ enum:
+ - VMGuestStateOnly
+ - DiskWithVMGuestState
+ type: string
+ type: object
storageAccountType:
type: string
type: object
@@ -548,10 +614,40 @@ spec:
settings for a virtual machine.
properties:
encryptionAtHost:
- description: This field indicates whether Host Encryption
- should be enabled or disabled for a virtual machine or
- virtual machine scale set. Default is disabled.
+ description: |-
+ This field indicates whether Host Encryption should be enabled
+ or disabled for a virtual machine or virtual machine scale set.
+ This should be disabled when SecurityEncryptionType is set to DiskWithVMGuestState.
+ Default is disabled.
type: boolean
+ securityType:
+ description: |-
+ SecurityType specifies the SecurityType of the virtual machine. It has to be set to any specified value to
+ enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
+ enum:
+ - ConfidentialVM
+ - TrustedLaunch
+ type: string
+ uefiSettings:
+ description: UefiSettings specifies the security settings
+ like secure boot and vTPM used while creating the virtual
+ machine.
+ properties:
+ secureBootEnabled:
+ description: |-
+ SecureBootEnabled specifies whether secure boot should be enabled on the virtual machine.
+ Secure Boot verifies the digital signature of all boot components and halts the boot process if signature verification fails.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ vTpmEnabled:
+ description: |-
+ VTpmEnabled specifies whether vTPM should be enabled on the virtual machine.
+ When true it enables the virtualized trusted platform module measurements to create a known good boot integrity policy baseline.
+ The integrity policy baseline is used for comparison with measurements from subsequent VM boots to determine if anything has changed.
+ This is required to be set to Enabled if SecurityEncryptionType is defined.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
+ type: boolean
+ type: object
type: object
spotVMOptions:
description: SpotVMOptions allows the ability to specify the
@@ -575,9 +671,9 @@ spec:
x-kubernetes-int-or-string: true
type: object
sshPublicKey:
- description: SSHPublicKey is the SSH public key string, base64-encoded
- to add to a Virtual Machine. Linux only. Refer to documentation
- on how to set up SSH access on Windows instances.
+ description: |-
+ SSHPublicKey is the SSH public key string, base64-encoded to add to a Virtual Machine. Linux only.
+ Refer to documentation on how to set up SSH access on Windows instances.
type: string
subnetName:
description: 'Deprecated: SubnetName should be set in the networkInterfaces
@@ -588,36 +684,36 @@ spec:
scope to assign to the system-assigned identity.
properties:
definitionID:
- description: 'DefinitionID is the ID of the role definition
- to create for a system assigned identity. It can be an
- Azure built-in role or a custom role. Refer to built-in
- roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles'
+ description: |-
+ DefinitionID is the ID of the role definition to create for a system assigned identity. It can be an Azure built-in role or a custom role.
+ Refer to built-in roles: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles
type: string
name:
- description: Name is the name of the role assignment to
- create for a system assigned identity. It can be any valid
- UUID. If not specified, a random UUID will be generated.
+ description: |-
+ Name is the name of the role assignment to create for a system assigned identity. It can be any valid UUID.
+ If not specified, a random UUID will be generated.
type: string
scope:
- description: Scope is the scope that the role assignment
- or definition applies to. The scope can be any REST resource
- instance. If not specified, the scope will be the subscription.
+ description: |-
+ Scope is the scope that the role assignment or definition applies to. The scope can be any REST resource instance.
+ If not specified, the scope will be the subscription.
type: string
type: object
userAssignedIdentities:
- description: UserAssignedIdentities is a list of standalone
- Azure identities provided by the user The lifecycle of a user-assigned
- identity is managed separately from the lifecycle of the AzureMachine.
- See https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
+ description: |-
+ UserAssignedIdentities is a list of standalone Azure identities provided by the user
+ The lifecycle of a user-assigned identity is managed separately from the lifecycle of
+ the AzureMachine.
+ See https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli
items:
- description: UserAssignedIdentity defines the user-assigned
- identities provided by the user to be assigned to Azure
- resources.
+ description: |-
+ UserAssignedIdentity defines the user-assigned identities provided
+ by the user to be assigned to Azure resources.
properties:
providerID:
- description: 'ProviderID is the identification ID of the
- user-assigned Identity, the format of an identity is:
- ''azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'''
+ description: |-
+ ProviderID is the identification ID of the user-assigned Identity, the format of an identity is:
+ 'azure:///subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'
type: string
required:
- providerID
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
index 278342939..2d36297a9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,8 +72,11 @@ spec:
description: AzureManagedClusterSpec defines the desired state of AzureManagedCluster.
properties:
controlPlaneEndpoint:
- description: ControlPlaneEndpoint represents the endpoint used to communicate
- with the control plane.
+ description: |-
+ ControlPlaneEndpoint represents the endpoint used to communicate with the control plane.
+ Immutable, populated by the AKS API at create.
+ Because this field is programmatically set by CAPZ after resource creation, we define it as +optional
+ in the API schema to permit resource admission.
properties:
host:
description: The hostname on which the API server is serving.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml
new file mode 100644
index 000000000..6d2cb9e33
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml
@@ -0,0 +1,89 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedClusterTemplate
+ k8s.io/resource: azuremanagedclustertemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedclustertemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedClusterTemplate
+ name: azuremanagedclustertemplates
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: AzureManagedClusterTemplate is the Schema for the AzureManagedClusterTemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureManagedClusterTemplateSpec defines the desired state of
+ AzureManagedClusterTemplate.
+ properties:
+ template:
+ description: AzureManagedClusterTemplateResource describes the data
+ needed to create an AzureManagedCluster from a template.
+ properties:
+ spec:
+ description: AzureManagedClusterTemplateResourceSpec specifies an
+ Azure managed cluster template resource.
+ type: object
+ required:
+ - spec
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
index b66c51c31..4635d2a33 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -86,9 +91,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to Azure
- resources managed by the Azure provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the Azure provider, in addition to the
+ ones added by default.
type: object
addonProfiles:
description: AddonProfiles are the profiles of managed cluster add-on.
@@ -112,8 +117,9 @@ spec:
type: object
type: array
apiServerAccessProfile:
- description: APIServerAccessProfile is the access profile for AKS API
- server.
+ description: |-
+ APIServerAccessProfile is the access profile for AKS API server.
+ Immutable except for `authorizedIPRanges`.
properties:
authorizedIPRanges:
description: AuthorizedIPRanges - Authorized IP Ranges to kubernetes
@@ -122,19 +128,39 @@ spec:
type: string
type: array
enablePrivateCluster:
- description: EnablePrivateCluster - Whether to create the cluster
- as a private cluster or not.
+ description: EnablePrivateCluster indicates whether to create the
+ cluster as a private cluster or not.
type: boolean
enablePrivateClusterPublicFQDN:
- description: EnablePrivateClusterPublicFQDN - Whether to create
- additional public FQDN for private cluster or not.
+ description: EnablePrivateClusterPublicFQDN indicates whether to
+ create additional public FQDN for private cluster or not.
type: boolean
privateDNSZone:
- description: PrivateDNSZone - Private dns zone mode for private
+ description: PrivateDNSZone enables private dns zone mode for private
cluster.
+ type: string
+ type: object
+ asoManagedClusterPatches:
+ description: |-
+ ASOManagedClusterPatches defines JSON merge patches to be applied to the generated ASO ManagedCluster resource.
+ WARNING: This is meant to be used sparingly to enable features for development and testing that are not
+ otherwise represented in the CAPZ API. Misconfiguration that conflicts with CAPZ's normal mode of
+ operation is possible.
+ items:
+ type: string
+ type: array
+ autoUpgradeProfile:
+ description: AutoUpgradeProfile defines the auto upgrade configuration.
+ properties:
+ upgradeChannel:
+ description: UpgradeChannel determines the type of upgrade channel
+ for automatically upgrading the cluster.
enum:
- - System
- - None
+ - node-image
+ - none
+ - patch
+ - rapid
+ - stable
type: string
type: object
autoscalerProfile:
@@ -242,9 +268,33 @@ spec:
- "false"
type: string
type: object
+ azureEnvironment:
+ description: |-
+ AzureEnvironment is the name of the AzureCloud to be used.
+ The default value that would be used by most users is "AzurePublicCloud", other values are:
+ - ChinaCloud: "AzureChinaCloud"
+ - PublicCloud: "AzurePublicCloud"
+ - USGovernmentCloud: "AzureUSGovernmentCloud"
+
+
+ Note that values other than the default must also be accompanied by corresponding changes to the
+ aso-controller-settings Secret to configure ASO to refer to the non-Public cloud. ASO currently does
+ not support referring to multiple different clouds in a single installation. The following fields must
+ be defined in the Secret:
+ - AZURE_AUTHORITY_HOST
+ - AZURE_RESOURCE_MANAGER_ENDPOINT
+ - AZURE_RESOURCE_MANAGER_AUDIENCE
+
+
+ See the [ASO docs] for more details.
+
+
+ [ASO docs]: https://azure.github.io/azure-service-operator/guide/aso-controller-settings-options/
+ type: string
controlPlaneEndpoint:
- description: ControlPlaneEndpoint represents the endpoint used to communicate
- with the control plane.
+ description: |-
+ ControlPlaneEndpoint represents the endpoint used to communicate with the control plane.
+ Immutable, populated by the AKS API at create.
properties:
host:
description: The hostname on which the API server is serving.
@@ -257,11 +307,190 @@ spec:
- host
- port
type: object
+ disableLocalAccounts:
+ description: DisableLocalAccounts disables getting static credentials
+ for this cluster when set. Expected to only be used for AAD clusters.
+ type: boolean
+ dnsPrefix:
+ description: |-
+ DNSPrefix allows the user to customize dns prefix.
+ Immutable.
+ type: string
dnsServiceIP:
- description: DNSServiceIP is an IP address assigned to the Kubernetes
- DNS service. It must be within the Kubernetes service address range
- specified in serviceCidr.
+ description: |-
+ DNSServiceIP is an IP address assigned to the Kubernetes DNS service.
+ It must be within the Kubernetes service address range specified in serviceCidr.
+ Immutable.
type: string
+ enablePreviewFeatures:
+ description: EnablePreviewFeatures enables preview features for the
+ cluster.
+ type: boolean
+ extensions:
+ description: Extensions is a list of AKS extensions to be installed
+ on the cluster.
+ items:
+ description: |-
+ AKSExtension represents the configuration for an AKS cluster extension.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/aks/cluster-extensions
+ properties:
+ aksAssignedIdentityType:
+ description: AKSAssignedIdentityType is the type of the AKS assigned
+ identity.
+ enum:
+ - SystemAssigned
+ - UserAssigned
+ type: string
+ autoUpgradeMinorVersion:
+ default: true
+ description: AutoUpgradeMinorVersion is a flag to note if this
+ extension participates in auto upgrade of minor version, or
+ not.
+ type: boolean
+ configurationSettings:
+ additionalProperties:
+ type: string
+ description: ConfigurationSettings are the name-value pairs for
+ configuring this extension.
+ type: object
+ extensionType:
+ description: |-
+ ExtensionType is the type of the Extension of which this resource is an instance.
+ It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
+ type: string
+ identity:
+ description: Identity is the identity type of the Extension resource
+ in an AKS cluster.
+ enum:
+ - SystemAssigned
+ type: string
+ name:
+ description: Name is the name of the extension.
+ type: string
+ plan:
+ description: Plan is the plan of the extension.
+ properties:
+ name:
+ description: Name is the user-defined name of the 3rd Party
+ Artifact that is being procured.
+ type: string
+ product:
+ description: Product is the name of the 3rd Party artifact
+ that is being procured.
+ type: string
+ promotionCode:
+ description: PromotionCode is a publisher-provided promotion
+ code as provisioned in Data Market for the said product/artifact.
+ type: string
+ publisher:
+ description: Publisher is the name of the publisher of the
+ 3rd Party Artifact that is being bought.
+ type: string
+ version:
+ description: Version is the version of the plan.
+ type: string
+ type: object
+ releaseTrain:
+ description: |-
+ ReleaseTrain is the release train this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.)
+ This is only used if autoUpgradeMinorVersion is ‘true’.
+ type: string
+ scope:
+ description: Scope is the scope at which this extension is enabled.
+ properties:
+ releaseNamespace:
+ description: |-
+ ReleaseNamespace is the namespace where the extension Release must be placed, for a Cluster-scoped extension.
+ Required for Cluster-scoped extensions.
+ type: string
+ scopeType:
+ description: ScopeType is the scope of the extension. It can
+ be either Cluster or Namespace, but not both.
+ enum:
+ - Cluster
+ - Namespace
+ type: string
+ targetNamespace:
+ description: |-
+ TargetNamespace is the namespace where the extension will be created for a Namespace-scoped extension.
+ Required for Namespace-scoped extensions.
+ type: string
+ required:
+ - scopeType
+ type: object
+ version:
+ description: Version is the version of the extension.
+ type: string
+ required:
+ - extensionType
+ - name
+ type: object
+ type: array
+ fleetsMember:
+ description: |-
+ FleetsMember is the spec for the fleet this cluster is a member of.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/templates/microsoft.containerservice/2023-03-15-preview/fleets/members
+ properties:
+ group:
+ description: Group is the group this member belongs to for multi-cluster
+ update management.
+ type: string
+ managerName:
+ description: ManagerName is the name of the fleet manager.
+ type: string
+ managerResourceGroup:
+ description: ManagerResourceGroup is the resource group of the fleet
+ manager.
+ type: string
+ name:
+ description: Name is the name of the member.
+ type: string
+ required:
+ - managerName
+ - managerResourceGroup
+ type: object
+ httpProxyConfig:
+ description: |-
+ HTTPProxyConfig is the HTTP proxy configuration for the cluster.
+ Immutable.
+ properties:
+ httpProxy:
+ description: HTTPProxy is the HTTP proxy server endpoint to use.
+ type: string
+ httpsProxy:
+ description: HTTPSProxy is the HTTPS proxy server endpoint to use.
+ type: string
+ noProxy:
+ description: NoProxy indicates the endpoints that should not go
+ through proxy.
+ items:
+ type: string
+ type: array
+ trustedCa:
+ description: TrustedCA is the alternative CA cert to use for connecting
+ to proxy servers.
+ type: string
+ type: object
+ identity:
+ description: Identity configuration used by the AKS control plane.
+ properties:
+ type:
+ description: Type - The Identity type to use.
+ enum:
+ - SystemAssigned
+ - UserAssigned
+ type: string
+ userAssignedIdentityResourceID:
+ description: UserAssignedIdentityResourceID - Identity ARM resource
+ ID when using user-assigned identity.
+ type: string
+ type: object
identityRef:
description: IdentityRef is a reference to a AzureClusterIdentity to
be used when reconciling this cluster
@@ -270,36 +499,48 @@ spec:
description: API version of the referent.
type: string
fieldPath:
- description: 'If referring to a piece of an object instead of an
- entire object, this string should contain a valid JSON/Go field
- access statement, such as desiredState.manifest.containers[2].
- For example, if the object reference is to a container within
- a pod, this would take on a value like: "spec.containers{name}"
- (where "name" refers to the name of the container that triggered
- the event) or if no container name is specified "spec.containers[2]"
- (container with index 2 in this pod). This syntax is chosen only
- to have some well-defined way of referencing a part of an object.
- TODO: this design is not final and this field is subject to change
- in the future.'
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
- description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
resourceVersion:
- description: 'Specific resourceVersion to which this reference is
- made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
type: string
uid:
- description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
type: string
type: object
x-kubernetes-map-type: atomic
+ kubeletUserAssignedIdentity:
+ description: |-
+ KubeletUserAssignedIdentity is the user-assigned identity for kubelet.
+ For authentication with Azure Container Registry.
+ type: string
loadBalancerProfile:
description: LoadBalancerProfile is the profile of the cluster load
balancer.
@@ -309,18 +550,15 @@ spec:
SNAT ports per VM. Allowed values must be in the range of 0 to
64000 (inclusive). The default value is 0 which results in Azure
dynamically allocating ports.
- format: int32
type: integer
idleTimeoutInMinutes:
description: IdleTimeoutInMinutes - Desired outbound flow idle timeout
in minutes. Allowed values must be in the range of 4 to 120 (inclusive).
The default value is 30 minutes.
- format: int32
type: integer
managedOutboundIPs:
description: ManagedOutboundIPs - Desired managed outbound IPs for
the cluster load balancer.
- format: int32
type: integer
outboundIPPrefixes:
description: OutboundIPPrefixes - Desired outbound IP Prefix resources
@@ -336,7 +574,10 @@ spec:
type: array
type: object
loadBalancerSKU:
- description: LoadBalancerSKU is the SKU of the loadBalancer to be provisioned.
+ default: Standard
+ description: |-
+ LoadBalancerSKU is the SKU of the loadBalancer to be provisioned.
+ Immutable.
enum:
- Basic
- Standard
@@ -345,23 +586,56 @@ spec:
description: 'Location is a string matching one of the canonical Azure
region names. Examples: "westus2", "eastus".'
type: string
+ machineTemplate:
+ description: |-
+ MachineTemplate contains information about how machines
+ should be shaped when creating or updating a control plane.
+ For the AzureManagedControlPlaneTemplate, this field is used
+ only to fulfill the CAPI contract.
+ type: object
+ networkDataplane:
+ description: NetworkDataplane is the dataplane used for building the
+ Kubernetes network.
+ enum:
+ - azure
+ - cilium
+ type: string
networkPlugin:
description: NetworkPlugin used for building Kubernetes network.
enum:
- azure
- kubenet
+ - none
+ type: string
+ networkPluginMode:
+ description: |-
+ NetworkPluginMode is the mode the network plugin should use.
+ Allowed value is "overlay".
+ enum:
+ - overlay
type: string
networkPolicy:
description: NetworkPolicy used for building Kubernetes network.
enum:
- azure
- calico
+ - cilium
type: string
nodeResourceGroupName:
- description: NodeResourceGroupName is the name of the resource group
- containing cluster IaaS resources. Will be populated to default in
- webhook.
+ description: |-
+ NodeResourceGroupName is the name of the resource group
+ containing cluster IaaS resources. Will be populated to default
+ in webhook.
+ Immutable.
type: string
+ oidcIssuerProfile:
+ description: OIDCIssuerProfile is the OIDC issuer profile of the Managed
+ Cluster.
+ properties:
+ enabled:
+ description: Enabled is whether the OIDC issuer is enabled.
+ type: boolean
+ type: object
outboundType:
description: Outbound configuration used by Nodes.
enum:
@@ -371,9 +645,93 @@ spec:
- userDefinedRouting
type: string
resourceGroupName:
- description: ResourceGroupName is the name of the Azure resource group
- for this AKS Cluster.
+ description: |-
+ ResourceGroupName is the name of the Azure resource group for this AKS Cluster.
+ Immutable.
type: string
+ securityProfile:
+ description: SecurityProfile defines the security profile for cluster.
+ properties:
+ azureKeyVaultKms:
+ description: AzureKeyVaultKms defines Azure Key Vault Management
+ Services Profile for the security profile.
+ properties:
+ enabled:
+ description: Enabled enables the Azure Key Vault key management
+ service. The default is false.
+ type: boolean
+ keyID:
+ description: |-
+ KeyID defines the Identifier of Azure Key Vault key.
+ When Azure Key Vault key management service is enabled, this field is required and must be a valid key identifier.
+ type: string
+ keyVaultNetworkAccess:
+ default: Public
+ description: |-
+ KeyVaultNetworkAccess defines the network access of key vault.
+ The possible values are Public and Private.
+ Public means the key vault allows public access from all networks.
+ Private means the key vault disables public access and enables private link. The default value is Public.
+ type: string
+ keyVaultResourceID:
+ description: KeyVaultResourceID is the Resource ID of key vault.
+ When keyVaultNetworkAccess is Private, this field is required
+ and must be a valid resource ID.
+ type: string
+ required:
+ - enabled
+ - keyID
+ type: object
+ defender:
+ description: Defender settings for the security profile.
+ properties:
+ logAnalyticsWorkspaceResourceID:
+ description: |-
+ LogAnalyticsWorkspaceResourceID is the ID of the Log Analytics workspace that has to be associated with Microsoft Defender.
+ When Microsoft Defender is enabled, this field is required and must be a valid workspace resource ID.
+ type: string
+ securityMonitoring:
+ description: SecurityMonitoring profile defines the Microsoft
+ Defender threat detection for Cloud settings for the security
+ profile.
+ properties:
+ enabled:
+ description: Enabled enables Defender threat detection
+ type: boolean
+ required:
+ - enabled
+ type: object
+ required:
+ - logAnalyticsWorkspaceResourceID
+ - securityMonitoring
+ type: object
+ imageCleaner:
+ description: ImageCleaner settings for the security profile.
+ properties:
+ enabled:
+ description: Enabled enables the Image Cleaner on AKS cluster.
+ type: boolean
+ intervalHours:
+ description: IntervalHours defines Image Cleaner scanning interval
+ in hours. Default value is 24 hours.
+ maximum: 2160
+ minimum: 24
+ type: integer
+ required:
+ - enabled
+ type: object
+ workloadIdentity:
+ description: Workloadidentity enables Kubernetes applications to
+ access Azure cloud resources securely with Azure AD. Ensure to
+ enable OIDC issuer while enabling Workload Identity
+ properties:
+ enabled:
+ description: Enabled enables the workload identity.
+ type: boolean
+ required:
+ - enabled
+ type: object
+ type: object
sku:
description: SKU is the SKU of the AKS to be provisioned.
properties:
@@ -382,29 +740,33 @@ spec:
enum:
- Free
- Paid
+ - Standard
type: string
required:
- tier
type: object
sshPublicKey:
- description: SSHPublicKey is a string literal containing an ssh public
- key base64 encoded.
+ description: |-
+ SSHPublicKey is a string literal containing an ssh public key base64 encoded.
+ Use empty string to autogenerate new key. Use null value to not set key.
+ Immutable.
type: string
subscriptionID:
- description: SubscriptionID is the GUID of the Azure subscription to
- hold this cluster.
+ description: SubscriptionID is the GUID of the Azure subscription that
+ owns this cluster.
type: string
version:
description: Version defines the desired Kubernetes version.
minLength: 2
type: string
virtualNetwork:
- description: VirtualNetwork describes the vnet for the AKS cluster.
- Will be created if it does not exist.
+ description: VirtualNetwork describes the virtual network for the AKS
+ cluster. It will be created if it does not already exist.
properties:
cidrBlock:
type: string
name:
+ description: Name is the name of the virtual network.
type: string
resourceGroup:
description: ResourceGroup is the name of the Azure resource group
@@ -441,19 +803,18 @@ spec:
private endpoint.
type: string
manualApproval:
- description: ManualApproval specifies if the connection
- approval needs to be done manually or not. Set it true
- when the network admin does not have access to approve
- connections to the remote resource. Defaults to false.
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
type: boolean
name:
description: Name specifies the name of the private endpoint.
type: string
privateIPAddresses:
- description: PrivateIPAddresses specifies the IP addresses
- for the network interface associated with the private
- endpoint. They have to be part of the subnet where the
- private endpoint is linked.
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
items:
type: string
type: array
@@ -525,9 +886,9 @@ spec:
- name
type: object
required:
+ - identityRef
- location
- resourceGroupName
- - sshPublicKey
- version
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml
new file mode 100644
index 000000000..24816d298
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml
@@ -0,0 +1,896 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedControlPlaneTemplate
+ k8s.io/resource: azuremanagedcontrolplanetemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedcontrolplanetemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedControlPlaneTemplate
+ name: azuremanagedcontrolplanetemplates
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: AzureManagedControlPlaneTemplate is the Schema for the AzureManagedControlPlaneTemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureManagedControlPlaneTemplateSpec defines the desired state
+ of AzureManagedControlPlaneTemplate.
+ properties:
+ template:
+ description: AzureManagedControlPlaneTemplateResource describes the
+ data needed to create an AzureManagedCluster from a template.
+ properties:
+ spec:
+ description: AzureManagedControlPlaneTemplateResourceSpec specifies
+ an Azure managed control plane template resource.
+ properties:
+ aadProfile:
+ description: AadProfile is Azure Active Directory configuration
+ to integrate with AKS for aad authentication.
+ properties:
+ adminGroupObjectIDs:
+ description: AdminGroupObjectIDs - AAD group object IDs
+ that will have admin role of the cluster.
+ items:
+ type: string
+ type: array
+ managed:
+ description: Managed - Whether to enable managed AAD.
+ type: boolean
+ required:
+ - adminGroupObjectIDs
+ - managed
+ type: object
+ additionalTags:
+ additionalProperties:
+ type: string
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the Azure provider, in addition to the
+ ones added by default.
+ type: object
+ addonProfiles:
+ description: AddonProfiles are the profiles of managed cluster
+ add-on.
+ items:
+ description: AddonProfile represents a managed cluster add-on.
+ properties:
+ config:
+ additionalProperties:
+ type: string
+ description: Config - Key-value pairs for configuring
+ the add-on.
+ type: object
+ enabled:
+ description: Enabled - Whether the add-on is enabled or
+ not.
+ type: boolean
+ name:
+ description: Name - The name of the managed cluster add-on.
+ type: string
+ required:
+ - enabled
+ - name
+ type: object
+ type: array
+ apiServerAccessProfile:
+ description: |-
+ APIServerAccessProfile is the access profile for AKS API server.
+ Immutable except for `authorizedIPRanges`.
+ properties:
+ authorizedIPRanges:
+ description: AuthorizedIPRanges - Authorized IP Ranges to
+ kubernetes API server.
+ items:
+ type: string
+ type: array
+ enablePrivateCluster:
+ description: EnablePrivateCluster indicates whether to create
+ the cluster as a private cluster or not.
+ type: boolean
+ enablePrivateClusterPublicFQDN:
+ description: EnablePrivateClusterPublicFQDN indicates whether
+ to create additional public FQDN for private cluster or
+ not.
+ type: boolean
+ privateDNSZone:
+ description: PrivateDNSZone enables private dns zone mode
+ for private cluster.
+ type: string
+ type: object
+ asoManagedClusterPatches:
+ description: |-
+ ASOManagedClusterPatches defines JSON merge patches to be applied to the generated ASO ManagedCluster resource.
+ WARNING: This is meant to be used sparingly to enable features for development and testing that are not
+ otherwise represented in the CAPZ API. Misconfiguration that conflicts with CAPZ's normal mode of
+ operation is possible.
+ items:
+ type: string
+ type: array
+ autoUpgradeProfile:
+ description: AutoUpgradeProfile defines the auto upgrade configuration.
+ properties:
+ upgradeChannel:
+ description: UpgradeChannel determines the type of upgrade
+ channel for automatically upgrading the cluster.
+ enum:
+ - node-image
+ - none
+ - patch
+ - rapid
+ - stable
+ type: string
+ type: object
+ autoscalerProfile:
+ description: AutoscalerProfile is the parameters to be applied
+ to the cluster-autoscaler when enabled
+ properties:
+ balanceSimilarNodeGroups:
+ description: BalanceSimilarNodeGroups - Valid values are
+ 'true' and 'false'. The default is false.
+ enum:
+ - "true"
+ - "false"
+ type: string
+ expander:
+ description: Expander - If not specified, the default is
+ 'random'. See [expanders](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders)
+ for more information.
+ enum:
+ - least-waste
+ - most-pods
+ - priority
+ - random
+ type: string
+ maxEmptyBulkDelete:
+ description: MaxEmptyBulkDelete - The default is 10.
+ type: string
+ maxGracefulTerminationSec:
+ description: MaxGracefulTerminationSec - The default is
+ 600.
+ pattern: ^(\d+)$
+ type: string
+ maxNodeProvisionTime:
+ description: MaxNodeProvisionTime - The default is '15m'.
+ Values must be an integer followed by an 'm'. No unit
+ of time other than minutes (m) is supported.
+ pattern: ^(\d+)m$
+ type: string
+ maxTotalUnreadyPercentage:
+ description: MaxTotalUnreadyPercentage - The default is
+ 45. The maximum is 100 and the minimum is 0.
+ maxLength: 3
+ minLength: 1
+ pattern: ^(\d+)$
+ type: string
+ newPodScaleUpDelay:
+ description: NewPodScaleUpDelay - For scenarios like burst/batch
+ scale where you don't want CA to act before the kubernetes
+ scheduler could schedule all the pods, you can tell CA
+ to ignore unscheduled pods before they're a certain age.
+ The default is '0s'. Values must be an integer followed
+ by a unit ('s' for seconds, 'm' for minutes, 'h' for hours,
+ etc).
+ type: string
+ okTotalUnreadyCount:
+ description: OkTotalUnreadyCount - This must be an integer.
+ The default is 3.
+ pattern: ^(\d+)$
+ type: string
+ scaleDownDelayAfterAdd:
+ description: ScaleDownDelayAfterAdd - The default is '10m'.
+ Values must be an integer followed by an 'm'. No unit
+ of time other than minutes (m) is supported.
+ pattern: ^(\d+)m$
+ type: string
+ scaleDownDelayAfterDelete:
+ description: ScaleDownDelayAfterDelete - The default is
+ the scan-interval. Values must be an integer followed
+ by an 's'. No unit of time other than seconds (s) is supported.
+ pattern: ^(\d+)s$
+ type: string
+ scaleDownDelayAfterFailure:
+ description: ScaleDownDelayAfterFailure - The default is
+ '3m'. Values must be an integer followed by an 'm'. No
+ unit of time other than minutes (m) is supported.
+ pattern: ^(\d+)m$
+ type: string
+ scaleDownUnneededTime:
+ description: ScaleDownUnneededTime - The default is '10m'.
+ Values must be an integer followed by an 'm'. No unit
+ of time other than minutes (m) is supported.
+ pattern: ^(\d+)m$
+ type: string
+ scaleDownUnreadyTime:
+ description: ScaleDownUnreadyTime - The default is '20m'.
+ Values must be an integer followed by an 'm'. No unit
+ of time other than minutes (m) is supported.
+ pattern: ^(\d+)m$
+ type: string
+ scaleDownUtilizationThreshold:
+ description: ScaleDownUtilizationThreshold - The default
+ is '0.5'.
+ type: string
+ scanInterval:
+ description: ScanInterval - How often cluster is reevaluated
+ for scale up or down. The default is '10s'.
+ pattern: ^(\d+)s$
+ type: string
+ skipNodesWithLocalStorage:
+ description: SkipNodesWithLocalStorage - The default is
+ false.
+ enum:
+ - "true"
+ - "false"
+ type: string
+ skipNodesWithSystemPods:
+ description: SkipNodesWithSystemPods - The default is true.
+ enum:
+ - "true"
+ - "false"
+ type: string
+ type: object
+ azureEnvironment:
+ description: |-
+ AzureEnvironment is the name of the AzureCloud to be used.
+ The default value that would be used by most users is "AzurePublicCloud", other values are:
+ - ChinaCloud: "AzureChinaCloud"
+ - PublicCloud: "AzurePublicCloud"
+ - USGovernmentCloud: "AzureUSGovernmentCloud"
+
+
+ Note that values other than the default must also be accompanied by corresponding changes to the
+ aso-controller-settings Secret to configure ASO to refer to the non-Public cloud. ASO currently does
+ not support referring to multiple different clouds in a single installation. The following fields must
+ be defined in the Secret:
+ - AZURE_AUTHORITY_HOST
+ - AZURE_RESOURCE_MANAGER_ENDPOINT
+ - AZURE_RESOURCE_MANAGER_AUDIENCE
+
+
+ See the [ASO docs] for more details.
+
+
+ [ASO docs]: https://azure.github.io/azure-service-operator/guide/aso-controller-settings-options/
+ type: string
+ disableLocalAccounts:
+ description: DisableLocalAccounts disables getting static credentials
+ for this cluster when set. Expected to only be used for AAD
+ clusters.
+ type: boolean
+ dnsServiceIP:
+ description: |-
+ DNSServiceIP is an IP address assigned to the Kubernetes DNS service.
+ It must be within the Kubernetes service address range specified in serviceCidr.
+ Immutable.
+ type: string
+ enablePreviewFeatures:
+ description: EnablePreviewFeatures enables preview features
+ for the cluster.
+ type: boolean
+ extensions:
+ description: Extensions is a list of AKS extensions to be installed
+ on the cluster.
+ items:
+ description: |-
+ AKSExtension represents the configuration for an AKS cluster extension.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/aks/cluster-extensions
+ properties:
+ aksAssignedIdentityType:
+ description: AKSAssignedIdentityType is the type of the
+ AKS assigned identity.
+ enum:
+ - SystemAssigned
+ - UserAssigned
+ type: string
+ autoUpgradeMinorVersion:
+ default: true
+ description: AutoUpgradeMinorVersion is a flag to note
+ if this extension participates in auto upgrade of minor
+ version, or not.
+ type: boolean
+ configurationSettings:
+ additionalProperties:
+ type: string
+ description: ConfigurationSettings are the name-value
+ pairs for configuring this extension.
+ type: object
+ extensionType:
+ description: |-
+ ExtensionType is the type of the Extension of which this resource is an instance.
+ It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
+ type: string
+ identity:
+ description: Identity is the identity type of the Extension
+ resource in an AKS cluster.
+ enum:
+ - SystemAssigned
+ type: string
+ name:
+ description: Name is the name of the extension.
+ type: string
+ plan:
+ description: Plan is the plan of the extension.
+ properties:
+ name:
+ description: Name is the user-defined name of the
+ 3rd Party Artifact that is being procured.
+ type: string
+ product:
+ description: Product is the name of the 3rd Party
+ artifact that is being procured.
+ type: string
+ promotionCode:
+ description: PromotionCode is a publisher-provided
+ promotion code as provisioned in Data Market for
+ the said product/artifact.
+ type: string
+ publisher:
+ description: Publisher is the name of the publisher
+ of the 3rd Party Artifact that is being bought.
+ type: string
+ version:
+ description: Version is the version of the plan.
+ type: string
+ type: object
+ releaseTrain:
+ description: |-
+ ReleaseTrain is the release train this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.)
+ This is only used if autoUpgradeMinorVersion is ‘true’.
+ type: string
+ scope:
+ description: Scope is the scope at which this extension
+ is enabled.
+ properties:
+ releaseNamespace:
+ description: |-
+ ReleaseNamespace is the namespace where the extension Release must be placed, for a Cluster-scoped extension.
+ Required for Cluster-scoped extensions.
+ type: string
+ scopeType:
+ description: ScopeType is the scope of the extension.
+ It can be either Cluster or Namespace, but not both.
+ enum:
+ - Cluster
+ - Namespace
+ type: string
+ targetNamespace:
+ description: |-
+ TargetNamespace is the namespace where the extension will be created for a Namespace-scoped extension.
+ Required for Namespace-scoped extensions.
+ type: string
+ required:
+ - scopeType
+ type: object
+ version:
+ description: Version is the version of the extension.
+ type: string
+ required:
+ - extensionType
+ - name
+ type: object
+ type: array
+ fleetsMember:
+ description: |-
+ FleetsMember is the spec for the fleet this cluster is a member of.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/templates/microsoft.containerservice/2023-03-15-preview/fleets/members
+ properties:
+ group:
+ description: Group is the group this member belongs to for
+ multi-cluster update management.
+ type: string
+ managerName:
+ description: ManagerName is the name of the fleet manager.
+ type: string
+ managerResourceGroup:
+ description: ManagerResourceGroup is the resource group
+ of the fleet manager.
+ type: string
+ required:
+ - managerName
+ - managerResourceGroup
+ type: object
+ httpProxyConfig:
+ description: |-
+ HTTPProxyConfig is the HTTP proxy configuration for the cluster.
+ Immutable.
+ properties:
+ httpProxy:
+ description: HTTPProxy is the HTTP proxy server endpoint
+ to use.
+ type: string
+ httpsProxy:
+ description: HTTPSProxy is the HTTPS proxy server endpoint
+ to use.
+ type: string
+ noProxy:
+ description: NoProxy indicates the endpoints that should
+ not go through proxy.
+ items:
+ type: string
+ type: array
+ trustedCa:
+ description: TrustedCA is the alternative CA cert to use
+ for connecting to proxy servers.
+ type: string
+ type: object
+ identity:
+ description: Identity configuration used by the AKS control
+ plane.
+ properties:
+ type:
+ description: Type - The Identity type to use.
+ enum:
+ - SystemAssigned
+ - UserAssigned
+ type: string
+ userAssignedIdentityResourceID:
+ description: UserAssignedIdentityResourceID - Identity ARM
+ resource ID when using user-assigned identity.
+ type: string
+ type: object
+ identityRef:
+ description: IdentityRef is a reference to a AzureClusterIdentity
+ to be used when reconciling this cluster
+ properties:
+ apiVersion:
+ description: API version of the referent.
+ type: string
+ fieldPath:
+ description: |-
+ If referring to a piece of an object instead of an entire object, this string
+ should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
+ For example, if the object reference is to a container within a pod, this would take on a value like:
+ "spec.containers{name}" (where "name" refers to the name of the container that triggered
+ the event) or if no container name is specified "spec.containers[2]" (container with
+ index 2 in this pod). This syntax is chosen only to have some well-defined way of
+ referencing a part of an object.
+ TODO: this design is not final and this field is subject to change in the future.
+ type: string
+ kind:
+ description: |-
+ Kind of the referent.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ name:
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
+ type: string
+ resourceVersion:
+ description: |-
+ Specific resourceVersion to which this reference is made, if any.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
+ type: string
+ uid:
+ description: |-
+ UID of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ kubeletUserAssignedIdentity:
+ description: |-
+ KubeletUserAssignedIdentity is the user-assigned identity for kubelet.
+ For authentication with Azure Container Registry.
+ type: string
+ loadBalancerProfile:
+ description: LoadBalancerProfile is the profile of the cluster
+ load balancer.
+ properties:
+ allocatedOutboundPorts:
+ description: AllocatedOutboundPorts - Desired number of
+ allocated SNAT ports per VM. Allowed values must be in
+ the range of 0 to 64000 (inclusive). The default value
+ is 0 which results in Azure dynamically allocating ports.
+ type: integer
+ idleTimeoutInMinutes:
+ description: IdleTimeoutInMinutes - Desired outbound flow
+ idle timeout in minutes. Allowed values must be in the
+ range of 4 to 120 (inclusive). The default value is 30
+ minutes.
+ type: integer
+ managedOutboundIPs:
+ description: ManagedOutboundIPs - Desired managed outbound
+ IPs for the cluster load balancer.
+ type: integer
+ outboundIPPrefixes:
+ description: OutboundIPPrefixes - Desired outbound IP Prefix
+ resources for the cluster load balancer.
+ items:
+ type: string
+ type: array
+ outboundIPs:
+ description: OutboundIPs - Desired outbound IP resources
+ for the cluster load balancer.
+ items:
+ type: string
+ type: array
+ type: object
+ loadBalancerSKU:
+ default: Standard
+ description: |-
+ LoadBalancerSKU is the SKU of the loadBalancer to be provisioned.
+ Immutable.
+ enum:
+ - Basic
+ - Standard
+ type: string
+ location:
+ description: 'Location is a string matching one of the canonical
+ Azure region names. Examples: "westus2", "eastus".'
+ type: string
+ machineTemplate:
+ description: |-
+ MachineTemplate contains information about how machines
+ should be shaped when creating or updating a control plane.
+ For the AzureManagedControlPlaneTemplate, this field is used
+ only to fulfill the CAPI contract.
+ type: object
+ networkDataplane:
+ description: NetworkDataplane is the dataplane used for building
+ the Kubernetes network.
+ enum:
+ - azure
+ - cilium
+ type: string
+ networkPlugin:
+ description: NetworkPlugin used for building Kubernetes network.
+ enum:
+ - azure
+ - kubenet
+ - none
+ type: string
+ networkPluginMode:
+ description: |-
+ NetworkPluginMode is the mode the network plugin should use.
+ Allowed value is "overlay".
+ enum:
+ - overlay
+ type: string
+ networkPolicy:
+ description: NetworkPolicy used for building Kubernetes network.
+ enum:
+ - azure
+ - calico
+ - cilium
+ type: string
+ oidcIssuerProfile:
+ description: OIDCIssuerProfile is the OIDC issuer profile of
+ the Managed Cluster.
+ properties:
+ enabled:
+ description: Enabled is whether the OIDC issuer is enabled.
+ type: boolean
+ type: object
+ outboundType:
+ description: Outbound configuration used by Nodes.
+ enum:
+ - loadBalancer
+ - managedNATGateway
+ - userAssignedNATGateway
+ - userDefinedRouting
+ type: string
+ resourceGroupName:
+ description: |-
+ ResourceGroupName is the name of the Azure resource group for this AKS Cluster.
+ Immutable.
+ type: string
+ securityProfile:
+ description: SecurityProfile defines the security profile for
+ cluster.
+ properties:
+ azureKeyVaultKms:
+ description: AzureKeyVaultKms defines Azure Key Vault Management
+ Services Profile for the security profile.
+ properties:
+ enabled:
+ description: Enabled enables the Azure Key Vault key
+ management service. The default is false.
+ type: boolean
+ keyID:
+ description: |-
+ KeyID defines the Identifier of Azure Key Vault key.
+ When Azure Key Vault key management service is enabled, this field is required and must be a valid key identifier.
+ type: string
+ keyVaultNetworkAccess:
+ default: Public
+ description: |-
+ KeyVaultNetworkAccess defines the network access of key vault.
+ The possible values are Public and Private.
+ Public means the key vault allows public access from all networks.
+ Private means the key vault disables public access and enables private link. The default value is Public.
+ type: string
+ keyVaultResourceID:
+ description: KeyVaultResourceID is the Resource ID of
+ key vault. When keyVaultNetworkAccess is Private,
+ this field is required and must be a valid resource
+ ID.
+ type: string
+ required:
+ - enabled
+ - keyID
+ type: object
+ defender:
+ description: Defender settings for the security profile.
+ properties:
+ logAnalyticsWorkspaceResourceID:
+ description: |-
+ LogAnalyticsWorkspaceResourceID is the ID of the Log Analytics workspace that has to be associated with Microsoft Defender.
+ When Microsoft Defender is enabled, this field is required and must be a valid workspace resource ID.
+ type: string
+ securityMonitoring:
+ description: SecurityMonitoring profile defines the
+ Microsoft Defender threat detection for Cloud settings
+ for the security profile.
+ properties:
+ enabled:
+ description: Enabled enables Defender threat detection
+ type: boolean
+ required:
+ - enabled
+ type: object
+ required:
+ - logAnalyticsWorkspaceResourceID
+ - securityMonitoring
+ type: object
+ imageCleaner:
+ description: ImageCleaner settings for the security profile.
+ properties:
+ enabled:
+ description: Enabled enables the Image Cleaner on AKS
+ cluster.
+ type: boolean
+ intervalHours:
+ description: IntervalHours defines Image Cleaner scanning
+ interval in hours. Default value is 24 hours.
+ maximum: 2160
+ minimum: 24
+ type: integer
+ required:
+ - enabled
+ type: object
+ workloadIdentity:
+ description: Workloadidentity enables Kubernetes applications
+ to access Azure cloud resources securely with Azure AD.
+ Ensure to enable OIDC issuer while enabling Workload Identity
+ properties:
+ enabled:
+ description: Enabled enables the workload identity.
+ type: boolean
+ required:
+ - enabled
+ type: object
+ type: object
+ sku:
+ description: SKU is the SKU of the AKS to be provisioned.
+ properties:
+ tier:
+ description: Tier - Tier of an AKS cluster.
+ enum:
+ - Free
+ - Paid
+ - Standard
+ type: string
+ required:
+ - tier
+ type: object
+ subscriptionID:
+ description: SubscriptionID is the GUID of the Azure subscription
+ that owns this cluster.
+ type: string
+ version:
+ description: Version defines the desired Kubernetes version.
+ minLength: 2
+ type: string
+ virtualNetwork:
+ description: VirtualNetwork describes the virtual network for
+ the AKS cluster. It will be created if it does not already
+ exist.
+ properties:
+ cidrBlock:
+ type: string
+ name:
+ description: Name is the name of the virtual network.
+ type: string
+ resourceGroup:
+ description: ResourceGroup is the name of the Azure resource
+ group for the VNet and Subnet.
+ type: string
+ subnet:
+ description: ManagedControlPlaneSubnet describes a subnet
+ for an AKS cluster.
+ properties:
+ cidrBlock:
+ type: string
+ name:
+ type: string
+ privateEndpoints:
+ description: PrivateEndpoints is a slice of Virtual
+ Network private endpoints to create for the subnets.
+ items:
+ description: PrivateEndpointSpec configures an Azure
+ Private Endpoint.
+ properties:
+ applicationSecurityGroups:
+ description: ApplicationSecurityGroups specifies
+ the Application security group in which the
+ private endpoint IP configuration is included.
+ items:
+ type: string
+ type: array
+ customNetworkInterfaceName:
+ description: CustomNetworkInterfaceName specifies
+ the network interface name associated with the
+ private endpoint.
+ type: string
+ location:
+ description: Location specifies the region to
+ create the private endpoint.
+ type: string
+ manualApproval:
+ description: |-
+ ManualApproval specifies if the connection approval needs to be done manually or not.
+ Set it true when the network admin does not have access to approve connections to the remote resource.
+ Defaults to false.
+ type: boolean
+ name:
+ description: Name specifies the name of the private
+ endpoint.
+ type: string
+ privateIPAddresses:
+ description: |-
+ PrivateIPAddresses specifies the IP addresses for the network interface associated with the private endpoint.
+ They have to be part of the subnet where the private endpoint is linked.
+ items:
+ type: string
+ type: array
+ privateLinkServiceConnections:
+ description: PrivateLinkServiceConnections specifies
+ Private Link Service Connections of the private
+ endpoint.
+ items:
+ description: PrivateLinkServiceConnection defines
+ the specification for a private link service
+ connection associated with a private endpoint.
+ properties:
+ groupIDs:
+ description: GroupIDs specifies the ID(s)
+ of the group(s) obtained from the remote
+ resource that this private endpoint should
+ connect to.
+ items:
+ type: string
+ type: array
+ name:
+ description: Name specifies the name of
+ the private link service.
+ type: string
+ privateLinkServiceID:
+ description: PrivateLinkServiceID specifies
+ the resource ID of the private link service.
+ type: string
+ requestMessage:
+ description: RequestMessage specifies a
+ message passed to the owner of the remote
+ resource with the private endpoint connection
+ request.
+ maxLength: 140
+ type: string
+ type: object
+ type: array
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ serviceEndpoints:
+ description: ServiceEndpoints is a slice of Virtual
+ Network service endpoints to enable for the subnets.
+ items:
+ description: ServiceEndpointSpec configures an Azure
+ Service Endpoint.
+ properties:
+ locations:
+ items:
+ type: string
+ type: array
+ service:
+ type: string
+ required:
+ - locations
+ - service
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - service
+ x-kubernetes-list-type: map
+ required:
+ - cidrBlock
+ - name
+ type: object
+ required:
+ - cidrBlock
+ - name
+ type: object
+ required:
+ - identityRef
+ - location
+ - resourceGroupName
+ - version
+ type: object
+ required:
+ - spec
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
index 1909a5584..d31d20312 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,31 +74,59 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to Azure
- resources managed by the Azure provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the
+ Azure provider, in addition to the ones added by default.
type: object
+ asoManagedClustersAgentPoolPatches:
+ description: |-
+ ASOManagedClustersAgentPoolPatches defines JSON merge patches to be applied to the generated ASO ManagedClustersAgentPool resource.
+ WARNING: This is meant to be used sparingly to enable features for development and testing that are not
+ otherwise represented in the CAPZ API. Misconfiguration that conflicts with CAPZ's normal mode of
+ operation is possible.
+ items:
+ type: string
+ type: array
availabilityZones:
- description: AvailabilityZones - Availability zones for nodes. Must
- use VirtualMachineScaleSets AgentPoolType.
+ description: |-
+ AvailabilityZones - Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
+ Immutable.
items:
type: string
type: array
+ enableEncryptionAtHost:
+ description: |-
+ EnableEncryptionAtHost indicates whether host encryption is enabled on the node pool.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/aks/enable-host-encryption
+ type: boolean
+ enableFIPS:
+ description: |-
+ EnableFIPS indicates whether FIPS is enabled on the node pool.
+ Immutable.
+ type: boolean
enableNodePublicIP:
- description: EnableNodePublicIP controls whether or not nodes in the
- pool each have a public IP address.
+ description: |-
+ EnableNodePublicIP controls whether or not nodes in the pool each have a public IP address.
+ Immutable.
type: boolean
enableUltraSSD:
- description: EnableUltraSSD enables the storage type UltraSSD_LRS for
- the agent pool.
+ description: |-
+ EnableUltraSSD enables the storage type UltraSSD_LRS for the agent pool.
+ Immutable.
type: boolean
kubeletConfig:
- description: KubeletConfig specifies the kubelet configurations for
- nodes.
+ description: |-
+ KubeletConfig specifies the kubelet configurations for nodes.
+ Immutable.
properties:
allowedUnsafeSysctls:
- description: AllowedUnsafeSysctls - Allowlist of unsafe sysctls
- or unsafe sysctl patterns (ending in `*`).
+ description: |-
+ AllowedUnsafeSysctls - Allowlist of unsafe sysctls or unsafe sysctl patterns (ending in `*`).
+ Valid values match `kernel.shm*`, `kernel.msg*`, `kernel.sem`, `fs.mqueue.*`, or `net.*`.
items:
type: string
type: array
@@ -101,20 +134,20 @@ spec:
description: ContainerLogMaxFiles - The maximum number of container
log files that can be present for a container. The number must
be ≥ 2.
- format: int32
minimum: 2
type: integer
containerLogMaxSizeMB:
- description: ContainerLogMaxSizeMB - The maximum size (e.g. 10Mi)
- of container log file before it is rotated.
- format: int32
+ description: ContainerLogMaxSizeMB - The maximum size in MB of a
+ container log file before it is rotated.
type: integer
cpuCfsQuota:
description: CPUCfsQuota - Enable CPU CFS quota enforcement for
containers that specify CPU limits.
type: boolean
cpuCfsQuotaPeriod:
- description: CPUCfsQuotaPeriod - Sets CPU CFS quota period value.
+ description: |-
+ CPUCfsQuotaPeriod - Sets CPU CFS quota period value.
+ Must end in "ms", e.g. "100ms"
type: string
cpuManagerPolicy:
description: CPUManagerPolicy - CPU Manager policy to use.
@@ -127,22 +160,23 @@ spec:
fail to start if swap is enabled on the node.
type: boolean
imageGcHighThreshold:
- description: ImageGcHighThreshold - The percent of disk usage after
- which image garbage collection is always run.
- format: int32
+ description: |-
+ ImageGcHighThreshold - The percent of disk usage after which image garbage collection is always run.
+ Valid values are 0-100 (inclusive).
maximum: 100
minimum: 0
type: integer
imageGcLowThreshold:
- description: ImageGcLowThreshold - The percent of disk usage before
- which image garbage collection is never run.
- format: int32
+ description: |-
+ ImageGcLowThreshold - The percent of disk usage before which image garbage collection is never run.
+ Valid values are 0-100 (inclusive) and must be less than `imageGcHighThreshold`.
maximum: 100
minimum: 0
type: integer
podMaxPids:
- description: PodMaxPids - The maximum number of processes per pod.
- format: int32
+ description: |-
+ PodMaxPids - The maximum number of processes per pod.
+ Must not exceed kernel PID limit. -1 disables the limit.
minimum: -1
type: integer
topologyManagerPolicy:
@@ -156,257 +190,275 @@ spec:
type: string
type: object
kubeletDiskType:
- description: 'KubeletDiskType specifies the kubelet disk type. Default
- to OS. Possible values include: ''OS'', ''Temporary''. Requires kubeletDisk
- preview feature to be set.'
+ description: |-
+ KubeletDiskType specifies the kubelet disk type. Default to OS. Possible values include: 'OS', 'Temporary'.
+ Requires Microsoft.ContainerService/KubeletDisk preview feature to be set.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/rest/api/aks/agent-pools/create-or-update?tabs=HTTP#kubeletdisktype
enum:
- OS
- Temporary
type: string
linuxOSConfig:
- description: LinuxOSConfig specifies the custom Linux OS settings and
- configurations.
+ description: |-
+ LinuxOSConfig specifies the custom Linux OS settings and configurations.
+ Immutable.
properties:
swapFileSizeMB:
- description: 'SwapFileSizeMB specifies size in MB of a swap file
- will be created on the agent nodes from this node pool. Max value
- of SwapFileSizeMB should be the size of temporary disk(/dev/sdb).
- Refer: https://learn.microsoft.com/en-us/azure/virtual-machines/managed-disks-overview#temporary-disk'
- format: int32
+ description: |-
+ SwapFileSizeMB specifies size in MB of a swap file will be created on the agent nodes from this node pool.
+ Max value of SwapFileSizeMB should be the size of temporary disk(/dev/sdb).
+ Must be at least 1.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/virtual-machines/managed-disks-overview#temporary-disk
minimum: 1
type: integer
sysctls:
description: Sysctl specifies the settings for Linux agent nodes.
properties:
fsAioMaxNr:
- description: FsAioMaxNr specifies the maximum number of system-wide
- asynchronous io requests. Maps to fs.aio-max-nr.
- format: int32
+ description: |-
+ FsAioMaxNr specifies the maximum number of system-wide asynchronous io requests.
+ Valid values are 65536-6553500 (inclusive).
+ Maps to fs.aio-max-nr.
maximum: 6553500
minimum: 65536
type: integer
fsFileMax:
- description: FsFileMax specifies the max number of file-handles
- that the Linux kernel will allocate, by increasing increases
- the maximum number of open files permitted. Maps to fs.file-max.
- format: int32
+ description: |-
+ FsFileMax specifies the max number of file-handles that the Linux kernel will allocate, by increasing increases the maximum number of open files permitted.
+ Valid values are 8192-12000500 (inclusive).
+ Maps to fs.file-max.
maximum: 12000500
minimum: 8192
type: integer
fsInotifyMaxUserWatches:
- description: FsInotifyMaxUserWatches specifies the number of
- file watches allowed by the system. Each watch is roughly
- 90 bytes on a 32-bit kernel, and roughly 160 bytes on a 64-bit
- kernel. Maps to fs.inotify.max_user_watches.
- format: int32
+ description: |-
+ FsInotifyMaxUserWatches specifies the number of file watches allowed by the system. Each watch is roughly 90 bytes on a 32-bit kernel, and roughly 160 bytes on a 64-bit kernel.
+ Valid values are 781250-2097152 (inclusive).
+ Maps to fs.inotify.max_user_watches.
maximum: 2097152
minimum: 781250
type: integer
fsNrOpen:
- description: FsNrOpen specifies the maximum number of file-handles
- a process can allocate. Maps to fs.nr_open.
- format: int32
+ description: |-
+ FsNrOpen specifies the maximum number of file-handles a process can allocate.
+ Valid values are 8192-20000500 (inclusive).
+ Maps to fs.nr_open.
maximum: 20000500
minimum: 8192
type: integer
kernelThreadsMax:
- description: KernelThreadsMax specifies the maximum number of
- all threads that can be created. Maps to kernel.threads-max.
- format: int32
+ description: |-
+ KernelThreadsMax specifies the maximum number of all threads that can be created.
+ Valid values are 20-513785 (inclusive).
+ Maps to kernel.threads-max.
maximum: 513785
minimum: 20
type: integer
netCoreNetdevMaxBacklog:
- description: NetCoreNetdevMaxBacklog specifies maximum number
- of packets, queued on the INPUT side, when the interface receives
- packets faster than kernel can process them. Maps to net.core.netdev_max_backlog.
- format: int32
+ description: |-
+ NetCoreNetdevMaxBacklog specifies maximum number of packets, queued on the INPUT side, when the interface receives packets faster than kernel can process them.
+ Valid values are 1000-3240000 (inclusive).
+ Maps to net.core.netdev_max_backlog.
maximum: 3240000
minimum: 1000
type: integer
netCoreOptmemMax:
- description: NetCoreOptmemMax specifies the maximum ancillary
- buffer size (option memory buffer) allowed per socket. Socket
- option memory is used in a few cases to store extra structures
- relating to usage of the socket. Maps to net.core.optmem_max.
- format: int32
+ description: |-
+ NetCoreOptmemMax specifies the maximum ancillary buffer size (option memory buffer) allowed per socket.
+ Socket option memory is used in a few cases to store extra structures relating to usage of the socket.
+ Valid values are 20480-4194304 (inclusive).
+ Maps to net.core.optmem_max.
maximum: 4194304
minimum: 20480
type: integer
netCoreRmemDefault:
- description: NetCoreRmemDefault specifies the default receive
- socket buffer size in bytes. Maps to net.core.rmem_default.
- format: int32
+ description: |-
+ NetCoreRmemDefault specifies the default receive socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.rmem_default.
maximum: 134217728
minimum: 212992
type: integer
netCoreRmemMax:
- description: NetCoreRmemMax specifies the maximum receive socket
- buffer size in bytes. Maps to net.core.rmem_max.
- format: int32
+ description: |-
+ NetCoreRmemMax specifies the maximum receive socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.rmem_max.
maximum: 134217728
minimum: 212992
type: integer
netCoreSomaxconn:
- description: NetCoreSomaxconn specifies maximum number of connection
- requests that can be queued for any given listening socket.
- An upper limit for the value of the backlog parameter passed
- to the listen(2)(https://man7.org/linux/man-pages/man2/listen.2.html)
- function. If the backlog argument is greater than the somaxconn,
- then it's silently truncated to this limit. Maps to net.core.somaxconn.
- format: int32
+ description: |-
+ NetCoreSomaxconn specifies maximum number of connection requests that can be queued for any given listening socket.
+ An upper limit for the value of the backlog parameter passed to the listen(2)(https://man7.org/linux/man-pages/man2/listen.2.html) function.
+ If the backlog argument is greater than the somaxconn, then it's silently truncated to this limit.
+ Valid values are 4096-3240000 (inclusive).
+ Maps to net.core.somaxconn.
maximum: 3240000
minimum: 4096
type: integer
netCoreWmemDefault:
- description: NetCoreWmemDefault specifies the default send socket
- buffer size in bytes. Maps to net.core.wmem_default.
- format: int32
+ description: |-
+ NetCoreWmemDefault specifies the default send socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.wmem_default.
maximum: 134217728
minimum: 212992
type: integer
netCoreWmemMax:
- description: NetCoreWmemMax specifies the maximum send socket
- buffer size in bytes. Maps to net.core.wmem_max.
- format: int32
+ description: |-
+ NetCoreWmemMax specifies the maximum send socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.wmem_max.
maximum: 134217728
minimum: 212992
type: integer
netIpv4IPLocalPortRange:
- description: NetIpv4IPLocalPortRange is used by TCP and UDP
- traffic to choose the local port on the agent node. PortRange
- should be specified in the format "first last". First, being
- an integer, must be between [1024 - 60999]. Last, being an
- integer, must be between [32768 - 65000]. Maps to net.ipv4.ip_local_port_range.
+ description: |-
+ NetIpv4IPLocalPortRange is used by TCP and UDP traffic to choose the local port on the agent node.
+ PortRange should be specified in the format "first last".
+ First, being an integer, must be between [1024 - 60999].
+ Last, being an integer, must be between [32768 - 65000].
+ Maps to net.ipv4.ip_local_port_range.
type: string
netIpv4NeighDefaultGcThresh1:
- description: NetIpv4NeighDefaultGcThresh1 specifies the minimum
- number of entries that may be in the ARP cache. Garbage collection
- won't be triggered if the number of entries is below this
- setting. Maps to net.ipv4.neigh.default.gc_thresh1.
- format: int32
+ description: |-
+ NetIpv4NeighDefaultGcThresh1 specifies the minimum number of entries that may be in the ARP cache.
+ Garbage collection won't be triggered if the number of entries is below this setting.
+ Valid values are 128-80000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh1.
maximum: 80000
minimum: 128
type: integer
netIpv4NeighDefaultGcThresh2:
- description: NetIpv4NeighDefaultGcThresh2 specifies soft maximum
- number of entries that may be in the ARP cache. ARP garbage
- collection will be triggered about 5 seconds after reaching
- this soft maximum. Maps to net.ipv4.neigh.default.gc_thresh2.
- format: int32
+ description: |-
+ NetIpv4NeighDefaultGcThresh2 specifies soft maximum number of entries that may be in the ARP cache.
+ ARP garbage collection will be triggered about 5 seconds after reaching this soft maximum.
+ Valid values are 512-90000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh2.
maximum: 90000
minimum: 512
type: integer
netIpv4NeighDefaultGcThresh3:
- description: NetIpv4NeighDefaultGcThresh3 specified hard maximum
- number of entries in the ARP cache. Maps to net.ipv4.neigh.default.gc_thresh3.
- format: int32
+ description: |-
+ NetIpv4NeighDefaultGcThresh3 specified hard maximum number of entries in the ARP cache.
+ Valid values are 1024-100000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh3.
maximum: 100000
minimum: 1024
type: integer
netIpv4TCPFinTimeout:
- description: NetIpv4TCPFinTimeout specifies the length of time
- an orphaned connection will remain in the FIN_WAIT_2 state
- before it's aborted at the local end. Maps to net.ipv4.tcp_fin_timeout.
- format: int32
+ description: |-
+ NetIpv4TCPFinTimeout specifies the length of time an orphaned connection will remain in the FIN_WAIT_2 state before it's aborted at the local end.
+ Valid values are 5-120 (inclusive).
+ Maps to net.ipv4.tcp_fin_timeout.
maximum: 120
minimum: 5
type: integer
netIpv4TCPKeepaliveProbes:
- description: NetIpv4TCPKeepaliveProbes specifies the number
- of keepalive probes TCP sends out, until it decides the connection
- is broken. Maps to net.ipv4.tcp_keepalive_probes.
- format: int32
+ description: |-
+ NetIpv4TCPKeepaliveProbes specifies the number of keepalive probes TCP sends out, until it decides the connection is broken.
+ Valid values are 1-15 (inclusive).
+ Maps to net.ipv4.tcp_keepalive_probes.
maximum: 15
minimum: 1
type: integer
netIpv4TCPKeepaliveTime:
- description: NetIpv4TCPKeepaliveTime specifies the rate at which
- TCP sends out a keepalive message when keepalive is enabled.
+ description: |-
+ NetIpv4TCPKeepaliveTime specifies the rate at which TCP sends out a keepalive message when keepalive is enabled.
+ Valid values are 30-432000 (inclusive).
Maps to net.ipv4.tcp_keepalive_time.
- format: int32
maximum: 432000
minimum: 30
type: integer
netIpv4TCPMaxSynBacklog:
- description: NetIpv4TCPMaxSynBacklog specifies the maximum number
- of queued connection requests that have still not received
- an acknowledgment from the connecting client. If this number
- is exceeded, the kernel will begin dropping requests. Maps
- to net.ipv4.tcp_max_syn_backlog.
- format: int32
+ description: |-
+ NetIpv4TCPMaxSynBacklog specifies the maximum number of queued connection requests that have still not received an acknowledgment from the connecting client.
+ If this number is exceeded, the kernel will begin dropping requests.
+ Valid values are 128-3240000 (inclusive).
+ Maps to net.ipv4.tcp_max_syn_backlog.
maximum: 3240000
minimum: 128
type: integer
netIpv4TCPMaxTwBuckets:
- description: NetIpv4TCPMaxTwBuckets specifies maximal number
- of timewait sockets held by system simultaneously. If this
- number is exceeded, time-wait socket is immediately destroyed
- and warning is printed. Maps to net.ipv4.tcp_max_tw_buckets.
- format: int32
+ description: |-
+ NetIpv4TCPMaxTwBuckets specifies maximal number of timewait sockets held by system simultaneously.
+ If this number is exceeded, time-wait socket is immediately destroyed and warning is printed.
+ Valid values are 8000-1440000 (inclusive).
+ Maps to net.ipv4.tcp_max_tw_buckets.
maximum: 1440000
minimum: 8000
type: integer
netIpv4TCPTwReuse:
- description: NetIpv4TCPTwReuse is used to allow to reuse TIME-WAIT
- sockets for new connections when it's safe from protocol viewpoint.
+ description: |-
+ NetIpv4TCPTwReuse is used to allow to reuse TIME-WAIT sockets for new connections when it's safe from protocol viewpoint.
Maps to net.ipv4.tcp_tw_reuse.
type: boolean
netIpv4TCPkeepaliveIntvl:
- description: NetIpv4TCPkeepaliveIntvl specifies the frequency
- of the probes sent out. Multiplied by tcpKeepaliveprobes,
- it makes up the time to kill a connection that isn't responding,
- after probes started. Maps to net.ipv4.tcp_keepalive_intvl.
- format: int32
+ description: |-
+ NetIpv4TCPkeepaliveIntvl specifies the frequency of the probes sent out.
+ Multiplied by tcpKeepaliveprobes, it makes up the time to kill a connection that isn't responding, after probes started.
+ Valid values are 1-75 (inclusive).
+ Maps to net.ipv4.tcp_keepalive_intvl.
maximum: 75
minimum: 1
type: integer
netNetfilterNfConntrackBuckets:
- description: NetNetfilterNfConntrackBuckets specifies the size
- of hash table used by nf_conntrack module to record the established
- connection record of the TCP protocol. Maps to net.netfilter.nf_conntrack_buckets.
- format: int32
+ description: |-
+ NetNetfilterNfConntrackBuckets specifies the size of hash table used by nf_conntrack module to record the established connection record of the TCP protocol.
+ Valid values are 65536-147456 (inclusive).
+ Maps to net.netfilter.nf_conntrack_buckets.
maximum: 147456
minimum: 65536
type: integer
netNetfilterNfConntrackMax:
- description: NetNetfilterNfConntrackMax specifies the maximum
- number of connections supported by the nf_conntrack module
- or the size of connection tracking table. Maps to net.netfilter.nf_conntrack_max.
- format: int32
+ description: |-
+ NetNetfilterNfConntrackMax specifies the maximum number of connections supported by the nf_conntrack module or the size of connection tracking table.
+ Valid values are 131072-1048576 (inclusive).
+ Maps to net.netfilter.nf_conntrack_max.
maximum: 1048576
minimum: 131072
type: integer
vmMaxMapCount:
- description: VMMaxMapCount specifies the maximum number of memory
- map areas a process may have. Maps to vm.max_map_count.
- format: int32
+ description: |-
+ VMMaxMapCount specifies the maximum number of memory map areas a process may have.
+ Maps to vm.max_map_count.
+ Valid values are 65530-262144 (inclusive).
maximum: 262144
minimum: 65530
type: integer
vmSwappiness:
- description: VMSwappiness specifies aggressiveness of the kernel
- in swapping memory pages. Higher values will increase aggressiveness,
- lower values decrease the amount of swap. Maps to vm.swappiness.
- format: int32
+ description: |-
+ VMSwappiness specifies aggressiveness of the kernel in swapping memory pages.
+ Higher values will increase aggressiveness, lower values decrease the amount of swap.
+ Valid values are 0-100 (inclusive).
+ Maps to vm.swappiness.
maximum: 100
minimum: 0
type: integer
vmVfsCachePressure:
- description: VMVfsCachePressure specifies the percentage value
- that controls tendency of the kernel to reclaim the memory,
- which is used for caching of directory and inode objects.
+ description: |-
+ VMVfsCachePressure specifies the percentage value that controls tendency of the kernel to reclaim the memory, which is used for caching of directory and inode objects.
+ Valid values are 1-500 (inclusive).
Maps to vm.vfs_cache_pressure.
- format: int32
maximum: 500
minimum: 1
type: integer
type: object
transparentHugePageDefrag:
- description: TransparentHugePageDefrag specifies whether the kernel
- should make aggressive use of memory compaction to make more hugepages
- available. Refer to https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge
- for more details.
+ description: |-
+ TransparentHugePageDefrag specifies whether the kernel should make aggressive use of memory compaction to make more hugepages available.
+ See also [Linux doc].
+
+
+ [Linux doc]: https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge for more details.
enum:
- always
- defer
@@ -415,9 +467,12 @@ spec:
- never
type: string
transparentHugePageEnabled:
- description: TransparentHugePageEnabled specifies various modes
- of Transparent Hugepages. Refer to https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge
- for more details.
+ description: |-
+ TransparentHugePageEnabled specifies various modes of Transparent Hugepages.
+ See also [Linux doc].
+
+
+ [Linux doc]: https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge for more details.
enum:
- always
- madvise
@@ -425,48 +480,70 @@ spec:
type: string
type: object
maxPods:
- description: MaxPods specifies the kubelet --max-pods configuration
- for the node pool.
- format: int32
+ description: |-
+ MaxPods specifies the kubelet `--max-pods` configuration for the node pool.
+ Immutable.
+ See also [AKS doc], [K8s doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/configure-azure-cni#configure-maximum---new-clusters
+ [K8s doc]: https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
type: integer
mode:
- description: 'Mode - represents mode of an agent pool. Possible values
+ description: 'Mode represents the mode of an agent pool. Possible values
include: System, User.'
enum:
- System
- User
type: string
name:
- description: Name - name of the agent pool. If not specified, CAPZ uses
- the name of the CR as the agent pool name.
+ description: |-
+ Name is the name of the agent pool. If not specified, CAPZ uses the name of the CR as the agent pool name.
+ Immutable.
type: string
nodeLabels:
additionalProperties:
type: string
- description: Node labels - labels for all of the nodes present in node
- pool
+ description: |-
+ Node labels represent the labels for all of the nodes present in node pool.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/use-labels
type: object
nodePublicIPPrefixID:
- description: NodePublicIPPrefixID specifies the public IP prefix resource
- ID which VM nodes should use IPs from.
+ description: |-
+ NodePublicIPPrefixID specifies the public IP prefix resource ID which VM nodes should use IPs from.
+ Immutable.
type: string
osDiskSizeGB:
- description: OSDiskSizeGB is the disk size for every machine in this
- agent pool. If you specify 0, it will apply the default osDisk size
- according to the vmSize specified.
- format: int32
+ description: |-
+ OSDiskSizeGB is the disk size for every machine in this agent pool.
+ If you specify 0, it will apply the default osDisk size according to the vmSize specified.
+ Immutable.
type: integer
osDiskType:
default: Managed
- description: OsDiskType specifies the OS disk type for each node in
- the pool. Allowed values are 'Ephemeral' and 'Managed'.
+ description: |-
+ OsDiskType specifies the OS disk type for each node in the pool. Allowed values are 'Ephemeral' and 'Managed' (default).
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/cluster-configuration#ephemeral-os
enum:
- Ephemeral
- Managed
type: string
osType:
- description: 'OSType specifies the virtual machine operating system.
- Default to Linux. Possible values include: ''Linux'', ''Windows'''
+ description: |-
+ OSType specifies the virtual machine operating system. Default to Linux. Possible values include: 'Linux', 'Windows'.
+ 'Windows' requires the AzureManagedControlPlane's `spec.networkPlugin` to be `azure`.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/rest/api/aks/agent-pools/create-or-update?tabs=HTTP#ostype
enum:
- Linux
- Windows
@@ -477,9 +554,18 @@ spec:
items:
type: string
type: array
+ scaleDownMode:
+ default: Delete
+ description: 'ScaleDownMode affects the cluster autoscaler behavior.
+ Default to Delete. Possible values include: ''Deallocate'', ''Delete'''
+ enum:
+ - Deallocate
+ - Delete
+ type: string
scaleSetPriority:
- description: 'ScaleSetPriority specifies the ScaleSetPriority value.
- Default to Regular. Possible values include: ''Regular'', ''Spot'''
+ description: |-
+ ScaleSetPriority specifies the ScaleSetPriority value. Default to Regular. Possible values include: 'Regular', 'Spot'
+ Immutable.
enum:
- Regular
- Spot
@@ -489,22 +575,39 @@ spec:
pool.
properties:
maxSize:
- format: int32
+ description: MaxSize is the maximum number of nodes for auto-scaling.
type: integer
minSize:
- format: int32
+ description: MinSize is the minimum number of nodes for auto-scaling.
type: integer
type: object
sku:
- description: SKU is the size of the VMs in the node pool.
+ description: |-
+ SKU is the size of the VMs in the node pool.
+ Immutable.
type: string
+ spotMaxPrice:
+ anyOf:
+ - type: integer
+ - type: string
+ description: |-
+ SpotMaxPrice defines max price to pay for spot instance. Possible values are any decimal value greater than zero or -1.
+ If you set the max price to be -1, the VM won't be evicted based on price. The price for the VM will be the current price
+ for spot or the price for a standard VM, which ever is less, as long as there's capacity and quota available.
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
subnetName:
- description: SubnetName specifies the Subnet where the MachinePool will
- be placed
+ description: |-
+ SubnetName specifies the Subnet where the MachinePool will be placed
+ Immutable.
type: string
taints:
- description: Taints specifies the taints for nodes present in this agent
- pool.
+ description: |-
+ Taints specifies the taints for nodes present in this agent pool.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/use-multiple-node-pools#setting-node-pool-taints
items:
description: Taint represents a Kubernetes taint.
properties:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml
new file mode 100644
index 000000000..57eb87895
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml
@@ -0,0 +1,650 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedMachinePoolTemplate
+ k8s.io/resource: azuremanagedmachinepooltemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedmachinepooltemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedMachinePoolTemplate
+ name: azuremanagedmachinepooltemplates
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: AzureManagedMachinePoolTemplate is the Schema for the AzureManagedMachinePoolTemplates
+ API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: AzureManagedMachinePoolTemplateSpec defines the desired state
+ of AzureManagedMachinePoolTemplate.
+ properties:
+ template:
+ description: AzureManagedMachinePoolTemplateResource describes the data
+ needed to create an AzureManagedCluster from a template.
+ properties:
+ spec:
+ description: AzureManagedMachinePoolTemplateResourceSpec specifies
+ an Azure managed control plane template resource.
+ properties:
+ additionalTags:
+ additionalProperties:
+ type: string
+ description: |-
+ AdditionalTags is an optional set of tags to add to Azure resources managed by the
+ Azure provider, in addition to the ones added by default.
+ type: object
+ asoManagedClustersAgentPoolPatches:
+ description: |-
+ ASOManagedClustersAgentPoolPatches defines JSON merge patches to be applied to the generated ASO ManagedClustersAgentPool resource.
+ WARNING: This is meant to be used sparingly to enable features for development and testing that are not
+ otherwise represented in the CAPZ API. Misconfiguration that conflicts with CAPZ's normal mode of
+ operation is possible.
+ items:
+ type: string
+ type: array
+ availabilityZones:
+ description: |-
+ AvailabilityZones - Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
+ Immutable.
+ items:
+ type: string
+ type: array
+ enableEncryptionAtHost:
+ description: |-
+ EnableEncryptionAtHost indicates whether host encryption is enabled on the node pool.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/en-us/azure/aks/enable-host-encryption
+ type: boolean
+ enableFIPS:
+ description: |-
+ EnableFIPS indicates whether FIPS is enabled on the node pool.
+ Immutable.
+ type: boolean
+ enableNodePublicIP:
+ description: |-
+ EnableNodePublicIP controls whether or not nodes in the pool each have a public IP address.
+ Immutable.
+ type: boolean
+ enableUltraSSD:
+ description: |-
+ EnableUltraSSD enables the storage type UltraSSD_LRS for the agent pool.
+ Immutable.
+ type: boolean
+ kubeletConfig:
+ description: |-
+ KubeletConfig specifies the kubelet configurations for nodes.
+ Immutable.
+ properties:
+ allowedUnsafeSysctls:
+ description: |-
+ AllowedUnsafeSysctls - Allowlist of unsafe sysctls or unsafe sysctl patterns (ending in `*`).
+ Valid values match `kernel.shm*`, `kernel.msg*`, `kernel.sem`, `fs.mqueue.*`, or `net.*`.
+ items:
+ type: string
+ type: array
+ containerLogMaxFiles:
+ description: ContainerLogMaxFiles - The maximum number of
+ container log files that can be present for a container.
+ The number must be ≥ 2.
+ minimum: 2
+ type: integer
+ containerLogMaxSizeMB:
+ description: ContainerLogMaxSizeMB - The maximum size in
+ MB of a container log file before it is rotated.
+ type: integer
+ cpuCfsQuota:
+ description: CPUCfsQuota - Enable CPU CFS quota enforcement
+ for containers that specify CPU limits.
+ type: boolean
+ cpuCfsQuotaPeriod:
+ description: |-
+ CPUCfsQuotaPeriod - Sets CPU CFS quota period value.
+ Must end in "ms", e.g. "100ms"
+ type: string
+ cpuManagerPolicy:
+ description: CPUManagerPolicy - CPU Manager policy to use.
+ enum:
+ - none
+ - static
+ type: string
+ failSwapOn:
+ description: FailSwapOn - If set to true it will make the
+ Kubelet fail to start if swap is enabled on the node.
+ type: boolean
+ imageGcHighThreshold:
+ description: |-
+ ImageGcHighThreshold - The percent of disk usage after which image garbage collection is always run.
+ Valid values are 0-100 (inclusive).
+ maximum: 100
+ minimum: 0
+ type: integer
+ imageGcLowThreshold:
+ description: |-
+ ImageGcLowThreshold - The percent of disk usage before which image garbage collection is never run.
+ Valid values are 0-100 (inclusive) and must be less than `imageGcHighThreshold`.
+ maximum: 100
+ minimum: 0
+ type: integer
+ podMaxPids:
+ description: |-
+ PodMaxPids - The maximum number of processes per pod.
+ Must not exceed kernel PID limit. -1 disables the limit.
+ minimum: -1
+ type: integer
+ topologyManagerPolicy:
+ description: TopologyManagerPolicy - Topology Manager policy
+ to use.
+ enum:
+ - none
+ - best-effort
+ - restricted
+ - single-numa-node
+ type: string
+ type: object
+ kubeletDiskType:
+ description: |-
+ KubeletDiskType specifies the kubelet disk type. Default to OS. Possible values include: 'OS', 'Temporary'.
+ Requires Microsoft.ContainerService/KubeletDisk preview feature to be set.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/rest/api/aks/agent-pools/create-or-update?tabs=HTTP#kubeletdisktype
+ enum:
+ - OS
+ - Temporary
+ type: string
+ linuxOSConfig:
+ description: |-
+ LinuxOSConfig specifies the custom Linux OS settings and configurations.
+ Immutable.
+ properties:
+ swapFileSizeMB:
+ description: |-
+ SwapFileSizeMB specifies size in MB of a swap file will be created on the agent nodes from this node pool.
+ Max value of SwapFileSizeMB should be the size of temporary disk(/dev/sdb).
+ Must be at least 1.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/virtual-machines/managed-disks-overview#temporary-disk
+ minimum: 1
+ type: integer
+ sysctls:
+ description: Sysctl specifies the settings for Linux agent
+ nodes.
+ properties:
+ fsAioMaxNr:
+ description: |-
+ FsAioMaxNr specifies the maximum number of system-wide asynchronous io requests.
+ Valid values are 65536-6553500 (inclusive).
+ Maps to fs.aio-max-nr.
+ maximum: 6553500
+ minimum: 65536
+ type: integer
+ fsFileMax:
+ description: |-
+ FsFileMax specifies the max number of file-handles that the Linux kernel will allocate, by increasing increases the maximum number of open files permitted.
+ Valid values are 8192-12000500 (inclusive).
+ Maps to fs.file-max.
+ maximum: 12000500
+ minimum: 8192
+ type: integer
+ fsInotifyMaxUserWatches:
+ description: |-
+ FsInotifyMaxUserWatches specifies the number of file watches allowed by the system. Each watch is roughly 90 bytes on a 32-bit kernel, and roughly 160 bytes on a 64-bit kernel.
+ Valid values are 781250-2097152 (inclusive).
+ Maps to fs.inotify.max_user_watches.
+ maximum: 2097152
+ minimum: 781250
+ type: integer
+ fsNrOpen:
+ description: |-
+ FsNrOpen specifies the maximum number of file-handles a process can allocate.
+ Valid values are 8192-20000500 (inclusive).
+ Maps to fs.nr_open.
+ maximum: 20000500
+ minimum: 8192
+ type: integer
+ kernelThreadsMax:
+ description: |-
+ KernelThreadsMax specifies the maximum number of all threads that can be created.
+ Valid values are 20-513785 (inclusive).
+ Maps to kernel.threads-max.
+ maximum: 513785
+ minimum: 20
+ type: integer
+ netCoreNetdevMaxBacklog:
+ description: |-
+ NetCoreNetdevMaxBacklog specifies maximum number of packets, queued on the INPUT side, when the interface receives packets faster than kernel can process them.
+ Valid values are 1000-3240000 (inclusive).
+ Maps to net.core.netdev_max_backlog.
+ maximum: 3240000
+ minimum: 1000
+ type: integer
+ netCoreOptmemMax:
+ description: |-
+ NetCoreOptmemMax specifies the maximum ancillary buffer size (option memory buffer) allowed per socket.
+ Socket option memory is used in a few cases to store extra structures relating to usage of the socket.
+ Valid values are 20480-4194304 (inclusive).
+ Maps to net.core.optmem_max.
+ maximum: 4194304
+ minimum: 20480
+ type: integer
+ netCoreRmemDefault:
+ description: |-
+ NetCoreRmemDefault specifies the default receive socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.rmem_default.
+ maximum: 134217728
+ minimum: 212992
+ type: integer
+ netCoreRmemMax:
+ description: |-
+ NetCoreRmemMax specifies the maximum receive socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.rmem_max.
+ maximum: 134217728
+ minimum: 212992
+ type: integer
+ netCoreSomaxconn:
+ description: |-
+ NetCoreSomaxconn specifies maximum number of connection requests that can be queued for any given listening socket.
+ An upper limit for the value of the backlog parameter passed to the listen(2)(https://man7.org/linux/man-pages/man2/listen.2.html) function.
+ If the backlog argument is greater than the somaxconn, then it's silently truncated to this limit.
+ Valid values are 4096-3240000 (inclusive).
+ Maps to net.core.somaxconn.
+ maximum: 3240000
+ minimum: 4096
+ type: integer
+ netCoreWmemDefault:
+ description: |-
+ NetCoreWmemDefault specifies the default send socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.wmem_default.
+ maximum: 134217728
+ minimum: 212992
+ type: integer
+ netCoreWmemMax:
+ description: |-
+ NetCoreWmemMax specifies the maximum send socket buffer size in bytes.
+ Valid values are 212992-134217728 (inclusive).
+ Maps to net.core.wmem_max.
+ maximum: 134217728
+ minimum: 212992
+ type: integer
+ netIpv4IPLocalPortRange:
+ description: |-
+ NetIpv4IPLocalPortRange is used by TCP and UDP traffic to choose the local port on the agent node.
+ PortRange should be specified in the format "first last".
+ First, being an integer, must be between [1024 - 60999].
+ Last, being an integer, must be between [32768 - 65000].
+ Maps to net.ipv4.ip_local_port_range.
+ type: string
+ netIpv4NeighDefaultGcThresh1:
+ description: |-
+ NetIpv4NeighDefaultGcThresh1 specifies the minimum number of entries that may be in the ARP cache.
+ Garbage collection won't be triggered if the number of entries is below this setting.
+ Valid values are 128-80000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh1.
+ maximum: 80000
+ minimum: 128
+ type: integer
+ netIpv4NeighDefaultGcThresh2:
+ description: |-
+ NetIpv4NeighDefaultGcThresh2 specifies soft maximum number of entries that may be in the ARP cache.
+ ARP garbage collection will be triggered about 5 seconds after reaching this soft maximum.
+ Valid values are 512-90000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh2.
+ maximum: 90000
+ minimum: 512
+ type: integer
+ netIpv4NeighDefaultGcThresh3:
+ description: |-
+ NetIpv4NeighDefaultGcThresh3 specified hard maximum number of entries in the ARP cache.
+ Valid values are 1024-100000 (inclusive).
+ Maps to net.ipv4.neigh.default.gc_thresh3.
+ maximum: 100000
+ minimum: 1024
+ type: integer
+ netIpv4TCPFinTimeout:
+ description: |-
+ NetIpv4TCPFinTimeout specifies the length of time an orphaned connection will remain in the FIN_WAIT_2 state before it's aborted at the local end.
+ Valid values are 5-120 (inclusive).
+ Maps to net.ipv4.tcp_fin_timeout.
+ maximum: 120
+ minimum: 5
+ type: integer
+ netIpv4TCPKeepaliveProbes:
+ description: |-
+ NetIpv4TCPKeepaliveProbes specifies the number of keepalive probes TCP sends out, until it decides the connection is broken.
+ Valid values are 1-15 (inclusive).
+ Maps to net.ipv4.tcp_keepalive_probes.
+ maximum: 15
+ minimum: 1
+ type: integer
+ netIpv4TCPKeepaliveTime:
+ description: |-
+ NetIpv4TCPKeepaliveTime specifies the rate at which TCP sends out a keepalive message when keepalive is enabled.
+ Valid values are 30-432000 (inclusive).
+ Maps to net.ipv4.tcp_keepalive_time.
+ maximum: 432000
+ minimum: 30
+ type: integer
+ netIpv4TCPMaxSynBacklog:
+ description: |-
+ NetIpv4TCPMaxSynBacklog specifies the maximum number of queued connection requests that have still not received an acknowledgment from the connecting client.
+ If this number is exceeded, the kernel will begin dropping requests.
+ Valid values are 128-3240000 (inclusive).
+ Maps to net.ipv4.tcp_max_syn_backlog.
+ maximum: 3240000
+ minimum: 128
+ type: integer
+ netIpv4TCPMaxTwBuckets:
+ description: |-
+ NetIpv4TCPMaxTwBuckets specifies maximal number of timewait sockets held by system simultaneously.
+ If this number is exceeded, time-wait socket is immediately destroyed and warning is printed.
+ Valid values are 8000-1440000 (inclusive).
+ Maps to net.ipv4.tcp_max_tw_buckets.
+ maximum: 1440000
+ minimum: 8000
+ type: integer
+ netIpv4TCPTwReuse:
+ description: |-
+ NetIpv4TCPTwReuse is used to allow to reuse TIME-WAIT sockets for new connections when it's safe from protocol viewpoint.
+ Maps to net.ipv4.tcp_tw_reuse.
+ type: boolean
+ netIpv4TCPkeepaliveIntvl:
+ description: |-
+ NetIpv4TCPkeepaliveIntvl specifies the frequency of the probes sent out.
+ Multiplied by tcpKeepaliveprobes, it makes up the time to kill a connection that isn't responding, after probes started.
+ Valid values are 1-75 (inclusive).
+ Maps to net.ipv4.tcp_keepalive_intvl.
+ maximum: 75
+ minimum: 1
+ type: integer
+ netNetfilterNfConntrackBuckets:
+ description: |-
+ NetNetfilterNfConntrackBuckets specifies the size of hash table used by nf_conntrack module to record the established connection record of the TCP protocol.
+ Valid values are 65536-147456 (inclusive).
+ Maps to net.netfilter.nf_conntrack_buckets.
+ maximum: 147456
+ minimum: 65536
+ type: integer
+ netNetfilterNfConntrackMax:
+ description: |-
+ NetNetfilterNfConntrackMax specifies the maximum number of connections supported by the nf_conntrack module or the size of connection tracking table.
+ Valid values are 131072-1048576 (inclusive).
+ Maps to net.netfilter.nf_conntrack_max.
+ maximum: 1048576
+ minimum: 131072
+ type: integer
+ vmMaxMapCount:
+ description: |-
+ VMMaxMapCount specifies the maximum number of memory map areas a process may have.
+ Maps to vm.max_map_count.
+ Valid values are 65530-262144 (inclusive).
+ maximum: 262144
+ minimum: 65530
+ type: integer
+ vmSwappiness:
+ description: |-
+ VMSwappiness specifies aggressiveness of the kernel in swapping memory pages.
+ Higher values will increase aggressiveness, lower values decrease the amount of swap.
+ Valid values are 0-100 (inclusive).
+ Maps to vm.swappiness.
+ maximum: 100
+ minimum: 0
+ type: integer
+ vmVfsCachePressure:
+ description: |-
+ VMVfsCachePressure specifies the percentage value that controls tendency of the kernel to reclaim the memory, which is used for caching of directory and inode objects.
+ Valid values are 1-500 (inclusive).
+ Maps to vm.vfs_cache_pressure.
+ maximum: 500
+ minimum: 1
+ type: integer
+ type: object
+ transparentHugePageDefrag:
+ description: |-
+ TransparentHugePageDefrag specifies whether the kernel should make aggressive use of memory compaction to make more hugepages available.
+ See also [Linux doc].
+
+
+ [Linux doc]: https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge for more details.
+ enum:
+ - always
+ - defer
+ - defer+madvise
+ - madvise
+ - never
+ type: string
+ transparentHugePageEnabled:
+ description: |-
+ TransparentHugePageEnabled specifies various modes of Transparent Hugepages.
+ See also [Linux doc].
+
+
+ [Linux doc]: https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge for more details.
+ enum:
+ - always
+ - madvise
+ - never
+ type: string
+ type: object
+ maxPods:
+ description: |-
+ MaxPods specifies the kubelet `--max-pods` configuration for the node pool.
+ Immutable.
+ See also [AKS doc], [K8s doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/configure-azure-cni#configure-maximum---new-clusters
+ [K8s doc]: https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
+ type: integer
+ mode:
+ description: 'Mode represents the mode of an agent pool. Possible
+ values include: System, User.'
+ enum:
+ - System
+ - User
+ type: string
+ name:
+ description: |-
+ Name is the name of the agent pool. If not specified, CAPZ uses the name of the CR as the agent pool name.
+ Immutable.
+ type: string
+ nodeLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ Node labels represent the labels for all of the nodes present in node pool.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/use-labels
+ type: object
+ nodePublicIPPrefixID:
+ description: |-
+ NodePublicIPPrefixID specifies the public IP prefix resource ID which VM nodes should use IPs from.
+ Immutable.
+ type: string
+ osDiskSizeGB:
+ description: |-
+ OSDiskSizeGB is the disk size for every machine in this agent pool.
+ If you specify 0, it will apply the default osDisk size according to the vmSize specified.
+ Immutable.
+ type: integer
+ osDiskType:
+ default: Managed
+ description: |-
+ OsDiskType specifies the OS disk type for each node in the pool. Allowed values are 'Ephemeral' and 'Managed' (default).
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/cluster-configuration#ephemeral-os
+ enum:
+ - Ephemeral
+ - Managed
+ type: string
+ osType:
+ description: |-
+ OSType specifies the virtual machine operating system. Default to Linux. Possible values include: 'Linux', 'Windows'.
+ 'Windows' requires the AzureManagedControlPlane's `spec.networkPlugin` to be `azure`.
+ Immutable.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/rest/api/aks/agent-pools/create-or-update?tabs=HTTP#ostype
+ enum:
+ - Linux
+ - Windows
+ type: string
+ scaleDownMode:
+ default: Delete
+ description: 'ScaleDownMode affects the cluster autoscaler behavior.
+ Default to Delete. Possible values include: ''Deallocate'',
+ ''Delete'''
+ enum:
+ - Deallocate
+ - Delete
+ type: string
+ scaleSetPriority:
+ description: |-
+ ScaleSetPriority specifies the ScaleSetPriority value. Default to Regular. Possible values include: 'Regular', 'Spot'
+ Immutable.
+ enum:
+ - Regular
+ - Spot
+ type: string
+ scaling:
+ description: Scaling specifies the autoscaling parameters for
+ the node pool.
+ properties:
+ maxSize:
+ description: MaxSize is the maximum number of nodes for
+ auto-scaling.
+ type: integer
+ minSize:
+ description: MinSize is the minimum number of nodes for
+ auto-scaling.
+ type: integer
+ type: object
+ sku:
+ description: |-
+ SKU is the size of the VMs in the node pool.
+ Immutable.
+ type: string
+ spotMaxPrice:
+ anyOf:
+ - type: integer
+ - type: string
+ description: |-
+ SpotMaxPrice defines max price to pay for spot instance. Possible values are any decimal value greater than zero or -1.
+ If you set the max price to be -1, the VM won't be evicted based on price. The price for the VM will be the current price
+ for spot or the price for a standard VM, which ever is less, as long as there's capacity and quota available.
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ subnetName:
+ description: |-
+ SubnetName specifies the Subnet where the MachinePool will be placed
+ Immutable.
+ type: string
+ taints:
+ description: |-
+ Taints specifies the taints for nodes present in this agent pool.
+ See also [AKS doc].
+
+
+ [AKS doc]: https://learn.microsoft.com/azure/aks/use-multiple-node-pools#setting-node-pool-taints
+ items:
+ description: Taint represents a Kubernetes taint.
+ properties:
+ effect:
+ description: Effect specifies the effect for the taint
+ enum:
+ - NoSchedule
+ - NoExecute
+ - PreferNoSchedule
+ type: string
+ key:
+ description: Key is the key of the taint
+ type: string
+ value:
+ description: Value is the value of the taint
+ type: string
+ required:
+ - effect
+ - key
+ - value
+ type: object
+ type: array
+ required:
+ - mode
+ - sku
+ type: object
+ required:
+ - spec
+ type: object
+ required:
+ - template
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
index 809ea6947..deeaefc0c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
@@ -20,14 +20,19 @@ spec:
description: GCPCluster is the Schema for the gcpclusters API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,9 +73,9 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to add to GCP
- resources managed by the GCP provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to GCP resources managed by the GCP provider, in addition to the
+ ones added by default.
type: object
controlPlaneEndpoint:
description: ControlPlaneEndpoint represents the endpoint used to communicate
@@ -88,38 +93,82 @@ spec:
- port
type: object
credentialsRef:
- description: CredentialsRef is a reference to a Secret that contains
- the credentials to use for provisioning this cluster. If not supplied
- then the credentials of the controller will be used.
+ description: |-
+ CredentialsRef is a reference to a Secret that contains the credentials to use for provisioning this cluster. If not
+ supplied then the credentials of the controller will be used.
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
required:
- name
- namespace
type: object
failureDomains:
- description: FailureDomains is an optional field which is used to assign
- selected availability zones to a cluster FailureDomains if empty,
- defaults to all the zones in the selected region and if specified
- would override the default zones.
+ description: |-
+ FailureDomains is an optional field which is used to assign selected availability zones to a cluster
+ FailureDomains if empty, defaults to all the zones in the selected region and if specified would override
+ the default zones.
items:
type: string
type: array
+ loadBalancer:
+ description: LoadBalancer contains configuration for one or more LoadBalancers.
+ properties:
+ apiServerInstanceGroupTagOverride:
+ description: |-
+ APIServerInstanceGroupTagOverride overrides the default setting for the
+ tag used when creating the API Server Instance Group.
+ maxLength: 16
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ internalLoadBalancer:
+ description: InternalLoadBalancer is the configuration for an Internal
+ Passthrough Network Load Balancer.
+ properties:
+ name:
+ description: |-
+ Name is the name of the Load Balancer. If not set a default name
+ will be used. For an Internal Load Balancer service the default
+ name is "api-internal".
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ subnet:
+ description: |-
+ Subnet is the name of the subnet to use for a regional Load Balancer. A subnet is
+ required for the Load Balancer, if not defined the first configured subnet will be
+ used.
+ type: string
+ type: object
+ loadBalancerType:
+ description: |-
+ LoadBalancerType defines the type of Load Balancer that should be created.
+ If not set, a Global External Proxy Load Balancer will be created by default.
+ type: string
+ type: object
network:
description: NetworkSpec encapsulates all things related to GCP network.
properties:
autoCreateSubnetworks:
- description: "AutoCreateSubnetworks: When set to true, the VPC network
- is created in \"auto\" mode. When set to false, the VPC network
- is created in \"custom\" mode. \n An auto mode VPC network starts
- with one subnet per region. Each subnet has a predetermined range
- as described in Auto mode VPC network IP ranges. \n Defaults to
- true."
+ description: |-
+ AutoCreateSubnetworks: When set to true, the VPC network is created
+ in "auto" mode. When set to false, the VPC network is created in
+ "custom" mode.
+
+
+ An auto mode VPC network starts with one subnet per region. Each
+ subnet has a predetermined range as described in Auto mode VPC
+ network IP ranges.
+
+
+ Defaults to true.
type: boolean
loadBalancerBackendPort:
description: Allow for configuration of load balancer backend (useful
@@ -135,45 +184,50 @@ spec:
description: SubnetSpec configures an GCP Subnet.
properties:
cidrBlock:
- description: CidrBlock is the range of internal addresses
- that are owned by this subnetwork. Provide this property
- when you create the subnetwork. For example, 10.0.0.0/8
- or 192.168.0.0/16. Ranges must be unique and non-overlapping
- within a network. Only IPv4 is supported. This field can
- be set only at resource creation time.
+ description: |-
+ CidrBlock is the range of internal addresses that are owned by this
+ subnetwork. Provide this property when you create the subnetwork. For
+ example, 10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
+ non-overlapping within a network. Only IPv4 is supported. This field
+ can be set only at resource creation time.
type: string
description:
description: Description is an optional description associated
with the resource.
type: string
enableFlowLogs:
- description: 'EnableFlowLogs: Whether to enable flow logging
- for this subnetwork. If this field is not explicitly set,
- it will not appear in get listings. If not set the default
- behavior is to disable flow logging.'
+ description: |-
+ EnableFlowLogs: Whether to enable flow logging for this subnetwork.
+ If this field is not explicitly set, it will not appear in get
+ listings. If not set the default behavior is to disable flow logging.
type: boolean
name:
description: Name defines a unique identifier to reference
this resource.
type: string
privateGoogleAccess:
- description: PrivateGoogleAccess defines whether VMs in this
- subnet can access Google services without assigning external
- IP addresses
+ description: |-
+ PrivateGoogleAccess defines whether VMs in this subnet can access
+ Google services without assigning external IP addresses
type: boolean
purpose:
default: PRIVATE_RFC_1918
- description: "Purpose: The purpose of the resource. If unspecified,
- the purpose defaults to PRIVATE_RFC_1918. The enableFlowLogs
- field isn't supported with the purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
- \n Possible values: \"INTERNAL_HTTPS_LOAD_BALANCER\" - Subnet
- reserved for Internal HTTP(S) Load Balancing. \"PRIVATE\"
- - Regular user created or automatically created subnet.
- \"PRIVATE_RFC_1918\" - Regular user created or automatically
- created subnet. \"PRIVATE_SERVICE_CONNECT\" - Subnetworks
- created for Private Service Connect in the producer network.
- \"REGIONAL_MANAGED_PROXY\" - Subnetwork used for Regional
- Internal/External HTTP(S) Load Balancing."
+ description: |-
+ Purpose: The purpose of the resource.
+ If unspecified, the purpose defaults to PRIVATE_RFC_1918.
+ The enableFlowLogs field isn't supported with the purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
+
+
+ Possible values:
+ "INTERNAL_HTTPS_LOAD_BALANCER" - Subnet reserved for Internal
+ HTTP(S) Load Balancing.
+ "PRIVATE" - Regular user created or automatically created subnet.
+ "PRIVATE_RFC_1918" - Regular user created or automatically created
+ subnet.
+ "PRIVATE_SERVICE_CONNECT" - Subnetworks created for Private Service
+ Connect in the producer network.
+ "REGIONAL_MANAGED_PROXY" - Subnetwork used for Regional
+ Internal/External HTTP(S) Load Balancing.
enum:
- INTERNAL_HTTPS_LOAD_BALANCER
- PRIVATE_RFC_1918
@@ -188,7 +242,8 @@ spec:
secondaryCidrBlocks:
additionalProperties:
type: string
- description: SecondaryCidrBlocks defines secondary CIDR ranges,
+ description: |-
+ SecondaryCidrBlocks defines secondary CIDR ranges,
from which secondary IP ranges of a VM may be allocated
type: object
type: object
@@ -201,6 +256,53 @@ spec:
region:
description: The GCP Region the cluster lives in.
type: string
+ resourceManagerTags:
+ description: |-
+ ResourceManagerTags is an optional set of tags to apply to GCP resources managed
+ by the GCP provider. GCP supports a maximum of 50 tags per resource.
+ items:
+ description: ResourceManagerTag is a tag to apply to GCP resources
+ managed by the GCP provider.
+ properties:
+ key:
+ description: |-
+ Key is the key part of the tag. A tag key can have a maximum of 63 characters and cannot
+ be empty. Tag key must begin and end with an alphanumeric character, and must contain
+ only uppercase, lowercase alphanumeric characters, and the following special
+ characters `._-`.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.-]{0,61}[a-zA-Z0-9])?$
+ type: string
+ parentID:
+ description: |-
+ ParentID is the ID of the hierarchical resource where the tags are defined
+ e.g. at the Organization or the Project level. To find the Organization or Project ID ref
+ https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id
+ https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
+ An OrganizationID must consist of decimal numbers, and cannot have leading zeroes.
+ A ProjectID must be 6 to 30 characters in length, can only contain lowercase letters,
+ numbers, and hyphens, and must start with a letter, and cannot end with a hyphen.
+ maxLength: 32
+ minLength: 1
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ value:
+ description: |-
+ Value is the value part of the tag. A tag value can have a maximum of 63 characters and
+ cannot be empty. Tag value must begin and end with an alphanumeric character, and must
+ contain only uppercase, lowercase alphanumeric characters, and the following special
+ characters `_-.@%=+:,*#&(){}[]` and spaces.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.@%=+:,*#&()\[\]{}\-\s]{0,61}[a-zA-Z0-9])?$
+ type: string
+ required:
+ - key
+ - parentID
+ - value
+ type: object
+ type: array
required:
- project
- region
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
index 889df3bdf..2067a3769 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
@@ -20,14 +20,19 @@ spec:
description: GCPClusterTemplate is the Schema for the gcpclustertemplates API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,23 +74,27 @@ spec:
description: GCPClusterTemplateResource contains spec for GCPClusterSpec.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -94,9 +103,9 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to
- add to GCP resources managed by the GCP provider, in addition
- to the ones added by default.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to GCP resources managed by the GCP provider, in addition to the
+ ones added by default.
type: object
controlPlaneEndpoint:
description: ControlPlaneEndpoint represents the endpoint used
@@ -114,40 +123,84 @@ spec:
- port
type: object
credentialsRef:
- description: CredentialsRef is a reference to a Secret that
- contains the credentials to use for provisioning this cluster.
- If not supplied then the credentials of the controller will
- be used.
+ description: |-
+ CredentialsRef is a reference to a Secret that contains the credentials to use for provisioning this cluster. If not
+ supplied then the credentials of the controller will be used.
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
required:
- name
- namespace
type: object
failureDomains:
- description: FailureDomains is an optional field which is used
- to assign selected availability zones to a cluster FailureDomains
- if empty, defaults to all the zones in the selected region
- and if specified would override the default zones.
+ description: |-
+ FailureDomains is an optional field which is used to assign selected availability zones to a cluster
+ FailureDomains if empty, defaults to all the zones in the selected region and if specified would override
+ the default zones.
items:
type: string
type: array
+ loadBalancer:
+ description: LoadBalancer contains configuration for one or
+ more LoadBalancers.
+ properties:
+ apiServerInstanceGroupTagOverride:
+ description: |-
+ APIServerInstanceGroupTagOverride overrides the default setting for the
+ tag used when creating the API Server Instance Group.
+ maxLength: 16
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ internalLoadBalancer:
+ description: InternalLoadBalancer is the configuration for
+ an Internal Passthrough Network Load Balancer.
+ properties:
+ name:
+ description: |-
+ Name is the name of the Load Balancer. If not set a default name
+ will be used. For an Internal Load Balancer service the default
+ name is "api-internal".
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ subnet:
+ description: |-
+ Subnet is the name of the subnet to use for a regional Load Balancer. A subnet is
+ required for the Load Balancer, if not defined the first configured subnet will be
+ used.
+ type: string
+ type: object
+ loadBalancerType:
+ description: |-
+ LoadBalancerType defines the type of Load Balancer that should be created.
+ If not set, a Global External Proxy Load Balancer will be created by default.
+ type: string
+ type: object
network:
description: NetworkSpec encapsulates all things related to
GCP network.
properties:
autoCreateSubnetworks:
- description: "AutoCreateSubnetworks: When set to true, the
- VPC network is created in \"auto\" mode. When set to false,
- the VPC network is created in \"custom\" mode. \n An auto
- mode VPC network starts with one subnet per region. Each
- subnet has a predetermined range as described in Auto
- mode VPC network IP ranges. \n Defaults to true."
+ description: |-
+ AutoCreateSubnetworks: When set to true, the VPC network is created
+ in "auto" mode. When set to false, the VPC network is created in
+ "custom" mode.
+
+
+ An auto mode VPC network starts with one subnet per region. Each
+ subnet has a predetermined range as described in Auto mode VPC
+ network IP ranges.
+
+
+ Defaults to true.
type: boolean
loadBalancerBackendPort:
description: Allow for configuration of load balancer backend
@@ -163,49 +216,50 @@ spec:
description: SubnetSpec configures an GCP Subnet.
properties:
cidrBlock:
- description: CidrBlock is the range of internal addresses
- that are owned by this subnetwork. Provide this
- property when you create the subnetwork. For example,
- 10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique
- and non-overlapping within a network. Only IPv4
- is supported. This field can be set only at resource
- creation time.
+ description: |-
+ CidrBlock is the range of internal addresses that are owned by this
+ subnetwork. Provide this property when you create the subnetwork. For
+ example, 10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
+ non-overlapping within a network. Only IPv4 is supported. This field
+ can be set only at resource creation time.
type: string
description:
description: Description is an optional description
associated with the resource.
type: string
enableFlowLogs:
- description: 'EnableFlowLogs: Whether to enable flow
- logging for this subnetwork. If this field is not
- explicitly set, it will not appear in get listings.
- If not set the default behavior is to disable flow
- logging.'
+ description: |-
+ EnableFlowLogs: Whether to enable flow logging for this subnetwork.
+ If this field is not explicitly set, it will not appear in get
+ listings. If not set the default behavior is to disable flow logging.
type: boolean
name:
description: Name defines a unique identifier to reference
this resource.
type: string
privateGoogleAccess:
- description: PrivateGoogleAccess defines whether VMs
- in this subnet can access Google services without
- assigning external IP addresses
+ description: |-
+ PrivateGoogleAccess defines whether VMs in this subnet can access
+ Google services without assigning external IP addresses
type: boolean
purpose:
default: PRIVATE_RFC_1918
- description: "Purpose: The purpose of the resource.
+ description: |-
+ Purpose: The purpose of the resource.
If unspecified, the purpose defaults to PRIVATE_RFC_1918.
- The enableFlowLogs field isn't supported with the
- purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
- \n Possible values: \"INTERNAL_HTTPS_LOAD_BALANCER\"
- - Subnet reserved for Internal HTTP(S) Load Balancing.
- \"PRIVATE\" - Regular user created or automatically
- created subnet. \"PRIVATE_RFC_1918\" - Regular user
- created or automatically created subnet. \"PRIVATE_SERVICE_CONNECT\"
- - Subnetworks created for Private Service Connect
- in the producer network. \"REGIONAL_MANAGED_PROXY\"
- - Subnetwork used for Regional Internal/External
- HTTP(S) Load Balancing."
+ The enableFlowLogs field isn't supported with the purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
+
+
+ Possible values:
+ "INTERNAL_HTTPS_LOAD_BALANCER" - Subnet reserved for Internal
+ HTTP(S) Load Balancing.
+ "PRIVATE" - Regular user created or automatically created subnet.
+ "PRIVATE_RFC_1918" - Regular user created or automatically created
+ subnet.
+ "PRIVATE_SERVICE_CONNECT" - Subnetworks created for Private Service
+ Connect in the producer network.
+ "REGIONAL_MANAGED_PROXY" - Subnetwork used for Regional
+ Internal/External HTTP(S) Load Balancing.
enum:
- INTERNAL_HTTPS_LOAD_BALANCER
- PRIVATE_RFC_1918
@@ -220,9 +274,9 @@ spec:
secondaryCidrBlocks:
additionalProperties:
type: string
- description: SecondaryCidrBlocks defines secondary
- CIDR ranges, from which secondary IP ranges of a
- VM may be allocated
+ description: |-
+ SecondaryCidrBlocks defines secondary CIDR ranges,
+ from which secondary IP ranges of a VM may be allocated
type: object
type: object
type: array
@@ -234,6 +288,53 @@ spec:
region:
description: The GCP Region the cluster lives in.
type: string
+ resourceManagerTags:
+ description: |-
+ ResourceManagerTags is an optional set of tags to apply to GCP resources managed
+ by the GCP provider. GCP supports a maximum of 50 tags per resource.
+ items:
+ description: ResourceManagerTag is a tag to apply to GCP resources
+ managed by the GCP provider.
+ properties:
+ key:
+ description: |-
+ Key is the key part of the tag. A tag key can have a maximum of 63 characters and cannot
+ be empty. Tag key must begin and end with an alphanumeric character, and must contain
+ only uppercase, lowercase alphanumeric characters, and the following special
+ characters `._-`.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.-]{0,61}[a-zA-Z0-9])?$
+ type: string
+ parentID:
+ description: |-
+ ParentID is the ID of the hierarchical resource where the tags are defined
+ e.g. at the Organization or the Project level. To find the Organization or Project ID ref
+ https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id
+ https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
+ An OrganizationID must consist of decimal numbers, and cannot have leading zeroes.
+ A ProjectID must be 6 to 30 characters in length, can only contain lowercase letters,
+ numbers, and hyphens, and must start with a letter, and cannot end with a hyphen.
+ maxLength: 32
+ minLength: 1
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ value:
+ description: |-
+ Value is the value part of the tag. A tag value can have a maximum of 63 characters and
+ cannot be empty. Tag value must begin and end with an alphanumeric character, and must
+ contain only uppercase, lowercase alphanumeric characters, and the following special
+ characters `_-.@%=+:,*#&(){}[]` and spaces.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.@%=+:,*#&()\[\]{}\-\s]{0,61}[a-zA-Z0-9])?$
+ type: string
+ required:
+ - key
+ - parentID
+ - value
+ type: object
+ type: array
required:
- project
- region
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
index dc77f5691..e9621a7f6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
@@ -20,14 +20,19 @@ spec:
description: GCPMachine is the Schema for the gcpmachines API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,15 +76,84 @@ spec:
description: AttachedDiskSpec degined GCP machine disk.
properties:
deviceType:
- description: 'DeviceType is a device type of the attached disk.
- Supported types of non-root attached volumes: 1. "pd-standard"
- - Standard (HDD) persistent disk 2. "pd-ssd" - SSD persistent
- disk 3. "local-ssd" - Local SSD disk (https://cloud.google.com/compute/docs/disks/local-ssd).
- Default is "pd-standard".'
+ description: |-
+ DeviceType is a device type of the attached disk.
+ Supported types of non-root attached volumes:
+ 1. "pd-standard" - Standard (HDD) persistent disk
+ 2. "pd-ssd" - SSD persistent disk
+ 3. "local-ssd" - Local SSD disk (https://cloud.google.com/compute/docs/disks/local-ssd).
+ Default is "pd-standard".
type: string
+ encryptionKey:
+ description: EncryptionKey defines the KMS key to be used to encrypt
+ the disk.
+ properties:
+ keyType:
+ description: |-
+ KeyType is the type of encryption key. Must be either Managed, aka Customer-Managed Encryption Key (CMEK) or
+ Supplied, aka Customer-Supplied EncryptionKey (CSEK).
+ enum:
+ - Managed
+ - Supplied
+ type: string
+ kmsKeyServiceAccount:
+ description: |-
+ KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key.
+ If absent, the Compute Engine default service account is used. For example:
+ "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com.
+ The maximum length is based on the Service Account ID (max 30), Project (max 30), and a valid gcloud email
+ suffix ("iam.gserviceaccount.com").
+ maxLength: 85
+ pattern: '[-_[A-Za-z0-9]+@[-_[A-Za-z0-9]+.iam.gserviceaccount.com'
+ type: string
+ managedKey:
+ description: ManagedKey references keys managed by the Cloud
+ Key Management Service. This should be set when KeyType
+ is Managed.
+ properties:
+ kmsKeyName:
+ description: |-
+ KMSKeyName is the name of the encryption key that is stored in Google Cloud KMS. For example:
+ "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/key_region/cryptoKeys/key
+ maxLength: 160
+ pattern: projects\/[-_[A-Za-z0-9]+\/locations\/[-_[A-Za-z0-9]+\/keyRings\/[-_[A-Za-z0-9]+\/cryptoKeys\/[-_[A-Za-z0-9]+
+ type: string
+ type: object
+ suppliedKey:
+ description: SuppliedKey provides the key used to create or
+ manage a disk. This should be set when KeyType is Managed.
+ maxProperties: 1
+ minProperties: 1
+ properties:
+ rawKey:
+ description: |-
+ RawKey specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
+ base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey.
+ For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
+ format: byte
+ type: string
+ rsaEncryptedKey:
+ description: |-
+ RSAEncryptedKey specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption
+ key to either encrypt or decrypt this resource. You can provide either the rawKey or the
+ rsaEncryptedKey.
+ For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFHi
+ z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoDi
+ D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
+ The key must meet the following requirements before you can provide it to Compute Engine:
+ 1. The key is wrapped using a RSA public key certificate provided by Google.
+ 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding.
+ Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
+ format: byte
+ type: string
+ type: object
+ required:
+ - keyType
+ type: object
size:
- description: Size is the size of the disk in GBs. Defaults to
- 30GB. For "local-ssd" size is always 375GB.
+ description: |-
+ Size is the size of the disk in GBs.
+ Defaults to 30GB. For "local-ssd" size is always 375GB.
format: int64
type: integer
type: object
@@ -87,15 +161,15 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to add to an
- instance, in addition to the ones added by default by the GCP provider.
- If both the GCPCluster and the GCPMachine specify the same tag name
- with different values, the GCPMachine's value takes precedence.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ GCP provider. If both the GCPCluster and the GCPMachine specify the same tag name with different values, the
+ GCPMachine's value takes precedence.
type: object
additionalMetadata:
- description: AdditionalMetadata is an optional set of metadata to add
- to an instance, in addition to the ones added by default by the GCP
- provider.
+ description: |-
+ AdditionalMetadata is an optional set of metadata to add to an instance, in addition to the ones added by default by the
+ GCP provider.
items:
description: MetadataItem defines a single piece of metadata associated
with an instance.
@@ -114,25 +188,26 @@ spec:
- key
x-kubernetes-list-type: map
additionalNetworkTags:
- description: AdditionalNetworkTags is a list of network tags that should
- be applied to the instance. These tags are set in addition to any
- network tags defined at the cluster level or in the actuator.
+ description: |-
+ AdditionalNetworkTags is a list of network tags that should be applied to the
+ instance. These tags are set in addition to any network tags defined
+ at the cluster level or in the actuator.
items:
type: string
type: array
confidentialCompute:
- description: ConfidentialCompute Defines whether the instance should
- have confidential compute enabled. If enabled OnHostMaintenance is
- required to be set to "Terminate". If omitted, the platform chooses
- a default, which is subject to change over time, currently that default
- is false.
+ description: |-
+ ConfidentialCompute Defines whether the instance should have confidential compute enabled.
+ If enabled OnHostMaintenance is required to be set to "Terminate".
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
enum:
- Enabled
- Disabled
type: string
image:
- description: Image is the full reference to a valid image to be used
- for this machine. Takes precedence over ImageFamily.
+ description: |-
+ Image is the full reference to a valid image to be used for this machine.
+ Takes precedence over ImageFamily.
type: string
imageFamily:
description: ImageFamily is the full reference to a valid image family
@@ -144,18 +219,17 @@ spec:
type: string
ipForwarding:
default: Enabled
- description: IPForwarding Allows this instance to send and receive packets
- with non-matching destination or source IPs. This is required if you
- plan to use this instance to forward routes. Defaults to enabled.
+ description: |-
+ IPForwarding Allows this instance to send and receive packets with non-matching destination or source IPs.
+ This is required if you plan to use this instance to forward routes. Defaults to enabled.
enum:
- Enabled
- Disabled
type: string
onHostMaintenance:
- description: OnHostMaintenance determines the behavior when a maintenance
- event occurs that might cause the instance to reboot. If omitted,
- the platform chooses a default, which is subject to change over time,
- currently that default is "Migrate".
+ description: |-
+ OnHostMaintenance determines the behavior when a maintenance event occurs that might cause the instance to reboot.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is "Migrate".
enum:
- Migrate
- Terminate
@@ -168,31 +242,148 @@ spec:
cloud provider.
type: string
publicIP:
- description: PublicIP specifies whether the instance should get a public
- IP. Set this to true if you don't have a NAT instances or Cloud Nat
- setup.
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Set this to true if you don't have a NAT instances or Cloud Nat setup.
type: boolean
+ resourceManagerTags:
+ description: |-
+ ResourceManagerTags is an optional set of tags to apply to GCP resources managed
+ by the GCP provider. GCP supports a maximum of 50 tags per resource.
+ items:
+ description: ResourceManagerTag is a tag to apply to GCP resources
+ managed by the GCP provider.
+ properties:
+ key:
+ description: |-
+ Key is the key part of the tag. A tag key can have a maximum of 63 characters and cannot
+ be empty. Tag key must begin and end with an alphanumeric character, and must contain
+ only uppercase, lowercase alphanumeric characters, and the following special
+ characters `._-`.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.-]{0,61}[a-zA-Z0-9])?$
+ type: string
+ parentID:
+ description: |-
+ ParentID is the ID of the hierarchical resource where the tags are defined
+ e.g. at the Organization or the Project level. To find the Organization or Project ID ref
+ https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id
+ https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
+ An OrganizationID must consist of decimal numbers, and cannot have leading zeroes.
+ A ProjectID must be 6 to 30 characters in length, can only contain lowercase letters,
+ numbers, and hyphens, and must start with a letter, and cannot end with a hyphen.
+ maxLength: 32
+ minLength: 1
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ value:
+ description: |-
+ Value is the value part of the tag. A tag value can have a maximum of 63 characters and
+ cannot be empty. Tag value must begin and end with an alphanumeric character, and must
+ contain only uppercase, lowercase alphanumeric characters, and the following special
+ characters `_-.@%=+:,*#&(){}[]` and spaces.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.@%=+:,*#&()\[\]{}\-\s]{0,61}[a-zA-Z0-9])?$
+ type: string
+ required:
+ - key
+ - parentID
+ - value
+ type: object
+ type: array
rootDeviceSize:
- description: RootDeviceSize is the size of the root volume in GB. Defaults
- to 30.
+ description: |-
+ RootDeviceSize is the size of the root volume in GB.
+ Defaults to 30.
format: int64
type: integer
rootDeviceType:
- description: 'RootDeviceType is the type of the root volume. Supported
- types of root volumes: 1. "pd-standard" - Standard (HDD) persistent
- disk 2. "pd-ssd" - SSD persistent disk Default is "pd-standard".'
+ description: |-
+ RootDeviceType is the type of the root volume.
+ Supported types of root volumes:
+ 1. "pd-standard" - Standard (HDD) persistent disk
+ 2. "pd-ssd" - SSD persistent disk
+ Default is "pd-standard".
type: string
+ rootDiskEncryptionKey:
+ description: RootDiskEncryptionKey defines the KMS key to be used to
+ encrypt the root disk.
+ properties:
+ keyType:
+ description: |-
+ KeyType is the type of encryption key. Must be either Managed, aka Customer-Managed Encryption Key (CMEK) or
+ Supplied, aka Customer-Supplied EncryptionKey (CSEK).
+ enum:
+ - Managed
+ - Supplied
+ type: string
+ kmsKeyServiceAccount:
+ description: |-
+ KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key.
+ If absent, the Compute Engine default service account is used. For example:
+ "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com.
+ The maximum length is based on the Service Account ID (max 30), Project (max 30), and a valid gcloud email
+ suffix ("iam.gserviceaccount.com").
+ maxLength: 85
+ pattern: '[-_[A-Za-z0-9]+@[-_[A-Za-z0-9]+.iam.gserviceaccount.com'
+ type: string
+ managedKey:
+ description: ManagedKey references keys managed by the Cloud Key
+ Management Service. This should be set when KeyType is Managed.
+ properties:
+ kmsKeyName:
+ description: |-
+ KMSKeyName is the name of the encryption key that is stored in Google Cloud KMS. For example:
+ "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/key_region/cryptoKeys/key
+ maxLength: 160
+ pattern: projects\/[-_[A-Za-z0-9]+\/locations\/[-_[A-Za-z0-9]+\/keyRings\/[-_[A-Za-z0-9]+\/cryptoKeys\/[-_[A-Za-z0-9]+
+ type: string
+ type: object
+ suppliedKey:
+ description: SuppliedKey provides the key used to create or manage
+ a disk. This should be set when KeyType is Managed.
+ maxProperties: 1
+ minProperties: 1
+ properties:
+ rawKey:
+ description: |-
+ RawKey specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
+ base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey.
+ For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
+ format: byte
+ type: string
+ rsaEncryptedKey:
+ description: |-
+ RSAEncryptedKey specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption
+ key to either encrypt or decrypt this resource. You can provide either the rawKey or the
+ rsaEncryptedKey.
+ For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFHi
+ z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoDi
+ D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
+ The key must meet the following requirements before you can provide it to Compute Engine:
+ 1. The key is wrapped using a RSA public key certificate provided by Google.
+ 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding.
+ Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
+ format: byte
+ type: string
+ type: object
+ required:
+ - keyType
+ type: object
serviceAccounts:
- description: 'ServiceAccount specifies the service account email and
- which scopes to assign to the machine. Defaults to: email: "default",
- scope: []{compute.CloudPlatformScope}'
+ description: |-
+ ServiceAccount specifies the service account email and which scopes to assign to the machine.
+ Defaults to: email: "default", scope: []{compute.CloudPlatformScope}
properties:
email:
description: 'Email: Email address of the service account.'
type: string
scopes:
- description: 'Scopes: The list of scopes to be made available for
- this service account.'
+ description: |-
+ Scopes: The list of scopes to be made available for this service
+ account.
items:
type: string
type: array
@@ -202,45 +393,38 @@ spec:
for this machine
properties:
integrityMonitoring:
- description: IntegrityMonitoring determines whether the instance
- should have integrity monitoring that verify the runtime boot
- integrity. Compares the most recent boot measurements to the integrity
- policy baseline and return a pair of pass/fail results depending
- on whether they match or not. If omitted, the platform chooses
- a default, which is subject to change over time, currently that
- default is Enabled.
+ description: |-
+ IntegrityMonitoring determines whether the instance should have integrity monitoring that verify the runtime boot integrity.
+ Compares the most recent boot measurements to the integrity policy baseline and return
+ a pair of pass/fail results depending on whether they match or not.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Enabled.
enum:
- Enabled
- Disabled
type: string
secureBoot:
- description: SecureBoot Defines whether the instance should have
- secure boot enabled. Secure Boot verify the digital signature
- of all boot components, and halting the boot process if signature
- verification fails. If omitted, the platform chooses a default,
- which is subject to change over time, currently that default is
- Disabled.
+ description: |-
+ SecureBoot Defines whether the instance should have secure boot enabled.
+ Secure Boot verify the digital signature of all boot components, and halting the boot process if signature verification fails.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Disabled.
enum:
- Enabled
- Disabled
type: string
virtualizedTrustedPlatformModule:
- description: VirtualizedTrustedPlatformModule enable virtualized
- trusted platform module measurements to create a known good boot
- integrity policy baseline. The integrity policy baseline is used
- for comparison with measurements from subsequent VM boots to determine
- if anything has changed. If omitted, the platform chooses a default,
- which is subject to change over time, currently that default is
- Enabled.
+ description: |-
+ VirtualizedTrustedPlatformModule enable virtualized trusted platform module measurements to create a known good boot integrity policy baseline.
+ The integrity policy baseline is used for comparison with measurements from subsequent VM boots to determine if anything has changed.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Enabled.
enum:
- Enabled
- Disabled
type: string
type: object
subnet:
- description: Subnet is a reference to the subnetwork to use for this
- instance. If not specified, the first subnetwork retrieved from the
- Cluster Region and Network is picked.
+ description: |-
+ Subnet is a reference to the subnetwork to use for this instance. If not specified,
+ the first subnetwork retrieved from the Cluster Region and Network is picked.
type: string
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
index e15cd975e..1f0255eba 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
@@ -20,14 +20,19 @@ spec:
description: GCPMachineTemplate is the Schema for the gcpmachinetemplates API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,23 +75,27 @@ spec:
create am GCPMachine from a template.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -100,16 +109,85 @@ spec:
description: AttachedDiskSpec degined GCP machine disk.
properties:
deviceType:
- description: 'DeviceType is a device type of the attached
- disk. Supported types of non-root attached volumes:
- 1. "pd-standard" - Standard (HDD) persistent disk 2.
- "pd-ssd" - SSD persistent disk 3. "local-ssd" - Local
- SSD disk (https://cloud.google.com/compute/docs/disks/local-ssd).
- Default is "pd-standard".'
+ description: |-
+ DeviceType is a device type of the attached disk.
+ Supported types of non-root attached volumes:
+ 1. "pd-standard" - Standard (HDD) persistent disk
+ 2. "pd-ssd" - SSD persistent disk
+ 3. "local-ssd" - Local SSD disk (https://cloud.google.com/compute/docs/disks/local-ssd).
+ Default is "pd-standard".
type: string
+ encryptionKey:
+ description: EncryptionKey defines the KMS key to be used
+ to encrypt the disk.
+ properties:
+ keyType:
+ description: |-
+ KeyType is the type of encryption key. Must be either Managed, aka Customer-Managed Encryption Key (CMEK) or
+ Supplied, aka Customer-Supplied EncryptionKey (CSEK).
+ enum:
+ - Managed
+ - Supplied
+ type: string
+ kmsKeyServiceAccount:
+ description: |-
+ KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key.
+ If absent, the Compute Engine default service account is used. For example:
+ "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com.
+ The maximum length is based on the Service Account ID (max 30), Project (max 30), and a valid gcloud email
+ suffix ("iam.gserviceaccount.com").
+ maxLength: 85
+ pattern: '[-_[A-Za-z0-9]+@[-_[A-Za-z0-9]+.iam.gserviceaccount.com'
+ type: string
+ managedKey:
+ description: ManagedKey references keys managed by
+ the Cloud Key Management Service. This should be
+ set when KeyType is Managed.
+ properties:
+ kmsKeyName:
+ description: |-
+ KMSKeyName is the name of the encryption key that is stored in Google Cloud KMS. For example:
+ "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/key_region/cryptoKeys/key
+ maxLength: 160
+ pattern: projects\/[-_[A-Za-z0-9]+\/locations\/[-_[A-Za-z0-9]+\/keyRings\/[-_[A-Za-z0-9]+\/cryptoKeys\/[-_[A-Za-z0-9]+
+ type: string
+ type: object
+ suppliedKey:
+ description: SuppliedKey provides the key used to
+ create or manage a disk. This should be set when
+ KeyType is Managed.
+ maxProperties: 1
+ minProperties: 1
+ properties:
+ rawKey:
+ description: |-
+ RawKey specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
+ base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey.
+ For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
+ format: byte
+ type: string
+ rsaEncryptedKey:
+ description: |-
+ RSAEncryptedKey specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption
+ key to either encrypt or decrypt this resource. You can provide either the rawKey or the
+ rsaEncryptedKey.
+ For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFHi
+ z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoDi
+ D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
+ The key must meet the following requirements before you can provide it to Compute Engine:
+ 1. The key is wrapped using a RSA public key certificate provided by Google.
+ 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding.
+ Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
+ format: byte
+ type: string
+ type: object
+ required:
+ - keyType
+ type: object
size:
- description: Size is the size of the disk in GBs. Defaults
- to 30GB. For "local-ssd" size is always 375GB.
+ description: |-
+ Size is the size of the disk in GBs.
+ Defaults to 30GB. For "local-ssd" size is always 375GB.
format: int64
type: integer
type: object
@@ -117,16 +195,15 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to
- add to an instance, in addition to the ones added by default
- by the GCP provider. If both the GCPCluster and the GCPMachine
- specify the same tag name with different values, the GCPMachine's
- value takes precedence.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ GCP provider. If both the GCPCluster and the GCPMachine specify the same tag name with different values, the
+ GCPMachine's value takes precedence.
type: object
additionalMetadata:
- description: AdditionalMetadata is an optional set of metadata
- to add to an instance, in addition to the ones added by default
- by the GCP provider.
+ description: |-
+ AdditionalMetadata is an optional set of metadata to add to an instance, in addition to the ones added by default by the
+ GCP provider.
items:
description: MetadataItem defines a single piece of metadata
associated with an instance.
@@ -145,26 +222,26 @@ spec:
- key
x-kubernetes-list-type: map
additionalNetworkTags:
- description: AdditionalNetworkTags is a list of network tags
- that should be applied to the instance. These tags are set
- in addition to any network tags defined at the cluster level
- or in the actuator.
+ description: |-
+ AdditionalNetworkTags is a list of network tags that should be applied to the
+ instance. These tags are set in addition to any network tags defined
+ at the cluster level or in the actuator.
items:
type: string
type: array
confidentialCompute:
- description: ConfidentialCompute Defines whether the instance
- should have confidential compute enabled. If enabled OnHostMaintenance
- is required to be set to "Terminate". If omitted, the platform
- chooses a default, which is subject to change over time, currently
- that default is false.
+ description: |-
+ ConfidentialCompute Defines whether the instance should have confidential compute enabled.
+ If enabled OnHostMaintenance is required to be set to "Terminate".
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is false.
enum:
- Enabled
- Disabled
type: string
image:
- description: Image is the full reference to a valid image to
- be used for this machine. Takes precedence over ImageFamily.
+ description: |-
+ Image is the full reference to a valid image to be used for this machine.
+ Takes precedence over ImageFamily.
type: string
imageFamily:
description: ImageFamily is the full reference to a valid image
@@ -176,20 +253,17 @@ spec:
type: string
ipForwarding:
default: Enabled
- description: IPForwarding Allows this instance to send and receive
- packets with non-matching destination or source IPs. This
- is required if you plan to use this instance to forward routes.
- Defaults to enabled.
+ description: |-
+ IPForwarding Allows this instance to send and receive packets with non-matching destination or source IPs.
+ This is required if you plan to use this instance to forward routes. Defaults to enabled.
enum:
- Enabled
- Disabled
type: string
onHostMaintenance:
- description: OnHostMaintenance determines the behavior when
- a maintenance event occurs that might cause the instance to
- reboot. If omitted, the platform chooses a default, which
- is subject to change over time, currently that default is
- "Migrate".
+ description: |-
+ OnHostMaintenance determines the behavior when a maintenance event occurs that might cause the instance to reboot.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is "Migrate".
enum:
- Migrate
- Terminate
@@ -202,32 +276,149 @@ spec:
by the cloud provider.
type: string
publicIP:
- description: PublicIP specifies whether the instance should
- get a public IP. Set this to true if you don't have a NAT
- instances or Cloud Nat setup.
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Set this to true if you don't have a NAT instances or Cloud Nat setup.
type: boolean
+ resourceManagerTags:
+ description: |-
+ ResourceManagerTags is an optional set of tags to apply to GCP resources managed
+ by the GCP provider. GCP supports a maximum of 50 tags per resource.
+ items:
+ description: ResourceManagerTag is a tag to apply to GCP resources
+ managed by the GCP provider.
+ properties:
+ key:
+ description: |-
+ Key is the key part of the tag. A tag key can have a maximum of 63 characters and cannot
+ be empty. Tag key must begin and end with an alphanumeric character, and must contain
+ only uppercase, lowercase alphanumeric characters, and the following special
+ characters `._-`.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.-]{0,61}[a-zA-Z0-9])?$
+ type: string
+ parentID:
+ description: |-
+ ParentID is the ID of the hierarchical resource where the tags are defined
+ e.g. at the Organization or the Project level. To find the Organization or Project ID ref
+ https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id
+ https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
+ An OrganizationID must consist of decimal numbers, and cannot have leading zeroes.
+ A ProjectID must be 6 to 30 characters in length, can only contain lowercase letters,
+ numbers, and hyphens, and must start with a letter, and cannot end with a hyphen.
+ maxLength: 32
+ minLength: 1
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ value:
+ description: |-
+ Value is the value part of the tag. A tag value can have a maximum of 63 characters and
+ cannot be empty. Tag value must begin and end with an alphanumeric character, and must
+ contain only uppercase, lowercase alphanumeric characters, and the following special
+ characters `_-.@%=+:,*#&(){}[]` and spaces.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.@%=+:,*#&()\[\]{}\-\s]{0,61}[a-zA-Z0-9])?$
+ type: string
+ required:
+ - key
+ - parentID
+ - value
+ type: object
+ type: array
rootDeviceSize:
- description: RootDeviceSize is the size of the root volume in
- GB. Defaults to 30.
+ description: |-
+ RootDeviceSize is the size of the root volume in GB.
+ Defaults to 30.
format: int64
type: integer
rootDeviceType:
- description: 'RootDeviceType is the type of the root volume.
- Supported types of root volumes: 1. "pd-standard" - Standard
- (HDD) persistent disk 2. "pd-ssd" - SSD persistent disk Default
- is "pd-standard".'
+ description: |-
+ RootDeviceType is the type of the root volume.
+ Supported types of root volumes:
+ 1. "pd-standard" - Standard (HDD) persistent disk
+ 2. "pd-ssd" - SSD persistent disk
+ Default is "pd-standard".
type: string
+ rootDiskEncryptionKey:
+ description: RootDiskEncryptionKey defines the KMS key to be
+ used to encrypt the root disk.
+ properties:
+ keyType:
+ description: |-
+ KeyType is the type of encryption key. Must be either Managed, aka Customer-Managed Encryption Key (CMEK) or
+ Supplied, aka Customer-Supplied EncryptionKey (CSEK).
+ enum:
+ - Managed
+ - Supplied
+ type: string
+ kmsKeyServiceAccount:
+ description: |-
+ KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key.
+ If absent, the Compute Engine default service account is used. For example:
+ "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com.
+ The maximum length is based on the Service Account ID (max 30), Project (max 30), and a valid gcloud email
+ suffix ("iam.gserviceaccount.com").
+ maxLength: 85
+ pattern: '[-_[A-Za-z0-9]+@[-_[A-Za-z0-9]+.iam.gserviceaccount.com'
+ type: string
+ managedKey:
+ description: ManagedKey references keys managed by the Cloud
+ Key Management Service. This should be set when KeyType
+ is Managed.
+ properties:
+ kmsKeyName:
+ description: |-
+ KMSKeyName is the name of the encryption key that is stored in Google Cloud KMS. For example:
+ "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/key_region/cryptoKeys/key
+ maxLength: 160
+ pattern: projects\/[-_[A-Za-z0-9]+\/locations\/[-_[A-Za-z0-9]+\/keyRings\/[-_[A-Za-z0-9]+\/cryptoKeys\/[-_[A-Za-z0-9]+
+ type: string
+ type: object
+ suppliedKey:
+ description: SuppliedKey provides the key used to create
+ or manage a disk. This should be set when KeyType is Managed.
+ maxProperties: 1
+ minProperties: 1
+ properties:
+ rawKey:
+ description: |-
+ RawKey specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
+ base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey.
+ For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
+ format: byte
+ type: string
+ rsaEncryptedKey:
+ description: |-
+ RSAEncryptedKey specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption
+ key to either encrypt or decrypt this resource. You can provide either the rawKey or the
+ rsaEncryptedKey.
+ For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFHi
+ z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoDi
+ D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
+ The key must meet the following requirements before you can provide it to Compute Engine:
+ 1. The key is wrapped using a RSA public key certificate provided by Google.
+ 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding.
+ Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
+ format: byte
+ type: string
+ type: object
+ required:
+ - keyType
+ type: object
serviceAccounts:
- description: 'ServiceAccount specifies the service account email
- and which scopes to assign to the machine. Defaults to: email:
- "default", scope: []{compute.CloudPlatformScope}'
+ description: |-
+ ServiceAccount specifies the service account email and which scopes to assign to the machine.
+ Defaults to: email: "default", scope: []{compute.CloudPlatformScope}
properties:
email:
description: 'Email: Email address of the service account.'
type: string
scopes:
- description: 'Scopes: The list of scopes to be made available
- for this service account.'
+ description: |-
+ Scopes: The list of scopes to be made available for this service
+ account.
items:
type: string
type: array
@@ -237,46 +428,38 @@ spec:
for this machine
properties:
integrityMonitoring:
- description: IntegrityMonitoring determines whether the
- instance should have integrity monitoring that verify
- the runtime boot integrity. Compares the most recent boot
- measurements to the integrity policy baseline and return
- a pair of pass/fail results depending on whether they
- match or not. If omitted, the platform chooses a default,
- which is subject to change over time, currently that default
- is Enabled.
+ description: |-
+ IntegrityMonitoring determines whether the instance should have integrity monitoring that verify the runtime boot integrity.
+ Compares the most recent boot measurements to the integrity policy baseline and return
+ a pair of pass/fail results depending on whether they match or not.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Enabled.
enum:
- Enabled
- Disabled
type: string
secureBoot:
- description: SecureBoot Defines whether the instance should
- have secure boot enabled. Secure Boot verify the digital
- signature of all boot components, and halting the boot
- process if signature verification fails. If omitted, the
- platform chooses a default, which is subject to change
- over time, currently that default is Disabled.
+ description: |-
+ SecureBoot Defines whether the instance should have secure boot enabled.
+ Secure Boot verify the digital signature of all boot components, and halting the boot process if signature verification fails.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Disabled.
enum:
- Enabled
- Disabled
type: string
virtualizedTrustedPlatformModule:
- description: VirtualizedTrustedPlatformModule enable virtualized
- trusted platform module measurements to create a known
- good boot integrity policy baseline. The integrity policy
- baseline is used for comparison with measurements from
- subsequent VM boots to determine if anything has changed.
- If omitted, the platform chooses a default, which is subject
- to change over time, currently that default is Enabled.
+ description: |-
+ VirtualizedTrustedPlatformModule enable virtualized trusted platform module measurements to create a known good boot integrity policy baseline.
+ The integrity policy baseline is used for comparison with measurements from subsequent VM boots to determine if anything has changed.
+ If omitted, the platform chooses a default, which is subject to change over time, currently that default is Enabled.
enum:
- Enabled
- Disabled
type: string
type: object
subnet:
- description: Subnet is a reference to the subnetwork to use
- for this instance. If not specified, the first subnetwork
- retrieved from the Cluster Region and Network is picked.
+ description: |-
+ Subnet is a reference to the subnetwork to use for this instance. If not specified,
+ the first subnetwork retrieved from the Cluster Region and Network is picked.
type: string
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
index a36c3be1f..2d99a3d8a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
@@ -20,14 +20,19 @@ spec:
description: GCPManagedCluster is the Schema for the gcpmanagedclusters API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,9 +73,9 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to add to GCP
- resources managed by the GCP provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to GCP resources managed by the GCP provider, in addition to the
+ ones added by default.
type: object
controlPlaneEndpoint:
description: ControlPlaneEndpoint represents the endpoint used to communicate
@@ -88,31 +93,76 @@ spec:
- port
type: object
credentialsRef:
- description: CredentialsRef is a reference to a Secret that contains
- the credentials to use for provisioning this cluster. If not supplied
- then the credentials of the controller will be used.
+ description: |-
+ CredentialsRef is a reference to a Secret that contains the credentials to use for provisioning this cluster. If not
+ supplied then the credentials of the controller will be used.
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
+ description: |-
+ Name of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
type: string
namespace:
- description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
+ description: |-
+ Namespace of the referent.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
type: string
required:
- name
- namespace
type: object
+ loadBalancer:
+ description: LoadBalancerSpec contains configuration for one or more
+ LoadBalancers.
+ properties:
+ apiServerInstanceGroupTagOverride:
+ description: |-
+ APIServerInstanceGroupTagOverride overrides the default setting for the
+ tag used when creating the API Server Instance Group.
+ maxLength: 16
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ internalLoadBalancer:
+ description: InternalLoadBalancer is the configuration for an Internal
+ Passthrough Network Load Balancer.
+ properties:
+ name:
+ description: |-
+ Name is the name of the Load Balancer. If not set a default name
+ will be used. For an Internal Load Balancer service the default
+ name is "api-internal".
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ subnet:
+ description: |-
+ Subnet is the name of the subnet to use for a regional Load Balancer. A subnet is
+ required for the Load Balancer, if not defined the first configured subnet will be
+ used.
+ type: string
+ type: object
+ loadBalancerType:
+ description: |-
+ LoadBalancerType defines the type of Load Balancer that should be created.
+ If not set, a Global External Proxy Load Balancer will be created by default.
+ type: string
+ type: object
network:
description: NetworkSpec encapsulates all things related to the GCP
network.
properties:
autoCreateSubnetworks:
- description: "AutoCreateSubnetworks: When set to true, the VPC network
- is created in \"auto\" mode. When set to false, the VPC network
- is created in \"custom\" mode. \n An auto mode VPC network starts
- with one subnet per region. Each subnet has a predetermined range
- as described in Auto mode VPC network IP ranges. \n Defaults to
- true."
+ description: |-
+ AutoCreateSubnetworks: When set to true, the VPC network is created
+ in "auto" mode. When set to false, the VPC network is created in
+ "custom" mode.
+
+
+ An auto mode VPC network starts with one subnet per region. Each
+ subnet has a predetermined range as described in Auto mode VPC
+ network IP ranges.
+
+
+ Defaults to true.
type: boolean
loadBalancerBackendPort:
description: Allow for configuration of load balancer backend (useful
@@ -128,45 +178,50 @@ spec:
description: SubnetSpec configures an GCP Subnet.
properties:
cidrBlock:
- description: CidrBlock is the range of internal addresses
- that are owned by this subnetwork. Provide this property
- when you create the subnetwork. For example, 10.0.0.0/8
- or 192.168.0.0/16. Ranges must be unique and non-overlapping
- within a network. Only IPv4 is supported. This field can
- be set only at resource creation time.
+ description: |-
+ CidrBlock is the range of internal addresses that are owned by this
+ subnetwork. Provide this property when you create the subnetwork. For
+ example, 10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
+ non-overlapping within a network. Only IPv4 is supported. This field
+ can be set only at resource creation time.
type: string
description:
description: Description is an optional description associated
with the resource.
type: string
enableFlowLogs:
- description: 'EnableFlowLogs: Whether to enable flow logging
- for this subnetwork. If this field is not explicitly set,
- it will not appear in get listings. If not set the default
- behavior is to disable flow logging.'
+ description: |-
+ EnableFlowLogs: Whether to enable flow logging for this subnetwork.
+ If this field is not explicitly set, it will not appear in get
+ listings. If not set the default behavior is to disable flow logging.
type: boolean
name:
description: Name defines a unique identifier to reference
this resource.
type: string
privateGoogleAccess:
- description: PrivateGoogleAccess defines whether VMs in this
- subnet can access Google services without assigning external
- IP addresses
+ description: |-
+ PrivateGoogleAccess defines whether VMs in this subnet can access
+ Google services without assigning external IP addresses
type: boolean
purpose:
default: PRIVATE_RFC_1918
- description: "Purpose: The purpose of the resource. If unspecified,
- the purpose defaults to PRIVATE_RFC_1918. The enableFlowLogs
- field isn't supported with the purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
- \n Possible values: \"INTERNAL_HTTPS_LOAD_BALANCER\" - Subnet
- reserved for Internal HTTP(S) Load Balancing. \"PRIVATE\"
- - Regular user created or automatically created subnet.
- \"PRIVATE_RFC_1918\" - Regular user created or automatically
- created subnet. \"PRIVATE_SERVICE_CONNECT\" - Subnetworks
- created for Private Service Connect in the producer network.
- \"REGIONAL_MANAGED_PROXY\" - Subnetwork used for Regional
- Internal/External HTTP(S) Load Balancing."
+ description: |-
+ Purpose: The purpose of the resource.
+ If unspecified, the purpose defaults to PRIVATE_RFC_1918.
+ The enableFlowLogs field isn't supported with the purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
+
+
+ Possible values:
+ "INTERNAL_HTTPS_LOAD_BALANCER" - Subnet reserved for Internal
+ HTTP(S) Load Balancing.
+ "PRIVATE" - Regular user created or automatically created subnet.
+ "PRIVATE_RFC_1918" - Regular user created or automatically created
+ subnet.
+ "PRIVATE_SERVICE_CONNECT" - Subnetworks created for Private Service
+ Connect in the producer network.
+ "REGIONAL_MANAGED_PROXY" - Subnetwork used for Regional
+ Internal/External HTTP(S) Load Balancing.
enum:
- INTERNAL_HTTPS_LOAD_BALANCER
- PRIVATE_RFC_1918
@@ -181,7 +236,8 @@ spec:
secondaryCidrBlocks:
additionalProperties:
type: string
- description: SecondaryCidrBlocks defines secondary CIDR ranges,
+ description: |-
+ SecondaryCidrBlocks defines secondary CIDR ranges,
from which secondary IP ranges of a VM may be allocated
type: object
type: object
@@ -194,6 +250,53 @@ spec:
region:
description: The GCP Region the cluster lives in.
type: string
+ resourceManagerTags:
+ description: |-
+ ResourceManagerTags is an optional set of tags to apply to GCP resources managed
+ by the GCP provider. GCP supports a maximum of 50 tags per resource.
+ items:
+ description: ResourceManagerTag is a tag to apply to GCP resources
+ managed by the GCP provider.
+ properties:
+ key:
+ description: |-
+ Key is the key part of the tag. A tag key can have a maximum of 63 characters and cannot
+ be empty. Tag key must begin and end with an alphanumeric character, and must contain
+ only uppercase, lowercase alphanumeric characters, and the following special
+ characters `._-`.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.-]{0,61}[a-zA-Z0-9])?$
+ type: string
+ parentID:
+ description: |-
+ ParentID is the ID of the hierarchical resource where the tags are defined
+ e.g. at the Organization or the Project level. To find the Organization or Project ID ref
+ https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_organization_id
+ https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
+ An OrganizationID must consist of decimal numbers, and cannot have leading zeroes.
+ A ProjectID must be 6 to 30 characters in length, can only contain lowercase letters,
+ numbers, and hyphens, and must start with a letter, and cannot end with a hyphen.
+ maxLength: 32
+ minLength: 1
+ pattern: (^[1-9][0-9]{0,31}$)|(^[a-z][a-z0-9-]{4,28}[a-z0-9]$)
+ type: string
+ value:
+ description: |-
+ Value is the value part of the tag. A tag value can have a maximum of 63 characters and
+ cannot be empty. Tag value must begin and end with an alphanumeric character, and must
+ contain only uppercase, lowercase alphanumeric characters, and the following special
+ characters `_-.@%=+:,*#&(){}[]` and spaces.
+ maxLength: 63
+ minLength: 1
+ pattern: ^[a-zA-Z0-9]([0-9A-Za-z_.@%=+:,*#&()\[\]{}\-\s]{0,61}[a-zA-Z0-9])?$
+ type: string
+ required:
+ - key
+ - parentID
+ - value
+ type: object
+ type: array
required:
- project
- region
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
index b73e6c86c..443eebebc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,14 +72,16 @@ spec:
description: GCPManagedControlPlaneSpec defines the desired state of GCPManagedControlPlane.
properties:
clusterName:
- description: ClusterName allows you to specify the name of the GKE cluster.
- If you don't specify a name then a default name will be created based
- on the namespace and name of the managed control plane.
+ description: |-
+ ClusterName allows you to specify the name of the GKE cluster.
+ If you don't specify a name then a default name will be created
+ based on the namespace and name of the managed control plane.
type: string
controlPlaneVersion:
- description: ControlPlaneVersion represents the control plane version
- of the GKE cluster. If not specified, the default version currently
- supported by GKE will be used.
+ description: |-
+ ControlPlaneVersion represents the control plane version of the GKE cluster.
+ If not specified, the default version currently supported by GKE will be
+ used.
type: string
enableAutopilot:
description: EnableAutopilot indicates whether to enable autopilot for
@@ -96,9 +103,38 @@ spec:
- port
type: object
location:
- description: Location represents the location (region or zone) in which
- the GKE cluster will be created.
+ description: |-
+ Location represents the location (region or zone) in which the GKE cluster
+ will be created.
type: string
+ master_authorized_networks_config:
+ description: |-
+ MasterAuthorizedNetworksConfig represents configuration options for master authorized networks feature of the GKE cluster.
+ This feature is disabled if this field is not specified.
+ properties:
+ cidr_blocks:
+ description: |-
+ cidr_blocks define up to 50 external networks that could access
+ Kubernetes master through HTTPS.
+ items:
+ description: MasterAuthorizedNetworksConfigCidrBlock contains
+ an optional name and one CIDR block.
+ properties:
+ cidr_block:
+ description: cidr_block must be specified in CIDR notation.
+ pattern: ^(?:[0-9]{1,3}\.){3}[0-9]{1,3}(?:\/([0-9]|[1-2][0-9]|3[0-2]))?$|^([a-fA-F0-9:]+:+)+[a-fA-F0-9]+\/[0-9]{1,3}$
+ type: string
+ display_name:
+ description: display_name is an field for users to identify
+ CIDR blocks.
+ type: string
+ type: object
+ type: array
+ gcp_public_cidrs_access_enabled:
+ description: Whether master is accessible via Google Compute Engine
+ Public IP addresses.
+ type: boolean
+ type: object
project:
description: Project is the name of the project to deploy the cluster
to.
@@ -112,7 +148,6 @@ spec:
- stable
type: string
required:
- - enableAutopilot
- location
- project
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
index fc1a55044..81d641311 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,10 +74,36 @@ spec:
additionalLabels:
additionalProperties:
type: string
- description: AdditionalLabels is an optional set of tags to add to GCP
- resources managed by the GCP provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalLabels is an optional set of tags to add to GCP resources managed by the GCP provider, in addition to the
+ ones added by default.
type: object
+ diskSizeGB:
+ description: |-
+ DiskSizeGB is size of the disk attached to each node,
+ specified in GB.
+ format: int64
+ minimum: 10
+ type: integer
+ diskSizeGb:
+ description: |-
+ DiskSizeGb is the size of the disk attached to each node, specified in GB.
+ The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB.
+ format: int32
+ type: integer
+ diskType:
+ description: DiskType is type of the disk attached to each node.
+ enum:
+ - pd-standard
+ - pd-ssd
+ - pd-balanced
+ type: string
+ imageType:
+ description: ImageType is image type to use for this nodepool.
+ type: string
+ instanceType:
+ description: InstanceType is name of Compute Engine machine type.
+ type: string
kubernetesLabels:
additionalProperties:
type: string
@@ -104,26 +135,170 @@ spec:
- value
type: object
type: array
+ linuxNodeConfig:
+ description: LinuxNodeConfig specifies the settings for Linux agent
+ nodes.
+ properties:
+ cgroupMode:
+ description: CgroupMode specifies the cgroup mode for this node
+ pool.
+ format: int32
+ type: integer
+ sysctls:
+ description: Sysctls specifies the sysctl settings for this node
+ pool.
+ items:
+ description: SysctlConfig specifies the sysctl settings for Linux
+ nodes.
+ properties:
+ parameter:
+ description: Parameter specifies sysctl parameter name.
+ type: string
+ value:
+ description: Value specifies sysctl parameter value.
+ type: string
+ type: object
+ type: array
+ type: object
+ localSsdCount:
+ description: LocalSsdCount is the number of local SSD disks to be attached
+ to the node.
+ format: int32
+ type: integer
+ machineType:
+ description: |-
+ MachineType is the name of a Google Compute Engine [machine
+ type](https://cloud.google.com/compute/docs/machine-types).
+ If unspecified, the default machine type is `e2-medium`.
+ type: string
+ management:
+ description: Management specifies the node pool management options.
+ properties:
+ autoRepair:
+ description: |-
+ AutoRepair specifies whether the node auto-repair is enabled for the node
+ pool. If enabled, the nodes in this node pool will be monitored and, if
+ they fail health checks too many times, an automatic repair action will be
+ triggered.
+ type: boolean
+ autoUpgrade:
+ description: |-
+ AutoUpgrade specifies whether node auto-upgrade is enabled for the node
+ pool. If enabled, node auto-upgrade helps keep the nodes in your node pool
+ up to date with the latest release version of Kubernetes.
+ type: boolean
+ type: object
+ maxPodsPerNode:
+ description: |-
+ MaxPodsPerNode is constraint enforced on the max num of
+ pods per node.
+ format: int64
+ maximum: 256
+ minimum: 8
+ type: integer
+ nodeLocations:
+ description: |-
+ NodeLocations is the list of zones in which the NodePool's
+ nodes should be located.
+ items:
+ type: string
+ type: array
+ nodeNetwork:
+ description: |-
+ NodeNetwork specifies the node network configuration
+ options.
+ properties:
+ createPodRange:
+ description: |-
+ CreatePodRange specifies whether to create a new range for
+ pod IPs in this node pool.
+ type: boolean
+ podRangeCidrBlock:
+ description: |-
+ PodRangeCidrBlock is the IP address range for pod IPs in
+ this node pool.
+ type: string
+ podRangeName:
+ description: PodRangeName is ID of the secondary range for pod IPs.
+ type: string
+ tags:
+ description: |-
+ Tags is list of instance tags applied to all nodes. Tags
+ are used to identify valid sources or targets for network
+ firewalls.
+ items:
+ type: string
+ type: array
+ type: object
nodePoolName:
- description: NodePoolName specifies the name of the GKE node pool corresponding
- to this MachinePool. If you don't specify a name then a default name
- will be created based on the namespace and name of the managed machine
- pool.
+ description: |-
+ NodePoolName specifies the name of the GKE node pool corresponding to this MachinePool. If you don't specify a name
+ then a default name will be created based on the namespace and name of the managed machine pool.
type: string
+ nodeSecurity:
+ description: NodeSecurity specifies the node security options.
+ properties:
+ enableIntegrityMonitoring:
+ description: |-
+ EnableIntegrityMonitoring defines whether the instance has
+ integrity monitoring enabled.
+ type: boolean
+ enableSecureBoot:
+ description: |-
+ EnableSecureBoot defines whether the instance has Secure
+ Boot enabled.
+ type: boolean
+ sandboxType:
+ description: SandboxType is type of the sandbox to use for the node.
+ type: string
+ serviceAccount:
+ description: |-
+ ServiceAccount specifies the identity details for node
+ pool.
+ properties:
+ email:
+ description: |-
+ Email is the Google Cloud Platform Service Account to be
+ used by the node VMs.
+ type: string
+ scopes:
+ description: |-
+ Scopes is a set of Google API scopes to be made available
+ on all of the node VMs under the "default" service account.
+ items:
+ type: string
+ type: array
+ type: object
+ type: object
providerIDList:
- description: ProviderIDList are the provider IDs of instances in the
- managed instance group corresponding to the nodegroup represented
- by this machine pool
+ description: |-
+ ProviderIDList are the provider IDs of instances in the
+ managed instance group corresponding to the nodegroup represented by this
+ machine pool
items:
type: string
type: array
scaling:
description: Scaling specifies scaling for the node pool
properties:
+ enableAutoscaling:
+ description: Is autoscaling enabled for this node pool. If unspecified,
+ the default value is true.
+ type: boolean
+ locationPolicy:
+ description: Location policy used when scaling up a nodepool.
+ enum:
+ - balanced
+ - any
+ type: string
maxCount:
+ description: MaxCount specifies the maximum number of nodes in the
+ node pool
format: int32
type: integer
minCount:
+ description: MinCount specifies the minimum number of nodes in the
+ node pool
format: int32
type: integer
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
index 4dbc1f788..519a8aa84 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
@@ -17,19 +17,24 @@ spec:
version: v1beta2
validation:
openAPIV3Schema:
- description: AWSClusterControllerIdentity is the Schema for the awsclustercontrolleridentities
- API It is used to grant access to use Cluster API Provider AWS Controller
- credentials.
+ description: |-
+ AWSClusterControllerIdentity is the Schema for the awsclustercontrolleridentities API
+ It is used to grant access to use Cluster API Provider AWS Controller credentials.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -60,13 +65,12 @@ spec:
description: Spec for this AWSClusterControllerIdentity.
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -77,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -114,11 +119,10 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
index 18a90da73..e0f6b15bc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
@@ -17,18 +17,24 @@ spec:
version: v1beta2
validation:
openAPIV3Schema:
- description: AWSClusterRoleIdentity is the Schema for the awsclusterroleidentities
- API It is used to assume a role using the provided sourceRef.
+ description: |-
+ AWSClusterRoleIdentity is the Schema for the awsclusterroleidentities API
+ It is used to assume a role using the provided sourceRef.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -59,13 +65,12 @@ spec:
description: Spec for this AWSClusterRoleIdentity.
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -76,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -113,11 +119,10 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
@@ -130,26 +135,26 @@ spec:
minimum: 900
type: integer
externalID:
- description: A unique identifier that might be required when you assume
- a role in another account. If the administrator of the account to
- which the role belongs provided you with an external ID, then provide
- that value in the ExternalId parameter. This value can be any string,
- such as a passphrase or account number. A cross-account role is usually
- set up to trust everyone in an account. Therefore, the administrator
- of the trusting account might send an external ID to the administrator
- of the trusted account. That way, only someone with the ID can assume
- the role, rather than everyone in the account. For more information
- about the external ID, see How to Use an External ID When Granting
- Access to Your AWS Resources to a Third Party in the IAM User Guide.
+ description: |-
+ A unique identifier that might be required when you assume a role in another account.
+ If the administrator of the account to which the role belongs provided you with an
+ external ID, then provide that value in the ExternalId parameter. This value can be
+ any string, such as a passphrase or account number. A cross-account role is usually
+ set up to trust everyone in an account. Therefore, the administrator of the trusting
+ account might send an external ID to the administrator of the trusted account. That
+ way, only someone with the ID can assume the role, rather than everyone in the
+ account. For more information about the external ID, see How to Use an External ID
+ When Granting Access to Your AWS Resources to a Third Party in the IAM User Guide.
type: string
inlinePolicy:
description: An IAM policy as a JSON-encoded string that you want to
use as an inline session policy.
type: string
policyARNs:
- description: The Amazon Resource Names (ARNs) of the IAM managed policies
- that you want to use as managed session policies. The policies must
- exist in the same account as the role.
+ description: |-
+ The Amazon Resource Names (ARNs) of the IAM managed policies that you want
+ to use as managed session policies.
+ The policies must exist in the same account as the role.
items:
type: string
type: array
@@ -160,8 +165,9 @@ spec:
description: An identifier for the assumed role session
type: string
sourceIdentityRef:
- description: SourceIdentityRef is a reference to another identity which
- will be chained to do role assumption. All identity types are accepted.
+ description: |-
+ SourceIdentityRef is a reference to another identity which will be chained to do
+ role assumption. All identity types are accepted.
properties:
kind:
description: Kind of the identity.
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
index 410879d6d..6771605f8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,39 +75,40 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
bastion:
description: Bastion contains options to configure the bastion host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks allowed
- to access the bastion host. They are set as ingress rules for
- the Bastion host's Security Group (defaults to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the bastion.
- If not specified, the AMI will default to one picked out in public
- space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no Ingress
- rules in the bastion host's security group. Requires AllowedCIDRBlocks
- to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion host
- instance with a public ip to access the VPC private network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance type for
- the bastion. If not specified, Cluster API Provider AWS will use
- t3.micro for all regions except us-east-1, where t2.micro will
- be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -124,33 +130,239 @@ spec:
description: ControlPlaneLoadBalancer is optional configuration for
customizing control plane behavior.
properties:
+ additionalListeners:
+ description: |-
+ AdditionalListeners sets the additional listeners for the control plane load balancer.
+ This is only applicable to Network Load Balancer (NLB) types for the time being.
+ items:
+ description: |-
+ AdditionalListenerSpec defines the desired state of an
+ additional listener on an AWS load balancer.
+ properties:
+ healthCheck:
+ description: HealthCheck sets the optional custom health check
+ configuration to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ path:
+ description: |-
+ The destination for health checks on the targets when using the protocol HTTP or HTTPS,
+ otherwise the path will be ignored.
+ type: string
+ port:
+ description: |-
+ The port the load balancer uses when performing health checks for additional target groups. When
+ not specified this value will be set for the same of listener port.
+ type: string
+ protocol:
+ description: |-
+ The protocol to use to health check connect with the target. When not specified the Protocol
+ will be the same of the listener.
+ enum:
+ - TCP
+ - HTTP
+ - HTTPS
+ type: string
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ port:
+ description: Port sets the port for the additional listener.
+ format: int64
+ maximum: 65535
+ minimum: 1
+ type: integer
+ protocol:
+ default: TCP
+ description: |-
+ Protocol sets the protocol for the additional listener.
+ Currently only TCP is supported.
+ enum:
+ - TCP
+ type: string
+ required:
+ - port
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - port
+ x-kubernetes-list-type: map
additionalSecurityGroups:
- description: AdditionalSecurityGroups sets the security groups used
- by the load balancer. Expected to be security group IDs This is
- optional - if not provided new security groups will be created
- for the load balancer
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
items:
type: string
type: array
crossZoneLoadBalancing:
- description: "CrossZoneLoadBalancing enables the classic ELB cross
- availability zone balancing. \n With cross-zone load balancing,
- each load balancer node for your Classic Load Balancer distributes
- requests evenly across the registered instances in all enabled
- Availability Zones. If cross-zone load balancing is disabled,
- each load balancer node distributes requests evenly across the
- registered instances in its Availability Zone only. \n Defaults
- to false."
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
type: boolean
disableHostsRewrite:
- description: DisableHostsRewrite disabled the hair pinning issue
- solution that adds the NLB's address as 127.0.0.1 to the hosts
+ description: |-
+ DisableHostsRewrite disabled the hair pinning issue solution that adds the NLB's address as 127.0.0.1 to the hosts
file of each instance. This is by default, false.
type: boolean
+ healthCheck:
+ description: HealthCheck sets custom health check configuration
+ to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
healthCheckProtocol:
- description: HealthCheckProtocol sets the protocol type for ELB
- health check target default value is ELBProtocolSSL
+ description: |-
+ HealthCheckProtocol sets the protocol type for ELB health check target
+ default value is ELBProtocolSSL
+ enum:
+ - TCP
+ - SSL
+ - HTTP
+ - HTTPS
+ - TLS
+ - UDP
type: string
+ ingressRules:
+ description: IngressRules sets the ingress rules for the control
+ plane load balancer.
+ items:
+ description: IngressRule defines an AWS ingress rule for security
+ groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from. Cannot
+ be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information about
+ the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress rule.
+ Accepted values are "-1" (all), "4" (IP in IP),"tcp", "udp",
+ "icmp", and "58" (ICMPv6), "50" (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access from. Cannot
+ be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique role of
+ a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
loadBalancerType:
default: classic
description: LoadBalancerType sets the type for a load balancer.
@@ -160,20 +372,21 @@ spec:
- elb
- alb
- nlb
+ - disabled
type: string
name:
- description: Name sets the name of the classic ELB load balancer.
- As per AWS, the name must be unique within your set of load balancers
- for the region, must have a maximum of 32 characters, must contain
- only alphanumeric characters or hyphens, and cannot begin or end
- with a hyphen. Once set, the value cannot be changed.
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
+ set, the value cannot be changed.
maxLength: 32
pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
type: string
preserveClientIP:
- description: PreserveClientIP lets the user control if preservation
- of client ips must be retained or not. If this is enabled 6443
- will be opened to 0.0.0.0/0.
+ description: |-
+ PreserveClientIP lets the user control if preservation of client ips must be retained or not.
+ If this is enabled 6443 will be opened to 0.0.0.0/0.
type: boolean
scheme:
default: internet-facing
@@ -192,8 +405,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be used when
- reconciling this cluster
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -211,42 +425,116 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- used to look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines unless a
- machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- machine images when a machine does not specify an AMI. When set, this
- will be used for all cluster machines unless a machine specifies a
- different ImageLookupOrg. Supports substitutions for {{.BaseOS}} and
- {{.K8sVersion}} with the base OS and kubernetes version, respectively.
- The BaseOS will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced by
- kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look up machine
- images when a machine does not specify an AMI. When set, this will
- be used for all cluster machines unless a machine specifies a different
- ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
network:
description: NetworkSpec encapsulates all things related to AWS network.
properties:
+ additionalControlPlaneIngressRules:
+ description: AdditionalControlPlaneIngressRules is an optional set
+ of ingress rules to add to the control plane
+ items:
+ description: IngressRule defines an AWS ingress rule for security
+ groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from. Cannot
+ be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information about
+ the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress rule.
+ Accepted values are "-1" (all), "4" (IP in IP),"tcp", "udp",
+ "icmp", and "58" (ICMPv6), "50" (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access from. Cannot
+ be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique role of
+ a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
cni:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply to control
- plane and worker node security groups. The source for the
- rule will be set to control plane and worker security group
- IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress rule for
CNI requirements.
@@ -274,9 +562,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of security
- groups to use for cluster instances This is optional - if not
- provided new security groups will be created for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -292,20 +580,27 @@ spec:
provider creates a managed VPC.
type: string
id:
- description: ID defines a unique identifier to reference this
- resource.
+ description: |-
+ ID defines a unique identifier to reference this resource.
+ If you're bringing your subnet, set the AWS subnet-id here, it must start with `subnet-`.
+
+
+ When the VPC is managed by CAPA, and you'd like the provider to create a subnet for you,
+ the id can be set to any placeholder value that does not start with `subnet-`;
+ upon creation, the subnet AWS identifier will be populated in the `ResourceID` field and
+ the `id` field is going to be used as the subnet name. If you specify a tag
+ called `Name`, it takes precedence.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block to be used
- when the provider creates a managed VPC. A subnet can have
- an IPv4 and an IPv6 address. IPv6 is only supported in managed
- clusters, this field cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6 subnet.
- A subnet is IPv6 when it is associated with a VPC that has
- IPv6 enabled. IPv6 is only supported in managed clusters,
- this field cannot be set on AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public subnet.
@@ -313,12 +608,23 @@ spec:
that has a route to an internet gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed by
- the provider, in which case this is set on the public subnet
- where the NAT gateway resides. It is then used to determine
- routes for private subnets in the same AZ as the public
- subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
+ type: string
+ parentZoneName:
+ description: |-
+ ParentZoneName is the zone name where the current subnet's zone is tied when
+ the zone is a Local Zone.
+
+
+ The subnets in Local Zone or Wavelength Zone locations consume the ParentZoneName
+ to select the correct private route table to egress traffic to the internet.
+ type: string
+ resourceID:
+ description: |-
+ ResourceID is the subnet identifier from AWS, READ ONLY.
+ This field is populated when the provider manages the subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id associated
@@ -329,6 +635,42 @@ spec:
type: string
description: Tags is a collection of tags describing the resource.
type: object
+ zoneType:
+ description: |-
+ ZoneType defines the type of the zone where the subnet is created.
+
+
+ The valid values are availability-zone, local-zone, and wavelength-zone.
+
+
+ Subnet with zone type availability-zone (regular) is always selected to create cluster
+ resources, like Load Balancers, NAT Gateways, Contol Plane nodes, etc.
+
+
+ Subnet with zone type local-zone or wavelength-zone is not eligible to automatically create
+ regular cluster resources.
+
+
+ The public subnet in availability-zone or local-zone is associated with regular public
+ route table with default route entry to a Internet Gateway.
+
+
+ The public subnet in wavelength-zone is associated with a carrier public
+ route table with default route entry to a Carrier Gateway.
+
+
+ The private subnet in the availability-zone is associated with a private route table with
+ the default route entry to a NAT Gateway created in that zone.
+
+
+ The private subnet in the local-zone or wavelength-zone is associated with a private route table with
+ the default route entry re-using the NAT Gateway in the Region (preferred from the
+ parent zone, the zone type availability-zone in the region, or first table available).
+ enum:
+ - availability-zone
+ - local-zone
+ - wavelength-zone
+ type: string
required:
- id
type: object
@@ -341,29 +683,52 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how AZs should
- be selected if there are more AZs in a region than specified
- by AvailabilityZoneUsageLimit. There are 2 selection schemes:
- Ordered - selects based on alphabetical order Random - selects
- AZs randomly in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the maximum
- number of availability zones (AZ) that should be used in a
- region when automatically creating subnets. If a region has
- more than this number of AZs then this number of AZs will
- be picked randomly when creating default subnets. Defaults
- to 3
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
+ default subnets. Defaults to 3
minimum: 1
type: integer
+ carrierGatewayId:
+ description: |-
+ CarrierGatewayID is the id of the internet gateway associated with the VPC,
+ for carrier network (Wavelength Zones).
+ type: string
+ x-kubernetes-validations:
+ - message: Carrier Gateway ID must start with 'cagw-'
+ rule: self.startsWith('cagw-')
cidrBlock:
- description: CidrBlock is the CIDR block to be used when the
- provider creates a managed VPC. Defaults to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
+ Mutually exclusive with IPAMPool.
type: string
+ emptyRoutesDefaultVPCSecurityGroup:
+ description: |-
+ EmptyRoutesDefaultVPCSecurityGroup specifies whether the default VPC security group ingress
+ and egress rules should be removed.
+
+
+ By default, when creating a VPC, AWS creates a security group called `default` with ingress and egress
+ rules that allow traffic from anywhere. The group could be used as a potential surface attack and
+ it's generally suggested that the group rules are removed or modified appropriately.
+
+
+ NOTE: This only applies when the VPC is managed by the Cluster API AWS controller.
+ type: boolean
id:
description: ID is the vpc-id of the VPC this provider should
use to create resources.
@@ -372,25 +737,79 @@ spec:
description: InternetGatewayID is the id of the internet gateway
associated with the VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv4 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
ipv6:
- description: IPv6 contains ipv6 specific settings for the network.
- Supported only in managed clusters. This field cannot be set
- on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
- description: CidrBlock is the CIDR block provided by Amazon
- when VPC has enabled IPv6.
+ description: |-
+ CidrBlock is the CIDR block provided by Amazon when VPC has enabled IPv6.
+ Mutually exclusive with IPAMPool.
type: string
egressOnlyInternetGatewayId:
description: EgressOnlyInternetGatewayID is the id of the
egress only internet gateway associated with an IPv6 enabled
VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv6 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this provider
+ should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
poolId:
- description: PoolID is the IP pool which must be defined
- in case of BYO IP is defined.
+ description: |-
+ PoolID is the IP pool which must be defined in case of BYO IP is defined.
+ Must be specified if CidrBlock is set.
+ Mutually exclusive with IPAMPool.
type: string
type: object
+ privateDnsHostnameTypeOnLaunch:
+ description: |-
+ PrivateDNSHostnameTypeOnLaunch is the type of hostname to assign to instances in the subnet at launch.
+ For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name)
+ or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).
+ enum:
+ - ip-name
+ - resource-name
+ type: string
tags:
additionalProperties:
type: string
@@ -398,19 +817,28 @@ spec:
type: object
type: object
type: object
+ partition:
+ description: Partition is the AWS security partition being used. Defaults
+ to "aws"
+ type: string
region:
description: The AWS Region the cluster lives in.
type: string
s3Bucket:
- description: S3Bucket contains options to configure a supporting S3
- bucket for this cluster - currently used for nodes requiring Ignition
- (https://coreos.github.io/ignition/) for bootstrapping (requires BootstrapFormatIgnition
- feature flag to be enabled).
+ description: |-
+ S3Bucket contains options to configure a supporting S3 bucket for this
+ cluster - currently used for nodes requiring Ignition
+ (https://coreos.github.io/ignition/) for bootstrapping (requires
+ BootstrapFormatIgnition feature flag to be enabled).
properties:
+ bestEffortDeleteObjects:
+ description: BestEffortDeleteObjects defines whether access/permission
+ errors during object deletion should be ignored.
+ type: boolean
controlPlaneIAMInstanceProfile:
- description: ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile,
- which will be allowed to read control-plane node bootstrap data
- from S3 Bucket.
+ description: |-
+ ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile, which will be allowed
+ to read control-plane node bootstrap data from S3 Bucket.
type: string
name:
description: Name defines name of S3 Bucket to be created.
@@ -419,16 +847,307 @@ spec:
pattern: ^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
type: string
nodesIAMInstanceProfiles:
- description: NodesIAMInstanceProfiles is a list of IAM instance
- profiles, which will be allowed to read worker nodes bootstrap
- data from S3 Bucket.
+ description: |-
+ NodesIAMInstanceProfiles is a list of IAM instance profiles, which will be allowed to read
+ worker nodes bootstrap data from S3 Bucket.
items:
type: string
type: array
+ presignedURLDuration:
+ description: |-
+ PresignedURLDuration defines the duration for which presigned URLs are valid.
+
+
+ This is used to generate presigned URLs for S3 Bucket objects, which are used by
+ control-plane and worker nodes to fetch bootstrap data.
+
+
+ When enabled, the IAM instance profiles specified are not used.
+ type: string
required:
- - controlPlaneIAMInstanceProfile
- name
- - nodesIAMInstanceProfiles
+ type: object
+ secondaryControlPlaneLoadBalancer:
+ description: |-
+ SecondaryControlPlaneLoadBalancer is an additional load balancer that can be used for the control plane.
+
+
+ An example use case is to have a separate internal load balancer for internal traffic,
+ and a separate external load balancer for external traffic.
+ properties:
+ additionalListeners:
+ description: |-
+ AdditionalListeners sets the additional listeners for the control plane load balancer.
+ This is only applicable to Network Load Balancer (NLB) types for the time being.
+ items:
+ description: |-
+ AdditionalListenerSpec defines the desired state of an
+ additional listener on an AWS load balancer.
+ properties:
+ healthCheck:
+ description: HealthCheck sets the optional custom health check
+ configuration to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ path:
+ description: |-
+ The destination for health checks on the targets when using the protocol HTTP or HTTPS,
+ otherwise the path will be ignored.
+ type: string
+ port:
+ description: |-
+ The port the load balancer uses when performing health checks for additional target groups. When
+ not specified this value will be set for the same of listener port.
+ type: string
+ protocol:
+ description: |-
+ The protocol to use to health check connect with the target. When not specified the Protocol
+ will be the same of the listener.
+ enum:
+ - TCP
+ - HTTP
+ - HTTPS
+ type: string
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ port:
+ description: Port sets the port for the additional listener.
+ format: int64
+ maximum: 65535
+ minimum: 1
+ type: integer
+ protocol:
+ default: TCP
+ description: |-
+ Protocol sets the protocol for the additional listener.
+ Currently only TCP is supported.
+ enum:
+ - TCP
+ type: string
+ required:
+ - port
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - port
+ x-kubernetes-list-type: map
+ additionalSecurityGroups:
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
+ items:
+ type: string
+ type: array
+ crossZoneLoadBalancing:
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
+ type: boolean
+ disableHostsRewrite:
+ description: |-
+ DisableHostsRewrite disabled the hair pinning issue solution that adds the NLB's address as 127.0.0.1 to the hosts
+ file of each instance. This is by default, false.
+ type: boolean
+ healthCheck:
+ description: HealthCheck sets custom health check configuration
+ to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ healthCheckProtocol:
+ description: |-
+ HealthCheckProtocol sets the protocol type for ELB health check target
+ default value is ELBProtocolSSL
+ enum:
+ - TCP
+ - SSL
+ - HTTP
+ - HTTPS
+ - TLS
+ - UDP
+ type: string
+ ingressRules:
+ description: IngressRules sets the ingress rules for the control
+ plane load balancer.
+ items:
+ description: IngressRule defines an AWS ingress rule for security
+ groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from. Cannot
+ be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information about
+ the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress rule.
+ Accepted values are "-1" (all), "4" (IP in IP),"tcp", "udp",
+ "icmp", and "58" (ICMPv6), "50" (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access from. Cannot
+ be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique role of
+ a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
+ loadBalancerType:
+ default: classic
+ description: LoadBalancerType sets the type for a load balancer.
+ The default type is classic.
+ enum:
+ - classic
+ - elb
+ - alb
+ - nlb
+ - disabled
+ type: string
+ name:
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
+ set, the value cannot be changed.
+ maxLength: 32
+ pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
+ type: string
+ preserveClientIP:
+ description: |-
+ PreserveClientIP lets the user control if preservation of client ips must be retained or not.
+ If this is enabled 6443 will be opened to 0.0.0.0/0.
+ type: boolean
+ scheme:
+ default: internet-facing
+ description: Scheme sets the scheme of the load balancer (defaults
+ to internet-facing)
+ enum:
+ - internet-facing
+ - internal
+ type: string
+ subnets:
+ description: Subnets sets the subnets that should be applied to
+ the control plane load balancer (defaults to discovered subnets
+ for managed VPCs or an empty set for unmanaged VPCs)
+ items:
+ type: string
+ type: array
type: object
sshKeyName:
description: SSHKeyName is the name of the ssh key to attach to the
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
index f971219d5..589eb1f75 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
@@ -17,19 +17,24 @@ spec:
version: v1beta2
validation:
openAPIV3Schema:
- description: AWSClusterStaticIdentity is the Schema for the awsclusterstaticidentities
- API It represents a reference to an AWS access key ID and secret access key,
- stored in a secret.
+ description: |-
+ AWSClusterStaticIdentity is the Schema for the awsclusterstaticidentities API
+ It represents a reference to an AWS access key ID and secret access key, stored in a secret.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -60,13 +65,12 @@ spec:
description: Spec for this AWSClusterStaticIdentity
properties:
allowedNamespaces:
- description: AllowedNamespaces is used to identify which namespaces
- are allowed to use the identity from. Namespaces can be selected either
- using an array of namespaces or with label selector. An empty allowedNamespaces
- object indicates that AWSClusters can use this identity from any namespace.
- If this object is nil, no namespaces will be allowed (default behaviour,
- if this field is not provided) A namespace should be either in the
- NamespaceList or match with Selector to use the identity.
+ description: |-
+ AllowedNamespaces is used to identify which namespaces are allowed to use the identity from.
+ Namespaces can be selected either using an array of namespaces or with label selector.
+ An empty allowedNamespaces object indicates that AWSClusters can use this identity from any namespace.
+ If this object is nil, no namespaces will be allowed (default behaviour, if this field is not provided)
+ A namespace should be either in the NamespaceList or match with Selector to use the identity.
nullable: true
properties:
list:
@@ -77,32 +81,33 @@ spec:
nullable: true
type: array
selector:
- description: An empty selector indicates that AWSClusters cannot
- use this AWSClusterIdentity from any namespace.
+ description: |-
+ An empty selector indicates that AWSClusters cannot use this
+ AWSClusterIdentity from any namespace.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that
- contains values, a key, and an operator that relates the
- key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship
- to a set of values. Valid operators are In, NotIn, Exists
- and DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the
- operator is In or NotIn, the values array must be non-empty.
- If the operator is Exists or DoesNotExist, the values
- array must be empty. This array is replaced during a
- strategic merge patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
@@ -114,20 +119,21 @@ spec:
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator
- is "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
x-kubernetes-map-type: atomic
type: object
secretRef:
- description: 'Reference to a secret containing the credentials. The
- secret should contain the following data keys: AccessKeyID: AKIAIOSFODNN7EXAMPLE
- SecretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY SessionToken:
- Optional'
+ description: |-
+ Reference to a secret containing the credentials. The secret should
+ contain the following data keys:
+ AccessKeyID: AKIAIOSFODNN7EXAMPLE
+ SecretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
+ SessionToken: Optional
type: string
required:
- secretRef
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
index 1f6acd279..c9116112d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
@@ -21,14 +21,19 @@ spec:
Cluster Templates.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,25 +72,31 @@ spec:
description: AWSClusterTemplateSpec defines the desired state of AWSClusterTemplate.
properties:
template:
+ description: AWSClusterTemplateResource defines the desired state of
+ AWSClusterTemplateResource.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -95,42 +106,41 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to AWS resources managed by the AWS provider, in addition
- to the ones added by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
bastion:
description: Bastion contains options to configure the bastion
host.
properties:
allowedCIDRBlocks:
- description: AllowedCIDRBlocks is a list of CIDR blocks
- allowed to access the bastion host. They are set as ingress
- rules for the Bastion host's Security Group (defaults
- to 0.0.0.0/0).
+ description: |-
+ AllowedCIDRBlocks is a list of CIDR blocks allowed to access the bastion host.
+ They are set as ingress rules for the Bastion host's Security Group (defaults to 0.0.0.0/0).
items:
type: string
type: array
ami:
- description: AMI will use the specified AMI to boot the
- bastion. If not specified, the AMI will default to one
- picked out in public space.
+ description: |-
+ AMI will use the specified AMI to boot the bastion. If not specified,
+ the AMI will default to one picked out in public space.
type: string
disableIngressRules:
- description: DisableIngressRules will ensure there are no
- Ingress rules in the bastion host's security group. Requires
- AllowedCIDRBlocks to be empty.
+ description: |-
+ DisableIngressRules will ensure there are no Ingress rules in the bastion host's security group.
+ Requires AllowedCIDRBlocks to be empty.
type: boolean
enabled:
- description: Enabled allows this provider to create a bastion
- host instance with a public ip to access the VPC private
- network.
+ description: |-
+ Enabled allows this provider to create a bastion host instance
+ with a public ip to access the VPC private network.
type: boolean
instanceType:
- description: InstanceType will use the specified instance
- type for the bastion. If not specified, Cluster API Provider
- AWS will use t3.micro for all regions except us-east-1,
- where t2.micro will be the default.
+ description: |-
+ InstanceType will use the specified instance type for the bastion. If not specified,
+ Cluster API Provider AWS will use t3.micro for all regions except us-east-1, where t2.micro
+ will be the default.
type: string
type: object
controlPlaneEndpoint:
@@ -152,34 +162,241 @@ spec:
description: ControlPlaneLoadBalancer is optional configuration
for customizing control plane behavior.
properties:
+ additionalListeners:
+ description: |-
+ AdditionalListeners sets the additional listeners for the control plane load balancer.
+ This is only applicable to Network Load Balancer (NLB) types for the time being.
+ items:
+ description: |-
+ AdditionalListenerSpec defines the desired state of an
+ additional listener on an AWS load balancer.
+ properties:
+ healthCheck:
+ description: HealthCheck sets the optional custom
+ health check configuration to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ path:
+ description: |-
+ The destination for health checks on the targets when using the protocol HTTP or HTTPS,
+ otherwise the path will be ignored.
+ type: string
+ port:
+ description: |-
+ The port the load balancer uses when performing health checks for additional target groups. When
+ not specified this value will be set for the same of listener port.
+ type: string
+ protocol:
+ description: |-
+ The protocol to use to health check connect with the target. When not specified the Protocol
+ will be the same of the listener.
+ enum:
+ - TCP
+ - HTTP
+ - HTTPS
+ type: string
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ port:
+ description: Port sets the port for the additional
+ listener.
+ format: int64
+ maximum: 65535
+ minimum: 1
+ type: integer
+ protocol:
+ default: TCP
+ description: |-
+ Protocol sets the protocol for the additional listener.
+ Currently only TCP is supported.
+ enum:
+ - TCP
+ type: string
+ required:
+ - port
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - port
+ x-kubernetes-list-type: map
additionalSecurityGroups:
- description: AdditionalSecurityGroups sets the security
- groups used by the load balancer. Expected to be security
- group IDs This is optional - if not provided new security
- groups will be created for the load balancer
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
items:
type: string
type: array
crossZoneLoadBalancing:
- description: "CrossZoneLoadBalancing enables the classic
- ELB cross availability zone balancing. \n With cross-zone
- load balancing, each load balancer node for your Classic
- Load Balancer distributes requests evenly across the registered
- instances in all enabled Availability Zones. If cross-zone
- load balancing is disabled, each load balancer node distributes
- requests evenly across the registered instances in its
- Availability Zone only. \n Defaults to false."
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
type: boolean
disableHostsRewrite:
- description: DisableHostsRewrite disabled the hair pinning
- issue solution that adds the NLB's address as 127.0.0.1
- to the hosts file of each instance. This is by default,
- false.
+ description: |-
+ DisableHostsRewrite disabled the hair pinning issue solution that adds the NLB's address as 127.0.0.1 to the hosts
+ file of each instance. This is by default, false.
type: boolean
+ healthCheck:
+ description: HealthCheck sets custom health check configuration
+ to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
healthCheckProtocol:
- description: HealthCheckProtocol sets the protocol type
- for ELB health check target default value is ELBProtocolSSL
+ description: |-
+ HealthCheckProtocol sets the protocol type for ELB health check target
+ default value is ELBProtocolSSL
+ enum:
+ - TCP
+ - SSL
+ - HTTP
+ - HTTPS
+ - TLS
+ - UDP
type: string
+ ingressRules:
+ description: IngressRules sets the ingress rules for the
+ control plane load balancer.
+ items:
+ description: IngressRule defines an AWS ingress rule for
+ security groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information
+ about the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access
+ from. Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress
+ rule. Accepted values are "-1" (all), "4" (IP in
+ IP),"tcp", "udp", "icmp", and "58" (ICMPv6), "50"
+ (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access
+ from. Cannot be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique
+ role of a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
loadBalancerType:
default: classic
description: LoadBalancerType sets the type for a load balancer.
@@ -189,21 +406,21 @@ spec:
- elb
- alb
- nlb
+ - disabled
type: string
name:
- description: Name sets the name of the classic ELB load
- balancer. As per AWS, the name must be unique within your
- set of load balancers for the region, must have a maximum
- of 32 characters, must contain only alphanumeric characters
- or hyphens, and cannot begin or end with a hyphen. Once
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
set, the value cannot be changed.
maxLength: 32
pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
type: string
preserveClientIP:
- description: PreserveClientIP lets the user control if preservation
- of client ips must be retained or not. If this is enabled
- 6443 will be opened to 0.0.0.0/0.
+ description: |-
+ PreserveClientIP lets the user control if preservation of client ips must be retained or not.
+ If this is enabled 6443 will be opened to 0.0.0.0/0.
type: boolean
scheme:
default: internet-facing
@@ -223,8 +440,9 @@ spec:
type: array
type: object
identityRef:
- description: IdentityRef is a reference to a identity to be
- used when reconciling this cluster
+ description: |-
+ IdentityRef is a reference to an identity to be used when reconciling the managed control plane.
+ If no identity is specified, the default identity for this controller will be used.
properties:
kind:
description: Kind of the identity.
@@ -242,44 +460,118 @@ spec:
- name
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system used to look up machine images when a machine does
- not specify an AMI. When set, this will be used for all cluster
- machines unless a machine specifies a different ImageLookupBaseOS.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system used to look
+ up machine images when a machine does not specify an AMI. When set, this
+ will be used for all cluster machines unless a machine specifies a
+ different ImageLookupBaseOS.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to
- look up machine images when a machine does not specify an
- AMI. When set, this will be used for all cluster machines
- unless a machine specifies a different ImageLookupOrg. Supports
- substitutions for {{.BaseOS}} and {{.K8sVersion}} with the
- base OS and kubernetes version, respectively. The BaseOS will
- be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the
- ubuntu base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up machine images when
+ a machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
+ Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base
+ OS and kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
- description: ImageLookupOrg is the AWS Organization ID to look
- up machine images when a machine does not specify an AMI.
- When set, this will be used for all cluster machines unless
- a machine specifies a different ImageLookupOrg.
+ description: |-
+ ImageLookupOrg is the AWS Organization ID to look up machine images when a
+ machine does not specify an AMI. When set, this will be used for all
+ cluster machines unless a machine specifies a different ImageLookupOrg.
type: string
network:
description: NetworkSpec encapsulates all things related to
AWS network.
properties:
+ additionalControlPlaneIngressRules:
+ description: AdditionalControlPlaneIngressRules is an optional
+ set of ingress rules to add to the control plane
+ items:
+ description: IngressRule defines an AWS ingress rule for
+ security groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information
+ about the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access
+ from. Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress
+ rule. Accepted values are "-1" (all), "4" (IP in
+ IP),"tcp", "udp", "icmp", and "58" (ICMPv6), "50"
+ (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access
+ from. Cannot be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique
+ role of a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
cni:
description: CNI configuration
properties:
cniIngressRules:
- description: CNIIngressRules specify rules to apply
- to control plane and worker node security groups.
- The source for the rule will be set to control plane
- and worker security group IDs.
+ description: |-
+ CNIIngressRules specify rules to apply to control plane and worker node security groups.
+ The source for the rule will be set to control plane and worker security group IDs.
items:
description: CNIIngressRule defines an AWS ingress
rule for CNI requirements.
@@ -307,10 +599,9 @@ spec:
securityGroupOverrides:
additionalProperties:
type: string
- description: SecurityGroupOverrides is an optional set of
- security groups to use for cluster instances This is optional
- - if not provided new security groups will be created
- for the cluster
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for cluster instances
+ This is optional - if not provided new security groups will be created for the cluster
type: object
subnets:
description: Subnets configuration.
@@ -326,22 +617,27 @@ spec:
when the provider creates a managed VPC.
type: string
id:
- description: ID defines a unique identifier to reference
- this resource.
+ description: |-
+ ID defines a unique identifier to reference this resource.
+ If you're bringing your subnet, set the AWS subnet-id here, it must start with `subnet-`.
+
+
+ When the VPC is managed by CAPA, and you'd like the provider to create a subnet for you,
+ the id can be set to any placeholder value that does not start with `subnet-`;
+ upon creation, the subnet AWS identifier will be populated in the `ResourceID` field and
+ the `id` field is going to be used as the subnet name. If you specify a tag
+ called `Name`, it takes precedence.
type: string
ipv6CidrBlock:
- description: IPv6CidrBlock is the IPv6 CIDR block
- to be used when the provider creates a managed VPC.
- A subnet can have an IPv4 and an IPv6 address. IPv6
- is only supported in managed clusters, this field
- cannot be set on AWSCluster object.
+ description: |-
+ IPv6CidrBlock is the IPv6 CIDR block to be used when the provider creates a managed VPC.
+ A subnet can have an IPv4 and an IPv6 address.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: string
isIpv6:
- description: IsIPv6 defines the subnet as an IPv6
- subnet. A subnet is IPv6 when it is associated with
- a VPC that has IPv6 enabled. IPv6 is only supported
- in managed clusters, this field cannot be set on
- AWSCluster object.
+ description: |-
+ IsIPv6 defines the subnet as an IPv6 subnet. A subnet is IPv6 when it is associated with a VPC that has IPv6 enabled.
+ IPv6 is only supported in managed clusters, this field cannot be set on AWSCluster object.
type: boolean
isPublic:
description: IsPublic defines the subnet as a public
@@ -350,12 +646,23 @@ spec:
gateway.
type: boolean
natGatewayId:
- description: NatGatewayID is the NAT gateway id associated
- with the subnet. Ignored unless the subnet is managed
- by the provider, in which case this is set on the
- public subnet where the NAT gateway resides. It
- is then used to determine routes for private subnets
- in the same AZ as the public subnet.
+ description: |-
+ NatGatewayID is the NAT gateway id associated with the subnet.
+ Ignored unless the subnet is managed by the provider, in which case this is set on the public subnet where the NAT gateway resides. It is then used to determine routes for private subnets in the same AZ as the public subnet.
+ type: string
+ parentZoneName:
+ description: |-
+ ParentZoneName is the zone name where the current subnet's zone is tied when
+ the zone is a Local Zone.
+
+
+ The subnets in Local Zone or Wavelength Zone locations consume the ParentZoneName
+ to select the correct private route table to egress traffic to the internet.
+ type: string
+ resourceID:
+ description: |-
+ ResourceID is the subnet identifier from AWS, READ ONLY.
+ This field is populated when the provider manages the subnet.
type: string
routeTableId:
description: RouteTableID is the routing table id
@@ -367,6 +674,42 @@ spec:
description: Tags is a collection of tags describing
the resource.
type: object
+ zoneType:
+ description: |-
+ ZoneType defines the type of the zone where the subnet is created.
+
+
+ The valid values are availability-zone, local-zone, and wavelength-zone.
+
+
+ Subnet with zone type availability-zone (regular) is always selected to create cluster
+ resources, like Load Balancers, NAT Gateways, Contol Plane nodes, etc.
+
+
+ Subnet with zone type local-zone or wavelength-zone is not eligible to automatically create
+ regular cluster resources.
+
+
+ The public subnet in availability-zone or local-zone is associated with regular public
+ route table with default route entry to a Internet Gateway.
+
+
+ The public subnet in wavelength-zone is associated with a carrier public
+ route table with default route entry to a Carrier Gateway.
+
+
+ The private subnet in the availability-zone is associated with a private route table with
+ the default route entry to a NAT Gateway created in that zone.
+
+
+ The private subnet in the local-zone or wavelength-zone is associated with a private route table with
+ the default route entry re-using the NAT Gateway in the Region (preferred from the
+ parent zone, the zone type availability-zone in the region, or first table available).
+ enum:
+ - availability-zone
+ - local-zone
+ - wavelength-zone
+ type: string
required:
- id
type: object
@@ -379,31 +722,52 @@ spec:
properties:
availabilityZoneSelection:
default: Ordered
- description: 'AvailabilityZoneSelection specifies how
- AZs should be selected if there are more AZs in a
- region than specified by AvailabilityZoneUsageLimit.
- There are 2 selection schemes: Ordered - selects based
- on alphabetical order Random - selects AZs randomly
- in a region Defaults to Ordered'
+ description: |-
+ AvailabilityZoneSelection specifies how AZs should be selected if there are more AZs
+ in a region than specified by AvailabilityZoneUsageLimit. There are 2 selection schemes:
+ Ordered - selects based on alphabetical order
+ Random - selects AZs randomly in a region
+ Defaults to Ordered
enum:
- Ordered
- Random
type: string
availabilityZoneUsageLimit:
default: 3
- description: AvailabilityZoneUsageLimit specifies the
- maximum number of availability zones (AZ) that should
- be used in a region when automatically creating subnets.
- If a region has more than this number of AZs then
- this number of AZs will be picked randomly when creating
+ description: |-
+ AvailabilityZoneUsageLimit specifies the maximum number of availability zones (AZ) that
+ should be used in a region when automatically creating subnets. If a region has more
+ than this number of AZs then this number of AZs will be picked randomly when creating
default subnets. Defaults to 3
minimum: 1
type: integer
+ carrierGatewayId:
+ description: |-
+ CarrierGatewayID is the id of the internet gateway associated with the VPC,
+ for carrier network (Wavelength Zones).
+ type: string
+ x-kubernetes-validations:
+ - message: Carrier Gateway ID must start with 'cagw-'
+ rule: self.startsWith('cagw-')
cidrBlock:
- description: CidrBlock is the CIDR block to be used
- when the provider creates a managed VPC. Defaults
- to 10.0.0.0/16.
+ description: |-
+ CidrBlock is the CIDR block to be used when the provider creates a managed VPC.
+ Defaults to 10.0.0.0/16.
+ Mutually exclusive with IPAMPool.
type: string
+ emptyRoutesDefaultVPCSecurityGroup:
+ description: |-
+ EmptyRoutesDefaultVPCSecurityGroup specifies whether the default VPC security group ingress
+ and egress rules should be removed.
+
+
+ By default, when creating a VPC, AWS creates a security group called `default` with ingress and egress
+ rules that allow traffic from anywhere. The group could be used as a potential surface attack and
+ it's generally suggested that the group rules are removed or modified appropriately.
+
+
+ NOTE: This only applies when the VPC is managed by the Cluster API AWS controller.
+ type: boolean
id:
description: ID is the vpc-id of the VPC this provider
should use to create resources.
@@ -412,25 +776,79 @@ spec:
description: InternetGatewayID is the id of the internet
gateway associated with the VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv4 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
ipv6:
- description: IPv6 contains ipv6 specific settings for
- the network. Supported only in managed clusters. This
- field cannot be set on AWSCluster object.
+ description: |-
+ IPv6 contains ipv6 specific settings for the network. Supported only in managed clusters.
+ This field cannot be set on AWSCluster object.
properties:
cidrBlock:
- description: CidrBlock is the CIDR block provided
- by Amazon when VPC has enabled IPv6.
+ description: |-
+ CidrBlock is the CIDR block provided by Amazon when VPC has enabled IPv6.
+ Mutually exclusive with IPAMPool.
type: string
egressOnlyInternetGatewayId:
description: EgressOnlyInternetGatewayID is the
id of the egress only internet gateway associated
with an IPv6 enabled VPC.
type: string
+ ipamPool:
+ description: |-
+ IPAMPool defines the IPAMv6 pool to be used for VPC.
+ Mutually exclusive with CidrBlock.
+ properties:
+ id:
+ description: ID is the ID of the IPAM pool this
+ provider should use to create VPC.
+ type: string
+ name:
+ description: Name is the name of the IPAM pool
+ this provider should use to create VPC.
+ type: string
+ netmaskLength:
+ description: |-
+ The netmask length of the IPv4 CIDR you want to allocate to VPC from
+ an Amazon VPC IP Address Manager (IPAM) pool.
+ Defaults to /16 for IPv4 if not specified.
+ format: int64
+ type: integer
+ type: object
poolId:
- description: PoolID is the IP pool which must be
- defined in case of BYO IP is defined.
+ description: |-
+ PoolID is the IP pool which must be defined in case of BYO IP is defined.
+ Must be specified if CidrBlock is set.
+ Mutually exclusive with IPAMPool.
type: string
type: object
+ privateDnsHostnameTypeOnLaunch:
+ description: |-
+ PrivateDNSHostnameTypeOnLaunch is the type of hostname to assign to instances in the subnet at launch.
+ For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name)
+ or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name).
+ enum:
+ - ip-name
+ - resource-name
+ type: string
tags:
additionalProperties:
type: string
@@ -439,19 +857,28 @@ spec:
type: object
type: object
type: object
+ partition:
+ description: Partition is the AWS security partition being used.
+ Defaults to "aws"
+ type: string
region:
description: The AWS Region the cluster lives in.
type: string
s3Bucket:
- description: S3Bucket contains options to configure a supporting
- S3 bucket for this cluster - currently used for nodes requiring
- Ignition (https://coreos.github.io/ignition/) for bootstrapping
- (requires BootstrapFormatIgnition feature flag to be enabled).
+ description: |-
+ S3Bucket contains options to configure a supporting S3 bucket for this
+ cluster - currently used for nodes requiring Ignition
+ (https://coreos.github.io/ignition/) for bootstrapping (requires
+ BootstrapFormatIgnition feature flag to be enabled).
properties:
+ bestEffortDeleteObjects:
+ description: BestEffortDeleteObjects defines whether access/permission
+ errors during object deletion should be ignored.
+ type: boolean
controlPlaneIAMInstanceProfile:
- description: ControlPlaneIAMInstanceProfile is a name of
- the IAMInstanceProfile, which will be allowed to read
- control-plane node bootstrap data from S3 Bucket.
+ description: |-
+ ControlPlaneIAMInstanceProfile is a name of the IAMInstanceProfile, which will be allowed
+ to read control-plane node bootstrap data from S3 Bucket.
type: string
name:
description: Name defines name of S3 Bucket to be created.
@@ -460,16 +887,310 @@ spec:
pattern: ^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
type: string
nodesIAMInstanceProfiles:
- description: NodesIAMInstanceProfiles is a list of IAM instance
- profiles, which will be allowed to read worker nodes bootstrap
- data from S3 Bucket.
+ description: |-
+ NodesIAMInstanceProfiles is a list of IAM instance profiles, which will be allowed to read
+ worker nodes bootstrap data from S3 Bucket.
items:
type: string
type: array
+ presignedURLDuration:
+ description: |-
+ PresignedURLDuration defines the duration for which presigned URLs are valid.
+
+
+ This is used to generate presigned URLs for S3 Bucket objects, which are used by
+ control-plane and worker nodes to fetch bootstrap data.
+
+
+ When enabled, the IAM instance profiles specified are not used.
+ type: string
required:
- - controlPlaneIAMInstanceProfile
- name
- - nodesIAMInstanceProfiles
+ type: object
+ secondaryControlPlaneLoadBalancer:
+ description: |-
+ SecondaryControlPlaneLoadBalancer is an additional load balancer that can be used for the control plane.
+
+
+ An example use case is to have a separate internal load balancer for internal traffic,
+ and a separate external load balancer for external traffic.
+ properties:
+ additionalListeners:
+ description: |-
+ AdditionalListeners sets the additional listeners for the control plane load balancer.
+ This is only applicable to Network Load Balancer (NLB) types for the time being.
+ items:
+ description: |-
+ AdditionalListenerSpec defines the desired state of an
+ additional listener on an AWS load balancer.
+ properties:
+ healthCheck:
+ description: HealthCheck sets the optional custom
+ health check configuration to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ path:
+ description: |-
+ The destination for health checks on the targets when using the protocol HTTP or HTTPS,
+ otherwise the path will be ignored.
+ type: string
+ port:
+ description: |-
+ The port the load balancer uses when performing health checks for additional target groups. When
+ not specified this value will be set for the same of listener port.
+ type: string
+ protocol:
+ description: |-
+ The protocol to use to health check connect with the target. When not specified the Protocol
+ will be the same of the listener.
+ enum:
+ - TCP
+ - HTTP
+ - HTTPS
+ type: string
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ port:
+ description: Port sets the port for the additional
+ listener.
+ format: int64
+ maximum: 65535
+ minimum: 1
+ type: integer
+ protocol:
+ default: TCP
+ description: |-
+ Protocol sets the protocol for the additional listener.
+ Currently only TCP is supported.
+ enum:
+ - TCP
+ type: string
+ required:
+ - port
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - port
+ x-kubernetes-list-type: map
+ additionalSecurityGroups:
+ description: |-
+ AdditionalSecurityGroups sets the security groups used by the load balancer. Expected to be security group IDs
+ This is optional - if not provided new security groups will be created for the load balancer
+ items:
+ type: string
+ type: array
+ crossZoneLoadBalancing:
+ description: |-
+ CrossZoneLoadBalancing enables the classic ELB cross availability zone balancing.
+
+
+ With cross-zone load balancing, each load balancer node for your Classic Load Balancer
+ distributes requests evenly across the registered instances in all enabled Availability Zones.
+ If cross-zone load balancing is disabled, each load balancer node distributes requests evenly across
+ the registered instances in its Availability Zone only.
+
+
+ Defaults to false.
+ type: boolean
+ disableHostsRewrite:
+ description: |-
+ DisableHostsRewrite disabled the hair pinning issue solution that adds the NLB's address as 127.0.0.1 to the hosts
+ file of each instance. This is by default, false.
+ type: boolean
+ healthCheck:
+ description: HealthCheck sets custom health check configuration
+ to the API target group.
+ properties:
+ intervalSeconds:
+ description: |-
+ The approximate amount of time, in seconds, between health checks of an individual
+ target.
+ format: int64
+ maximum: 300
+ minimum: 5
+ type: integer
+ thresholdCount:
+ description: |-
+ The number of consecutive health check successes required before considering
+ a target healthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ timeoutSeconds:
+ description: |-
+ The amount of time, in seconds, during which no response from a target means
+ a failed health check.
+ format: int64
+ maximum: 120
+ minimum: 2
+ type: integer
+ unhealthyThresholdCount:
+ description: |-
+ The number of consecutive health check failures required before considering
+ a target unhealthy.
+ format: int64
+ maximum: 10
+ minimum: 2
+ type: integer
+ type: object
+ healthCheckProtocol:
+ description: |-
+ HealthCheckProtocol sets the protocol type for ELB health check target
+ default value is ELBProtocolSSL
+ enum:
+ - TCP
+ - SSL
+ - HTTP
+ - HTTPS
+ - TLS
+ - UDP
+ type: string
+ ingressRules:
+ description: IngressRules sets the ingress rules for the
+ control plane load balancer.
+ items:
+ description: IngressRule defines an AWS ingress rule for
+ security groups.
+ properties:
+ cidrBlocks:
+ description: List of CIDR blocks to allow access from.
+ Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ description:
+ description: Description provides extended information
+ about the ingress rule.
+ type: string
+ fromPort:
+ description: FromPort is the start of port range.
+ format: int64
+ type: integer
+ ipv6CidrBlocks:
+ description: List of IPv6 CIDR blocks to allow access
+ from. Cannot be specified with SourceSecurityGroupID.
+ items:
+ type: string
+ type: array
+ protocol:
+ description: Protocol is the protocol for the ingress
+ rule. Accepted values are "-1" (all), "4" (IP in
+ IP),"tcp", "udp", "icmp", and "58" (ICMPv6), "50"
+ (ESP).
+ enum:
+ - "-1"
+ - "4"
+ - tcp
+ - udp
+ - icmp
+ - "58"
+ - "50"
+ type: string
+ sourceSecurityGroupIds:
+ description: The security group id to allow access
+ from. Cannot be specified with CidrBlocks.
+ items:
+ type: string
+ type: array
+ sourceSecurityGroupRoles:
+ description: |-
+ The security group role to allow access from. Cannot be specified with CidrBlocks.
+ The field will be combined with source security group IDs if specified.
+ items:
+ description: SecurityGroupRole defines the unique
+ role of a security group.
+ enum:
+ - bastion
+ - node
+ - controlplane
+ - apiserver-lb
+ - lb
+ - node-eks-additional
+ type: string
+ type: array
+ toPort:
+ description: ToPort is the end of port range.
+ format: int64
+ type: integer
+ required:
+ - description
+ - fromPort
+ - protocol
+ - toPort
+ type: object
+ type: array
+ loadBalancerType:
+ default: classic
+ description: LoadBalancerType sets the type for a load balancer.
+ The default type is classic.
+ enum:
+ - classic
+ - elb
+ - alb
+ - nlb
+ - disabled
+ type: string
+ name:
+ description: |-
+ Name sets the name of the classic ELB load balancer. As per AWS, the name must be unique
+ within your set of load balancers for the region, must have a maximum of 32 characters, must
+ contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen. Once
+ set, the value cannot be changed.
+ maxLength: 32
+ pattern: ^[A-Za-z0-9]([A-Za-z0-9]{0,31}|[-A-Za-z0-9]{0,30}[A-Za-z0-9])$
+ type: string
+ preserveClientIP:
+ description: |-
+ PreserveClientIP lets the user control if preservation of client ips must be retained or not.
+ If this is enabled 6443 will be opened to 0.0.0.0/0.
+ type: boolean
+ scheme:
+ default: internet-facing
+ description: Scheme sets the scheme of the load balancer
+ (defaults to internet-facing)
+ enum:
+ - internet-facing
+ - internal
+ type: string
+ subnets:
+ description: Subnets sets the subnets that should be applied
+ to the control plane load balancer (defaults to discovered
+ subnets for managed VPCs or an empty set for unmanaged
+ VPCs)
+ items:
+ type: string
+ type: array
type: object
sshKeyName:
description: SSHKeyName is the name of the ssh key to attach
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
index f96a8a9a9..9bb29146c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSFargateProfile is the Schema for the awsfargateprofiles API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,9 +73,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
clusterName:
description: ClusterName is the name of the Cluster this object belongs
@@ -81,10 +86,11 @@ spec:
description: ProfileName specifies the profile name.
type: string
roleName:
- description: RoleName specifies the name of IAM role for this fargate
- pool If the role is pre-existing we will treat it as unmanaged and
- not delete it on deletion. If the EKSEnableIAM feature flag is true
- and no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role for this fargate pool
+ If the role is pre-existing we will treat it as unmanaged
+ and not delete it on deletion. If the EKSEnableIAM feature
+ flag is true and no name is supplied then a role is created.
type: string
selectors:
description: Selectors specify fargate pod selectors.
@@ -105,8 +111,9 @@ spec:
type: object
type: array
subnetIDs:
- description: SubnetIDs specifies which subnets are used for the auto
- scaling group of this nodegroup.
+ description: |-
+ SubnetIDs specifies which subnets are used for the
+ auto scaling group of this nodegroup.
items:
type: string
type: array
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
index fc9334003..79d920e08 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSMachinePool is the Schema for the awsmachinepools API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -68,9 +73,18 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the AWS provider.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider.
type: object
+ availabilityZoneSubnetType:
+ description: AvailabilityZoneSubnetType specifies which type of subnets
+ to use when an availability zone is specified.
+ enum:
+ - public
+ - private
+ - all
+ type: string
availabilityZones:
description: AvailabilityZones is an array of availability zones instances
can run in
@@ -82,20 +96,21 @@ spec:
to use when an instance is launched.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instances. These
- security groups would be set in addition to any security groups
- defined at the cluster level or in the actuator.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instances. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters may
- be specified. Specifying more than one will result in a validation
- error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the rules
- defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -135,31 +150,103 @@ spec:
type: string
type: object
iamInstanceProfile:
- description: The name or the Amazon Resource Name (ARN) of the instance
- profile associated with the IAM role for the instance. The instance
- profile contains the IAM role.
+ description: |-
+ The name or the Amazon Resource Name (ARN) of the instance profile associated
+ with the IAM role for the instance. The instance profile contains the IAM
+ role.
type: string
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look
- up the image for this machine It will be ignored if an explicit
- AMI is set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}}
- with the base OS and kubernetes version, respectively. The BaseOS
- will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for
image lookup if AMI is not set.
type: string
+ instanceMetadataOptions:
+ description: InstanceMetadataOptions defines the behavior for applying
+ metadata to instances.
+ properties:
+ httpEndpoint:
+ default: enabled
+ description: |-
+ Enables or disables the HTTP metadata endpoint on your instances.
+
+
+ If you specify a value of disabled, you cannot access your instance metadata.
+
+
+ Default: enabled
+ enum:
+ - enabled
+ - disabled
+ type: string
+ httpPutResponseHopLimit:
+ default: 1
+ description: |-
+ The desired HTTP PUT response hop limit for instance metadata requests. The
+ larger the number, the further instance metadata requests can travel.
+
+
+ Default: 1
+ format: int64
+ maximum: 64
+ minimum: 1
+ type: integer
+ httpTokens:
+ default: optional
+ description: |-
+ The state of token usage for your instance metadata requests.
+
+
+ If the state is optional, you can choose to retrieve instance metadata with
+ or without a session token on your request. If you retrieve the IAM role
+ credentials without a token, the version 1.0 role credentials are returned.
+ If you retrieve the IAM role credentials using a valid session token, the
+ version 2.0 role credentials are returned.
+
+
+ If the state is required, you must send a session token with any instance
+ metadata retrieval requests. In this state, retrieving the IAM role credentials
+ always returns the version 2.0 credentials; the version 1.0 credentials are
+ not available.
+
+
+ Default: optional
+ enum:
+ - optional
+ - required
+ type: string
+ instanceMetadataTags:
+ default: disabled
+ description: |-
+ Set to enabled to allow access to instance tags from the instance metadata.
+ Set to disabled to turn off access to instance tags from the instance metadata.
+ For more information, see Work with instance tags using the instance metadata
+ (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
+
+
+ Default: disabled
+ enum:
+ - enabled
+ - disabled
+ type: string
+ type: object
instanceType:
description: 'InstanceType is the type of instance to create. Example:
m4.xlarge'
@@ -167,6 +254,26 @@ spec:
name:
description: The name of the launch template.
type: string
+ privateDnsName:
+ description: PrivateDNSName is the options for the instance hostname.
+ properties:
+ enableResourceNameDnsAAAARecord:
+ description: EnableResourceNameDNSAAAARecord indicates whether
+ to respond to DNS queries for instance hostnames with DNS
+ AAAA records.
+ type: boolean
+ enableResourceNameDnsARecord:
+ description: EnableResourceNameDNSARecord indicates whether
+ to respond to DNS queries for instance hostnames with DNS
+ A records.
+ type: boolean
+ hostnameType:
+ description: The type of hostname to assign to an instance.
+ enum:
+ - ip-name
+ - resource-name
+ type: string
+ type: object
rootVolume:
description: RootVolume encapsulates the configuration options for
the root volume
@@ -179,9 +286,9 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be used.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
The key must already exist and be accessible by the controller.
type: string
iops:
@@ -190,9 +297,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -218,16 +325,17 @@ spec:
type: string
type: object
sshKeyName:
- description: SSHKeyName is the name of the ssh key to attach to
- the instance. Valid values are empty string (do not use SSH keys),
- a valid SSH key name, or omitted (use the default SSH key name)
+ description: |-
+ SSHKeyName is the name of the ssh key to attach to the instance. Valid values are empty string
+ (do not use SSH keys), a valid SSH key name, or omitted (use the default SSH key name)
type: string
versionNumber:
- description: 'VersionNumber is the version of the launch template
- that is applied. Typically a new version is created when at least
- one of the following happens: 1) A new launch template spec is
- applied. 2) One or more parameters in an existing template is
- changed. 3) A new AMI is discovered.'
+ description: |-
+ VersionNumber is the version of the launch template that is applied.
+ Typically a new version is created when at least one of the following happens:
+ 1) A new launch template spec is applied.
+ 2) One or more parameters in an existing template is changed.
+ 3) A new AMI is discovered.
format: int64
type: integer
type: object
@@ -236,9 +344,16 @@ spec:
feature
type: boolean
defaultCoolDown:
- description: The amount of time, in seconds, after a scaling activity
- completes before another scaling activity can start. If no value is
- supplied by user a default value of 300 seconds is set
+ description: |-
+ The amount of time, in seconds, after a scaling activity completes before another scaling activity can start.
+ If no value is supplied by user a default value of 300 seconds is set
+ type: string
+ defaultInstanceWarmup:
+ description: |-
+ The amount of time, in seconds, until a new instance is considered to
+ have finished initializing and resource consumption to become stable
+ after it enters the InService state.
+ If no value is supplied by user a default value of 300 seconds is set
type: string
maxSize:
default: 1
@@ -266,6 +381,7 @@ spec:
instance types to fulfill On-Demand capacity.
enum:
- prioritized
+ - lowest-price
type: string
onDemandBaseCapacity:
default: 0
@@ -282,13 +398,15 @@ spec:
enum:
- lowest-price
- capacity-optimized
+ - capacity-optimized-prioritized
+ - price-capacity-optimized
type: string
type: object
overrides:
items:
- description: Overrides are used to override the instance type
- specified by the launch template with multiple instance types
- that can be used to launch On-Demand Instances and Spot Instances.
+ description: |-
+ Overrides are used to override the instance type specified by the launch template with multiple
+ instance types that can be used to launch On-Demand Instances and Spot Instances.
properties:
instanceType:
type: string
@@ -301,10 +419,9 @@ spec:
description: ProviderID is the ARN of the associated ASG
type: string
providerIDList:
- description: ProviderIDList are the identification IDs of machine instances
- provided by the provider. This field must match the provider IDs as
- seen on the node objects corresponding to a machine pool's machine
- instances.
+ description: |-
+ ProviderIDList are the identification IDs of machine instances provided by the provider.
+ This field must match the provider IDs as seen on the node objects corresponding to a machine pool's machine instances.
items:
type: string
type: array
@@ -313,41 +430,43 @@ spec:
with the instance refresh request.
properties:
disable:
- description: Disable, if true, disables instance refresh from triggering
- when new launch templates are detected. This is useful in scenarios
- where ASG nodes are externally managed.
+ description: |-
+ Disable, if true, disables instance refresh from triggering when new launch templates are detected.
+ This is useful in scenarios where ASG nodes are externally managed.
type: boolean
instanceWarmup:
- description: The number of seconds until a newly launched instance
- is configured and ready to use. During this time, the next replacement
- will not be initiated. The default is to use the value for the
- health check grace period defined for the group.
+ description: |-
+ The number of seconds until a newly launched instance is configured and ready
+ to use. During this time, the next replacement will not be initiated.
+ The default is to use the value for the health check grace period defined for the group.
format: int64
type: integer
minHealthyPercentage:
- description: The amount of capacity as a percentage in ASG that
- must remain healthy during an instance refresh. The default is
- 90.
+ description: |-
+ The amount of capacity as a percentage in ASG that must remain healthy
+ during an instance refresh. The default is 90.
format: int64
type: integer
strategy:
- description: The strategy to use for the instance refresh. The only
- valid value is Rolling. A rolling update is an update that is
- applied to all instances in an Auto Scaling group until all instances
- have been updated.
+ description: |-
+ The strategy to use for the instance refresh. The only valid value is Rolling.
+ A rolling update is an update that is applied to all instances in an Auto
+ Scaling group until all instances have been updated.
type: string
type: object
subnets:
description: Subnets is an array of subnet configurations
items:
- description: AWSResourceReference is a reference to a specific AWS
- resource by ID or filters. Only one of ID or Filters may be specified.
- Specifying more than one will result in a validation error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
@@ -371,9 +490,9 @@ spec:
type: object
type: array
suspendProcesses:
- description: SuspendProcesses defines a list of processes to suspend
- for the given ASG. This is constantly reconciled. If a process is
- removed from this list it will automatically be resumed.
+ description: |-
+ SuspendProcesses defines a list of processes to suspend for the given ASG. This is constantly reconciled.
+ If a process is removed from this list it will automatically be resumed.
properties:
all:
type: boolean
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
index b6dbe6cc8..e8db846af 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSMachine is the schema for Amazon EC2 machines.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -66,21 +71,22 @@ spec:
description: AWSMachineSpec defines the desired state of an Amazon EC2 instance.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references to security
- groups that should be applied to the instance. These security groups
- would be set in addition to any security groups defined at the cluster
- level or in the actuator. It is possible to specify either IDs of
- Filters. Using Filters will cause additional requests to AWS API and
- if tags change the attached security groups might change too.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instance. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator. It is possible to specify either IDs of Filters. Using Filters
+ will cause additional requests to AWS API and if tags change the attached security groups might change too.
items:
- description: AWSResourceReference is a reference to a specific AWS
- resource by ID or filters. Only one of ID or Filters may be specified.
- Specifying more than one will result in a validation error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
@@ -106,10 +112,10 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to an
- instance, in addition to the ones added by default by the AWS provider.
- If both the AWSCluster and the AWSMachine specify the same tag name
- with different values, the AWSMachine's value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider. If both the AWSCluster and the AWSMachine specify the same tag name with different values, the
+ AWSMachine's value takes precedence.
type: object
ami:
description: AMI is the reference to the AMI from which to create the
@@ -127,15 +133,16 @@ spec:
type: string
type: object
cloudInit:
- description: CloudInit defines options related to the bootstrapping
- systems where CloudInit is used.
+ description: |-
+ CloudInit defines options related to the bootstrapping systems where
+ CloudInit is used.
properties:
insecureSkipSecretsManager:
- description: InsecureSkipSecretsManager, when set to true will not
- use AWS Secrets Manager or AWS Systems Manager Parameter Store
- to ensure privacy of userdata. By default, a cloud-init boothook
- shell script is prepended to download the userdata from Secrets
- Manager and additionally delete the secret.
+ description: |-
+ InsecureSkipSecretsManager, when set to true will not use AWS Secrets Manager
+ or AWS Systems Manager Parameter Store to ensure privacy of userdata.
+ By default, a cloud-init boothook shell script is prepended to download
+ the userdata from Secrets Manager and additionally delete the secret.
type: boolean
secretCount:
description: SecretCount is the number of secrets used to form the
@@ -143,15 +150,16 @@ spec:
format: int32
type: integer
secretPrefix:
- description: SecretPrefix is the prefix for the secret name. This
- is stored temporarily, and deleted when the machine registers
- as a node against the workload cluster.
+ description: |-
+ SecretPrefix is the prefix for the secret name. This is stored
+ temporarily, and deleted when the machine registers as a node against
+ the workload cluster.
type: string
secureSecretsBackend:
- description: SecureSecretsBackend, when set to parameter-store will
- utilize the AWS Systems Manager Parameter Storage to distribute
- secrets. By default or with the value of secrets-manager, will
- use AWS Secrets Manager instead.
+ description: |-
+ SecureSecretsBackend, when set to parameter-store will utilize the AWS Systems Manager
+ Parameter Storage to distribute secrets. By default or with the value of secrets-manager,
+ will use AWS Secrets Manager instead.
enum:
- secrets-manager
- ssm-parameter-store
@@ -165,30 +173,120 @@ spec:
description: Ignition defined options related to the bootstrapping systems
where Ignition is used.
properties:
+ proxy:
+ description: |-
+ Proxy defines proxy settings for Ignition.
+ Only valid for Ignition versions 3.1 and above.
+ properties:
+ httpProxy:
+ description: |-
+ HTTPProxy is the HTTP proxy to use for Ignition.
+ A single URL that specifies the proxy server to use for HTTP and HTTPS requests,
+ unless overridden by the HTTPSProxy or NoProxy options.
+ type: string
+ httpsProxy:
+ description: |-
+ HTTPSProxy is the HTTPS proxy to use for Ignition.
+ A single URL that specifies the proxy server to use for HTTPS requests,
+ unless overridden by the NoProxy option.
+ type: string
+ noProxy:
+ description: |-
+ NoProxy is the list of domains to not proxy for Ignition.
+ Specifies a list of strings to hosts that should be excluded from proxying.
+
+
+ Each value is represented by:
+ - An IP address prefix (1.2.3.4)
+ - An IP address prefix in CIDR notation (1.2.3.4/8)
+ - A domain name
+ - A domain name matches that name and all subdomains
+ - A domain name with a leading . matches subdomains only
+ - A special DNS label (*), indicates that no proxying should be done
+
+
+ An IP address prefix and domain name can also include a literal port number (1.2.3.4:80).
+ items:
+ description: IgnitionNoProxy defines the list of domains to
+ not proxy for Ignition.
+ maxLength: 2048
+ type: string
+ maxItems: 64
+ type: array
+ type: object
+ storageType:
+ default: ClusterObjectStore
+ description: |-
+ StorageType defines how to store the boostrap user data for Ignition.
+ This can be used to instruct Ignition from where to fetch the user data to bootstrap an instance.
+
+
+ When omitted, the storage option will default to ClusterObjectStore.
+
+
+ When set to "ClusterObjectStore", if the capability is available and a Cluster ObjectStore configuration
+ is correctly provided in the Cluster object (under .spec.s3Bucket),
+ an object store will be used to store bootstrap user data.
+
+
+ When set to "UnencryptedUserData", EC2 Instance User Data will be used to store the machine bootstrap user data, unencrypted.
+ This option is considered less secure than others as user data may contain sensitive informations (keys, certificates, etc.)
+ and users with ec2:DescribeInstances permission or users running pods
+ that can access the ec2 metadata service have access to this sensitive information.
+ So this is only to be used at ones own risk, and only when other more secure options are not viable.
+ enum:
+ - ClusterObjectStore
+ - UnencryptedUserData
+ type: string
+ tls:
+ description: |-
+ TLS defines TLS settings for Ignition.
+ Only valid for Ignition versions 3.1 and above.
+ properties:
+ certificateAuthorities:
+ description: |-
+ CASources defines the list of certificate authorities to use for Ignition.
+ The value is the certificate bundle (in PEM format). The bundle can contain multiple concatenated certificates.
+ Supported schemes are http, https, tftp, s3, arn, gs, and `data` (RFC 2397) URL scheme.
+ items:
+ description: IgnitionCASource defines the source of the certificate
+ authority to use for Ignition.
+ maxLength: 65536
+ type: string
+ maxItems: 64
+ type: array
+ type: object
version:
default: "2.3"
description: Version defines which version of Ignition will be used
to generate bootstrap data.
enum:
- "2.3"
+ - "3.0"
+ - "3.1"
+ - "3.2"
+ - "3.3"
+ - "3.4"
type: string
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating system
- to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look up
- the image for this machine It will be ignored if an explicit AMI is
- set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}} with
- the base OS and kubernetes version, respectively. The BaseOS will
- be the value in ImageLookupBaseOS or ubuntu (the default), and the
- kubernetes version as defined by the packages produced by kubernetes/release
- without v as a prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example,
- the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for image
@@ -203,46 +301,64 @@ spec:
properties:
httpEndpoint:
default: enabled
- description: "Enables or disables the HTTP metadata endpoint on
- your instances. \n If you specify a value of disabled, you cannot
- access your instance metadata. \n Default: enabled"
+ description: |-
+ Enables or disables the HTTP metadata endpoint on your instances.
+
+
+ If you specify a value of disabled, you cannot access your instance metadata.
+
+
+ Default: enabled
enum:
- enabled
- disabled
type: string
httpPutResponseHopLimit:
default: 1
- description: "The desired HTTP PUT response hop limit for instance
- metadata requests. The larger the number, the further instance
- metadata requests can travel. \n Default: 1"
+ description: |-
+ The desired HTTP PUT response hop limit for instance metadata requests. The
+ larger the number, the further instance metadata requests can travel.
+
+
+ Default: 1
format: int64
maximum: 64
minimum: 1
type: integer
httpTokens:
- default: required
- description: "The state of token usage for your instance metadata
- requests. \n If the state is optional, you can choose to retrieve
- instance metadata with or without a session token on your request.
- If you retrieve the IAM role credentials without a token, the
- version 1.0 role credentials are returned. If you retrieve the
- IAM role credentials using a valid session token, the version
- 2.0 role credentials are returned. \n If the state is required,
- you must send a session token with any instance metadata retrieval
- requests. In this state, retrieving the IAM role credentials always
- returns the version 2.0 credentials; the version 1.0 credentials
- are not available. \n Default: required"
+ default: optional
+ description: |-
+ The state of token usage for your instance metadata requests.
+
+
+ If the state is optional, you can choose to retrieve instance metadata with
+ or without a session token on your request. If you retrieve the IAM role
+ credentials without a token, the version 1.0 role credentials are returned.
+ If you retrieve the IAM role credentials using a valid session token, the
+ version 2.0 role credentials are returned.
+
+
+ If the state is required, you must send a session token with any instance
+ metadata retrieval requests. In this state, retrieving the IAM role credentials
+ always returns the version 2.0 credentials; the version 1.0 credentials are
+ not available.
+
+
+ Default: optional
enum:
- optional
- required
type: string
instanceMetadataTags:
default: disabled
- description: "Set to enabled to allow access to instance tags from
- the instance metadata. Set to disabled to turn off access to instance
- tags from the instance metadata. For more information, see Work
- with instance tags using the instance metadata (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
- \n Default: disabled"
+ description: |-
+ Set to enabled to allow access to instance tags from the instance metadata.
+ Set to disabled to turn off access to instance tags from the instance metadata.
+ For more information, see Work with instance tags using the instance metadata
+ (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
+
+
+ Default: disabled
enum:
- enabled
- disabled
@@ -254,8 +370,9 @@ spec:
minLength: 2
type: string
networkInterfaces:
- description: NetworkInterfaces is a list of ENIs to associate with the
- instance. A maximum of 2 may be specified.
+ description: |-
+ NetworkInterfaces is a list of ENIs to associate with the instance.
+ A maximum of 2 may be specified.
items:
type: string
maxItems: 2
@@ -274,10 +391,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt the
- volume. Can be either a KMS key ID or ARN. If Encrypted is set
- and this is omitted, the default AWS key will be used. The key
- must already exist and be accessible by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the disk.
@@ -285,9 +402,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -303,14 +420,48 @@ spec:
- size
type: object
type: array
+ placementGroupName:
+ description: PlacementGroupName specifies the name of the placement
+ group in which to launch the instance.
+ type: string
+ placementGroupPartition:
+ description: |-
+ PlacementGroupPartition is the partition number within the placement group in which to launch the instance.
+ This value is only valid if the placement group, referred in `PlacementGroupName`, was created with
+ strategy set to partition.
+ format: int64
+ maximum: 7
+ minimum: 1
+ type: integer
+ privateDnsName:
+ description: PrivateDNSName is the options for the instance hostname.
+ properties:
+ enableResourceNameDnsAAAARecord:
+ description: EnableResourceNameDNSAAAARecord indicates whether to
+ respond to DNS queries for instance hostnames with DNS AAAA records.
+ type: boolean
+ enableResourceNameDnsARecord:
+ description: EnableResourceNameDNSARecord indicates whether to respond
+ to DNS queries for instance hostnames with DNS A records.
+ type: boolean
+ hostnameType:
+ description: The type of hostname to assign to an instance.
+ enum:
+ - ip-name
+ - resource-name
+ type: string
+ type: object
providerID:
description: ProviderID is the unique identifier as specified by the
cloud provider.
type: string
publicIP:
- description: 'PublicIP specifies whether the instance should get a public
- IP. Precedence for this setting is as follows: 1. This field if set
- 2. Cluster/flavor setting 3. Subnet default'
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Precedence for this setting is as follows:
+ 1. This field if set
+ 2. Cluster/flavor setting
+ 3. Subnet default
type: boolean
rootVolume:
description: RootVolume encapsulates the configuration options for the
@@ -324,10 +475,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt the
- volume. Can be either a KMS key ID or ARN. If Encrypted is set
- and this is omitted, the default AWS key will be used. The key
- must already exist and be accessible by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the disk.
@@ -335,9 +486,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever is
- greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -352,6 +503,13 @@ spec:
required:
- size
type: object
+ securityGroupOverrides:
+ additionalProperties:
+ type: string
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for the node.
+ This is optional - if not provided security groups from the cluster will be used.
+ type: object
spotMarketOptions:
description: SpotMarketOptions allows users to configure instances to
be run using AWS Spot instances.
@@ -367,13 +525,15 @@ spec:
SSH key name, or omitted (use the default SSH key name)
type: string
subnet:
- description: Subnet is a reference to the subnet to use for this instance.
- If not specified, the cluster subnet will be used.
+ description: |-
+ Subnet is a reference to the subnet to use for this instance. If not specified,
+ the cluster subnet will be used.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to identify
- a resource They are applied according to the rules defined by
- the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS resource.
properties:
@@ -404,10 +564,10 @@ spec:
- host
type: string
uncompressedUserData:
- description: UncompressedUserData specify whether the user data is gzip-compressed
- before it is sent to ec2 instance. cloud-init has built-in support
- for gzip-compressed user data user data stored in aws secret manager
- is always gzip-compressed.
+ description: |-
+ UncompressedUserData specify whether the user data is gzip-compressed before it is sent to ec2 instance.
+ cloud-init has built-in support for gzip-compressed user data
+ user data stored in aws secret manager is always gzip-compressed.
type: boolean
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
index 66b997998..40cacd243 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -71,23 +76,27 @@ spec:
create am AWSMachine from a template.
properties:
metadata:
- description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata'
+ description: |-
+ Standard object's metadata.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
properties:
annotations:
additionalProperties:
type: string
- description: 'Annotations is an unstructured key value map stored
- with a resource that may be set by external tools to store
- and retrieve arbitrary metadata. They are not queryable and
- should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: http://kubernetes.io/docs/user-guide/annotations
type: object
labels:
additionalProperties:
type: string
- description: 'Map of string keys and values that can be used
- to organize and categorize (scope and select) objects. May
- match selectors of replication controllers and services. More
- info: http://kubernetes.io/docs/user-guide/labels'
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: http://kubernetes.io/docs/user-guide/labels
type: object
type: object
spec:
@@ -95,23 +104,22 @@ spec:
the machine.
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instance.
- These security groups would be set in addition to any security
- groups defined at the cluster level or in the actuator. It
- is possible to specify either IDs of Filters. Using Filters
- will cause additional requests to AWS API and if tags change
- the attached security groups might change too.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instance. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator. It is possible to specify either IDs of Filters. Using Filters
+ will cause additional requests to AWS API and if tags change the attached security groups might change too.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters
- may be specified. Specifying more than one will result in
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used
- to identify a resource They are applied according to
- the rules defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an
AWS resource.
@@ -139,11 +147,10 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add
- to an instance, in addition to the ones added by default by
- the AWS provider. If both the AWSCluster and the AWSMachine
- specify the same tag name with different values, the AWSMachine's
- value takes precedence.
+ description: |-
+ AdditionalTags is an optional set of tags to add to an instance, in addition to the ones added by default by the
+ AWS provider. If both the AWSCluster and the AWSMachine specify the same tag name with different values, the
+ AWSMachine's value takes precedence.
type: object
ami:
description: AMI is the reference to the AMI from which to create
@@ -161,16 +168,16 @@ spec:
type: string
type: object
cloudInit:
- description: CloudInit defines options related to the bootstrapping
- systems where CloudInit is used.
+ description: |-
+ CloudInit defines options related to the bootstrapping systems where
+ CloudInit is used.
properties:
insecureSkipSecretsManager:
- description: InsecureSkipSecretsManager, when set to true
- will not use AWS Secrets Manager or AWS Systems Manager
- Parameter Store to ensure privacy of userdata. By default,
- a cloud-init boothook shell script is prepended to download
- the userdata from Secrets Manager and additionally delete
- the secret.
+ description: |-
+ InsecureSkipSecretsManager, when set to true will not use AWS Secrets Manager
+ or AWS Systems Manager Parameter Store to ensure privacy of userdata.
+ By default, a cloud-init boothook shell script is prepended to download
+ the userdata from Secrets Manager and additionally delete the secret.
type: boolean
secretCount:
description: SecretCount is the number of secrets used to
@@ -178,15 +185,16 @@ spec:
format: int32
type: integer
secretPrefix:
- description: SecretPrefix is the prefix for the secret name.
- This is stored temporarily, and deleted when the machine
- registers as a node against the workload cluster.
+ description: |-
+ SecretPrefix is the prefix for the secret name. This is stored
+ temporarily, and deleted when the machine registers as a node against
+ the workload cluster.
type: string
secureSecretsBackend:
- description: SecureSecretsBackend, when set to parameter-store
- will utilize the AWS Systems Manager Parameter Storage
- to distribute secrets. By default or with the value of
- secrets-manager, will use AWS Secrets Manager instead.
+ description: |-
+ SecureSecretsBackend, when set to parameter-store will utilize the AWS Systems Manager
+ Parameter Storage to distribute secrets. By default or with the value of secrets-manager,
+ will use AWS Secrets Manager instead.
enum:
- secrets-manager
- ssm-parameter-store
@@ -200,31 +208,120 @@ spec:
description: Ignition defined options related to the bootstrapping
systems where Ignition is used.
properties:
+ proxy:
+ description: |-
+ Proxy defines proxy settings for Ignition.
+ Only valid for Ignition versions 3.1 and above.
+ properties:
+ httpProxy:
+ description: |-
+ HTTPProxy is the HTTP proxy to use for Ignition.
+ A single URL that specifies the proxy server to use for HTTP and HTTPS requests,
+ unless overridden by the HTTPSProxy or NoProxy options.
+ type: string
+ httpsProxy:
+ description: |-
+ HTTPSProxy is the HTTPS proxy to use for Ignition.
+ A single URL that specifies the proxy server to use for HTTPS requests,
+ unless overridden by the NoProxy option.
+ type: string
+ noProxy:
+ description: |-
+ NoProxy is the list of domains to not proxy for Ignition.
+ Specifies a list of strings to hosts that should be excluded from proxying.
+
+
+ Each value is represented by:
+ - An IP address prefix (1.2.3.4)
+ - An IP address prefix in CIDR notation (1.2.3.4/8)
+ - A domain name
+ - A domain name matches that name and all subdomains
+ - A domain name with a leading . matches subdomains only
+ - A special DNS label (*), indicates that no proxying should be done
+
+
+ An IP address prefix and domain name can also include a literal port number (1.2.3.4:80).
+ items:
+ description: IgnitionNoProxy defines the list of domains
+ to not proxy for Ignition.
+ maxLength: 2048
+ type: string
+ maxItems: 64
+ type: array
+ type: object
+ storageType:
+ default: ClusterObjectStore
+ description: |-
+ StorageType defines how to store the boostrap user data for Ignition.
+ This can be used to instruct Ignition from where to fetch the user data to bootstrap an instance.
+
+
+ When omitted, the storage option will default to ClusterObjectStore.
+
+
+ When set to "ClusterObjectStore", if the capability is available and a Cluster ObjectStore configuration
+ is correctly provided in the Cluster object (under .spec.s3Bucket),
+ an object store will be used to store bootstrap user data.
+
+
+ When set to "UnencryptedUserData", EC2 Instance User Data will be used to store the machine bootstrap user data, unencrypted.
+ This option is considered less secure than others as user data may contain sensitive informations (keys, certificates, etc.)
+ and users with ec2:DescribeInstances permission or users running pods
+ that can access the ec2 metadata service have access to this sensitive information.
+ So this is only to be used at ones own risk, and only when other more secure options are not viable.
+ enum:
+ - ClusterObjectStore
+ - UnencryptedUserData
+ type: string
+ tls:
+ description: |-
+ TLS defines TLS settings for Ignition.
+ Only valid for Ignition versions 3.1 and above.
+ properties:
+ certificateAuthorities:
+ description: |-
+ CASources defines the list of certificate authorities to use for Ignition.
+ The value is the certificate bundle (in PEM format). The bundle can contain multiple concatenated certificates.
+ Supported schemes are http, https, tftp, s3, arn, gs, and `data` (RFC 2397) URL scheme.
+ items:
+ description: IgnitionCASource defines the source of
+ the certificate authority to use for Ignition.
+ maxLength: 65536
+ type: string
+ maxItems: 64
+ type: array
+ type: object
version:
default: "2.3"
description: Version defines which version of Ignition will
be used to generate bootstrap data.
enum:
- "2.3"
+ - "3.0"
+ - "3.1"
+ - "3.2"
+ - "3.3"
+ - "3.4"
type: string
type: object
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to
- look up the image for this machine It will be ignored if an
- explicit AMI is set. Supports substitutions for {{.BaseOS}}
- and {{.K8sVersion}} with the base OS and kubernetes version,
- respectively. The BaseOS will be the value in ImageLookupBaseOS
- or ubuntu (the default), and the kubernetes version as defined
- by the packages produced by kubernetes/release without v as
- a prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example,
- the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the
- ubuntu base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use
@@ -239,51 +336,64 @@ spec:
properties:
httpEndpoint:
default: enabled
- description: "Enables or disables the HTTP metadata endpoint
- on your instances. \n If you specify a value of disabled,
- you cannot access your instance metadata. \n Default:
- enabled"
+ description: |-
+ Enables or disables the HTTP metadata endpoint on your instances.
+
+
+ If you specify a value of disabled, you cannot access your instance metadata.
+
+
+ Default: enabled
enum:
- enabled
- disabled
type: string
httpPutResponseHopLimit:
default: 1
- description: "The desired HTTP PUT response hop limit for
- instance metadata requests. The larger the number, the
- further instance metadata requests can travel. \n Default:
- 1"
+ description: |-
+ The desired HTTP PUT response hop limit for instance metadata requests. The
+ larger the number, the further instance metadata requests can travel.
+
+
+ Default: 1
format: int64
maximum: 64
minimum: 1
type: integer
httpTokens:
- default: required
- description: "The state of token usage for your instance
- metadata requests. \n If the state is optional, you can
- choose to retrieve instance metadata with or without a
- session token on your request. If you retrieve the IAM
- role credentials without a token, the version 1.0 role
- credentials are returned. If you retrieve the IAM role
- credentials using a valid session token, the version 2.0
- role credentials are returned. \n If the state is required,
- you must send a session token with any instance metadata
- retrieval requests. In this state, retrieving the IAM
- role credentials always returns the version 2.0 credentials;
- the version 1.0 credentials are not available. \n Default:
- required"
+ default: optional
+ description: |-
+ The state of token usage for your instance metadata requests.
+
+
+ If the state is optional, you can choose to retrieve instance metadata with
+ or without a session token on your request. If you retrieve the IAM role
+ credentials without a token, the version 1.0 role credentials are returned.
+ If you retrieve the IAM role credentials using a valid session token, the
+ version 2.0 role credentials are returned.
+
+
+ If the state is required, you must send a session token with any instance
+ metadata retrieval requests. In this state, retrieving the IAM role credentials
+ always returns the version 2.0 credentials; the version 1.0 credentials are
+ not available.
+
+
+ Default: optional
enum:
- optional
- required
type: string
instanceMetadataTags:
default: disabled
- description: "Set to enabled to allow access to instance
- tags from the instance metadata. Set to disabled to turn
- off access to instance tags from the instance metadata.
- For more information, see Work with instance tags using
- the instance metadata (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
- \n Default: disabled"
+ description: |-
+ Set to enabled to allow access to instance tags from the instance metadata.
+ Set to disabled to turn off access to instance tags from the instance metadata.
+ For more information, see Work with instance tags using the instance metadata
+ (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
+
+
+ Default: disabled
enum:
- enabled
- disabled
@@ -295,8 +405,9 @@ spec:
minLength: 2
type: string
networkInterfaces:
- description: NetworkInterfaces is a list of ENIs to associate
- with the instance. A maximum of 2 may be specified.
+ description: |-
+ NetworkInterfaces is a list of ENIs to associate with the instance.
+ A maximum of 2 may be specified.
items:
type: string
maxItems: 2
@@ -316,11 +427,10 @@ spec:
encrypted or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will
- be used. The key must already exist and be accessible
- by the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for
@@ -328,9 +438,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage
- device. Must be greater than the image snapshot size
- or 8 (whichever is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -347,14 +457,51 @@ spec:
- size
type: object
type: array
+ placementGroupName:
+ description: PlacementGroupName specifies the name of the placement
+ group in which to launch the instance.
+ type: string
+ placementGroupPartition:
+ description: |-
+ PlacementGroupPartition is the partition number within the placement group in which to launch the instance.
+ This value is only valid if the placement group, referred in `PlacementGroupName`, was created with
+ strategy set to partition.
+ format: int64
+ maximum: 7
+ minimum: 1
+ type: integer
+ privateDnsName:
+ description: PrivateDNSName is the options for the instance
+ hostname.
+ properties:
+ enableResourceNameDnsAAAARecord:
+ description: EnableResourceNameDNSAAAARecord indicates whether
+ to respond to DNS queries for instance hostnames with
+ DNS AAAA records.
+ type: boolean
+ enableResourceNameDnsARecord:
+ description: EnableResourceNameDNSARecord indicates whether
+ to respond to DNS queries for instance hostnames with
+ DNS A records.
+ type: boolean
+ hostnameType:
+ description: The type of hostname to assign to an instance.
+ enum:
+ - ip-name
+ - resource-name
+ type: string
+ type: object
providerID:
description: ProviderID is the unique identifier as specified
by the cloud provider.
type: string
publicIP:
- description: 'PublicIP specifies whether the instance should
- get a public IP. Precedence for this setting is as follows:
- 1. This field if set 2. Cluster/flavor setting 3. Subnet default'
+ description: |-
+ PublicIP specifies whether the instance should get a public IP.
+ Precedence for this setting is as follows:
+ 1. This field if set
+ 2. Cluster/flavor setting
+ 3. Subnet default
type: boolean
rootVolume:
description: RootVolume encapsulates the configuration options
@@ -368,11 +515,10 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be
- used. The key must already exist and be accessible by
- the controller.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
+ The key must already exist and be accessible by the controller.
type: string
iops:
description: IOPS is the number of IOPS requested for the
@@ -380,9 +526,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage
- device. Must be greater than the image snapshot size or
- 8 (whichever is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -398,6 +544,13 @@ spec:
required:
- size
type: object
+ securityGroupOverrides:
+ additionalProperties:
+ type: string
+ description: |-
+ SecurityGroupOverrides is an optional set of security groups to use for the node.
+ This is optional - if not provided security groups from the cluster will be used.
+ type: object
spotMarketOptions:
description: SpotMarketOptions allows users to configure instances
to be run using AWS Spot instances.
@@ -414,14 +567,15 @@ spec:
SSH key name)
type: string
subnet:
- description: Subnet is a reference to the subnet to use for
- this instance. If not specified, the cluster subnet will be
- used.
+ description: |-
+ Subnet is a reference to the subnet to use for this instance. If not specified,
+ the cluster subnet will be used.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the
- rules defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -454,10 +608,10 @@ spec:
- host
type: string
uncompressedUserData:
- description: UncompressedUserData specify whether the user data
- is gzip-compressed before it is sent to ec2 instance. cloud-init
- has built-in support for gzip-compressed user data user data
- stored in aws secret manager is always gzip-compressed.
+ description: |-
+ UncompressedUserData specify whether the user data is gzip-compressed before it is sent to ec2 instance.
+ cloud-init has built-in support for gzip-compressed user data
+ user data stored in aws secret manager is always gzip-compressed.
type: boolean
required:
- instanceType
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
index 33dd05f21..3f0518600 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
@@ -20,14 +20,19 @@ spec:
description: AWSManagedCluster is the Schema for the awsmanagedclusters API
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
index 2ddfadfea..5fbab3be4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
@@ -21,14 +21,19 @@ spec:
API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -69,9 +74,9 @@ spec:
additionalTags:
additionalProperties:
type: string
- description: AdditionalTags is an optional set of tags to add to AWS
- resources managed by the AWS provider, in addition to the ones added
- by default.
+ description: |-
+ AdditionalTags is an optional set of tags to add to AWS resources managed by the AWS provider, in addition to the
+ ones added by default.
type: object
amiType:
default: AL2_x86_64
@@ -80,14 +85,25 @@ spec:
- AL2_x86_64
- AL2_x86_64_GPU
- AL2_ARM_64
+ - AL2023_x86_64_STANDARD
+ - AL2023_ARM_64_STANDARD
- CUSTOM
type: string
amiVersion:
- description: AMIVersion defines the desired AMI release version. If
- no version number is supplied then the latest version for the Kubernetes
- version will be used
+ description: |-
+ AMIVersion defines the desired AMI release version. If no version number
+ is supplied then the latest version for the Kubernetes version
+ will be used
minLength: 2
type: string
+ availabilityZoneSubnetType:
+ description: AvailabilityZoneSubnetType specifies which type of subnets
+ to use when an availability zone is specified.
+ enum:
+ - public
+ - private
+ - all
+ type: string
availabilityZones:
description: AvailabilityZones is an array of availability zones instances
can run in
@@ -95,26 +111,27 @@ spec:
type: string
type: array
awsLaunchTemplate:
- description: AWSLaunchTemplate specifies the launch template to use
- to create the managed node group. If AWSLaunchTemplate is specified,
- certain node group configuraions outside of launch template are prohibited
- (https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html).
+ description: |-
+ AWSLaunchTemplate specifies the launch template to use to create the managed node group.
+ If AWSLaunchTemplate is specified, certain node group configuraions outside of launch template
+ are prohibited (https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html).
properties:
additionalSecurityGroups:
- description: AdditionalSecurityGroups is an array of references
- to security groups that should be applied to the instances. These
- security groups would be set in addition to any security groups
- defined at the cluster level or in the actuator.
+ description: |-
+ AdditionalSecurityGroups is an array of references to security groups that should be applied to the
+ instances. These security groups would be set in addition to any security groups defined
+ at the cluster level or in the actuator.
items:
- description: AWSResourceReference is a reference to a specific
- AWS resource by ID or filters. Only one of ID or Filters may
- be specified. Specifying more than one will result in a validation
- error.
+ description: |-
+ AWSResourceReference is a reference to a specific AWS resource by ID or filters.
+ Only one of ID or Filters may be specified. Specifying more than one will result in
+ a validation error.
properties:
filters:
- description: 'Filters is a set of key/value pairs used to
- identify a resource They are applied according to the rules
- defined by the AWS API: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html'
+ description: |-
+ Filters is a set of key/value pairs used to identify a resource
+ They are applied according to the rules defined by the AWS API:
+ https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html
items:
description: Filter is a filter used to identify an AWS
resource.
@@ -154,31 +171,103 @@ spec:
type: string
type: object
iamInstanceProfile:
- description: The name or the Amazon Resource Name (ARN) of the instance
- profile associated with the IAM role for the instance. The instance
- profile contains the IAM role.
+ description: |-
+ The name or the Amazon Resource Name (ARN) of the instance profile associated
+ with the IAM role for the instance. The instance profile contains the IAM
+ role.
type: string
imageLookupBaseOS:
- description: ImageLookupBaseOS is the name of the base operating
- system to use for image lookup the AMI is not set.
+ description: |-
+ ImageLookupBaseOS is the name of the base operating system to use for
+ image lookup the AMI is not set.
type: string
imageLookupFormat:
- description: 'ImageLookupFormat is the AMI naming format to look
- up the image for this machine It will be ignored if an explicit
- AMI is set. Supports substitutions for {{.BaseOS}} and {{.K8sVersion}}
- with the base OS and kubernetes version, respectively. The BaseOS
- will be the value in ImageLookupBaseOS or ubuntu (the default),
- and the kubernetes version as defined by the packages produced
- by kubernetes/release without v as a prefix: 1.13.0, 1.12.5-mybuild.1,
- or 1.17.3. For example, the default image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-*
- will end up searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-*
- for a Machine that is targeting kubernetes v1.18.0 and the ubuntu
- base OS. See also: https://golang.org/pkg/text/template/'
+ description: |-
+ ImageLookupFormat is the AMI naming format to look up the image for this
+ machine It will be ignored if an explicit AMI is set. Supports
+ substitutions for {{.BaseOS}} and {{.K8sVersion}} with the base OS and
+ kubernetes version, respectively. The BaseOS will be the value in
+ ImageLookupBaseOS or ubuntu (the default), and the kubernetes version as
+ defined by the packages produced by kubernetes/release without v as a
+ prefix: 1.13.0, 1.12.5-mybuild.1, or 1.17.3. For example, the default
+ image format of capa-ami-{{.BaseOS}}-?{{.K8sVersion}}-* will end up
+ searching for AMIs that match the pattern capa-ami-ubuntu-?1.18.0-* for a
+ Machine that is targeting kubernetes v1.18.0 and the ubuntu base OS. See
+ also: https://golang.org/pkg/text/template/
type: string
imageLookupOrg:
description: ImageLookupOrg is the AWS Organization ID to use for
image lookup if AMI is not set.
type: string
+ instanceMetadataOptions:
+ description: InstanceMetadataOptions defines the behavior for applying
+ metadata to instances.
+ properties:
+ httpEndpoint:
+ default: enabled
+ description: |-
+ Enables or disables the HTTP metadata endpoint on your instances.
+
+
+ If you specify a value of disabled, you cannot access your instance metadata.
+
+
+ Default: enabled
+ enum:
+ - enabled
+ - disabled
+ type: string
+ httpPutResponseHopLimit:
+ default: 1
+ description: |-
+ The desired HTTP PUT response hop limit for instance metadata requests. The
+ larger the number, the further instance metadata requests can travel.
+
+
+ Default: 1
+ format: int64
+ maximum: 64
+ minimum: 1
+ type: integer
+ httpTokens:
+ default: optional
+ description: |-
+ The state of token usage for your instance metadata requests.
+
+
+ If the state is optional, you can choose to retrieve instance metadata with
+ or without a session token on your request. If you retrieve the IAM role
+ credentials without a token, the version 1.0 role credentials are returned.
+ If you retrieve the IAM role credentials using a valid session token, the
+ version 2.0 role credentials are returned.
+
+
+ If the state is required, you must send a session token with any instance
+ metadata retrieval requests. In this state, retrieving the IAM role credentials
+ always returns the version 2.0 credentials; the version 1.0 credentials are
+ not available.
+
+
+ Default: optional
+ enum:
+ - optional
+ - required
+ type: string
+ instanceMetadataTags:
+ default: disabled
+ description: |-
+ Set to enabled to allow access to instance tags from the instance metadata.
+ Set to disabled to turn off access to instance tags from the instance metadata.
+ For more information, see Work with instance tags using the instance metadata
+ (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS).
+
+
+ Default: disabled
+ enum:
+ - enabled
+ - disabled
+ type: string
+ type: object
instanceType:
description: 'InstanceType is the type of instance to create. Example:
m4.xlarge'
@@ -186,6 +275,26 @@ spec:
name:
description: The name of the launch template.
type: string
+ privateDnsName:
+ description: PrivateDNSName is the options for the instance hostname.
+ properties:
+ enableResourceNameDnsAAAARecord:
+ description: EnableResourceNameDNSAAAARecord indicates whether
+ to respond to DNS queries for instance hostnames with DNS
+ AAAA records.
+ type: boolean
+ enableResourceNameDnsARecord:
+ description: EnableResourceNameDNSARecord indicates whether
+ to respond to DNS queries for instance hostnames with DNS
+ A records.
+ type: boolean
+ hostnameType:
+ description: The type of hostname to assign to an instance.
+ enum:
+ - ip-name
+ - resource-name
+ type: string
+ type: object
rootVolume:
description: RootVolume encapsulates the configuration options for
the root volume
@@ -198,9 +307,9 @@ spec:
or not.
type: boolean
encryptionKey:
- description: EncryptionKey is the KMS key to use to encrypt
- the volume. Can be either a KMS key ID or ARN. If Encrypted
- is set and this is omitted, the default AWS key will be used.
+ description: |-
+ EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN.
+ If Encrypted is set and this is omitted, the default AWS key will be used.
The key must already exist and be accessible by the controller.
type: string
iops:
@@ -209,9 +318,9 @@ spec:
format: int64
type: integer
size:
- description: Size specifies size (in Gi) of the storage device.
- Must be greater than the image snapshot size or 8 (whichever
- is greater).
+ description: |-
+ Size specifies size (in Gi) of the storage device.
+ Must be greater than the image snapshot size or 8 (whichever is greater).
format: int64
minimum: 8
type: integer
@@ -237,16 +346,17 @@ spec:
type: string
type: object
sshKeyName:
- description: SSHKeyName is the name of the ssh key to attach to
- the instance. Valid values are empty string (do not use SSH keys),
- a valid SSH key name, or omitted (use the default SSH key name)
+ description: |-
+ SSHKeyName is the name of the ssh key to attach to the instance. Valid values are empty string
+ (do not use SSH keys), a valid SSH key name, or omitted (use the default SSH key name)
type: string
versionNumber:
- description: 'VersionNumber is the version of the launch template
- that is applied. Typically a new version is created when at least
- one of the following happens: 1) A new launch template spec is
- applied. 2) One or more parameters in an existing template is
- changed. 3) A new AMI is discovered.'
+ description: |-
+ VersionNumber is the version of the launch template that is applied.
+ Typically a new version is created when at least one of the following happens:
+ 1) A new launch template spec is applied.
+ 2) One or more parameters in an existing template is changed.
+ 3) A new AMI is discovered.
format: int64
type: integer
type: object
@@ -263,10 +373,11 @@ spec:
format: int32
type: integer
eksNodegroupName:
- description: EKSNodegroupName specifies the name of the nodegroup in
- AWS corresponding to this MachinePool. If you don't specify a name
- then a default name will be created based on the namespace and name
- of the managed machine pool.
+ description: |-
+ EKSNodegroupName specifies the name of the nodegroup in AWS
+ corresponding to this MachinePool. If you don't specify a name
+ then a default name will be created based on the namespace and
+ name of the managed machine pool.
type: string
instanceType:
description: InstanceType specifies the AWS instance type
@@ -277,7 +388,8 @@ spec:
description: Labels specifies labels for the Kubernetes node objects
type: object
providerIDList:
- description: ProviderIDList are the provider IDs of instances in the
+ description: |-
+ ProviderIDList are the provider IDs of instances in the
autoscaling group corresponding to the nodegroup represented by this
machine pool
items:
@@ -297,23 +409,25 @@ spec:
type: string
type: array
sshKeyName:
- description: SSHKeyName specifies which EC2 SSH key can be used
- to access machines. If left empty, the key from the control plane
- is used.
+ description: |-
+ SSHKeyName specifies which EC2 SSH key can be used to access machines.
+ If left empty, the key from the control plane is used.
type: string
type: object
roleAdditionalPolicies:
- description: RoleAdditionalPolicies allows you to attach additional
- polices to the node group role. You must enable the EKSAllowAddRoles
+ description: |-
+ RoleAdditionalPolicies allows you to attach additional polices to
+ the node group role. You must enable the EKSAllowAddRoles
feature flag to incorporate these into the created role.
items:
type: string
type: array
roleName:
- description: RoleName specifies the name of IAM role for the node group.
- If the role is pre-existing we will treat it as unmanaged and not
- delete it on deletion. If the EKSEnableIAM feature flag is true and
- no name is supplied then a role is created.
+ description: |-
+ RoleName specifies the name of IAM role for the node group.
+ If the role is pre-existing we will treat it as unmanaged
+ and not delete it on deletion. If the EKSEnableIAM feature
+ flag is true and no name is supplied then a role is created.
type: string
scaling:
description: Scaling specifies scaling for the ASG behind this pool
@@ -326,8 +440,9 @@ spec:
type: integer
type: object
subnetIDs:
- description: SubnetIDs specifies which subnets are used for the auto
- scaling group of this nodegroup
+ description: |-
+ SubnetIDs specifies which subnets are used for the
+ auto scaling group of this nodegroup
items:
type: string
type: array
@@ -357,20 +472,21 @@ spec:
type: object
type: array
updateConfig:
- description: UpdateConfig holds the optional config to control the behaviour
- of the update to the nodegroup.
+ description: |-
+ UpdateConfig holds the optional config to control the behaviour of the update
+ to the nodegroup.
properties:
maxUnavailable:
- description: MaxUnavailable is the maximum number of nodes unavailable
- at once during a version update. Nodes will be updated in parallel.
- The maximum number is 100.
+ description: |-
+ MaxUnavailable is the maximum number of nodes unavailable at once during a version update.
+ Nodes will be updated in parallel. The maximum number is 100.
maximum: 100
minimum: 1
type: integer
maxUnavailablePercentage:
- description: MaxUnavailablePercentage is the maximum percentage
- of nodes unavailable during a version update. This percentage
- of nodes will be updated in parallel, up to 100 nodes at once.
+ description: |-
+ MaxUnavailablePercentage is the maximum percentage of nodes unavailable during a version update. This
+ percentage of nodes will be updated in parallel, up to 100 nodes at once.
maximum: 100
minimum: 1
type: integer
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml
new file mode 100644
index 000000000..dbb017c22
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml
@@ -0,0 +1,89 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: ROSACluster
+ k8s.io/resource: rosaclusters
+ k8s.io/version: v1beta2
+ name: infrastructure.cluster.x-k8s.io-v1beta2-rosaclusters
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: ROSACluster
+ name: rosaclusters
+ scope: Namespaced
+ version: v1beta2
+ validation:
+ openAPIV3Schema:
+ description: ROSACluster is the Schema for the ROSAClusters API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ROSAClusterSpec defines the desired state of ROSACluster.
+ properties:
+ controlPlaneEndpoint:
+ description: ControlPlaneEndpoint represents the endpoint used to communicate
+ with the control plane.
+ properties:
+ host:
+ description: The hostname on which the API server is serving.
+ type: string
+ port:
+ description: The port on which the API server is serving.
+ format: int32
+ type: integer
+ required:
+ - host
+ - port
+ type: object
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml
new file mode 100644
index 000000000..61922113e
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml
@@ -0,0 +1,191 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: ROSAMachinePool
+ k8s.io/resource: rosamachinepools
+ k8s.io/version: v1beta2
+ name: infrastructure.cluster.x-k8s.io-v1beta2-rosamachinepools
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: ROSAMachinePool
+ name: rosamachinepools
+ scope: Namespaced
+ version: v1beta2
+ validation:
+ openAPIV3Schema:
+ description: ROSAMachinePool is the Schema for the rosamachinepools API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: RosaMachinePoolSpec defines the desired state of RosaMachinePool.
+ properties:
+ additionalSecurityGroups:
+ description: |-
+ AdditionalSecurityGroups is an optional set of security groups to associate
+ with all node instances of the machine pool.
+ items:
+ type: string
+ type: array
+ additionalTags:
+ additionalProperties:
+ type: string
+ description: AdditionalTags are user-defined tags to be added on the
+ underlying EC2 instances associated with this machine pool.
+ type: object
+ autoRepair:
+ default: true
+ description: |-
+ AutoRepair specifies whether health checks should be enabled for machines
+ in the NodePool. The default is true.
+ type: boolean
+ autoscaling:
+ description: |-
+ Autoscaling specifies auto scaling behaviour for this MachinePool.
+ required if Replicas is not configured
+ properties:
+ maxReplicas:
+ minimum: 1
+ type: integer
+ minReplicas:
+ minimum: 1
+ type: integer
+ type: object
+ availabilityZone:
+ description: |-
+ AvailabilityZone is an optinal field specifying the availability zone where instances of this machine pool should run
+ For Multi-AZ clusters, you can create a machine pool in a Single-AZ of your choice.
+ type: string
+ instanceType:
+ description: InstanceType specifies the AWS instance type
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: Labels specifies labels for the Kubernetes node objects
+ type: object
+ nodeDrainGracePeriod:
+ description: |-
+ NodeDrainGracePeriod is grace period for how long Pod Disruption Budget-protected workloads will be
+ respected during upgrades. After this grace period, any workloads protected by Pod Disruption
+ Budgets that have not been successfully drained from a node will be forcibly evicted.
+
+
+ Valid values are from 0 to 1 week(10080m|168h) .
+ 0 or empty value means that the MachinePool can be drained without any time limitation.
+ type: string
+ nodePoolName:
+ description: |-
+ NodePoolName specifies the name of the nodepool in Rosa
+ must be a valid DNS-1035 label, so it must consist of lower case alphanumeric and have a max length of 15 characters.
+ maxLength: 15
+ pattern: ^[a-z]([-a-z0-9]*[a-z0-9])?$
+ type: string
+ x-kubernetes-validations:
+ - message: nodepoolName is immutable
+ rule: self == oldSelf
+ providerIDList:
+ description: ProviderIDList contain a ProviderID for each machine instance
+ that's currently managed by this machine pool.
+ items:
+ type: string
+ type: array
+ subnet:
+ type: string
+ x-kubernetes-validations:
+ - message: subnet is immutable
+ rule: self == oldSelf
+ taints:
+ description: Taints specifies the taints to apply to the nodes of the
+ machine pool
+ items:
+ description: RosaTaint represents a taint to be applied to a node.
+ properties:
+ effect:
+ description: |-
+ The effect of the taint on pods that do not tolerate the taint.
+ Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
+ enum:
+ - NoSchedule
+ - PreferNoSchedule
+ - NoExecute
+ type: string
+ key:
+ description: The taint key to be applied to a node.
+ type: string
+ value:
+ description: The taint value corresponding to the taint key.
+ pattern: ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$
+ type: string
+ required:
+ - effect
+ - key
+ type: object
+ type: array
+ tuningConfigs:
+ description: |-
+ TuningConfigs specifies the names of the tuning configs to be applied to this MachinePool.
+ Tuning configs must already exist.
+ items:
+ type: string
+ type: array
+ version:
+ description: |-
+ Version specifies the OpenShift version of the nodes associated with this machinepool.
+ ROSAControlPlane version is used if not set.
+ type: string
+ required:
+ - instanceType
+ - nodePoolName
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
index b274532df..6c9f5df77 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
@@ -20,14 +20,19 @@ spec:
description: IPAddressClaim is the Schema for the ipaddressclaim API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -70,9 +75,10 @@ spec:
should be created.
properties:
apiGroup:
- description: APIGroup is the group for the resource being referenced.
- If APIGroup is not specified, the specified Kind must be in the
- core API group. For any other third-party types, APIGroup is required.
+ description: |-
+ APIGroup is the group for the resource being referenced.
+ If APIGroup is not specified, the specified Kind must be in the core API group.
+ For any other third-party types, APIGroup is required.
type: string
kind:
description: Kind is the type of resource being referenced
@@ -81,10 +87,10 @@ spec:
description: Name is the name of resource being referenced
type: string
required:
- - apiGroup
- kind
- name
type: object
+ x-kubernetes-map-type: atomic
required:
- poolRef
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
index 0209750dd..507ad422d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
@@ -20,14 +20,19 @@ spec:
description: IPAddress is the Schema for the ipaddress API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -73,10 +78,18 @@ spec:
created for.
properties:
name:
- description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
- TODO: Add other useful fields. apiVersion, kind, uid?'
+ default: ""
+ description: |-
+ Name of the referent.
+ This field is effectively required, but due to backwards compatibility is
+ allowed to be empty. Instances of this type with an empty value here are
+ almost certainly wrong.
+ TODO: Add other useful fields. apiVersion, kind, uid?
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
type: string
type: object
+ x-kubernetes-map-type: atomic
gateway:
description: Gateway is the network gateway of the network the address
is from.
@@ -86,9 +99,10 @@ spec:
was created from.
properties:
apiGroup:
- description: APIGroup is the group for the resource being referenced.
- If APIGroup is not specified, the specified Kind must be in the
- core API group. For any other third-party types, APIGroup is required.
+ description: |-
+ APIGroup is the group for the resource being referenced.
+ If APIGroup is not specified, the specified Kind must be in the core API group.
+ For any other third-party types, APIGroup is required.
type: string
kind:
description: Kind is the type of resource being referenced
@@ -97,17 +111,16 @@ spec:
description: Name is the name of resource being referenced
type: string
required:
- - apiGroup
- kind
- name
type: object
+ x-kubernetes-map-type: atomic
prefix:
description: Prefix is the prefix of the address.
type: integer
required:
- address
- claimRef
- - gateway
- poolRef
- prefix
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml
new file mode 100644
index 000000000..70d07b7bf
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml
@@ -0,0 +1,101 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ipam.cluster.x-k8s.io
+ k8s.io/kind: IPAddressClaim
+ k8s.io/resource: ipaddressclaims
+ k8s.io/version: v1beta1
+ name: ipam.cluster.x-k8s.io-v1beta1-ipaddressclaims
+spec:
+ resource:
+ group: ipam.cluster.x-k8s.io
+ kind: IPAddressClaim
+ name: ipaddressclaims
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: IPAddressClaim is the Schema for the ipaddressclaim API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: IPAddressClaimSpec is the desired state of an IPAddressClaim.
+ properties:
+ clusterName:
+ description: ClusterName is the name of the Cluster this object belongs
+ to.
+ type: string
+ poolRef:
+ description: PoolRef is a reference to the pool from which an IP address
+ should be created.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup is the group for the resource being referenced.
+ If APIGroup is not specified, the specified Kind must be in the core API group.
+ For any other third-party types, APIGroup is required.
+ type: string
+ kind:
+ description: Kind is the type of resource being referenced
+ type: string
+ name:
+ description: Name is the name of resource being referenced
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - poolRef
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml
new file mode 100644
index 000000000..ee34668a9
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml
@@ -0,0 +1,127 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ipam.cluster.x-k8s.io
+ k8s.io/kind: IPAddress
+ k8s.io/resource: ipaddresses
+ k8s.io/version: v1beta1
+ name: ipam.cluster.x-k8s.io-v1beta1-ipaddresses
+spec:
+ resource:
+ group: ipam.cluster.x-k8s.io
+ kind: IPAddress
+ name: ipaddresses
+ scope: Namespaced
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: IPAddress is the Schema for the ipaddress API.
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: IPAddressSpec is the desired state of an IPAddress.
+ properties:
+ address:
+ description: Address is the IP address.
+ type: string
+ claimRef:
+ description: ClaimRef is a reference to the claim this IPAddress was
+ created for.
+ properties:
+ name:
+ default: ""
+ description: |-
+ Name of the referent.
+ This field is effectively required, but due to backwards compatibility is
+ allowed to be empty. Instances of this type with an empty value here are
+ almost certainly wrong.
+ TODO: Add other useful fields. apiVersion, kind, uid?
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ gateway:
+ description: Gateway is the network gateway of the network the address
+ is from.
+ type: string
+ poolRef:
+ description: PoolRef is a reference to the pool that this IPAddress
+ was created from.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup is the group for the resource being referenced.
+ If APIGroup is not specified, the specified Kind must be in the core API group.
+ For any other third-party types, APIGroup is required.
+ type: string
+ kind:
+ description: Kind is the type of resource being referenced
+ type: string
+ name:
+ description: Name is the name of resource being referenced
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ description: Prefix is the prefix of the address.
+ type: integer
+ required:
+ - address
+ - claimRef
+ - poolRef
+ - prefix
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
index 0184e08f9..b0beeee0b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
@@ -62,12 +62,14 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -75,6 +77,13 @@ spec:
items:
type: string
type: array
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableSecurity:
type: boolean
enableSSL:
@@ -114,6 +123,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -147,6 +157,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -185,6 +196,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -236,16 +248,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -343,10 +366,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -361,6 +386,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -399,6 +425,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -411,12 +438,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -427,6 +458,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -434,6 +466,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -448,6 +481,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -465,6 +499,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -506,6 +541,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -523,6 +559,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -565,6 +602,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -595,6 +633,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -669,6 +708,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -699,6 +739,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -789,16 +830,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -854,6 +906,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -884,6 +937,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -946,6 +1000,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -957,6 +1014,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -966,6 +1025,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -978,6 +1040,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -987,10 +1050,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1003,10 +1068,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1021,6 +1088,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1059,6 +1127,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1071,12 +1140,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1087,6 +1160,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1094,6 +1168,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1108,6 +1183,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1125,6 +1201,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1166,6 +1243,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1183,6 +1261,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1225,6 +1304,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1255,6 +1335,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1329,6 +1410,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1359,6 +1441,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1449,16 +1532,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1514,6 +1608,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1544,6 +1639,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1608,6 +1704,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1619,6 +1718,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1628,6 +1729,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1641,8 +1745,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1657,6 +1764,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1668,10 +1776,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1686,6 +1796,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1724,6 +1835,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1736,12 +1848,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1752,6 +1868,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1759,6 +1876,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1773,6 +1891,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1790,6 +1909,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1831,6 +1951,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1848,6 +1969,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1890,6 +2012,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1920,6 +2043,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1994,6 +2118,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2024,6 +2149,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2114,16 +2240,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2179,6 +2316,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2209,6 +2347,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2271,6 +2410,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2282,6 +2424,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2291,6 +2435,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2319,6 +2466,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2343,6 +2499,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2381,6 +2546,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2393,6 +2559,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2483,6 +2650,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2492,6 +2660,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2509,6 +2678,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2537,7 +2707,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2552,6 +2724,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2607,6 +2780,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2669,6 +2843,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2728,11 +2903,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2765,10 +2942,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2785,6 +2964,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2854,11 +3034,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2935,11 +3117,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2974,7 +3158,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3020,6 +3206,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3038,7 +3225,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3058,6 +3247,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3089,6 +3279,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3096,6 +3287,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3118,6 +3310,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3156,6 +3349,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3170,6 +3364,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3270,13 +3465,6 @@ spec:
- alias
type: object
type: array
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectors.yaml
index e53fac8bf..b273e4424 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/connectors.yaml
@@ -60,6 +60,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -72,7 +73,7 @@ spec:
required:
- name
type: object
- terminationPolicy:
+ deletionPolicy:
enum:
- Halt
- Delete
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml
new file mode 100644
index 000000000..69b171836
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml
@@ -0,0 +1,3239 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: kafka.kubedb.com
+ k8s.io/kind: SchemaRegistry
+ k8s.io/resource: schemaregistries
+ k8s.io/version: v1alpha1
+ name: kafka.kubedb.com-v1alpha1-schemaregistries
+spec:
+ resource:
+ group: kafka.kubedb.com
+ kind: SchemaRegistry
+ name: schemaregistries
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
+ healthChecker:
+ default:
+ failureThreshold: 3
+ periodSeconds: 20
+ timeoutSeconds: 10
+ properties:
+ disableWriteCheck:
+ type: boolean
+ failureThreshold:
+ default: 1
+ format: int32
+ type: integer
+ periodSeconds:
+ default: 10
+ format: int32
+ type: integer
+ timeoutSeconds:
+ default: 10
+ format: int32
+ type: integer
+ type: object
+ kafkaRef:
+ properties:
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - name
+ type: object
+ podTemplate:
+ properties:
+ controller:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ spec:
+ properties:
+ activeDeadlineSeconds:
+ format: int64
+ type: integer
+ automountServiceAccountToken:
+ type: boolean
+ containers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ dnsConfig:
+ properties:
+ nameservers:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ options:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ searches:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ dnsPolicy:
+ type: string
+ enableServiceLinks:
+ type: boolean
+ ephemeralContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ targetContainerName:
+ type: string
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ hostAliases:
+ items:
+ properties:
+ hostnames:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ ip:
+ type: string
+ required:
+ - ip
+ type: object
+ type: array
+ hostIPC:
+ type: boolean
+ hostNetwork:
+ type: boolean
+ hostPID:
+ type: boolean
+ hostUsers:
+ type: boolean
+ imagePullSecrets:
+ items:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ initContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ nodeName:
+ type: string
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ os:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ overhead:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ preemptionPolicy:
+ type: string
+ priority:
+ format: int32
+ type: integer
+ priorityClassName:
+ type: string
+ readinessGates:
+ items:
+ properties:
+ conditionType:
+ type: string
+ required:
+ - conditionType
+ type: object
+ type: array
+ restartPolicy:
+ type: string
+ runtimeClassName:
+ type: string
+ schedulerName:
+ type: string
+ securityContext:
+ properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ fsGroup:
+ format: int64
+ type: integer
+ fsGroupChangePolicy:
+ type: string
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ supplementalGroups:
+ items:
+ format: int64
+ type: integer
+ type: array
+ x-kubernetes-list-type: atomic
+ sysctls:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ serviceAccountName:
+ type: string
+ setHostnameAsFQDN:
+ type: boolean
+ shareProcessNamespace:
+ type: boolean
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ volumes:
+ items:
+ properties:
+ awsElasticBlockStore:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ azureDisk:
+ properties:
+ cachingMode:
+ type: string
+ diskName:
+ type: string
+ diskURI:
+ type: string
+ fsType:
+ type: string
+ kind:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - diskName
+ - diskURI
+ type: object
+ azureFile:
+ properties:
+ readOnly:
+ type: boolean
+ secretName:
+ type: string
+ shareName:
+ type: string
+ required:
+ - secretName
+ - shareName
+ type: object
+ cephfs:
+ properties:
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ secretFile:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - monitors
+ type: object
+ cinder:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ configMap:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ csi:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ nodePublishSecretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ readOnly:
+ type: boolean
+ volumeAttributes:
+ additionalProperties:
+ type: string
+ type: object
+ required:
+ - driver
+ type: object
+ downwardAPI:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ emptyDir:
+ properties:
+ medium:
+ type: string
+ sizeLimit:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ ephemeral:
+ properties:
+ volumeClaimTemplate:
+ properties:
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ generateName:
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ name:
+ type: string
+ namespace:
+ type: string
+ ownerReferences:
+ items:
+ properties:
+ apiVersion:
+ type: string
+ blockOwnerDeletion:
+ type: boolean
+ controller:
+ type: boolean
+ kind:
+ type: string
+ name:
+ type: string
+ uid:
+ type: string
+ required:
+ - apiVersion
+ - kind
+ - name
+ - uid
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ spec:
+ properties:
+ accessModes:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ dataSource:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ dataSourceRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ selector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ storageClassName:
+ type: string
+ volumeAttributesClassName:
+ type: string
+ volumeMode:
+ type: string
+ volumeName:
+ type: string
+ type: object
+ required:
+ - spec
+ type: object
+ type: object
+ fc:
+ properties:
+ fsType:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ targetWWNs:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ wwids:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ flexVolume:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ options:
+ additionalProperties:
+ type: string
+ type: object
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - driver
+ type: object
+ flocker:
+ properties:
+ datasetName:
+ type: string
+ datasetUUID:
+ type: string
+ type: object
+ gcePersistentDisk:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ pdName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - pdName
+ type: object
+ glusterfs:
+ properties:
+ endpoints:
+ type: string
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - endpoints
+ - path
+ type: object
+ hostPath:
+ properties:
+ path:
+ type: string
+ type:
+ type: string
+ required:
+ - path
+ type: object
+ iscsi:
+ properties:
+ chapAuthDiscovery:
+ type: boolean
+ chapAuthSession:
+ type: boolean
+ fsType:
+ type: string
+ initiatorName:
+ type: string
+ iqn:
+ type: string
+ iscsiInterface:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ portals:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ targetPortal:
+ type: string
+ required:
+ - iqn
+ - lun
+ - targetPortal
+ type: object
+ name:
+ type: string
+ nfs:
+ properties:
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ server:
+ type: string
+ required:
+ - path
+ - server
+ type: object
+ persistentVolumeClaim:
+ properties:
+ claimName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - claimName
+ type: object
+ photonPersistentDisk:
+ properties:
+ fsType:
+ type: string
+ pdID:
+ type: string
+ required:
+ - pdID
+ type: object
+ portworxVolume:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ projected:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ sources:
+ items:
+ properties:
+ clusterTrustBundle:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ name:
+ type: string
+ optional:
+ type: boolean
+ path:
+ type: string
+ signerName:
+ type: string
+ required:
+ - path
+ type: object
+ configMap:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ downwardAPI:
+ properties:
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ secret:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ serviceAccountToken:
+ properties:
+ audience:
+ type: string
+ expirationSeconds:
+ format: int64
+ type: integer
+ path:
+ type: string
+ required:
+ - path
+ type: object
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ quobyte:
+ properties:
+ group:
+ type: string
+ readOnly:
+ type: boolean
+ registry:
+ type: string
+ tenant:
+ type: string
+ user:
+ type: string
+ volume:
+ type: string
+ required:
+ - registry
+ - volume
+ type: object
+ rbd:
+ properties:
+ fsType:
+ type: string
+ image:
+ type: string
+ keyring:
+ type: string
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ pool:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - image
+ - monitors
+ type: object
+ scaleIO:
+ properties:
+ fsType:
+ type: string
+ gateway:
+ type: string
+ protectionDomain:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ sslEnabled:
+ type: boolean
+ storageMode:
+ type: string
+ storagePool:
+ type: string
+ system:
+ type: string
+ volumeName:
+ type: string
+ required:
+ - gateway
+ - secretRef
+ - system
+ type: object
+ secret:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ optional:
+ type: boolean
+ secretName:
+ type: string
+ type: object
+ storageos:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeName:
+ type: string
+ volumeNamespace:
+ type: string
+ type: object
+ vsphereVolume:
+ properties:
+ fsType:
+ type: string
+ storagePolicyID:
+ type: string
+ storagePolicyName:
+ type: string
+ volumePath:
+ type: string
+ required:
+ - volumePath
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ type: object
+ type: object
+ replicas:
+ format: int32
+ type: integer
+ serviceTemplates:
+ items:
+ properties:
+ alias:
+ enum:
+ - primary
+ - standby
+ - stats
+ type: string
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ spec:
+ properties:
+ clusterIP:
+ type: string
+ externalIPs:
+ items:
+ type: string
+ type: array
+ externalTrafficPolicy:
+ type: string
+ healthCheckNodePort:
+ format: int32
+ type: integer
+ loadBalancerIP:
+ type: string
+ loadBalancerSourceRanges:
+ items:
+ type: string
+ type: array
+ ports:
+ items:
+ properties:
+ name:
+ type: string
+ nodePort:
+ format: int32
+ type: integer
+ port:
+ format: int32
+ type: integer
+ required:
+ - port
+ type: object
+ type: array
+ sessionAffinityConfig:
+ properties:
+ clientIP:
+ properties:
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ type: object
+ type:
+ type: string
+ type: object
+ required:
+ - alias
+ type: object
+ type: array
+ version:
+ type: string
+ required:
+ - version
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml
new file mode 100644
index 000000000..bcd0f7648
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml
@@ -0,0 +1,89 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.azure.com
+ k8s.io/kind: AKSNodeClass
+ k8s.io/resource: aksnodeclasses
+ k8s.io/version: v1alpha2
+ name: karpenter.azure.com-v1alpha2-aksnodeclasses
+spec:
+ resource:
+ group: karpenter.azure.com
+ kind: AKSNodeClass
+ name: aksnodeclasses
+ scope: Cluster
+ version: v1alpha2
+ validation:
+ openAPIV3Schema:
+ description: AKSNodeClass is the Schema for the AKSNodeClass API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: |-
+ AKSNodeClassSpec is the top level specification for the AKS Karpenter Provider.
+ This will contain configuration necessary to launch instances in AKS.
+ properties:
+ imageFamily:
+ default: Ubuntu2204
+ description: ImageFamily is the image family that instances use.
+ enum:
+ - Ubuntu2204
+ - AzureLinux
+ type: string
+ imageVersion:
+ description: ImageVersion is the image version that instances use.
+ type: string
+ osDiskSizeGB:
+ default: 128
+ description: osDiskSizeGB is the size of the OS disk in GB.
+ format: int32
+ minimum: 100
+ type: integer
+ tags:
+ additionalProperties:
+ type: string
+ description: Tags to be applied on Azure resources like instances.
+ type: object
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml
new file mode 100644
index 000000000..bc93b7311
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml
@@ -0,0 +1,475 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.k8s.aws
+ k8s.io/kind: EC2NodeClass
+ k8s.io/resource: ec2nodeclasses
+ k8s.io/version: v1beta1
+ name: karpenter.k8s.aws-v1beta1-ec2nodeclasses
+spec:
+ resource:
+ group: karpenter.k8s.aws
+ kind: EC2NodeClass
+ name: ec2nodeclasses
+ scope: Cluster
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: EC2NodeClass is the Schema for the EC2NodeClass API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: |-
+ EC2NodeClassSpec is the top level specification for the AWS Karpenter Provider.
+ This will contain configuration necessary to launch instances in AWS.
+ properties:
+ amiFamily:
+ description: AMIFamily is the AMI family that instances use.
+ enum:
+ - AL2
+ - AL2023
+ - Bottlerocket
+ - Ubuntu
+ - Custom
+ - Windows2019
+ - Windows2022
+ type: string
+ amiSelectorTerms:
+ description: AMISelectorTerms is a list of or ami selector terms. The
+ terms are ORed.
+ items:
+ description: |-
+ AMISelectorTerm defines selection logic for an ami used by Karpenter to launch nodes.
+ If multiple fields are used for selection, the requirements are ANDed.
+ properties:
+ id:
+ description: ID is the ami id in EC2
+ pattern: ami-[0-9a-z]+
+ type: string
+ name:
+ description: |-
+ Name is the ami name in EC2.
+ This value is the name field, which is different from the name tag.
+ type: string
+ owner:
+ description: |-
+ Owner is the owner for the ami.
+ You can specify a combination of AWS account IDs, "self", "amazon", and "aws-marketplace"
+ type: string
+ tags:
+ additionalProperties:
+ type: string
+ description: |-
+ Tags is a map of key/value tags used to select subnets
+ Specifying '*' for a value selects all values for a given tag key.
+ maxProperties: 20
+ type: object
+ x-kubernetes-validations:
+ - message: empty tag keys or values aren't supported
+ rule: self.all(k, k != '' && self[k] != '')
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: expected at least one, got none, ['tags', 'id', 'name']
+ rule: self.all(x, has(x.tags) || has(x.id) || has(x.name))
+ - message: '''id'' is mutually exclusive, cannot be set with a combination
+ of other fields in amiSelectorTerms'
+ rule: '!self.all(x, has(x.id) && (has(x.tags) || has(x.name) || has(x.owner)))'
+ associatePublicIPAddress:
+ description: AssociatePublicIPAddress controls if public IP addresses
+ are assigned to instances that are launched with the nodeclass.
+ type: boolean
+ blockDeviceMappings:
+ description: BlockDeviceMappings to be applied to provisioned nodes.
+ items:
+ properties:
+ deviceName:
+ description: The device name (for example, /dev/sdh or xvdh).
+ type: string
+ ebs:
+ description: EBS contains parameters used to automatically set
+ up EBS volumes when an instance is launched.
+ properties:
+ deleteOnTermination:
+ description: DeleteOnTermination indicates whether the EBS
+ volume is deleted on instance termination.
+ type: boolean
+ encrypted:
+ description: |-
+ Encrypted indicates whether the EBS volume is encrypted. Encrypted volumes can only
+ be attached to instances that support Amazon EBS encryption. If you are creating
+ a volume from a snapshot, you can't specify an encryption value.
+ type: boolean
+ iops:
+ description: |-
+ IOPS is the number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes,
+ this represents the number of IOPS that are provisioned for the volume. For
+ gp2 volumes, this represents the baseline performance of the volume and the
+ rate at which the volume accumulates I/O credits for bursting.
+
+
+ The following are the supported values for each volume type:
+
+
+ * gp3: 3,000-16,000 IOPS
+
+
+ * io1: 100-64,000 IOPS
+
+
+ * io2: 100-64,000 IOPS
+
+
+ For io1 and io2 volumes, we guarantee 64,000 IOPS only for Instances built
+ on the Nitro System (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances).
+ Other instance families guarantee performance up to 32,000 IOPS.
+
+
+ This parameter is supported for io1, io2, and gp3 volumes only. This parameter
+ is not supported for gp2, st1, sc1, or standard volumes.
+ format: int64
+ type: integer
+ kmsKeyID:
+ description: KMSKeyID (ARN) of the symmetric Key Management
+ Service (KMS) CMK used for encryption.
+ type: string
+ snapshotID:
+ description: SnapshotID is the ID of an EBS snapshot
+ type: string
+ throughput:
+ description: |-
+ Throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.
+ Valid Range: Minimum value of 125. Maximum value of 1000.
+ format: int64
+ type: integer
+ volumeSize:
+ description: |-
+ VolumeSize in `Gi`, `G`, `Ti`, or `T`. You must specify either a snapshot ID or
+ a volume size. The following are the supported volumes sizes for each volume
+ type:
+
+
+ * gp2 and gp3: 1-16,384
+
+
+ * io1 and io2: 4-16,384
+
+
+ * st1 and sc1: 125-16,384
+
+
+ * standard: 1-1,024
+ pattern: ^((?:[1-9][0-9]{0,3}|[1-4][0-9]{4}|[5][0-8][0-9]{3}|59000)Gi|(?:[1-9][0-9]{0,3}|[1-5][0-9]{4}|[6][0-3][0-9]{3}|64000)G|([1-9]||[1-5][0-7]|58)Ti|([1-9]||[1-5][0-9]|6[0-3]|64)T)$
+ type: string
+ volumeType:
+ description: |-
+ VolumeType of the block device.
+ For more information, see Amazon EBS volume types (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
+ in the Amazon Elastic Compute Cloud User Guide.
+ enum:
+ - standard
+ - io1
+ - io2
+ - gp2
+ - sc1
+ - st1
+ - gp3
+ type: string
+ type: object
+ x-kubernetes-validations:
+ - message: snapshotID or volumeSize must be defined
+ rule: has(self.snapshotID) || has(self.volumeSize)
+ rootVolume:
+ description: |-
+ RootVolume is a flag indicating if this device is mounted as kubelet root dir. You can
+ configure at most one root volume in BlockDeviceMappings.
+ type: boolean
+ type: object
+ maxItems: 50
+ type: array
+ x-kubernetes-validations:
+ - message: must have only one blockDeviceMappings with rootVolume
+ rule: self.filter(x, has(x.rootVolume)?x.rootVolume==true:false).size()
+ <= 1
+ context:
+ description: |-
+ Context is a Reserved field in EC2 APIs
+ https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet.html
+ type: string
+ detailedMonitoring:
+ description: DetailedMonitoring controls if detailed monitoring is enabled
+ for instances that are launched
+ type: boolean
+ instanceProfile:
+ description: |-
+ InstanceProfile is the AWS entity that instances use.
+ This field is mutually exclusive from role.
+ The instance profile should already have a role assigned to it that Karpenter
+ has PassRole permission on for instance launch using this instanceProfile to succeed.
+ type: string
+ x-kubernetes-validations:
+ - message: instanceProfile cannot be empty
+ rule: self != ''
+ instanceStorePolicy:
+ description: InstanceStorePolicy specifies how to handle instance-store
+ disks.
+ enum:
+ - RAID0
+ type: string
+ metadataOptions:
+ default:
+ httpEndpoint: enabled
+ httpProtocolIPv6: disabled
+ httpPutResponseHopLimit: 2
+ httpTokens: required
+ description: |-
+ MetadataOptions for the generated launch template of provisioned nodes.
+
+
+ This specifies the exposure of the Instance Metadata Service to
+ provisioned EC2 nodes. For more information,
+ see Instance Metadata and User Data
+ (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html)
+ in the Amazon Elastic Compute Cloud User Guide.
+
+
+ Refer to recommended, security best practices
+ (https://aws.github.io/aws-eks-best-practices/security/docs/iam/#restrict-access-to-the-instance-profile-assigned-to-the-worker-node)
+ for limiting exposure of Instance Metadata and User Data to pods.
+ If omitted, defaults to httpEndpoint enabled, with httpProtocolIPv6
+ disabled, with httpPutResponseLimit of 2, and with httpTokens
+ required.
+ properties:
+ httpEndpoint:
+ default: enabled
+ description: |-
+ HTTPEndpoint enables or disables the HTTP metadata endpoint on provisioned
+ nodes. If metadata options is non-nil, but this parameter is not specified,
+ the default state is "enabled".
+
+
+ If you specify a value of "disabled", instance metadata will not be accessible
+ on the node.
+ enum:
+ - enabled
+ - disabled
+ type: string
+ httpProtocolIPv6:
+ default: disabled
+ description: |-
+ HTTPProtocolIPv6 enables or disables the IPv6 endpoint for the instance metadata
+ service on provisioned nodes. If metadata options is non-nil, but this parameter
+ is not specified, the default state is "disabled".
+ enum:
+ - enabled
+ - disabled
+ type: string
+ httpPutResponseHopLimit:
+ default: 2
+ description: |-
+ HTTPPutResponseHopLimit is the desired HTTP PUT response hop limit for
+ instance metadata requests. The larger the number, the further instance
+ metadata requests can travel. Possible values are integers from 1 to 64.
+ If metadata options is non-nil, but this parameter is not specified, the
+ default value is 2.
+ format: int64
+ maximum: 64
+ minimum: 1
+ type: integer
+ httpTokens:
+ default: required
+ description: |-
+ HTTPTokens determines the state of token usage for instance metadata
+ requests. If metadata options is non-nil, but this parameter is not
+ specified, the default state is "required".
+
+
+ If the state is optional, one can choose to retrieve instance metadata with
+ or without a signed token header on the request. If one retrieves the IAM
+ role credentials without a token, the version 1.0 role credentials are
+ returned. If one retrieves the IAM role credentials using a valid signed
+ token, the version 2.0 role credentials are returned.
+
+
+ If the state is "required", one must send a signed token header with any
+ instance metadata retrieval requests. In this state, retrieving the IAM
+ role credentials always returns the version 2.0 credentials; the version
+ 1.0 credentials are not available.
+ enum:
+ - required
+ - optional
+ type: string
+ type: object
+ role:
+ description: |-
+ Role is the AWS identity that nodes use. This field is immutable.
+ This field is mutually exclusive from instanceProfile.
+ Marking this field as immutable avoids concerns around terminating managed instance profiles from running instances.
+ This field may be made mutable in the future, assuming the correct garbage collection and drift handling is implemented
+ for the old instance profiles on an update.
+ type: string
+ x-kubernetes-validations:
+ - message: role cannot be empty
+ rule: self != ''
+ - message: immutable field changed
+ rule: self == oldSelf
+ securityGroupSelectorTerms:
+ description: SecurityGroupSelectorTerms is a list of or security group
+ selector terms. The terms are ORed.
+ items:
+ description: |-
+ SecurityGroupSelectorTerm defines selection logic for a security group used by Karpenter to launch nodes.
+ If multiple fields are used for selection, the requirements are ANDed.
+ properties:
+ id:
+ description: ID is the security group id in EC2
+ pattern: sg-[0-9a-z]+
+ type: string
+ name:
+ description: |-
+ Name is the security group name in EC2.
+ This value is the name field, which is different from the name tag.
+ type: string
+ tags:
+ additionalProperties:
+ type: string
+ description: |-
+ Tags is a map of key/value tags used to select subnets
+ Specifying '*' for a value selects all values for a given tag key.
+ maxProperties: 20
+ type: object
+ x-kubernetes-validations:
+ - message: empty tag keys or values aren't supported
+ rule: self.all(k, k != '' && self[k] != '')
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: securityGroupSelectorTerms cannot be empty
+ rule: self.size() != 0
+ - message: expected at least one, got none, ['tags', 'id', 'name']
+ rule: self.all(x, has(x.tags) || has(x.id) || has(x.name))
+ - message: '''id'' is mutually exclusive, cannot be set with a combination
+ of other fields in securityGroupSelectorTerms'
+ rule: '!self.all(x, has(x.id) && (has(x.tags) || has(x.name)))'
+ - message: '''name'' is mutually exclusive, cannot be set with a combination
+ of other fields in securityGroupSelectorTerms'
+ rule: '!self.all(x, has(x.name) && (has(x.tags) || has(x.id)))'
+ subnetSelectorTerms:
+ description: SubnetSelectorTerms is a list of or subnet selector terms.
+ The terms are ORed.
+ items:
+ description: |-
+ SubnetSelectorTerm defines selection logic for a subnet used by Karpenter to launch nodes.
+ If multiple fields are used for selection, the requirements are ANDed.
+ properties:
+ id:
+ description: ID is the subnet id in EC2
+ pattern: subnet-[0-9a-z]+
+ type: string
+ tags:
+ additionalProperties:
+ type: string
+ description: |-
+ Tags is a map of key/value tags used to select subnets
+ Specifying '*' for a value selects all values for a given tag key.
+ maxProperties: 20
+ type: object
+ x-kubernetes-validations:
+ - message: empty tag keys or values aren't supported
+ rule: self.all(k, k != '' && self[k] != '')
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: subnetSelectorTerms cannot be empty
+ rule: self.size() != 0
+ - message: expected at least one, got none, ['tags', 'id']
+ rule: self.all(x, has(x.tags) || has(x.id))
+ - message: '''id'' is mutually exclusive, cannot be set with a combination
+ of other fields in subnetSelectorTerms'
+ rule: '!self.all(x, has(x.id) && has(x.tags))'
+ tags:
+ additionalProperties:
+ type: string
+ description: Tags to be applied on ec2 resources like instances and
+ launch templates.
+ type: object
+ x-kubernetes-validations:
+ - message: empty tag keys aren't supported
+ rule: self.all(k, k != '')
+ - message: tag contains a restricted tag matching kubernetes.io/cluster/
+ rule: self.all(k, !k.startsWith('kubernetes.io/cluster') )
+ - message: tag contains a restricted tag matching karpenter.sh/nodepool
+ rule: self.all(k, k != 'karpenter.sh/nodepool')
+ - message: tag contains a restricted tag matching karpenter.sh/managed-by
+ rule: self.all(k, k !='karpenter.sh/managed-by')
+ - message: tag contains a restricted tag matching karpenter.sh/nodeclaim
+ rule: self.all(k, k !='karpenter.sh/nodeclaim')
+ - message: tag contains a restricted tag matching karpenter.k8s.aws/ec2nodeclass
+ rule: self.all(k, k !='karpenter.k8s.aws/ec2nodeclass')
+ userData:
+ description: |-
+ UserData to be applied to the provisioned nodes.
+ It must be in the appropriate format based on the AMIFamily in use. Karpenter will merge certain fields into
+ this UserData to ensure nodes are being provisioned with the correct configuration.
+ type: string
+ required:
+ - amiFamily
+ - securityGroupSelectorTerms
+ - subnetSelectorTerms
+ type: object
+ x-kubernetes-validations:
+ - message: amiSelectorTerms is required when amiFamily == 'Custom'
+ rule: 'self.amiFamily == ''Custom'' ? self.amiSelectorTerms.size() !=
+ 0 : true'
+ - message: must specify exactly one of ['role', 'instanceProfile']
+ rule: (has(self.role) && !has(self.instanceProfile)) || (!has(self.role)
+ && has(self.instanceProfile))
+ - message: changing from 'instanceProfile' to 'role' is not supported. You
+ must delete and recreate this node class if you want to change this.
+ rule: (has(oldSelf.role) && has(self.role)) || (has(oldSelf.instanceProfile)
+ && has(self.instanceProfile))
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodeclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodeclaims.yaml
new file mode 100644
index 000000000..fa21e9612
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodeclaims.yaml
@@ -0,0 +1,391 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.sh
+ k8s.io/kind: NodeClaim
+ k8s.io/resource: nodeclaims
+ k8s.io/version: v1beta1
+ name: karpenter.sh-v1beta1-nodeclaims
+spec:
+ resource:
+ group: karpenter.sh
+ kind: NodeClaim
+ name: nodeclaims
+ scope: Cluster
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: NodeClaim is the Schema for the NodeClaims API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: NodeClaimSpec describes the desired state of the NodeClaim
+ properties:
+ kubelet:
+ description: |-
+ Kubelet defines args to be used when configuring kubelet on provisioned nodes.
+ They are a subset of the upstream types, recognizing not all options may be supported.
+ Wherever possible, the types and names should reflect the upstream kubelet types.
+ properties:
+ clusterDNS:
+ description: |-
+ clusterDNS is a list of IP addresses for the cluster DNS server.
+ Note that not all providers may use all addresses.
+ items:
+ type: string
+ type: array
+ cpuCFSQuota:
+ description: CPUCFSQuota enables CPU CFS quota enforcement for containers
+ that specify CPU limits.
+ type: boolean
+ evictionHard:
+ additionalProperties:
+ pattern: ^((\d{1,2}(\.\d{1,2})?|100(\.0{1,2})?)%||(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?)$
+ type: string
+ description: EvictionHard is the map of signal names to quantities
+ that define hard eviction thresholds
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionHard are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ evictionMaxPodGracePeriod:
+ description: |-
+ EvictionMaxPodGracePeriod is the maximum allowed grace period (in seconds) to use when terminating pods in
+ response to soft eviction thresholds being met.
+ format: int32
+ type: integer
+ evictionSoft:
+ additionalProperties:
+ pattern: ^((\d{1,2}(\.\d{1,2})?|100(\.0{1,2})?)%||(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?)$
+ type: string
+ description: EvictionSoft is the map of signal names to quantities
+ that define soft eviction thresholds
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionSoft are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ evictionSoftGracePeriod:
+ additionalProperties:
+ type: string
+ description: EvictionSoftGracePeriod is the map of signal names
+ to quantities that define grace periods for each eviction signal
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionSoftGracePeriod are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ imageGCHighThresholdPercent:
+ description: |-
+ ImageGCHighThresholdPercent is the percent of disk usage after which image
+ garbage collection is always run. The percent is calculated by dividing this
+ field value by 100, so this field must be between 0 and 100, inclusive.
+ When specified, the value must be greater than ImageGCLowThresholdPercent.
+ format: int32
+ maximum: 100
+ minimum: 0
+ type: integer
+ imageGCLowThresholdPercent:
+ description: |-
+ ImageGCLowThresholdPercent is the percent of disk usage before which image
+ garbage collection is never run. Lowest disk usage to garbage collect to.
+ The percent is calculated by dividing this field value by 100,
+ so the field value must be between 0 and 100, inclusive.
+ When specified, the value must be less than imageGCHighThresholdPercent
+ format: int32
+ maximum: 100
+ minimum: 0
+ type: integer
+ kubeReserved:
+ additionalProperties:
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ type: string
+ description: KubeReserved contains resources reserved for Kubernetes
+ system components.
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for kubeReserved are ['cpu','memory','ephemeral-storage','pid']
+ rule: self.all(x, x=='cpu' || x=='memory' || x=='ephemeral-storage'
+ || x=='pid')
+ - message: kubeReserved value cannot be a negative resource quantity
+ rule: self.all(x, !self[x].startsWith('-'))
+ maxPods:
+ description: |-
+ MaxPods is an override for the maximum number of pods that can run on
+ a worker node instance.
+ format: int32
+ minimum: 0
+ type: integer
+ podsPerCore:
+ description: |-
+ PodsPerCore is an override for the number of pods that can run on a worker node
+ instance based on the number of cpu cores. This value cannot exceed MaxPods, so, if
+ MaxPods is a lower value, that value will be used.
+ format: int32
+ minimum: 0
+ type: integer
+ systemReserved:
+ additionalProperties:
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ type: string
+ description: SystemReserved contains resources reserved for OS system
+ daemons and kernel memory.
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for systemReserved are ['cpu','memory','ephemeral-storage','pid']
+ rule: self.all(x, x=='cpu' || x=='memory' || x=='ephemeral-storage'
+ || x=='pid')
+ - message: systemReserved value cannot be a negative resource quantity
+ rule: self.all(x, !self[x].startsWith('-'))
+ type: object
+ x-kubernetes-validations:
+ - message: imageGCHighThresholdPercent must be greater than imageGCLowThresholdPercent
+ rule: 'has(self.imageGCHighThresholdPercent) && has(self.imageGCLowThresholdPercent)
+ ? self.imageGCHighThresholdPercent > self.imageGCLowThresholdPercent :
+ true'
+ - message: evictionSoft OwnerKey does not have a matching evictionSoftGracePeriod
+ rule: has(self.evictionSoft) ? self.evictionSoft.all(e, (e in self.evictionSoftGracePeriod)):true
+ - message: evictionSoftGracePeriod OwnerKey does not have a matching
+ evictionSoft
+ rule: has(self.evictionSoftGracePeriod) ? self.evictionSoftGracePeriod.all(e,
+ (e in self.evictionSoft)):true
+ nodeClassRef:
+ description: NodeClassRef is a reference to an object that defines provider
+ specific configuration
+ properties:
+ apiVersion:
+ description: API version of the referent
+ type: string
+ kind:
+ description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"'
+ type: string
+ name:
+ description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ required:
+ - name
+ type: object
+ requirements:
+ description: Requirements are layered with GetLabels and applied to
+ every node.
+ items:
+ description: |-
+ A node selector requirement with min values is a selector that contains values, a key, an operator that relates the key and values
+ and minValues that represent the requirement to have at least that many values.
+ properties:
+ key:
+ description: The label key that the selector applies to.
+ maxLength: 316
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ x-kubernetes-validations:
+ - message: label domain "kubernetes.io" is restricted
+ rule: self in ["beta.kubernetes.io/instance-type", "failure-domain.beta.kubernetes.io/region",
+ "beta.kubernetes.io/os", "beta.kubernetes.io/arch", "failure-domain.beta.kubernetes.io/zone",
+ "topology.kubernetes.io/zone", "topology.kubernetes.io/region",
+ "node.kubernetes.io/instance-type", "kubernetes.io/arch",
+ "kubernetes.io/os", "node.kubernetes.io/windows-build"] ||
+ self.find("^([^/]+)").endsWith("node.kubernetes.io") || self.find("^([^/]+)").endsWith("node-restriction.kubernetes.io")
+ || !self.find("^([^/]+)").endsWith("kubernetes.io")
+ - message: label domain "k8s.io" is restricted
+ rule: self.find("^([^/]+)").endsWith("kops.k8s.io") || !self.find("^([^/]+)").endsWith("k8s.io")
+ - message: label domain "karpenter.sh" is restricted
+ rule: self in ["karpenter.sh/capacity-type", "karpenter.sh/nodepool"]
+ || !self.find("^([^/]+)").endsWith("karpenter.sh")
+ - message: label "kubernetes.io/hostname" is restricted
+ rule: self != "kubernetes.io/hostname"
+ - message: label domain "karpenter.azure.com" is restricted
+ rule: self in [ "karpenter.azure.com/sku-name", "karpenter.azure.com/sku-family",
+ "karpenter.azure.com/sku-version", "karpenter.azure.com/sku-cpu",
+ "karpenter.azure.com/sku-memory", "karpenter.azure.com/sku-accelerator",
+ "karpenter.azure.com/sku-networking-accelerated", "karpenter.azure.com/sku-storage-premium-capable",
+ "karpenter.azure.com/sku-storage-ephemeralos-maxsize", "karpenter.azure.com/sku-encryptionathost-capable",
+ "karpenter.azure.com/sku-gpu-name", "karpenter.azure.com/sku-gpu-manufacturer",
+ "karpenter.azure.com/sku-gpu-count" ] || !self.find("^([^/]+)").endsWith("karpenter.azure.com")
+ minValues:
+ description: |-
+ This field is ALPHA and can be dropped or replaced at any time
+ MinValues is the minimum number of unique values required to define the flexibility of the specific requirement.
+ maximum: 50
+ minimum: 1
+ type: integer
+ operator:
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
+ enum:
+ - In
+ - NotIn
+ - Exists
+ - DoesNotExist
+ - Gt
+ - Lt
+ type: string
+ values:
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
+ items:
+ type: string
+ maxLength: 63
+ pattern: ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: requirements with operator 'In' must have a value defined
+ rule: 'self.all(x, x.operator == ''In'' ? x.values.size() != 0 : true)'
+ - message: requirements operator 'Gt' or 'Lt' must have a single positive
+ integer value
+ rule: 'self.all(x, (x.operator == ''Gt'' || x.operator == ''Lt'')
+ ? (x.values.size() == 1 && int(x.values[0]) >= 0) : true)'
+ - message: requirements with 'minValues' must have at least that many
+ values specified in the 'values' field
+ rule: 'self.all(x, (x.operator == ''In'' && has(x.minValues)) ? x.values.size()
+ >= x.minValues : true)'
+ resources:
+ description: Resources models the resource requirements for the NodeClaim
+ to launch
+ properties:
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Requests describes the minimum required resources for
+ the NodeClaim to launch
+ type: object
+ type: object
+ startupTaints:
+ description: |-
+ StartupTaints are taints that are applied to nodes upon startup which are expected to be removed automatically
+ within a short period of time, typically by a DaemonSet that tolerates the taint. These are commonly used by
+ daemonsets to allow initialization and enforce startup ordering. StartupTaints are ignored for provisioning
+ purposes in that pods are not required to tolerate a StartupTaint in order to have nodes provisioned for them.
+ items:
+ description: |-
+ The node this Taint is attached to has the "effect" on
+ any pod that does not tolerate the Taint.
+ properties:
+ effect:
+ description: |-
+ Required. The effect of the taint on pods
+ that do not tolerate the taint.
+ Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
+ enum:
+ - NoSchedule
+ - PreferNoSchedule
+ - NoExecute
+ type: string
+ key:
+ description: Required. The taint key to be applied to a node.
+ minLength: 1
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ timeAdded:
+ description: |-
+ TimeAdded represents the time at which the taint was added.
+ It is only written for NoExecute taints.
+ format: date-time
+ type: string
+ value:
+ description: The taint value corresponding to the taint key.
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ required:
+ - effect
+ - key
+ type: object
+ type: array
+ taints:
+ description: Taints will be applied to the NodeClaim's node.
+ items:
+ description: |-
+ The node this Taint is attached to has the "effect" on
+ any pod that does not tolerate the Taint.
+ properties:
+ effect:
+ description: |-
+ Required. The effect of the taint on pods
+ that do not tolerate the taint.
+ Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
+ enum:
+ - NoSchedule
+ - PreferNoSchedule
+ - NoExecute
+ type: string
+ key:
+ description: Required. The taint key to be applied to a node.
+ minLength: 1
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ timeAdded:
+ description: |-
+ TimeAdded represents the time at which the taint was added.
+ It is only written for NoExecute taints.
+ format: date-time
+ type: string
+ value:
+ description: The taint value corresponding to the taint key.
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ required:
+ - effect
+ - key
+ type: object
+ type: array
+ required:
+ - nodeClassRef
+ - requirements
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodepools.yaml
new file mode 100644
index 000000000..859b9559f
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/karpenter.sh/v1beta1/nodepools.yaml
@@ -0,0 +1,589 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.sh
+ k8s.io/kind: NodePool
+ k8s.io/resource: nodepools
+ k8s.io/version: v1beta1
+ name: karpenter.sh-v1beta1-nodepools
+spec:
+ resource:
+ group: karpenter.sh
+ kind: NodePool
+ name: nodepools
+ scope: Cluster
+ version: v1beta1
+ validation:
+ openAPIV3Schema:
+ description: NodePool is the Schema for the NodePools API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: |-
+ NodePoolSpec is the top level nodepool specification. Nodepools
+ launch nodes in response to pods that are unschedulable. A single nodepool
+ is capable of managing a diverse set of nodes. Node properties are determined
+ from a combination of nodepool and pod scheduling constraints.
+ properties:
+ disruption:
+ default:
+ consolidationPolicy: WhenUnderutilized
+ expireAfter: 720h
+ description: Disruption contains the parameters that relate to Karpenter's
+ disruption logic
+ properties:
+ budgets:
+ default:
+ - nodes: 10%
+ description: |-
+ Budgets is a list of Budgets.
+ If there are multiple active budgets, Karpenter uses
+ the most restrictive value. If left undefined,
+ this will default to one budget with a value to 10%.
+ items:
+ description: |-
+ Budget defines when Karpenter will restrict the
+ number of Node Claims that can be terminating simultaneously.
+ properties:
+ duration:
+ description: |-
+ Duration determines how long a Budget is active since each Schedule hit.
+ Only minutes and hours are accepted, as cron does not work in seconds.
+ If omitted, the budget is always active.
+ This is required if Schedule is set.
+ This regex has an optional 0s at the end since the duration.String() always adds
+ a 0s at the end.
+ pattern: ^((([0-9]+(h|m))|([0-9]+h[0-9]+m))(0s)?)$
+ type: string
+ nodes:
+ default: 10%
+ description: |-
+ Nodes dictates the maximum number of NodeClaims owned by this NodePool
+ that can be terminating at once. This is calculated by counting nodes that
+ have a deletion timestamp set, or are actively being deleted by Karpenter.
+ This field is required when specifying a budget.
+ This cannot be of type intstr.IntOrString since kubebuilder doesn't support pattern
+ checking for int nodes for IntOrString nodes.
+ Ref: https://github.com/kubernetes-sigs/controller-tools/blob/55efe4be40394a288216dab63156b0a64fb82929/pkg/crd/markers/validation.go#L379-L388
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ type: string
+ schedule:
+ description: |-
+ Schedule specifies when a budget begins being active, following
+ the upstream cronjob syntax. If omitted, the budget is always active.
+ Timezones are not supported.
+ This field is required if Duration is set.
+ pattern: ^(@(annually|yearly|monthly|weekly|daily|midnight|hourly))|((.+)\s(.+)\s(.+)\s(.+)\s(.+))$
+ type: string
+ required:
+ - nodes
+ type: object
+ maxItems: 50
+ type: array
+ x-kubernetes-validations:
+ - message: '''schedule'' must be set with ''duration'''
+ rule: self.all(x, has(x.schedule) == has(x.duration))
+ consolidateAfter:
+ description: |-
+ ConsolidateAfter is the duration the controller will wait
+ before attempting to terminate nodes that are underutilized.
+ Refer to ConsolidationPolicy for how underutilization is considered.
+ pattern: ^(([0-9]+(s|m|h))+)|(Never)$
+ type: string
+ consolidationPolicy:
+ default: WhenUnderutilized
+ description: |-
+ ConsolidationPolicy describes which nodes Karpenter can disrupt through its consolidation
+ algorithm. This policy defaults to "WhenUnderutilized" if not specified
+ enum:
+ - WhenEmpty
+ - WhenUnderutilized
+ type: string
+ expireAfter:
+ default: 720h
+ description: |-
+ ExpireAfter is the duration the controller will wait
+ before terminating a node, measured from when the node is created. This
+ is useful to implement features like eventually consistent node upgrade,
+ memory leak protection, and disruption testing.
+ pattern: ^(([0-9]+(s|m|h))+)|(Never)$
+ type: string
+ type: object
+ x-kubernetes-validations:
+ - message: consolidateAfter cannot be combined with consolidationPolicy=WhenUnderutilized
+ rule: 'has(self.consolidateAfter) ? self.consolidationPolicy != ''WhenUnderutilized''
+ || self.consolidateAfter == ''Never'' : true'
+ - message: consolidateAfter must be specified with consolidationPolicy=WhenEmpty
+ rule: 'self.consolidationPolicy == ''WhenEmpty'' ? has(self.consolidateAfter)
+ : true'
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Limits define a set of bounds for provisioning capacity.
+ type: object
+ template:
+ description: |-
+ Template contains the template of possibilities for the provisioning logic to launch a NodeClaim with.
+ NodeClaims launched from this NodePool will often be further constrained than the template specifies.
+ properties:
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is an unstructured key value map stored with a resource that may be
+ set by external tools to store and retrieve arbitrary metadata. They are not
+ queryable and should be preserved when modifying objects.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
+ type: object
+ labels:
+ additionalProperties:
+ maxLength: 63
+ pattern: ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$
+ type: string
+ description: |-
+ Map of string keys and values that can be used to organize and categorize
+ (scope and select) objects. May match selectors of replication controllers
+ and services.
+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
+ maxProperties: 100
+ type: object
+ x-kubernetes-validations:
+ - message: label domain "kubernetes.io" is restricted
+ rule: self.all(x, x in ["beta.kubernetes.io/instance-type",
+ "failure-domain.beta.kubernetes.io/region", "beta.kubernetes.io/os",
+ "beta.kubernetes.io/arch", "failure-domain.beta.kubernetes.io/zone",
+ "topology.kubernetes.io/region", "kubernetes.io/arch", "kubernetes.io/os",
+ "node.kubernetes.io/windows-build"] || x.find("^([^/]+)").endsWith("node.kubernetes.io")
+ || x.find("^([^/]+)").endsWith("node-restriction.kubernetes.io")
+ || !x.find("^([^/]+)").endsWith("kubernetes.io"))
+ - message: label domain "k8s.io" is restricted
+ rule: self.all(x, x.find("^([^/]+)").endsWith("kops.k8s.io")
+ || !x.find("^([^/]+)").endsWith("k8s.io"))
+ - message: label domain "karpenter.sh" is restricted
+ rule: self.all(x, x in ["karpenter.sh/capacity-type", "karpenter.sh/nodepool"]
+ || !x.find("^([^/]+)").endsWith("karpenter.sh"))
+ - message: label "karpenter.sh/nodepool" is restricted
+ rule: self.all(x, x != "karpenter.sh/nodepool")
+ - message: label "kubernetes.io/hostname" is restricted
+ rule: self.all(x, x != "kubernetes.io/hostname")
+ - message: label domain "karpenter.azure.com" is restricted
+ rule: self.all(x, x in [ "karpenter.azure.com/sku-name", "karpenter.azure.com/sku-family",
+ "karpenter.azure.com/sku-version", "karpenter.azure.com/sku-cpu",
+ "karpenter.azure.com/sku-memory", "karpenter.azure.com/sku-accelerator",
+ "karpenter.azure.com/sku-networking-accelerated", "karpenter.azure.com/sku-storage-premium-capable",
+ "karpenter.azure.com/sku-storage-ephemeralos-maxsize", "karpenter.azure.com/sku-encryptionathost-capable",
+ "karpenter.azure.com/sku-gpu-name", "karpenter.azure.com/sku-gpu-manufacturer",
+ "karpenter.azure.com/sku-gpu-count" ] || !x.find("^([^/]+)").endsWith("karpenter.azure.com"))
+ type: object
+ spec:
+ description: NodeClaimSpec describes the desired state of the NodeClaim
+ properties:
+ kubelet:
+ description: |-
+ Kubelet defines args to be used when configuring kubelet on provisioned nodes.
+ They are a subset of the upstream types, recognizing not all options may be supported.
+ Wherever possible, the types and names should reflect the upstream kubelet types.
+ properties:
+ clusterDNS:
+ description: |-
+ clusterDNS is a list of IP addresses for the cluster DNS server.
+ Note that not all providers may use all addresses.
+ items:
+ type: string
+ type: array
+ cpuCFSQuota:
+ description: CPUCFSQuota enables CPU CFS quota enforcement
+ for containers that specify CPU limits.
+ type: boolean
+ evictionHard:
+ additionalProperties:
+ pattern: ^((\d{1,2}(\.\d{1,2})?|100(\.0{1,2})?)%||(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?)$
+ type: string
+ description: EvictionHard is the map of signal names to
+ quantities that define hard eviction thresholds
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionHard are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ evictionMaxPodGracePeriod:
+ description: |-
+ EvictionMaxPodGracePeriod is the maximum allowed grace period (in seconds) to use when terminating pods in
+ response to soft eviction thresholds being met.
+ format: int32
+ type: integer
+ evictionSoft:
+ additionalProperties:
+ pattern: ^((\d{1,2}(\.\d{1,2})?|100(\.0{1,2})?)%||(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?)$
+ type: string
+ description: EvictionSoft is the map of signal names to
+ quantities that define soft eviction thresholds
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionSoft are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ evictionSoftGracePeriod:
+ additionalProperties:
+ type: string
+ description: EvictionSoftGracePeriod is the map of signal
+ names to quantities that define grace periods for each
+ eviction signal
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for evictionSoftGracePeriod are ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available']
+ rule: self.all(x, x in ['memory.available','nodefs.available','nodefs.inodesFree','imagefs.available','imagefs.inodesFree','pid.available'])
+ imageGCHighThresholdPercent:
+ description: |-
+ ImageGCHighThresholdPercent is the percent of disk usage after which image
+ garbage collection is always run. The percent is calculated by dividing this
+ field value by 100, so this field must be between 0 and 100, inclusive.
+ When specified, the value must be greater than ImageGCLowThresholdPercent.
+ format: int32
+ maximum: 100
+ minimum: 0
+ type: integer
+ imageGCLowThresholdPercent:
+ description: |-
+ ImageGCLowThresholdPercent is the percent of disk usage before which image
+ garbage collection is never run. Lowest disk usage to garbage collect to.
+ The percent is calculated by dividing this field value by 100,
+ so the field value must be between 0 and 100, inclusive.
+ When specified, the value must be less than imageGCHighThresholdPercent
+ format: int32
+ maximum: 100
+ minimum: 0
+ type: integer
+ kubeReserved:
+ additionalProperties:
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ type: string
+ description: KubeReserved contains resources reserved for
+ Kubernetes system components.
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for kubeReserved are ['cpu','memory','ephemeral-storage','pid']
+ rule: self.all(x, x=='cpu' || x=='memory' || x=='ephemeral-storage'
+ || x=='pid')
+ - message: kubeReserved value cannot be a negative resource
+ quantity
+ rule: self.all(x, !self[x].startsWith('-'))
+ maxPods:
+ description: |-
+ MaxPods is an override for the maximum number of pods that can run on
+ a worker node instance.
+ format: int32
+ minimum: 0
+ type: integer
+ podsPerCore:
+ description: |-
+ PodsPerCore is an override for the number of pods that can run on a worker node
+ instance based on the number of cpu cores. This value cannot exceed MaxPods, so, if
+ MaxPods is a lower value, that value will be used.
+ format: int32
+ minimum: 0
+ type: integer
+ systemReserved:
+ additionalProperties:
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ type: string
+ description: SystemReserved contains resources reserved
+ for OS system daemons and kernel memory.
+ type: object
+ x-kubernetes-validations:
+ - message: valid keys for systemReserved are ['cpu','memory','ephemeral-storage','pid']
+ rule: self.all(x, x=='cpu' || x=='memory' || x=='ephemeral-storage'
+ || x=='pid')
+ - message: systemReserved value cannot be a negative resource
+ quantity
+ rule: self.all(x, !self[x].startsWith('-'))
+ type: object
+ x-kubernetes-validations:
+ - message: imageGCHighThresholdPercent must be greater than
+ imageGCLowThresholdPercent
+ rule: 'has(self.imageGCHighThresholdPercent) && has(self.imageGCLowThresholdPercent)
+ ? self.imageGCHighThresholdPercent > self.imageGCLowThresholdPercent :
+ true'
+ - message: evictionSoft OwnerKey does not have a matching evictionSoftGracePeriod
+ rule: has(self.evictionSoft) ? self.evictionSoft.all(e, (e
+ in self.evictionSoftGracePeriod)):true
+ - message: evictionSoftGracePeriod OwnerKey does not have a
+ matching evictionSoft
+ rule: has(self.evictionSoftGracePeriod) ? self.evictionSoftGracePeriod.all(e,
+ (e in self.evictionSoft)):true
+ nodeClassRef:
+ description: NodeClassRef is a reference to an object that defines
+ provider specific configuration
+ properties:
+ apiVersion:
+ description: API version of the referent
+ type: string
+ kind:
+ description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"'
+ type: string
+ name:
+ description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ required:
+ - name
+ type: object
+ requirements:
+ description: Requirements are layered with GetLabels and applied
+ to every node.
+ items:
+ description: |-
+ A node selector requirement with min values is a selector that contains values, a key, an operator that relates the key and values
+ and minValues that represent the requirement to have at least that many values.
+ properties:
+ key:
+ description: The label key that the selector applies to.
+ maxLength: 316
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ x-kubernetes-validations:
+ - message: label domain "kubernetes.io" is restricted
+ rule: self in ["beta.kubernetes.io/instance-type", "failure-domain.beta.kubernetes.io/region",
+ "beta.kubernetes.io/os", "beta.kubernetes.io/arch",
+ "failure-domain.beta.kubernetes.io/zone", "topology.kubernetes.io/region",
+ "node.kubernetes.io/instance-type", "kubernetes.io/arch",
+ "kubernetes.io/os", "node.kubernetes.io/windows-build"]
+ || self.find("^([^/]+)").endsWith("node.kubernetes.io")
+ || self.find("^([^/]+)").endsWith("node-restriction.kubernetes.io")
+ || !self.find("^([^/]+)").endsWith("kubernetes.io")
+ - message: label domain "k8s.io" is restricted
+ rule: self.find("^([^/]+)").endsWith("kops.k8s.io")
+ || !self.find("^([^/]+)").endsWith("k8s.io")
+ - message: label domain "karpenter.sh" is restricted
+ rule: self in ["karpenter.sh/capacity-type", "karpenter.sh/nodepool"]
+ || !self.find("^([^/]+)").endsWith("karpenter.sh")
+ - message: label "karpenter.sh/nodepool" is restricted
+ rule: self != "karpenter.sh/nodepool"
+ - message: label "kubernetes.io/hostname" is restricted
+ rule: self != "kubernetes.io/hostname"
+ - message: label domain "karpenter.azure.com" is restricted
+ rule: self in [ "karpenter.azure.com/sku-name", "karpenter.azure.com/sku-family",
+ "karpenter.azure.com/sku-version", "karpenter.azure.com/sku-cpu",
+ "karpenter.azure.com/sku-memory", "karpenter.azure.com/sku-accelerator",
+ "karpenter.azure.com/sku-networking-accelerated",
+ "karpenter.azure.com/sku-storage-premium-capable",
+ "karpenter.azure.com/sku-storage-ephemeralos-maxsize",
+ "karpenter.azure.com/sku-encryptionathost-capable",
+ "karpenter.azure.com/sku-gpu-name", "karpenter.azure.com/sku-gpu-manufacturer",
+ "karpenter.azure.com/sku-gpu-count" ] || !self.find("^([^/]+)").endsWith("karpenter.azure.com")
+ minValues:
+ description: |-
+ This field is ALPHA and can be dropped or replaced at any time
+ MinValues is the minimum number of unique values required to define the flexibility of the specific requirement.
+ maximum: 50
+ minimum: 1
+ type: integer
+ operator:
+ description: |-
+ Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
+ enum:
+ - In
+ - NotIn
+ - Exists
+ - DoesNotExist
+ - Gt
+ - Lt
+ type: string
+ values:
+ description: |-
+ An array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. If the operator is Gt or Lt, the values
+ array must have a single element, which will be interpreted as an integer.
+ This array is replaced during a strategic merge patch.
+ items:
+ type: string
+ maxLength: 63
+ pattern: ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$
+ type: array
+ required:
+ - key
+ - operator
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: requirements with operator 'In' must have a value
+ defined
+ rule: 'self.all(x, x.operator == ''In'' ? x.values.size()
+ != 0 : true)'
+ - message: requirements operator 'Gt' or 'Lt' must have a single
+ positive integer value
+ rule: 'self.all(x, (x.operator == ''Gt'' || x.operator ==
+ ''Lt'') ? (x.values.size() == 1 && int(x.values[0]) >= 0)
+ : true)'
+ - message: requirements with 'minValues' must have at least
+ that many values specified in the 'values' field
+ rule: 'self.all(x, (x.operator == ''In'' && has(x.minValues))
+ ? x.values.size() >= x.minValues : true)'
+ resources:
+ description: Resources models the resource requirements for
+ the NodeClaim to launch
+ maxProperties: 0
+ properties:
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: Requests describes the minimum required resources
+ for the NodeClaim to launch
+ type: object
+ type: object
+ startupTaints:
+ description: |-
+ StartupTaints are taints that are applied to nodes upon startup which are expected to be removed automatically
+ within a short period of time, typically by a DaemonSet that tolerates the taint. These are commonly used by
+ daemonsets to allow initialization and enforce startup ordering. StartupTaints are ignored for provisioning
+ purposes in that pods are not required to tolerate a StartupTaint in order to have nodes provisioned for them.
+ items:
+ description: |-
+ The node this Taint is attached to has the "effect" on
+ any pod that does not tolerate the Taint.
+ properties:
+ effect:
+ description: |-
+ Required. The effect of the taint on pods
+ that do not tolerate the taint.
+ Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
+ enum:
+ - NoSchedule
+ - PreferNoSchedule
+ - NoExecute
+ type: string
+ key:
+ description: Required. The taint key to be applied to
+ a node.
+ minLength: 1
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ timeAdded:
+ description: |-
+ TimeAdded represents the time at which the taint was added.
+ It is only written for NoExecute taints.
+ format: date-time
+ type: string
+ value:
+ description: The taint value corresponding to the taint
+ key.
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ required:
+ - effect
+ - key
+ type: object
+ type: array
+ taints:
+ description: Taints will be applied to the NodeClaim's node.
+ items:
+ description: |-
+ The node this Taint is attached to has the "effect" on
+ any pod that does not tolerate the Taint.
+ properties:
+ effect:
+ description: |-
+ Required. The effect of the taint on pods
+ that do not tolerate the taint.
+ Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
+ enum:
+ - NoSchedule
+ - PreferNoSchedule
+ - NoExecute
+ type: string
+ key:
+ description: Required. The taint key to be applied to
+ a node.
+ minLength: 1
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ timeAdded:
+ description: |-
+ TimeAdded represents the time at which the taint was added.
+ It is only written for NoExecute taints.
+ format: date-time
+ type: string
+ value:
+ description: The taint value corresponding to the taint
+ key.
+ pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*(\/))?([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$
+ type: string
+ required:
+ - effect
+ - key
+ type: object
+ type: array
+ required:
+ - nodeClassRef
+ - requirements
+ type: object
+ required:
+ - spec
+ type: object
+ weight:
+ description: |-
+ Weight is the priority given to the nodepool during scheduling. A higher
+ numerical weight indicates that this nodepool will be ordered
+ ahead of other nodepools with lower weights. A nodepool with no weight
+ will be treated as if it is a nodepool with a weight of 0.
+ format: int32
+ maximum: 100
+ minimum: 1
+ type: integer
+ required:
+ - template
+ type: object
+ required:
+ - spec
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/clickhouses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/clickhouses.yaml
new file mode 100644
index 000000000..6f538dcef
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/clickhouses.yaml
@@ -0,0 +1,6518 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: kubedb.com
+ k8s.io/kind: ClickHouse
+ k8s.io/resource: clickhouses
+ k8s.io/version: v1alpha2
+ name: kubedb.com-v1alpha2-clickhouses
+spec:
+ resource:
+ group: kubedb.com
+ kind: ClickHouse
+ name: clickhouses
+ scope: Namespaced
+ version: v1alpha2
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ authSecret:
+ properties:
+ externallyManaged:
+ type: boolean
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ clusterTopology:
+ properties:
+ clickHouseKeeper:
+ properties:
+ node:
+ properties:
+ host:
+ type: string
+ port:
+ format: int32
+ type: integer
+ type: object
+ type: object
+ cluster:
+ items:
+ properties:
+ name:
+ type: string
+ podTemplate:
+ properties:
+ controller:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ spec:
+ properties:
+ activeDeadlineSeconds:
+ format: int64
+ type: integer
+ automountServiceAccountToken:
+ type: boolean
+ containers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ dnsConfig:
+ properties:
+ nameservers:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ options:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ searches:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ dnsPolicy:
+ type: string
+ enableServiceLinks:
+ type: boolean
+ ephemeralContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ targetContainerName:
+ type: string
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ hostAliases:
+ items:
+ properties:
+ hostnames:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ ip:
+ type: string
+ required:
+ - ip
+ type: object
+ type: array
+ hostIPC:
+ type: boolean
+ hostNetwork:
+ type: boolean
+ hostPID:
+ type: boolean
+ hostUsers:
+ type: boolean
+ imagePullSecrets:
+ items:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ initContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ nodeName:
+ type: string
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ os:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ overhead:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ preemptionPolicy:
+ type: string
+ priority:
+ format: int32
+ type: integer
+ priorityClassName:
+ type: string
+ readinessGates:
+ items:
+ properties:
+ conditionType:
+ type: string
+ required:
+ - conditionType
+ type: object
+ type: array
+ restartPolicy:
+ type: string
+ runtimeClassName:
+ type: string
+ schedulerName:
+ type: string
+ securityContext:
+ properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ fsGroup:
+ format: int64
+ type: integer
+ fsGroupChangePolicy:
+ type: string
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ supplementalGroups:
+ items:
+ format: int64
+ type: integer
+ type: array
+ x-kubernetes-list-type: atomic
+ sysctls:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ serviceAccountName:
+ type: string
+ setHostnameAsFQDN:
+ type: boolean
+ shareProcessNamespace:
+ type: boolean
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ volumes:
+ items:
+ properties:
+ awsElasticBlockStore:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ azureDisk:
+ properties:
+ cachingMode:
+ type: string
+ diskName:
+ type: string
+ diskURI:
+ type: string
+ fsType:
+ type: string
+ kind:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - diskName
+ - diskURI
+ type: object
+ azureFile:
+ properties:
+ readOnly:
+ type: boolean
+ secretName:
+ type: string
+ shareName:
+ type: string
+ required:
+ - secretName
+ - shareName
+ type: object
+ cephfs:
+ properties:
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ secretFile:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - monitors
+ type: object
+ cinder:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ configMap:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ csi:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ nodePublishSecretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ readOnly:
+ type: boolean
+ volumeAttributes:
+ additionalProperties:
+ type: string
+ type: object
+ required:
+ - driver
+ type: object
+ downwardAPI:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ emptyDir:
+ properties:
+ medium:
+ type: string
+ sizeLimit:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ ephemeral:
+ properties:
+ volumeClaimTemplate:
+ properties:
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ generateName:
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ name:
+ type: string
+ namespace:
+ type: string
+ ownerReferences:
+ items:
+ properties:
+ apiVersion:
+ type: string
+ blockOwnerDeletion:
+ type: boolean
+ controller:
+ type: boolean
+ kind:
+ type: string
+ name:
+ type: string
+ uid:
+ type: string
+ required:
+ - apiVersion
+ - kind
+ - name
+ - uid
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ spec:
+ properties:
+ accessModes:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ dataSource:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ dataSourceRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ selector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ storageClassName:
+ type: string
+ volumeAttributesClassName:
+ type: string
+ volumeMode:
+ type: string
+ volumeName:
+ type: string
+ type: object
+ required:
+ - spec
+ type: object
+ type: object
+ fc:
+ properties:
+ fsType:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ targetWWNs:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ wwids:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ flexVolume:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ options:
+ additionalProperties:
+ type: string
+ type: object
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - driver
+ type: object
+ flocker:
+ properties:
+ datasetName:
+ type: string
+ datasetUUID:
+ type: string
+ type: object
+ gcePersistentDisk:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ pdName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - pdName
+ type: object
+ glusterfs:
+ properties:
+ endpoints:
+ type: string
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - endpoints
+ - path
+ type: object
+ hostPath:
+ properties:
+ path:
+ type: string
+ type:
+ type: string
+ required:
+ - path
+ type: object
+ iscsi:
+ properties:
+ chapAuthDiscovery:
+ type: boolean
+ chapAuthSession:
+ type: boolean
+ fsType:
+ type: string
+ initiatorName:
+ type: string
+ iqn:
+ type: string
+ iscsiInterface:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ portals:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ targetPortal:
+ type: string
+ required:
+ - iqn
+ - lun
+ - targetPortal
+ type: object
+ name:
+ type: string
+ nfs:
+ properties:
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ server:
+ type: string
+ required:
+ - path
+ - server
+ type: object
+ persistentVolumeClaim:
+ properties:
+ claimName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - claimName
+ type: object
+ photonPersistentDisk:
+ properties:
+ fsType:
+ type: string
+ pdID:
+ type: string
+ required:
+ - pdID
+ type: object
+ portworxVolume:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ projected:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ sources:
+ items:
+ properties:
+ clusterTrustBundle:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ name:
+ type: string
+ optional:
+ type: boolean
+ path:
+ type: string
+ signerName:
+ type: string
+ required:
+ - path
+ type: object
+ configMap:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ downwardAPI:
+ properties:
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ secret:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ serviceAccountToken:
+ properties:
+ audience:
+ type: string
+ expirationSeconds:
+ format: int64
+ type: integer
+ path:
+ type: string
+ required:
+ - path
+ type: object
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ quobyte:
+ properties:
+ group:
+ type: string
+ readOnly:
+ type: boolean
+ registry:
+ type: string
+ tenant:
+ type: string
+ user:
+ type: string
+ volume:
+ type: string
+ required:
+ - registry
+ - volume
+ type: object
+ rbd:
+ properties:
+ fsType:
+ type: string
+ image:
+ type: string
+ keyring:
+ type: string
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ pool:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - image
+ - monitors
+ type: object
+ scaleIO:
+ properties:
+ fsType:
+ type: string
+ gateway:
+ type: string
+ protectionDomain:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ sslEnabled:
+ type: boolean
+ storageMode:
+ type: string
+ storagePool:
+ type: string
+ system:
+ type: string
+ volumeName:
+ type: string
+ required:
+ - gateway
+ - secretRef
+ - system
+ type: object
+ secret:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ optional:
+ type: boolean
+ secretName:
+ type: string
+ type: object
+ storageos:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeName:
+ type: string
+ volumeNamespace:
+ type: string
+ type: object
+ vsphereVolume:
+ properties:
+ fsType:
+ type: string
+ storagePolicyID:
+ type: string
+ storagePolicyName:
+ type: string
+ volumePath:
+ type: string
+ required:
+ - volumePath
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ type: object
+ type: object
+ replicas:
+ format: int32
+ type: integer
+ shards:
+ format: int32
+ type: integer
+ storage:
+ properties:
+ accessModes:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ dataSource:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ dataSourceRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ selector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ storageClassName:
+ type: string
+ volumeAttributesClassName:
+ type: string
+ volumeMode:
+ type: string
+ volumeName:
+ type: string
+ type: object
+ storageType:
+ enum:
+ - Durable
+ - Ephemeral
+ type: string
+ type: object
+ type: array
+ type: object
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
+ disableSecurity:
+ type: boolean
+ healthChecker:
+ default:
+ failureThreshold: 3
+ periodSeconds: 20
+ timeoutSeconds: 10
+ properties:
+ disableWriteCheck:
+ type: boolean
+ failureThreshold:
+ default: 1
+ format: int32
+ type: integer
+ periodSeconds:
+ default: 10
+ format: int32
+ type: integer
+ timeoutSeconds:
+ default: 10
+ format: int32
+ type: integer
+ type: object
+ podTemplate:
+ properties:
+ controller:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ spec:
+ properties:
+ activeDeadlineSeconds:
+ format: int64
+ type: integer
+ automountServiceAccountToken:
+ type: boolean
+ containers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ dnsConfig:
+ properties:
+ nameservers:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ options:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ searches:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ dnsPolicy:
+ type: string
+ enableServiceLinks:
+ type: boolean
+ ephemeralContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ targetContainerName:
+ type: string
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ hostAliases:
+ items:
+ properties:
+ hostnames:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ ip:
+ type: string
+ required:
+ - ip
+ type: object
+ type: array
+ hostIPC:
+ type: boolean
+ hostNetwork:
+ type: boolean
+ hostPID:
+ type: boolean
+ hostUsers:
+ type: boolean
+ imagePullSecrets:
+ items:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ initContainers:
+ items:
+ properties:
+ args:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ env:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ valueFrom:
+ properties:
+ configMapKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ secretKeyRef:
+ properties:
+ key:
+ type: string
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ required:
+ - key
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ envFrom:
+ items:
+ properties:
+ configMapRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ prefix:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ image:
+ type: string
+ imagePullPolicy:
+ type: string
+ lifecycle:
+ properties:
+ postStart:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ preStop:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ sleep:
+ properties:
+ seconds:
+ format: int64
+ type: integer
+ required:
+ - seconds
+ type: object
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ type: object
+ type: object
+ livenessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ name:
+ type: string
+ ports:
+ items:
+ properties:
+ containerPort:
+ format: int32
+ type: integer
+ hostIP:
+ type: string
+ hostPort:
+ format: int32
+ type: integer
+ name:
+ type: string
+ protocol:
+ default: TCP
+ type: string
+ required:
+ - containerPort
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - containerPort
+ - protocol
+ x-kubernetes-list-type: map
+ readinessProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ resizePolicy:
+ items:
+ properties:
+ resourceName:
+ type: string
+ restartPolicy:
+ type: string
+ required:
+ - resourceName
+ - restartPolicy
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ restartPolicy:
+ type: string
+ securityContext:
+ properties:
+ allowPrivilegeEscalation:
+ type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ capabilities:
+ properties:
+ add:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ drop:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ privileged:
+ type: boolean
+ procMount:
+ type: string
+ readOnlyRootFilesystem:
+ type: boolean
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ startupProbe:
+ properties:
+ exec:
+ properties:
+ command:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ failureThreshold:
+ format: int32
+ type: integer
+ grpc:
+ properties:
+ port:
+ format: int32
+ type: integer
+ service:
+ type: string
+ required:
+ - port
+ type: object
+ httpGet:
+ properties:
+ host:
+ type: string
+ httpHeaders:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ scheme:
+ type: string
+ required:
+ - port
+ type: object
+ initialDelaySeconds:
+ format: int32
+ type: integer
+ periodSeconds:
+ format: int32
+ type: integer
+ successThreshold:
+ format: int32
+ type: integer
+ tcpSocket:
+ properties:
+ host:
+ type: string
+ port:
+ anyOf:
+ - type: integer
+ - type: string
+ x-kubernetes-int-or-string: true
+ required:
+ - port
+ type: object
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ stdin:
+ type: boolean
+ stdinOnce:
+ type: boolean
+ terminationMessagePath:
+ type: string
+ terminationMessagePolicy:
+ type: string
+ tty:
+ type: boolean
+ volumeDevices:
+ items:
+ properties:
+ devicePath:
+ type: string
+ name:
+ type: string
+ required:
+ - devicePath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
+ volumeMounts:
+ items:
+ properties:
+ mountPath:
+ type: string
+ mountPropagation:
+ type: string
+ name:
+ type: string
+ readOnly:
+ type: boolean
+ recursiveReadOnly:
+ type: string
+ subPath:
+ type: string
+ subPathExpr:
+ type: string
+ required:
+ - mountPath
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
+ workingDir:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ nodeName:
+ type: string
+ nodeSelector:
+ additionalProperties:
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ os:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ overhead:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ preemptionPolicy:
+ type: string
+ priority:
+ format: int32
+ type: integer
+ priorityClassName:
+ type: string
+ readinessGates:
+ items:
+ properties:
+ conditionType:
+ type: string
+ required:
+ - conditionType
+ type: object
+ type: array
+ restartPolicy:
+ type: string
+ runtimeClassName:
+ type: string
+ schedulerName:
+ type: string
+ securityContext:
+ properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ fsGroup:
+ format: int64
+ type: integer
+ fsGroupChangePolicy:
+ type: string
+ runAsGroup:
+ format: int64
+ type: integer
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ supplementalGroups:
+ items:
+ format: int64
+ type: integer
+ type: array
+ x-kubernetes-list-type: atomic
+ sysctls:
+ items:
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ required:
+ - name
+ - value
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ serviceAccountName:
+ type: string
+ setHostnameAsFQDN:
+ type: boolean
+ shareProcessNamespace:
+ type: boolean
+ terminationGracePeriodSeconds:
+ format: int64
+ type: integer
+ tolerations:
+ items:
+ properties:
+ effect:
+ type: string
+ key:
+ type: string
+ operator:
+ type: string
+ tolerationSeconds:
+ format: int64
+ type: integer
+ value:
+ type: string
+ type: object
+ type: array
+ volumes:
+ items:
+ properties:
+ awsElasticBlockStore:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ azureDisk:
+ properties:
+ cachingMode:
+ type: string
+ diskName:
+ type: string
+ diskURI:
+ type: string
+ fsType:
+ type: string
+ kind:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - diskName
+ - diskURI
+ type: object
+ azureFile:
+ properties:
+ readOnly:
+ type: boolean
+ secretName:
+ type: string
+ shareName:
+ type: string
+ required:
+ - secretName
+ - shareName
+ type: object
+ cephfs:
+ properties:
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ secretFile:
+ type: string
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - monitors
+ type: object
+ cinder:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ configMap:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ csi:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ nodePublishSecretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ readOnly:
+ type: boolean
+ volumeAttributes:
+ additionalProperties:
+ type: string
+ type: object
+ required:
+ - driver
+ type: object
+ downwardAPI:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ emptyDir:
+ properties:
+ medium:
+ type: string
+ sizeLimit:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ ephemeral:
+ properties:
+ volumeClaimTemplate:
+ properties:
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ generateName:
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ name:
+ type: string
+ namespace:
+ type: string
+ ownerReferences:
+ items:
+ properties:
+ apiVersion:
+ type: string
+ blockOwnerDeletion:
+ type: boolean
+ controller:
+ type: boolean
+ kind:
+ type: string
+ name:
+ type: string
+ uid:
+ type: string
+ required:
+ - apiVersion
+ - kind
+ - name
+ - uid
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ spec:
+ properties:
+ accessModes:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ dataSource:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ dataSourceRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ selector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ storageClassName:
+ type: string
+ volumeAttributesClassName:
+ type: string
+ volumeMode:
+ type: string
+ volumeName:
+ type: string
+ type: object
+ required:
+ - spec
+ type: object
+ type: object
+ fc:
+ properties:
+ fsType:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ readOnly:
+ type: boolean
+ targetWWNs:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ wwids:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ flexVolume:
+ properties:
+ driver:
+ type: string
+ fsType:
+ type: string
+ options:
+ additionalProperties:
+ type: string
+ type: object
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - driver
+ type: object
+ flocker:
+ properties:
+ datasetName:
+ type: string
+ datasetUUID:
+ type: string
+ type: object
+ gcePersistentDisk:
+ properties:
+ fsType:
+ type: string
+ partition:
+ format: int32
+ type: integer
+ pdName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - pdName
+ type: object
+ glusterfs:
+ properties:
+ endpoints:
+ type: string
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - endpoints
+ - path
+ type: object
+ hostPath:
+ properties:
+ path:
+ type: string
+ type:
+ type: string
+ required:
+ - path
+ type: object
+ iscsi:
+ properties:
+ chapAuthDiscovery:
+ type: boolean
+ chapAuthSession:
+ type: boolean
+ fsType:
+ type: string
+ initiatorName:
+ type: string
+ iqn:
+ type: string
+ iscsiInterface:
+ type: string
+ lun:
+ format: int32
+ type: integer
+ portals:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ targetPortal:
+ type: string
+ required:
+ - iqn
+ - lun
+ - targetPortal
+ type: object
+ name:
+ type: string
+ nfs:
+ properties:
+ path:
+ type: string
+ readOnly:
+ type: boolean
+ server:
+ type: string
+ required:
+ - path
+ - server
+ type: object
+ persistentVolumeClaim:
+ properties:
+ claimName:
+ type: string
+ readOnly:
+ type: boolean
+ required:
+ - claimName
+ type: object
+ photonPersistentDisk:
+ properties:
+ fsType:
+ type: string
+ pdID:
+ type: string
+ required:
+ - pdID
+ type: object
+ portworxVolume:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ volumeID:
+ type: string
+ required:
+ - volumeID
+ type: object
+ projected:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ sources:
+ items:
+ properties:
+ clusterTrustBundle:
+ properties:
+ labelSelector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ name:
+ type: string
+ optional:
+ type: boolean
+ path:
+ type: string
+ signerName:
+ type: string
+ required:
+ - path
+ type: object
+ configMap:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ downwardAPI:
+ properties:
+ items:
+ items:
+ properties:
+ fieldRef:
+ properties:
+ apiVersion:
+ type: string
+ fieldPath:
+ type: string
+ required:
+ - fieldPath
+ type: object
+ x-kubernetes-map-type: atomic
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ resourceFieldRef:
+ properties:
+ containerName:
+ type: string
+ divisor:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ resource:
+ type: string
+ required:
+ - resource
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ secret:
+ properties:
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ name:
+ default: ""
+ type: string
+ optional:
+ type: boolean
+ type: object
+ x-kubernetes-map-type: atomic
+ serviceAccountToken:
+ properties:
+ audience:
+ type: string
+ expirationSeconds:
+ format: int64
+ type: integer
+ path:
+ type: string
+ required:
+ - path
+ type: object
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ type: object
+ quobyte:
+ properties:
+ group:
+ type: string
+ readOnly:
+ type: boolean
+ registry:
+ type: string
+ tenant:
+ type: string
+ user:
+ type: string
+ volume:
+ type: string
+ required:
+ - registry
+ - volume
+ type: object
+ rbd:
+ properties:
+ fsType:
+ type: string
+ image:
+ type: string
+ keyring:
+ type: string
+ monitors:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ pool:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ user:
+ type: string
+ required:
+ - image
+ - monitors
+ type: object
+ scaleIO:
+ properties:
+ fsType:
+ type: string
+ gateway:
+ type: string
+ protectionDomain:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ sslEnabled:
+ type: boolean
+ storageMode:
+ type: string
+ storagePool:
+ type: string
+ system:
+ type: string
+ volumeName:
+ type: string
+ required:
+ - gateway
+ - secretRef
+ - system
+ type: object
+ secret:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ optional:
+ type: boolean
+ secretName:
+ type: string
+ type: object
+ storageos:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeName:
+ type: string
+ volumeNamespace:
+ type: string
+ type: object
+ vsphereVolume:
+ properties:
+ fsType:
+ type: string
+ storagePolicyID:
+ type: string
+ storagePolicyName:
+ type: string
+ volumePath:
+ type: string
+ required:
+ - volumePath
+ type: object
+ required:
+ - name
+ type: object
+ type: array
+ type: object
+ type: object
+ replicas:
+ format: int32
+ type: integer
+ serviceTemplates:
+ items:
+ properties:
+ alias:
+ enum:
+ - primary
+ - standby
+ - stats
+ type: string
+ metadata:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ type: object
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ spec:
+ properties:
+ clusterIP:
+ type: string
+ externalIPs:
+ items:
+ type: string
+ type: array
+ externalTrafficPolicy:
+ type: string
+ healthCheckNodePort:
+ format: int32
+ type: integer
+ loadBalancerIP:
+ type: string
+ loadBalancerSourceRanges:
+ items:
+ type: string
+ type: array
+ ports:
+ items:
+ properties:
+ name:
+ type: string
+ nodePort:
+ format: int32
+ type: integer
+ port:
+ format: int32
+ type: integer
+ required:
+ - port
+ type: object
+ type: array
+ sessionAffinityConfig:
+ properties:
+ clientIP:
+ properties:
+ timeoutSeconds:
+ format: int32
+ type: integer
+ type: object
+ type: object
+ type:
+ type: string
+ type: object
+ required:
+ - alias
+ type: object
+ type: array
+ storage:
+ properties:
+ accessModes:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ dataSource:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ dataSourceRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ resources:
+ properties:
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ selector:
+ properties:
+ matchExpressions:
+ items:
+ properties:
+ key:
+ type: string
+ operator:
+ type: string
+ values:
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ storageClassName:
+ type: string
+ volumeAttributesClassName:
+ type: string
+ volumeMode:
+ type: string
+ volumeName:
+ type: string
+ type: object
+ storageType:
+ enum:
+ - Durable
+ - Ephemeral
+ type: string
+ version:
+ type: string
+ required:
+ - version
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/druids.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/druids.yaml
index 6d1ed6225..e42ad9f89 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/druids.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/druids.yaml
@@ -156,12 +156,14 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -170,6 +172,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -183,6 +186,13 @@ spec:
required:
- type
type: object
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableSecurity:
type: boolean
halted:
@@ -254,6 +264,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -292,6 +303,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -343,16 +355,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -363,2945 +386,53 @@ spec:
runAsGroup:
format: int64
type: integer
- runAsNonRoot:
- type: boolean
- runAsUser:
- format: int64
- type: integer
- seLinuxOptions:
- properties:
- level:
- type: string
- role:
- type: string
- type:
- type: string
- user:
- type: string
- type: object
- seccompProfile:
- properties:
- localhostProfile:
- type: string
- type:
- type: string
- required:
- - type
- type: object
- windowsOptions:
- properties:
- gmsaCredentialSpec:
- type: string
- gmsaCredentialSpecName:
- type: string
- hostProcess:
- type: boolean
- runAsUserName:
- type: string
- type: object
- type: object
- type: object
- serviceMonitor:
- properties:
- interval:
- type: string
- labels:
- additionalProperties:
- type: string
- type: object
- type: object
- type: object
- type: object
- podTemplate:
- properties:
- controller:
- properties:
- annotations:
- additionalProperties:
- type: string
- type: object
- labels:
- additionalProperties:
- type: string
- type: object
- type: object
- metadata:
- properties:
- annotations:
- additionalProperties:
- type: string
- type: object
- labels:
- additionalProperties:
- type: string
- type: object
- type: object
- spec:
- properties:
- activeDeadlineSeconds:
- format: int64
- type: integer
- automountServiceAccountToken:
- type: boolean
- containers:
- items:
- properties:
- args:
- items:
- type: string
- type: array
- command:
- items:
- type: string
- type: array
- env:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- valueFrom:
- properties:
- configMapKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- fieldRef:
- properties:
- apiVersion:
- type: string
- fieldPath:
- type: string
- required:
- - fieldPath
- type: object
- x-kubernetes-map-type: atomic
- resourceFieldRef:
- properties:
- containerName:
- type: string
- divisor:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- resource:
- type: string
- required:
- - resource
- type: object
- x-kubernetes-map-type: atomic
- secretKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- type: object
- required:
- - name
- type: object
- type: array
- envFrom:
- items:
- properties:
- configMapRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- prefix:
- type: string
- secretRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- type: object
- type: array
- image:
- type: string
- imagePullPolicy:
- type: string
- lifecycle:
- properties:
- postStart:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- preStop:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- type: object
- livenessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- name:
- type: string
- ports:
- items:
- properties:
- containerPort:
- format: int32
- type: integer
- hostIP:
- type: string
- hostPort:
- format: int32
- type: integer
- name:
- type: string
- protocol:
- default: TCP
- type: string
- required:
- - containerPort
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - containerPort
- - protocol
- x-kubernetes-list-type: map
- readinessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- resizePolicy:
- items:
- properties:
- resourceName:
- type: string
- restartPolicy:
- type: string
- required:
- - resourceName
- - restartPolicy
- type: object
- type: array
- x-kubernetes-list-type: atomic
- resources:
- properties:
- claims:
- items:
- properties:
- name:
- type: string
- required:
- - name
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - name
- x-kubernetes-list-type: map
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- restartPolicy:
- type: string
- securityContext:
- properties:
- allowPrivilegeEscalation:
- type: boolean
- capabilities:
- properties:
- add:
- items:
- type: string
- type: array
- drop:
- items:
- type: string
- type: array
- type: object
- privileged:
- type: boolean
- procMount:
- type: string
- readOnlyRootFilesystem:
- type: boolean
- runAsGroup:
- format: int64
- type: integer
- runAsNonRoot:
- type: boolean
- runAsUser:
- format: int64
- type: integer
- seLinuxOptions:
- properties:
- level:
- type: string
- role:
- type: string
- type:
- type: string
- user:
- type: string
- type: object
- seccompProfile:
- properties:
- localhostProfile:
- type: string
- type:
- type: string
- required:
- - type
- type: object
- windowsOptions:
- properties:
- gmsaCredentialSpec:
- type: string
- gmsaCredentialSpecName:
- type: string
- hostProcess:
- type: boolean
- runAsUserName:
- type: string
- type: object
- type: object
- startupProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- stdin:
- type: boolean
- stdinOnce:
- type: boolean
- terminationMessagePath:
- type: string
- terminationMessagePolicy:
- type: string
- tty:
- type: boolean
- volumeDevices:
- items:
- properties:
- devicePath:
- type: string
- name:
- type: string
- required:
- - devicePath
- - name
- type: object
- type: array
- volumeMounts:
- items:
- properties:
- mountPath:
- type: string
- mountPropagation:
- type: string
- name:
- type: string
- readOnly:
- type: boolean
- subPath:
- type: string
- subPathExpr:
- type: string
- required:
- - mountPath
- - name
- type: object
- type: array
- workingDir:
- type: string
- required:
- - name
- type: object
- type: array
- dnsConfig:
- properties:
- nameservers:
- items:
- type: string
- type: array
- options:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- type: object
- type: array
- searches:
- items:
- type: string
- type: array
- type: object
- dnsPolicy:
- type: string
- enableServiceLinks:
- type: boolean
- ephemeralContainers:
- items:
- properties:
- args:
- items:
- type: string
- type: array
- command:
- items:
- type: string
- type: array
- env:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- valueFrom:
- properties:
- configMapKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- fieldRef:
- properties:
- apiVersion:
- type: string
- fieldPath:
- type: string
- required:
- - fieldPath
- type: object
- x-kubernetes-map-type: atomic
- resourceFieldRef:
- properties:
- containerName:
- type: string
- divisor:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- resource:
- type: string
- required:
- - resource
- type: object
- x-kubernetes-map-type: atomic
- secretKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- type: object
- required:
- - name
- type: object
- type: array
- envFrom:
- items:
- properties:
- configMapRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- prefix:
- type: string
- secretRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- type: object
- type: array
- image:
- type: string
- imagePullPolicy:
- type: string
- lifecycle:
- properties:
- postStart:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- preStop:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- type: object
- livenessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- name:
- type: string
- ports:
- items:
- properties:
- containerPort:
- format: int32
- type: integer
- hostIP:
- type: string
- hostPort:
- format: int32
- type: integer
- name:
- type: string
- protocol:
- default: TCP
- type: string
- required:
- - containerPort
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - containerPort
- - protocol
- x-kubernetes-list-type: map
- readinessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- resizePolicy:
- items:
- properties:
- resourceName:
- type: string
- restartPolicy:
- type: string
- required:
- - resourceName
- - restartPolicy
- type: object
- type: array
- x-kubernetes-list-type: atomic
- resources:
- properties:
- claims:
- items:
- properties:
- name:
- type: string
- required:
- - name
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - name
- x-kubernetes-list-type: map
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- restartPolicy:
- type: string
- securityContext:
- properties:
- allowPrivilegeEscalation:
- type: boolean
- capabilities:
- properties:
- add:
- items:
- type: string
- type: array
- drop:
- items:
- type: string
- type: array
- type: object
- privileged:
- type: boolean
- procMount:
- type: string
- readOnlyRootFilesystem:
- type: boolean
- runAsGroup:
- format: int64
- type: integer
- runAsNonRoot:
- type: boolean
- runAsUser:
- format: int64
- type: integer
- seLinuxOptions:
- properties:
- level:
- type: string
- role:
- type: string
- type:
- type: string
- user:
- type: string
- type: object
- seccompProfile:
- properties:
- localhostProfile:
- type: string
- type:
- type: string
- required:
- - type
- type: object
- windowsOptions:
- properties:
- gmsaCredentialSpec:
- type: string
- gmsaCredentialSpecName:
- type: string
- hostProcess:
- type: boolean
- runAsUserName:
- type: string
- type: object
- type: object
- startupProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- stdin:
- type: boolean
- stdinOnce:
- type: boolean
- targetContainerName:
- type: string
- terminationMessagePath:
- type: string
- terminationMessagePolicy:
- type: string
- tty:
- type: boolean
- volumeDevices:
- items:
- properties:
- devicePath:
- type: string
- name:
- type: string
- required:
- - devicePath
- - name
- type: object
- type: array
- volumeMounts:
- items:
- properties:
- mountPath:
- type: string
- mountPropagation:
- type: string
- name:
- type: string
- readOnly:
- type: boolean
- subPath:
- type: string
- subPathExpr:
- type: string
- required:
- - mountPath
- - name
- type: object
- type: array
- workingDir:
- type: string
- required:
- - name
- type: object
- type: array
- hostAliases:
- items:
- properties:
- hostnames:
- items:
- type: string
- type: array
- ip:
- type: string
- type: object
- type: array
- hostIPC:
- type: boolean
- hostNetwork:
- type: boolean
- hostPID:
- type: boolean
- hostUsers:
- type: boolean
- imagePullSecrets:
- items:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- type: array
- initContainers:
- items:
- properties:
- args:
- items:
- type: string
- type: array
- command:
- items:
- type: string
- type: array
- env:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- valueFrom:
- properties:
- configMapKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- fieldRef:
- properties:
- apiVersion:
- type: string
- fieldPath:
- type: string
- required:
- - fieldPath
- type: object
- x-kubernetes-map-type: atomic
- resourceFieldRef:
- properties:
- containerName:
- type: string
- divisor:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- resource:
- type: string
- required:
- - resource
- type: object
- x-kubernetes-map-type: atomic
- secretKeyRef:
- properties:
- key:
- type: string
- name:
- type: string
- optional:
- type: boolean
- required:
- - key
- type: object
- x-kubernetes-map-type: atomic
- type: object
- required:
- - name
- type: object
- type: array
- envFrom:
- items:
- properties:
- configMapRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- prefix:
- type: string
- secretRef:
- properties:
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- type: object
- type: array
- image:
- type: string
- imagePullPolicy:
- type: string
- lifecycle:
- properties:
- postStart:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- preStop:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- sleep:
- properties:
- seconds:
- format: int64
- type: integer
- required:
- - seconds
- type: object
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- type: object
- type: object
- livenessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- name:
- type: string
- ports:
- items:
- properties:
- containerPort:
- format: int32
- type: integer
- hostIP:
- type: string
- hostPort:
- format: int32
- type: integer
- name:
- type: string
- protocol:
- default: TCP
- type: string
- required:
- - containerPort
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - containerPort
- - protocol
- x-kubernetes-list-type: map
- readinessProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- resizePolicy:
- items:
- properties:
- resourceName:
- type: string
- restartPolicy:
- type: string
- required:
- - resourceName
- - restartPolicy
- type: object
- type: array
- x-kubernetes-list-type: atomic
- resources:
- properties:
- claims:
- items:
- properties:
- name:
- type: string
- required:
- - name
- type: object
- type: array
- x-kubernetes-list-map-keys:
- - name
- x-kubernetes-list-type: map
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- restartPolicy:
- type: string
- securityContext:
- properties:
- allowPrivilegeEscalation:
- type: boolean
- capabilities:
- properties:
- add:
- items:
- type: string
- type: array
- drop:
- items:
- type: string
- type: array
- type: object
- privileged:
- type: boolean
- procMount:
- type: string
- readOnlyRootFilesystem:
- type: boolean
- runAsGroup:
- format: int64
- type: integer
- runAsNonRoot:
- type: boolean
- runAsUser:
- format: int64
- type: integer
- seLinuxOptions:
- properties:
- level:
- type: string
- role:
- type: string
- type:
- type: string
- user:
- type: string
- type: object
- seccompProfile:
- properties:
- localhostProfile:
- type: string
- type:
- type: string
- required:
- - type
- type: object
- windowsOptions:
- properties:
- gmsaCredentialSpec:
- type: string
- gmsaCredentialSpecName:
- type: string
- hostProcess:
- type: boolean
- runAsUserName:
- type: string
- type: object
- type: object
- startupProbe:
- properties:
- exec:
- properties:
- command:
- items:
- type: string
- type: array
- type: object
- failureThreshold:
- format: int32
- type: integer
- grpc:
- properties:
- port:
- format: int32
- type: integer
- service:
- type: string
- required:
- - port
- type: object
- httpGet:
- properties:
- host:
- type: string
- httpHeaders:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- path:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- scheme:
- type: string
- required:
- - port
- type: object
- initialDelaySeconds:
- format: int32
- type: integer
- periodSeconds:
- format: int32
- type: integer
- successThreshold:
- format: int32
- type: integer
- tcpSocket:
- properties:
- host:
- type: string
- port:
- anyOf:
- - type: integer
- - type: string
- x-kubernetes-int-or-string: true
- required:
- - port
- type: object
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- timeoutSeconds:
- format: int32
- type: integer
- type: object
- stdin:
- type: boolean
- stdinOnce:
- type: boolean
- terminationMessagePath:
- type: string
- terminationMessagePolicy:
- type: string
- tty:
- type: boolean
- volumeDevices:
- items:
- properties:
- devicePath:
- type: string
- name:
- type: string
- required:
- - devicePath
- - name
- type: object
- type: array
- volumeMounts:
- items:
- properties:
- mountPath:
- type: string
- mountPropagation:
- type: string
- name:
- type: string
- readOnly:
- type: boolean
- subPath:
- type: string
- subPathExpr:
- type: string
- required:
- - mountPath
- - name
- type: object
- type: array
- workingDir:
- type: string
- required:
- - name
- type: object
- type: array
- nodeName:
- type: string
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- os:
- properties:
- name:
- type: string
- required:
- - name
- type: object
- overhead:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- preemptionPolicy:
- type: string
- priority:
- format: int32
- type: integer
- priorityClassName:
- type: string
- readinessGates:
- items:
- properties:
- conditionType:
- type: string
- required:
- - conditionType
- type: object
- type: array
- restartPolicy:
- type: string
- runtimeClassName:
- type: string
- schedulerName:
- type: string
- securityContext:
- properties:
- fsGroup:
- format: int64
- type: integer
- fsGroupChangePolicy:
- type: string
- runAsGroup:
- format: int64
- type: integer
- runAsNonRoot:
- type: boolean
- runAsUser:
- format: int64
- type: integer
- seLinuxOptions:
- properties:
- level:
- type: string
- role:
- type: string
- type:
- type: string
- user:
- type: string
- type: object
- seccompProfile:
- properties:
- localhostProfile:
- type: string
- type:
- type: string
- required:
- - type
- type: object
- supplementalGroups:
- items:
- format: int64
- type: integer
- type: array
- sysctls:
- items:
- properties:
- name:
- type: string
- value:
- type: string
- required:
- - name
- - value
- type: object
- type: array
- windowsOptions:
- properties:
- gmsaCredentialSpec:
- type: string
- gmsaCredentialSpecName:
- type: string
- hostProcess:
- type: boolean
- runAsUserName:
- type: string
- type: object
- type: object
- serviceAccountName:
- type: string
- setHostnameAsFQDN:
- type: boolean
- shareProcessNamespace:
- type: boolean
- terminationGracePeriodSeconds:
- format: int64
- type: integer
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
- volumes:
- items:
- properties:
- awsElasticBlockStore:
- properties:
- fsType:
- type: string
- partition:
- format: int32
- type: integer
- readOnly:
- type: boolean
- volumeID:
- type: string
- required:
- - volumeID
- type: object
- azureDisk:
- properties:
- cachingMode:
- type: string
- diskName:
- type: string
- diskURI:
- type: string
- fsType:
- type: string
- kind:
- type: string
- readOnly:
- type: boolean
- required:
- - diskName
- - diskURI
- type: object
- azureFile:
- properties:
- readOnly:
- type: boolean
- secretName:
- type: string
- shareName:
- type: string
- required:
- - secretName
- - shareName
- type: object
- cephfs:
- properties:
- monitors:
- items:
- type: string
- type: array
- path:
- type: string
- readOnly:
- type: boolean
- secretFile:
- type: string
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- user:
- type: string
- required:
- - monitors
- type: object
- cinder:
- properties:
- fsType:
- type: string
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- volumeID:
- type: string
- required:
- - volumeID
- type: object
- configMap:
- properties:
- defaultMode:
- format: int32
- type: integer
- items:
- items:
- properties:
- key:
- type: string
- mode:
- format: int32
- type: integer
- path:
- type: string
- required:
- - key
- - path
- type: object
- type: array
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- csi:
- properties:
- driver:
- type: string
- fsType:
- type: string
- nodePublishSecretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- readOnly:
- type: boolean
- volumeAttributes:
- additionalProperties:
- type: string
- type: object
- required:
- - driver
- type: object
- downwardAPI:
- properties:
- defaultMode:
- format: int32
- type: integer
- items:
- items:
- properties:
- fieldRef:
- properties:
- apiVersion:
- type: string
- fieldPath:
- type: string
- required:
- - fieldPath
- type: object
- x-kubernetes-map-type: atomic
- mode:
- format: int32
- type: integer
- path:
- type: string
- resourceFieldRef:
- properties:
- containerName:
- type: string
- divisor:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- resource:
- type: string
- required:
- - resource
- type: object
- x-kubernetes-map-type: atomic
- required:
- - path
- type: object
- type: array
- type: object
- emptyDir:
- properties:
- medium:
- type: string
- sizeLimit:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- ephemeral:
- properties:
- volumeClaimTemplate:
- properties:
- metadata:
- properties:
- annotations:
- additionalProperties:
- type: string
- type: object
- generateName:
- type: string
- labels:
- additionalProperties:
- type: string
- type: object
- name:
- type: string
- namespace:
- type: string
- ownerReferences:
- items:
- properties:
- apiVersion:
- type: string
- blockOwnerDeletion:
- type: boolean
- controller:
- type: boolean
- kind:
- type: string
- name:
- type: string
- uid:
- type: string
- required:
- - apiVersion
- - kind
- - name
- - uid
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- spec:
- properties:
- accessModes:
- items:
- type: string
- type: array
- dataSource:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- dataSourceRef:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- required:
- - kind
- - name
- type: object
- resources:
- properties:
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- selector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
- required:
- - key
- - operator
- type: object
- type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
- type: object
- x-kubernetes-map-type: atomic
- storageClassName:
- type: string
- volumeAttributesClassName:
- type: string
- volumeMode:
- type: string
- volumeName:
- type: string
- type: object
- required:
- - spec
- type: object
- type: object
- fc:
- properties:
- fsType:
- type: string
- lun:
- format: int32
- type: integer
- readOnly:
- type: boolean
- targetWWNs:
- items:
- type: string
- type: array
- wwids:
- items:
- type: string
- type: array
- type: object
- flexVolume:
- properties:
- driver:
- type: string
- fsType:
- type: string
- options:
- additionalProperties:
- type: string
- type: object
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- required:
- - driver
- type: object
- flocker:
- properties:
- datasetName:
- type: string
- datasetUUID:
- type: string
- type: object
- gcePersistentDisk:
- properties:
- fsType:
- type: string
- partition:
- format: int32
- type: integer
- pdName:
- type: string
- readOnly:
- type: boolean
- required:
- - pdName
- type: object
- glusterfs:
- properties:
- endpoints:
- type: string
- path:
- type: string
- readOnly:
- type: boolean
- required:
- - endpoints
- - path
- type: object
- hostPath:
- properties:
- path:
- type: string
- type:
- type: string
- required:
- - path
- type: object
- iscsi:
- properties:
- chapAuthDiscovery:
- type: boolean
- chapAuthSession:
- type: boolean
- fsType:
- type: string
- initiatorName:
- type: string
- iqn:
- type: string
- iscsiInterface:
- type: string
- lun:
- format: int32
- type: integer
- portals:
- items:
- type: string
- type: array
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- targetPortal:
- type: string
- required:
- - iqn
- - lun
- - targetPortal
- type: object
- name:
- type: string
- nfs:
- properties:
- path:
- type: string
- readOnly:
- type: boolean
- server:
- type: string
- required:
- - path
- - server
- type: object
- persistentVolumeClaim:
- properties:
- claimName:
- type: string
- readOnly:
- type: boolean
- required:
- - claimName
- type: object
- photonPersistentDisk:
- properties:
- fsType:
- type: string
- pdID:
- type: string
- required:
- - pdID
- type: object
- portworxVolume:
- properties:
- fsType:
- type: string
- readOnly:
- type: boolean
- volumeID:
- type: string
- required:
- - volumeID
- type: object
- projected:
- properties:
- defaultMode:
- format: int32
- type: integer
- sources:
- items:
- properties:
- clusterTrustBundle:
- properties:
- labelSelector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
- required:
- - key
- - operator
- type: object
- type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
- type: object
- x-kubernetes-map-type: atomic
- name:
- type: string
- optional:
- type: boolean
- path:
- type: string
- signerName:
- type: string
- required:
- - path
- type: object
- configMap:
- properties:
- items:
- items:
- properties:
- key:
- type: string
- mode:
- format: int32
- type: integer
- path:
- type: string
- required:
- - key
- - path
- type: object
- type: array
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- downwardAPI:
- properties:
- items:
- items:
- properties:
- fieldRef:
- properties:
- apiVersion:
- type: string
- fieldPath:
- type: string
- required:
- - fieldPath
- type: object
- x-kubernetes-map-type: atomic
- mode:
- format: int32
- type: integer
- path:
- type: string
- resourceFieldRef:
- properties:
- containerName:
- type: string
- divisor:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- resource:
- type: string
- required:
- - resource
- type: object
- x-kubernetes-map-type: atomic
- required:
- - path
- type: object
- type: array
- type: object
- secret:
- properties:
- items:
- items:
- properties:
- key:
- type: string
- mode:
- format: int32
- type: integer
- path:
- type: string
- required:
- - key
- - path
- type: object
- type: array
- name:
- type: string
- optional:
- type: boolean
- type: object
- x-kubernetes-map-type: atomic
- serviceAccountToken:
- properties:
- audience:
- type: string
- expirationSeconds:
- format: int64
- type: integer
- path:
- type: string
- required:
- - path
- type: object
- type: object
- type: array
- type: object
- quobyte:
- properties:
- group:
- type: string
- readOnly:
- type: boolean
- registry:
- type: string
- tenant:
- type: string
- user:
- type: string
- volume:
- type: string
- required:
- - registry
- - volume
- type: object
- rbd:
- properties:
- fsType:
- type: string
- image:
- type: string
- keyring:
- type: string
- monitors:
- items:
- type: string
- type: array
- pool:
- type: string
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- user:
- type: string
- required:
- - image
- - monitors
- type: object
- scaleIO:
- properties:
- fsType:
- type: string
- gateway:
- type: string
- protectionDomain:
- type: string
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- sslEnabled:
- type: boolean
- storageMode:
- type: string
- storagePool:
- type: string
- system:
- type: string
- volumeName:
- type: string
- required:
- - gateway
- - secretRef
- - system
- type: object
- secret:
- properties:
- defaultMode:
- format: int32
- type: integer
- items:
- items:
- properties:
- key:
- type: string
- mode:
- format: int32
- type: integer
- path:
- type: string
- required:
- - key
- - path
- type: object
- type: array
- optional:
- type: boolean
- secretName:
- type: string
- type: object
- storageos:
- properties:
- fsType:
- type: string
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- volumeName:
- type: string
- volumeNamespace:
- type: string
- type: object
- vsphereVolume:
- properties:
- fsType:
- type: string
- storagePolicyID:
- type: string
- storagePolicyName:
- type: string
- volumePath:
- type: string
- required:
- - volumePath
- type: object
- required:
- - name
- type: object
- type: array
+ runAsNonRoot:
+ type: boolean
+ runAsUser:
+ format: int64
+ type: integer
+ seLinuxOptions:
+ properties:
+ level:
+ type: string
+ role:
+ type: string
+ type:
+ type: string
+ user:
+ type: string
+ type: object
+ seccompProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
+ windowsOptions:
+ properties:
+ gmsaCredentialSpec:
+ type: string
+ gmsaCredentialSpecName:
+ type: string
+ hostProcess:
+ type: boolean
+ runAsUserName:
+ type: string
+ type: object
+ type: object
+ type: object
+ serviceMonitor:
+ properties:
+ interval:
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ type: object
+ type: object
type: object
type: object
serviceTemplates:
@@ -3374,35 +505,10 @@ spec:
- alias
type: object
type: array
- storageType:
- enum:
- - Durable
- - Ephemeral
- type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
topology:
properties:
brokers:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -3441,10 +547,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3459,6 +567,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3497,6 +606,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3509,12 +619,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3525,6 +639,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3532,6 +647,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3546,6 +662,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3563,6 +680,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3604,6 +722,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3621,6 +740,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3663,6 +783,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3693,6 +814,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3767,6 +889,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3797,6 +920,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3887,16 +1011,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3952,6 +1087,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3982,6 +1118,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4044,6 +1181,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4055,6 +1195,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4064,6 +1206,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4076,6 +1221,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -4085,10 +1231,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -4101,10 +1249,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4119,6 +1269,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4157,6 +1308,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4169,12 +1321,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4185,6 +1341,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4192,6 +1349,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4206,6 +1364,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4223,6 +1382,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4264,6 +1424,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4281,6 +1442,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4323,6 +1485,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4353,6 +1516,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4427,6 +1591,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4457,6 +1622,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4547,16 +1713,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4612,6 +1789,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4642,6 +1820,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4706,6 +1885,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4717,6 +1899,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4726,6 +1910,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4739,8 +1926,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -4755,6 +1945,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4766,10 +1957,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4784,6 +1977,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4822,6 +2016,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4834,12 +2029,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4850,6 +2049,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4857,6 +2057,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4871,6 +2072,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4888,6 +2090,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4929,6 +2132,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4946,6 +2150,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4988,6 +2193,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5018,6 +2224,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5092,6 +2299,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5122,6 +2330,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5212,16 +2421,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5277,6 +2497,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5307,6 +2528,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5369,6 +2591,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5380,6 +2605,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5389,6 +2616,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5417,6 +2647,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -5441,6 +2680,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -5479,6 +2727,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -5491,6 +2740,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -5581,6 +2831,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -5590,6 +2841,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5607,6 +2859,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5635,7 +2888,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5650,6 +2905,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5705,6 +2961,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5767,6 +3024,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5826,11 +3084,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5863,10 +3123,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5883,6 +3145,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5952,11 +3215,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6033,11 +3298,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6072,7 +3339,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6118,6 +3387,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -6136,7 +3406,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6156,6 +3428,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -6187,6 +3460,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -6194,6 +3468,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6216,6 +3491,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6254,6 +3530,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -6268,6 +3545,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6296,127 +3574,14 @@ spec:
type: object
type: object
replicas:
+ default: 1
format: int32
type: integer
- storage:
- properties:
- accessModes:
- items:
- type: string
- type: array
- dataSource:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- dataSourceRef:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- required:
- - kind
- - name
- type: object
- resources:
- properties:
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- selector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
- required:
- - key
- - operator
- type: object
- type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
- type: object
- x-kubernetes-map-type: atomic
- storageClassName:
- type: string
- volumeAttributesClassName:
- type: string
- volumeMode:
- type: string
- volumeName:
- type: string
- type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
coordinators:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -6455,10 +3620,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6473,6 +3640,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6511,6 +3679,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6523,12 +3692,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6539,6 +3712,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6546,6 +3720,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6560,6 +3735,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6577,6 +3753,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6618,6 +3795,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6635,6 +3813,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6677,6 +3856,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6707,6 +3887,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6781,6 +3962,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6811,6 +3993,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6901,16 +4084,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6966,6 +4160,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6996,6 +4191,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7058,6 +4254,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7069,6 +4268,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7078,6 +4279,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7090,6 +4294,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -7099,10 +4304,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -7115,10 +4322,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7133,6 +4342,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7171,6 +4381,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7183,12 +4394,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7199,6 +4414,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7206,6 +4422,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -7220,6 +4437,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7237,6 +4455,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7278,6 +4497,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7295,6 +4515,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7337,6 +4558,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7367,6 +4589,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7441,6 +4664,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7471,6 +4695,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7561,16 +4786,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7626,6 +4862,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7656,6 +4893,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7720,6 +4958,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7731,6 +4972,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7740,6 +4983,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7753,8 +4999,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -7769,6 +5018,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7780,10 +5030,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7798,6 +5050,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7836,6 +5089,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7848,12 +5102,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7864,6 +5122,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7871,6 +5130,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -7885,6 +5145,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7902,6 +5163,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7943,6 +5205,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7960,6 +5223,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8002,6 +5266,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8032,6 +5297,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8106,6 +5372,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8136,6 +5403,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8226,16 +5494,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -8291,6 +5570,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8321,6 +5601,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8383,6 +5664,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -8394,6 +5678,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -8403,6 +5689,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -8431,6 +5720,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -8455,6 +5753,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -8493,6 +5800,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -8505,6 +5813,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -8595,6 +5904,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -8604,6 +5914,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8621,6 +5932,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8649,7 +5961,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8664,6 +5978,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8719,6 +6034,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8781,6 +6097,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8840,11 +6157,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8877,10 +6196,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8897,6 +6218,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8966,11 +6288,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9047,11 +6371,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9086,7 +6412,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9132,6 +6460,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -9150,7 +6479,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9170,6 +6501,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -9201,6 +6533,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -9208,6 +6541,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9230,6 +6564,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9268,6 +6603,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -9282,6 +6618,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9310,127 +6647,25 @@ spec:
type: object
type: object
replicas:
+ default: 1
format: int32
type: integer
- storage:
- properties:
- accessModes:
- items:
- type: string
- type: array
- dataSource:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- dataSourceRef:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- required:
- - kind
- - name
- type: object
- resources:
- properties:
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- selector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
- required:
- - key
- - operator
- type: object
- type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
- type: object
- x-kubernetes-map-type: atomic
- storageClassName:
- type: string
- volumeAttributesClassName:
- type: string
- volumeMode:
- type: string
- volumeName:
- type: string
- type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
historicals:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
+ ephemeralStorage:
properties:
- name:
+ medium:
type: string
+ sizeLimit:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -9469,10 +6704,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9487,6 +6724,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9525,6 +6763,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9537,12 +6776,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9553,6 +6796,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9560,6 +6804,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9574,6 +6819,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9591,6 +6837,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9632,6 +6879,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9649,6 +6897,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9691,6 +6940,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9721,6 +6971,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9795,6 +7046,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9825,6 +7077,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9915,16 +7168,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9980,6 +7244,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10010,6 +7275,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10072,6 +7338,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -10083,6 +7352,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10092,6 +7363,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -10104,6 +7378,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -10113,10 +7388,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -10129,10 +7406,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -10147,6 +7426,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10185,6 +7465,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10197,12 +7478,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10213,6 +7498,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10220,6 +7506,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -10234,6 +7521,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10251,6 +7539,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10292,6 +7581,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10309,6 +7599,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10351,6 +7642,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10381,6 +7673,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10455,6 +7748,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10485,6 +7779,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10575,16 +7870,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -10640,6 +7946,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10670,6 +7977,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10734,6 +8042,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -10745,6 +8056,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10754,6 +8067,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -10767,8 +8083,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -10783,6 +8102,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10794,10 +8114,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -10812,6 +8134,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10850,6 +8173,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10862,12 +8186,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10878,6 +8206,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10885,6 +8214,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -10899,6 +8229,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10916,6 +8247,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10957,6 +8289,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10974,6 +8307,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11016,6 +8350,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11046,6 +8381,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11120,6 +8456,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11150,6 +8487,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11240,16 +8578,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11305,6 +8654,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11335,6 +8685,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11397,6 +8748,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -11408,6 +8762,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -11417,6 +8773,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -11445,6 +8804,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -11469,6 +8837,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -11507,6 +8884,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -11519,6 +8897,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -11609,6 +8988,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -11618,6 +8998,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11635,6 +9016,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11663,7 +9045,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11678,6 +9062,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11733,6 +9118,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -11795,6 +9181,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -11854,11 +9241,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11891,10 +9280,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -11911,6 +9302,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11980,11 +9372,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12061,11 +9455,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12100,7 +9496,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12146,6 +9544,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -12164,7 +9563,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12184,6 +9585,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -12215,6 +9617,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -12222,6 +9625,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12244,6 +9648,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12282,6 +9687,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -12296,6 +9702,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12324,6 +9731,7 @@ spec:
type: object
type: object
replicas:
+ default: 1
format: int32
type: integer
storage:
@@ -12332,6 +9740,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -12391,11 +9800,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12411,40 +9822,27 @@ spec:
volumeName:
type: string
type: object
+ storageType:
+ enum:
+ - Durable
+ - Ephemeral
+ type: string
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
middleManagers:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
+ ephemeralStorage:
properties:
- name:
+ medium:
type: string
+ sizeLimit:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -12483,10 +9881,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -12501,6 +9901,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12539,6 +9940,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12551,12 +9953,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12567,6 +9973,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12574,6 +9981,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -12588,6 +9996,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -12605,6 +10014,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12646,6 +10056,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -12663,6 +10074,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12705,6 +10117,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -12735,6 +10148,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12809,6 +10223,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -12839,6 +10254,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12929,16 +10345,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -12994,6 +10421,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13024,6 +10452,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13086,6 +10515,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -13097,6 +10529,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -13106,6 +10540,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -13118,6 +10555,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -13127,10 +10565,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -13143,10 +10583,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -13161,6 +10603,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13199,6 +10642,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13211,12 +10655,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13227,6 +10675,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13234,6 +10683,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -13248,6 +10698,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13265,6 +10716,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13306,6 +10758,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13323,6 +10776,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13365,6 +10819,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13395,6 +10850,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13469,6 +10925,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13499,6 +10956,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13589,16 +11047,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -13654,6 +11123,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13684,6 +11154,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13748,6 +11219,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -13759,6 +11233,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -13768,6 +11244,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -13781,8 +11260,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -13797,6 +11279,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -13808,10 +11291,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -13826,6 +11311,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13864,6 +11350,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13876,12 +11363,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13892,6 +11383,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13899,6 +11391,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -13913,6 +11406,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13930,6 +11424,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13971,6 +11466,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13988,6 +11484,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -14030,6 +11527,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -14060,6 +11558,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -14134,6 +11633,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -14164,6 +11664,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -14254,16 +11755,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -14319,6 +11831,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -14349,6 +11862,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -14411,6 +11925,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -14422,6 +11939,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -14431,6 +11950,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -14459,6 +11981,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -14483,6 +12014,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -14521,6 +12061,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -14533,6 +12074,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -14623,6 +12165,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -14632,6 +12175,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14649,6 +12193,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14677,7 +12222,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14692,6 +12239,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14747,6 +12295,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -14809,6 +12358,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -14868,11 +12418,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14905,10 +12457,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -14925,6 +12479,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14994,11 +12549,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -15075,11 +12632,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -15114,7 +12673,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15160,6 +12721,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -15178,7 +12740,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15198,6 +12762,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -15229,6 +12794,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -15236,6 +12802,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -15258,6 +12825,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -15296,6 +12864,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -15310,6 +12879,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -15338,6 +12908,7 @@ spec:
type: object
type: object
replicas:
+ default: 1
format: int32
type: integer
storage:
@@ -15346,6 +12917,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -15405,11 +12977,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -15425,40 +12999,16 @@ spec:
volumeName:
type: string
type: object
+ storageType:
+ enum:
+ - Durable
+ - Ephemeral
+ type: string
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
overlords:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -15497,10 +13047,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -15515,6 +13067,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15553,6 +13106,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15565,12 +13119,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15581,6 +13139,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15588,6 +13147,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -15602,6 +13162,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15619,6 +13180,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15660,6 +13222,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15677,6 +13240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15719,6 +13283,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15749,6 +13314,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15823,6 +13389,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15853,6 +13420,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15943,16 +13511,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -16008,6 +13587,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -16038,6 +13618,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16100,6 +13681,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -16111,6 +13695,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -16120,6 +13706,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -16132,6 +13721,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -16141,10 +13731,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -16157,10 +13749,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -16175,6 +13769,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16213,6 +13808,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16225,12 +13821,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16241,6 +13841,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16248,6 +13849,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -16262,6 +13864,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -16279,6 +13882,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16320,6 +13924,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -16337,6 +13942,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16379,6 +13985,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -16409,6 +14016,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16483,6 +14091,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -16513,6 +14122,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16603,16 +14213,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -16668,6 +14289,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -16698,6 +14320,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16762,6 +14385,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -16773,6 +14399,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -16782,6 +14410,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -16795,8 +14426,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -16811,6 +14445,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16822,10 +14457,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -16840,6 +14477,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16878,6 +14516,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16890,12 +14529,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16906,6 +14549,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16913,6 +14557,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -16927,6 +14572,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -16944,6 +14590,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -16985,6 +14632,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -17002,6 +14650,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -17044,6 +14693,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -17074,6 +14724,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -17148,6 +14799,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -17178,6 +14830,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -17268,16 +14921,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -17333,6 +14997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -17363,6 +15028,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -17425,6 +15091,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -17436,6 +15105,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -17445,6 +15116,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -17473,6 +15147,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -17497,6 +15180,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -17535,6 +15227,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -17547,6 +15240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -17637,6 +15331,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -17646,6 +15341,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -17663,6 +15359,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -17691,7 +15388,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -17706,6 +15405,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -17761,6 +15461,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -17823,6 +15524,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -17882,11 +15584,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -17919,10 +15623,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -17939,6 +15645,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -18008,11 +15715,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -18089,11 +15798,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -18128,7 +15839,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18174,6 +15887,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -18192,7 +15906,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18212,6 +15928,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -18243,6 +15960,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -18250,6 +15968,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -18272,6 +15991,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -18283,196 +16003,85 @@ spec:
type: string
system:
type: string
- volumeName:
- type: string
- required:
- - gateway
- - secretRef
- - system
- type: object
- secret:
- properties:
- defaultMode:
- format: int32
- type: integer
- items:
- items:
- properties:
- key:
- type: string
- mode:
- format: int32
- type: integer
- path:
- type: string
- required:
- - key
- - path
- type: object
- type: array
- optional:
- type: boolean
- secretName:
- type: string
- type: object
- storageos:
- properties:
- fsType:
- type: string
- readOnly:
- type: boolean
- secretRef:
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- volumeName:
- type: string
- volumeNamespace:
- type: string
- type: object
- vsphereVolume:
- properties:
- fsType:
- type: string
- storagePolicyID:
- type: string
- storagePolicyName:
- type: string
- volumePath:
- type: string
- required:
- - volumePath
- type: object
- required:
- - name
- type: object
- type: array
- type: object
- type: object
- replicas:
- format: int32
- type: integer
- storage:
- properties:
- accessModes:
- items:
- type: string
- type: array
- dataSource:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- dataSourceRef:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- required:
- - kind
- - name
- type: object
- resources:
- properties:
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- selector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
+ volumeName:
+ type: string
+ required:
+ - gateway
+ - secretRef
+ - system
+ type: object
+ secret:
+ properties:
+ defaultMode:
+ format: int32
+ type: integer
+ items:
+ items:
+ properties:
+ key:
+ type: string
+ mode:
+ format: int32
+ type: integer
+ path:
+ type: string
+ required:
+ - key
+ - path
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ optional:
+ type: boolean
+ secretName:
+ type: string
+ type: object
+ storageos:
+ properties:
+ fsType:
+ type: string
+ readOnly:
+ type: boolean
+ secretRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ volumeName:
+ type: string
+ volumeNamespace:
+ type: string
+ type: object
+ vsphereVolume:
+ properties:
+ fsType:
+ type: string
+ storagePolicyID:
+ type: string
+ storagePolicyName:
+ type: string
+ volumePath:
+ type: string
+ required:
+ - volumePath
+ type: object
required:
- - key
- - operator
+ - name
type: object
type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
type: object
- x-kubernetes-map-type: atomic
- storageClassName:
- type: string
- volumeAttributesClassName:
- type: string
- volumeMode:
- type: string
- volumeName:
- type: string
type: object
+ replicas:
+ default: 1
+ format: int32
+ type: integer
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
routers:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -18511,10 +16120,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -18529,6 +16140,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18567,6 +16179,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18579,12 +16192,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18595,6 +16212,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -18602,6 +16220,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -18616,6 +16235,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -18633,6 +16253,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -18674,6 +16295,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -18691,6 +16313,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -18733,6 +16356,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -18763,6 +16387,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -18837,6 +16462,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -18867,6 +16493,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -18957,16 +16584,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -19022,6 +16660,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -19052,6 +16691,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19114,6 +16754,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -19125,6 +16768,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -19134,6 +16779,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -19146,6 +16794,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -19155,10 +16804,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -19171,10 +16822,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -19189,6 +16842,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19227,6 +16881,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19239,12 +16894,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19255,6 +16914,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19262,6 +16922,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -19276,6 +16937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -19293,6 +16955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19334,6 +16997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -19351,6 +17015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19393,6 +17058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -19423,6 +17089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19497,6 +17164,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -19527,6 +17195,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19617,16 +17286,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -19682,6 +17362,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -19712,6 +17393,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19776,6 +17458,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -19787,6 +17472,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -19796,6 +17483,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -19809,8 +17499,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -19825,6 +17518,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -19836,10 +17530,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -19854,6 +17550,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19892,6 +17589,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19904,12 +17602,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19920,6 +17622,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -19927,6 +17630,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -19941,6 +17645,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -19958,6 +17663,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -19999,6 +17705,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -20016,6 +17723,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -20058,6 +17766,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -20088,6 +17797,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -20162,6 +17872,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -20192,6 +17903,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -20282,16 +17994,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -20347,6 +18070,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -20377,6 +18101,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -20439,6 +18164,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -20450,6 +18178,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -20459,6 +18189,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -20487,6 +18220,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -20511,6 +18253,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -20549,6 +18300,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -20561,6 +18313,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -20651,6 +18404,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -20660,6 +18414,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -20677,6 +18432,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -20705,7 +18461,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -20720,6 +18478,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -20775,6 +18534,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -20837,6 +18597,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -20896,11 +18657,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -20933,10 +18696,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -20953,6 +18718,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -21022,11 +18788,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -21103,11 +18871,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -21142,7 +18912,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -21188,6 +18960,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -21206,7 +18979,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -21226,6 +19001,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -21257,6 +19033,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -21264,6 +19041,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -21286,6 +19064,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -21324,6 +19103,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -21338,6 +19118,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -21366,117 +19147,12 @@ spec:
type: object
type: object
replicas:
+ default: 1
format: int32
type: integer
- storage:
- properties:
- accessModes:
- items:
- type: string
- type: array
- dataSource:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- dataSourceRef:
- properties:
- apiGroup:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- required:
- - kind
- - name
- type: object
- resources:
- properties:
- limits:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- requests:
- additionalProperties:
- anyOf:
- - type: integer
- - type: string
- pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
- x-kubernetes-int-or-string: true
- type: object
- type: object
- selector:
- properties:
- matchExpressions:
- items:
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- items:
- type: string
- type: array
- required:
- - key
- - operator
- type: object
- type: array
- matchLabels:
- additionalProperties:
- type: string
- type: object
- type: object
- x-kubernetes-map-type: atomic
- storageClassName:
- type: string
- volumeAttributesClassName:
- type: string
- volumeMode:
- type: string
- volumeName:
- type: string
- type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
- required:
- - brokers
- - coordinators
- - historicals
- - middleManagers
type: object
version:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/elasticsearches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/elasticsearches.yaml
index 9caedab23..55f707b8d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/elasticsearches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/elasticsearches.yaml
@@ -164,6 +164,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -175,6 +176,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -300,6 +302,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -309,6 +312,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -326,6 +330,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -354,7 +359,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -369,6 +376,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -424,6 +432,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -465,6 +474,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -524,11 +534,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -561,10 +573,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -581,6 +595,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -617,6 +632,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -634,6 +650,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -672,6 +689,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -719,16 +737,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -832,11 +861,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -911,11 +942,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -950,7 +983,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -996,6 +1031,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1014,7 +1050,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1034,6 +1072,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1065,6 +1104,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1072,6 +1112,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1094,6 +1135,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1134,6 +1176,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1148,6 +1191,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1268,6 +1312,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1306,6 +1351,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1357,16 +1403,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1472,11 +1529,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1488,11 +1547,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1503,6 +1564,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1519,11 +1581,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1535,14 +1599,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1568,11 +1635,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1602,11 +1671,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1617,6 +1688,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1630,6 +1702,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1646,11 +1719,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1680,11 +1755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1695,12 +1772,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1722,11 +1801,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1756,11 +1837,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1771,6 +1854,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1784,6 +1868,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1800,11 +1885,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1834,11 +1921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1849,12 +1938,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1865,16 +1956,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1928,6 +2030,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1937,10 +2040,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1960,6 +2065,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1998,6 +2104,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2020,6 +2127,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2031,10 +2139,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2049,6 +2159,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2087,6 +2198,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2099,12 +2211,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2115,6 +2231,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2122,6 +2239,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2136,6 +2254,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2153,6 +2272,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2194,6 +2314,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2211,6 +2332,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2253,6 +2375,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2283,6 +2406,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2357,6 +2481,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2387,6 +2512,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2477,16 +2603,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2542,6 +2679,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2572,6 +2710,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2634,6 +2773,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2645,6 +2787,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2654,6 +2798,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2670,6 +2817,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2687,6 +2835,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2728,6 +2877,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2745,6 +2895,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2787,6 +2938,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2817,6 +2969,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2862,6 +3015,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2875,6 +3035,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2905,6 +3066,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2982,6 +3144,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3020,6 +3191,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3032,6 +3204,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3083,11 +3256,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3134,6 +3309,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3196,6 +3373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3205,6 +3383,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3222,6 +3401,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3250,7 +3430,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3265,6 +3447,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3320,6 +3503,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3382,6 +3566,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3441,11 +3626,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3478,10 +3665,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3498,6 +3687,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3567,11 +3757,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3648,11 +3840,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3687,7 +3881,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3733,6 +3929,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3751,7 +3948,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3771,6 +3970,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3802,6 +4002,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3809,6 +4010,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3831,6 +4033,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3869,6 +4072,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3883,6 +4087,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3941,6 +4146,7 @@ spec:
secureConfigSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4020,6 +4226,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4079,11 +4286,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4269,6 +4478,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4328,11 +4538,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4422,6 +4634,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4481,11 +4694,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4575,6 +4790,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4634,11 +4850,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4728,6 +4946,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4787,11 +5006,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4881,6 +5102,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4940,11 +5162,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5034,6 +5258,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5093,11 +5318,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5187,6 +5414,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5246,11 +5474,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5340,6 +5570,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5399,11 +5630,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5493,6 +5726,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5552,11 +5786,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5646,6 +5882,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5705,11 +5942,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5799,6 +6038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5858,11 +6098,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/etcds.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/etcds.yaml
index 6fca5f6db..777a628c2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/etcds.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/etcds.yaml
@@ -113,6 +113,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -209,6 +210,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -218,6 +220,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -235,6 +238,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -263,7 +267,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -278,6 +284,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -333,6 +340,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -374,6 +382,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -433,11 +442,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -470,10 +481,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -490,6 +503,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -526,6 +540,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -543,6 +558,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -581,6 +597,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -628,16 +645,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -741,11 +769,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -820,11 +850,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -859,7 +891,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -905,6 +939,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -923,7 +958,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -943,6 +980,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -974,6 +1012,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -981,6 +1020,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1003,6 +1043,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1043,6 +1084,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1057,6 +1099,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1112,6 +1155,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1150,6 +1194,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1201,16 +1246,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1316,11 +1372,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1332,11 +1390,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1347,6 +1407,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1363,11 +1424,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1379,14 +1442,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1412,11 +1478,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1446,11 +1514,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1461,6 +1531,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1474,6 +1545,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1490,11 +1562,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1524,11 +1598,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1539,12 +1615,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1566,11 +1644,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1600,11 +1680,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1615,6 +1697,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1628,6 +1711,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1644,11 +1728,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1678,11 +1764,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1693,12 +1781,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1709,16 +1799,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1772,6 +1873,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1781,10 +1883,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1804,6 +1908,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1842,6 +1947,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1864,6 +1970,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1875,10 +1982,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1893,6 +2002,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1931,6 +2041,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1943,12 +2054,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1959,6 +2074,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1966,6 +2082,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1980,6 +2097,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1997,6 +2115,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2038,6 +2157,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2055,6 +2175,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2097,6 +2218,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2127,6 +2249,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2201,6 +2324,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2231,6 +2355,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2321,16 +2446,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2386,6 +2522,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2416,6 +2553,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2478,6 +2616,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2489,6 +2630,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2498,6 +2641,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2514,6 +2660,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2531,6 +2678,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2572,6 +2720,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2589,6 +2738,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2631,6 +2781,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2661,6 +2812,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2706,6 +2858,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2719,6 +2878,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2749,6 +2909,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2826,6 +2987,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2864,6 +3034,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2876,6 +3047,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2927,11 +3099,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2978,6 +3152,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3040,6 +3216,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3049,6 +3226,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3066,6 +3244,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3094,7 +3273,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3109,6 +3290,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3164,6 +3346,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3226,6 +3409,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3285,11 +3469,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3322,10 +3508,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3342,6 +3530,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3411,11 +3600,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3492,11 +3683,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3531,7 +3724,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3577,6 +3772,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3595,7 +3791,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3615,6 +3813,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3646,6 +3845,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3653,6 +3853,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3675,6 +3876,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3713,6 +3915,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3727,6 +3930,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3833,6 +4037,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3892,11 +4097,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/ferretdbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/ferretdbs.yaml
index 3d10f4426..73a8ad9d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/ferretdbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/ferretdbs.yaml
@@ -158,6 +158,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -187,6 +188,13 @@ spec:
required:
- externallyManaged
type: object
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
halted:
type: boolean
healthChecker:
@@ -240,6 +248,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -278,6 +287,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -329,16 +339,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -398,14 +419,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -444,10 +457,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -462,6 +477,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -500,6 +516,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -512,12 +529,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -528,6 +549,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -535,6 +557,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -549,6 +572,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -566,6 +590,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -607,6 +632,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -624,6 +650,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -666,6 +693,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -696,6 +724,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -770,6 +799,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -800,6 +830,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -890,16 +921,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -955,6 +997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -985,6 +1028,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1047,6 +1091,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1058,6 +1105,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1067,6 +1116,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1079,6 +1131,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1088,10 +1141,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1104,10 +1159,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1122,6 +1179,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1160,6 +1218,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1172,12 +1231,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1188,6 +1251,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1195,6 +1259,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1209,6 +1274,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1226,6 +1292,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1267,6 +1334,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1284,6 +1352,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1326,6 +1395,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1356,6 +1426,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1430,6 +1501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1460,6 +1532,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1550,16 +1623,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1615,6 +1699,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1645,6 +1730,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1709,6 +1795,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1720,6 +1809,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1729,6 +1820,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1742,8 +1836,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1758,6 +1855,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1769,10 +1867,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1787,6 +1887,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1825,6 +1926,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1837,12 +1939,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1853,6 +1959,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1860,6 +1967,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1874,6 +1982,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1891,6 +2000,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1932,6 +2042,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1949,6 +2060,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1991,6 +2103,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2021,6 +2134,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2095,6 +2209,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2125,6 +2240,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2215,16 +2331,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2280,6 +2407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2310,6 +2438,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2372,6 +2501,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2383,6 +2515,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2392,6 +2526,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2420,6 +2557,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2444,6 +2590,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2482,6 +2637,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2494,6 +2650,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2584,6 +2741,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2593,6 +2751,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2610,6 +2769,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2638,7 +2798,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2653,6 +2815,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2708,6 +2871,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2770,6 +2934,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2829,11 +2994,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2866,10 +3033,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2886,6 +3055,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2955,11 +3125,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3036,11 +3208,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3075,7 +3249,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3121,6 +3297,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3139,7 +3316,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3159,6 +3338,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3190,6 +3370,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3197,6 +3378,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3219,6 +3401,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3257,6 +3440,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3271,6 +3455,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3384,6 +3569,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3443,11 +3629,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3468,13 +3656,6 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/kafkas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/kafkas.yaml
index e3056cf07..fb6b9c79b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/kafkas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/kafkas.yaml
@@ -158,12 +158,14 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -181,6 +183,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -222,10 +225,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -240,6 +245,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -278,6 +284,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -290,12 +297,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -306,6 +317,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -313,6 +325,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -327,6 +340,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -344,6 +358,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -385,6 +400,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -402,6 +418,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -444,6 +461,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -474,6 +492,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -548,6 +567,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -578,6 +598,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -668,16 +689,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -733,6 +765,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -763,6 +796,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -825,6 +859,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -836,6 +873,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -845,6 +884,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -857,6 +899,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -866,10 +909,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -882,10 +927,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -900,6 +947,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -938,6 +986,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -950,12 +999,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -966,6 +1019,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -973,6 +1027,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -987,6 +1042,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1004,6 +1060,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1045,6 +1102,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1062,6 +1120,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1104,6 +1163,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1134,6 +1194,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1208,6 +1269,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1238,6 +1300,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1328,16 +1391,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1393,6 +1467,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1423,6 +1498,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1487,6 +1563,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1498,6 +1577,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1507,6 +1588,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1520,8 +1604,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1536,6 +1623,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1547,10 +1635,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1565,6 +1655,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1603,6 +1694,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1615,12 +1707,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1631,6 +1727,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1638,6 +1735,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1652,6 +1750,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1669,6 +1768,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1710,6 +1810,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1727,6 +1828,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1769,6 +1871,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1799,6 +1902,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1873,6 +1977,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1903,6 +2008,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1993,16 +2099,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2058,6 +2175,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2088,6 +2206,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2150,6 +2269,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2161,6 +2283,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2170,6 +2294,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2198,6 +2325,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2222,6 +2358,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2260,6 +2405,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2272,6 +2418,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2362,6 +2509,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2371,6 +2519,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2388,6 +2537,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2416,7 +2566,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2431,6 +2583,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2486,6 +2639,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2548,6 +2702,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2607,11 +2762,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2644,10 +2801,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2664,6 +2823,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2733,11 +2893,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2814,11 +2976,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2853,7 +3017,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2899,6 +3065,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2917,7 +3084,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2937,6 +3106,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2968,6 +3138,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2975,6 +3146,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2997,6 +3169,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3035,6 +3208,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3049,6 +3223,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3113,6 +3288,13 @@ spec:
suffix:
type: string
type: object
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableSecurity:
type: boolean
enableSSL:
@@ -3143,6 +3325,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3176,6 +3359,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3214,6 +3398,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3265,16 +3450,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3372,10 +3568,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3390,6 +3588,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3428,6 +3627,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3440,12 +3640,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3456,6 +3660,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3463,6 +3668,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3477,6 +3683,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3494,6 +3701,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3535,6 +3743,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3552,6 +3761,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3594,6 +3804,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3624,6 +3835,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3698,6 +3910,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3728,6 +3941,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3818,16 +4032,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3883,6 +4108,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3913,6 +4139,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3975,6 +4202,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -3986,6 +4216,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3995,6 +4227,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4007,6 +4242,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -4016,10 +4252,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -4032,10 +4270,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4050,6 +4290,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4088,6 +4329,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4100,12 +4342,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4116,6 +4362,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4123,6 +4370,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4137,6 +4385,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4154,6 +4403,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4195,6 +4445,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4212,6 +4463,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4254,6 +4506,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4284,6 +4537,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4358,6 +4612,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4388,6 +4643,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4478,16 +4734,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4543,6 +4810,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4573,6 +4841,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4637,6 +4906,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4648,6 +4920,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4657,6 +4931,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4670,8 +4947,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -4686,6 +4966,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4697,10 +4978,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4715,6 +4998,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4753,6 +5037,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4765,12 +5050,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4781,6 +5070,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4788,6 +5078,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4802,6 +5093,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4819,6 +5111,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4860,6 +5153,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4877,6 +5171,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4919,6 +5214,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4949,6 +5245,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5023,6 +5320,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5053,6 +5351,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5143,16 +5442,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5208,6 +5518,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5238,6 +5549,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5300,6 +5612,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5311,6 +5626,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5320,6 +5637,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5348,6 +5668,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -5372,6 +5701,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -5410,6 +5748,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -5422,6 +5761,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -5512,6 +5852,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -5521,6 +5862,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5538,6 +5880,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5566,7 +5909,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5581,6 +5926,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5636,6 +5982,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5698,6 +6045,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5757,11 +6105,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5794,10 +6144,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5814,6 +6166,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5883,11 +6236,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5964,11 +6319,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6003,7 +6360,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6049,6 +6408,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -6067,7 +6427,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6087,6 +6449,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -6118,6 +6481,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -6125,6 +6489,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6147,6 +6512,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6185,6 +6551,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -6199,6 +6566,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6305,6 +6673,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6364,11 +6733,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6389,13 +6760,6 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
@@ -6546,6 +6910,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6605,11 +6970,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6691,6 +7058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6750,11 +7118,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mariadbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mariadbs.yaml
index 0e827ead6..a1bf40b29 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mariadbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mariadbs.yaml
@@ -190,11 +190,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -215,11 +217,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -248,6 +252,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -259,6 +264,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -299,16 +305,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -471,6 +488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -480,6 +498,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -497,6 +516,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -525,7 +545,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -540,6 +562,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -595,6 +618,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -636,6 +660,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -695,11 +720,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -732,10 +759,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -752,6 +781,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -788,6 +818,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -805,6 +836,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -843,6 +875,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -890,16 +923,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1003,11 +1047,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1082,11 +1128,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1121,7 +1169,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1167,6 +1217,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1185,7 +1236,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1205,6 +1258,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1236,6 +1290,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1243,6 +1298,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1265,6 +1321,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1305,6 +1362,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1319,6 +1377,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1374,6 +1433,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1412,6 +1472,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1463,16 +1524,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1578,11 +1650,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1594,11 +1668,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1609,6 +1685,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1625,11 +1702,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1641,14 +1720,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1674,11 +1756,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1708,11 +1792,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1723,6 +1809,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1736,6 +1823,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1752,11 +1840,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1786,11 +1876,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1801,12 +1893,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1828,11 +1922,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1862,11 +1958,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1877,6 +1975,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1890,6 +1989,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1906,11 +2006,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1940,11 +2042,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1955,12 +2059,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1971,16 +2077,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2034,6 +2151,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2043,10 +2161,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2066,6 +2186,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2104,6 +2225,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2126,6 +2248,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2137,10 +2260,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2155,6 +2280,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2193,6 +2319,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2205,12 +2332,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2221,6 +2352,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2228,6 +2360,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2242,6 +2375,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2259,6 +2393,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2300,6 +2435,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2317,6 +2453,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2359,6 +2496,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2389,6 +2527,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2463,6 +2602,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2493,6 +2633,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2583,16 +2724,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2648,6 +2800,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2678,6 +2831,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2740,6 +2894,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2751,6 +2908,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2760,6 +2919,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2776,6 +2938,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2793,6 +2956,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2834,6 +2998,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2851,6 +3016,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2893,6 +3059,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2923,6 +3090,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2968,6 +3136,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2981,6 +3156,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3011,6 +3187,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3088,6 +3265,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3126,6 +3312,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3138,6 +3325,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3189,11 +3377,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3240,6 +3430,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3302,6 +3494,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3311,6 +3504,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3328,6 +3522,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3356,7 +3551,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3371,6 +3568,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3426,6 +3624,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3488,6 +3687,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3547,11 +3747,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3584,10 +3786,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3604,6 +3808,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3673,11 +3878,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3754,11 +3961,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3793,7 +4002,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3839,6 +4050,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3857,7 +4069,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3877,6 +4091,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3908,6 +4123,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3915,6 +4131,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3937,6 +4154,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3975,6 +4193,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3989,6 +4208,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4097,6 +4317,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4156,11 +4377,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/memcacheds.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/memcacheds.yaml
index cd68493b1..2d980cf19 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/memcacheds.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/memcacheds.yaml
@@ -125,6 +125,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -180,6 +181,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -189,6 +191,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -206,6 +209,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -234,7 +238,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -249,6 +255,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -304,6 +311,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -345,6 +353,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -404,11 +413,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -441,10 +452,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -461,6 +474,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -541,11 +555,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -620,11 +636,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -659,7 +677,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -705,6 +725,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -723,7 +744,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -743,6 +766,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -774,6 +798,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -781,6 +806,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -803,6 +829,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -841,6 +868,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -855,6 +883,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -930,6 +959,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -968,6 +998,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1019,16 +1050,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1134,11 +1176,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1150,11 +1194,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1165,6 +1211,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1181,11 +1228,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1197,14 +1246,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1230,11 +1282,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1264,11 +1318,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1279,6 +1335,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1292,6 +1349,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1308,11 +1366,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1342,11 +1402,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1357,12 +1419,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1384,11 +1448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1418,11 +1484,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1433,6 +1501,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1446,6 +1515,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1462,11 +1532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1496,11 +1568,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1511,12 +1585,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1527,16 +1603,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1590,6 +1677,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1599,10 +1687,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1622,6 +1712,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1660,6 +1751,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1682,6 +1774,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1693,10 +1786,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1711,6 +1806,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1749,6 +1845,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1761,12 +1858,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1777,6 +1878,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1784,6 +1886,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1798,6 +1901,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1815,6 +1919,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1856,6 +1961,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1873,6 +1979,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1915,6 +2022,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1945,6 +2053,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2019,6 +2128,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2049,6 +2159,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2139,16 +2250,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2204,6 +2326,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2234,6 +2357,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2296,6 +2420,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2307,6 +2434,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2316,6 +2445,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2332,6 +2464,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2349,6 +2482,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2390,6 +2524,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2407,6 +2542,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2449,6 +2585,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2479,6 +2616,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2524,6 +2662,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2537,6 +2682,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2567,6 +2713,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2644,6 +2791,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2682,6 +2838,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2694,6 +2851,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2745,11 +2903,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2796,6 +2956,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2858,6 +3020,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2867,6 +3030,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2884,6 +3048,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2912,7 +3077,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2927,6 +3094,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2982,6 +3150,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3044,6 +3213,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3103,11 +3273,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3140,10 +3312,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3160,6 +3334,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3229,11 +3404,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3310,11 +3487,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3349,7 +3528,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3395,6 +3576,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3413,7 +3595,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3433,6 +3617,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3464,6 +3649,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3471,6 +3657,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3493,6 +3680,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3531,6 +3719,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3545,6 +3734,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mongodbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mongodbs.yaml
index 671dda13a..6b7725404 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mongodbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mongodbs.yaml
@@ -209,11 +209,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -234,11 +236,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -252,6 +256,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -301,11 +306,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -317,11 +324,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -332,6 +341,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -348,11 +358,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -364,14 +376,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -397,11 +412,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -431,11 +448,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -446,6 +465,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -459,6 +479,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -475,11 +496,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -509,11 +532,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -524,12 +549,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -551,11 +578,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -585,11 +614,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -600,6 +631,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -613,6 +645,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -629,11 +662,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -663,11 +698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -678,12 +715,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -694,16 +733,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -757,6 +807,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -766,10 +817,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -789,6 +842,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -827,6 +881,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -849,6 +904,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -860,10 +916,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -878,6 +936,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -916,6 +975,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -928,12 +988,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -944,6 +1008,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -951,6 +1016,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -965,6 +1031,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -982,6 +1049,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1023,6 +1091,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1040,6 +1109,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1082,6 +1152,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1112,6 +1183,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1186,6 +1258,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1216,6 +1289,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1306,16 +1380,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1371,6 +1456,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1401,6 +1487,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1463,6 +1550,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1474,6 +1564,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1483,6 +1575,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1499,6 +1594,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1516,6 +1612,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1557,6 +1654,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1574,6 +1672,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1616,6 +1715,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1646,6 +1746,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1691,6 +1792,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -1704,6 +1812,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1734,6 +1843,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1811,6 +1921,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -1849,6 +1968,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -1861,6 +1981,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -1912,11 +2033,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1963,6 +2086,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2025,6 +2150,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2034,6 +2160,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2051,6 +2178,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2079,7 +2207,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2094,6 +2224,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2149,6 +2280,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2211,6 +2343,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2270,11 +2403,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2307,10 +2442,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2327,6 +2464,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2396,11 +2534,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2477,11 +2617,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2516,7 +2658,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2562,6 +2706,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2580,7 +2725,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2600,6 +2747,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2631,6 +2779,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2638,6 +2787,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2660,6 +2810,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2698,6 +2849,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -2712,6 +2864,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2761,6 +2914,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2779,6 +2933,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2819,16 +2974,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2917,6 +3083,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2966,11 +3133,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -2982,11 +3151,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -2997,6 +3168,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -3013,11 +3185,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -3029,14 +3203,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -3062,11 +3239,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3096,11 +3275,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3111,6 +3292,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3124,6 +3306,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3140,11 +3323,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3174,11 +3359,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3189,12 +3376,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -3216,11 +3405,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3250,11 +3441,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3265,6 +3458,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -3278,6 +3472,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -3294,11 +3489,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3328,11 +3525,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3343,12 +3542,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -3359,16 +3560,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3422,6 +3634,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -3431,10 +3644,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -3454,6 +3669,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3492,6 +3708,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3514,6 +3731,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3525,10 +3743,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3543,6 +3763,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3581,6 +3802,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3593,12 +3815,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3609,6 +3835,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3616,6 +3843,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3630,6 +3858,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3647,6 +3876,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3688,6 +3918,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3705,6 +3936,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3747,6 +3979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3777,6 +4010,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3851,6 +4085,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3881,6 +4116,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3971,16 +4207,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4036,6 +4283,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4066,6 +4314,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4128,6 +4377,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4139,6 +4391,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4148,6 +4402,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4164,6 +4421,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4181,6 +4439,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4222,6 +4481,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4239,6 +4499,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4281,6 +4542,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4311,6 +4573,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4356,6 +4619,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -4369,6 +4639,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4399,6 +4670,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4476,6 +4748,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -4514,6 +4795,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -4526,6 +4808,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -4577,11 +4860,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4628,6 +4913,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4690,6 +4977,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -4699,6 +4987,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4716,6 +5005,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4744,7 +5034,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4759,6 +5051,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4814,6 +5107,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -4876,6 +5170,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4935,11 +5230,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4972,10 +5269,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -4992,6 +5291,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5061,11 +5361,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5142,11 +5444,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5181,7 +5485,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5227,6 +5533,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -5245,7 +5552,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5265,6 +5574,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -5296,6 +5606,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -5303,6 +5614,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5325,6 +5637,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5363,6 +5676,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -5377,6 +5691,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5413,6 +5728,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5472,11 +5788,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5587,6 +5905,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -5596,6 +5915,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5613,6 +5933,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5641,7 +5962,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5656,6 +5979,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5711,6 +6035,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5752,6 +6077,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -5811,11 +6137,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -5848,10 +6176,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -5868,6 +6198,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5904,6 +6235,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5921,6 +6253,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5959,6 +6292,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6006,16 +6340,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6119,11 +6464,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6198,11 +6545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6237,7 +6586,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6283,6 +6634,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -6301,7 +6653,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6321,6 +6675,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -6352,6 +6707,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -6359,6 +6715,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6381,6 +6738,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6421,6 +6779,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -6435,6 +6794,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6463,6 +6823,7 @@ spec:
keyFileSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6496,6 +6857,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6534,6 +6896,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6585,16 +6948,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6700,11 +7074,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6716,11 +7092,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -6731,6 +7109,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -6747,11 +7126,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -6763,14 +7144,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -6796,11 +7180,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6830,11 +7216,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6845,6 +7233,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -6858,6 +7247,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -6874,11 +7264,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6908,11 +7300,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6923,12 +7317,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -6950,11 +7346,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6984,11 +7382,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6999,6 +7399,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -7012,6 +7413,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -7028,11 +7430,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7062,11 +7466,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7077,12 +7483,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -7093,16 +7501,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7156,6 +7575,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -7165,10 +7585,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -7188,6 +7610,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7226,6 +7649,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7248,6 +7672,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7259,10 +7684,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7277,6 +7704,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7315,6 +7743,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7327,12 +7756,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7343,6 +7776,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7350,6 +7784,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -7364,6 +7799,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7381,6 +7817,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7422,6 +7859,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7439,6 +7877,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7481,6 +7920,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7511,6 +7951,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7585,6 +8026,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7615,6 +8057,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7705,16 +8148,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7770,6 +8224,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7800,6 +8255,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7862,6 +8318,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7873,6 +8332,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7882,6 +8343,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7898,6 +8362,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7915,6 +8380,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7956,6 +8422,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7973,6 +8440,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8015,6 +8483,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8045,6 +8514,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8090,6 +8560,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -8103,6 +8580,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8133,6 +8611,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8210,6 +8689,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -8248,6 +8736,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -8260,6 +8749,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -8311,11 +8801,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8362,6 +8854,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -8424,6 +8918,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -8433,6 +8928,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8450,6 +8946,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8478,7 +8975,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8493,6 +8992,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8548,6 +9048,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8610,6 +9111,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -8669,11 +9171,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8706,10 +9210,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -8726,6 +9232,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8795,11 +9302,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8876,11 +9385,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -8915,7 +9426,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8961,6 +9474,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -8979,7 +9493,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8999,6 +9515,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -9030,6 +9547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -9037,6 +9555,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9059,6 +9578,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9097,6 +9617,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -9111,6 +9632,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9225,6 +9747,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9285,11 +9808,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -9301,11 +9826,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -9316,6 +9843,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -9332,11 +9860,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -9348,14 +9878,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -9381,11 +9914,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9415,11 +9950,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9430,6 +9967,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9443,6 +9981,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9459,11 +9998,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9493,11 +10034,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9508,12 +10051,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -9535,11 +10080,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9569,11 +10116,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9584,6 +10133,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -9597,6 +10147,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -9613,11 +10164,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9647,11 +10200,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9662,12 +10217,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -9678,16 +10235,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9741,6 +10309,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -9750,10 +10319,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -9773,6 +10344,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9811,6 +10383,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9833,6 +10406,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9844,10 +10418,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9862,6 +10438,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9900,6 +10477,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9912,12 +10490,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9928,6 +10510,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9935,6 +10518,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9949,6 +10533,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9966,6 +10551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10007,6 +10593,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10024,6 +10611,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10066,6 +10654,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10096,6 +10685,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10170,6 +10760,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10200,6 +10791,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10290,16 +10882,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -10355,6 +10958,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10385,6 +10989,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10447,6 +11052,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -10458,6 +11066,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10467,6 +11077,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -10483,6 +11096,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10500,6 +11114,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10541,6 +11156,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10558,6 +11174,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10600,6 +11217,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10630,6 +11248,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10675,6 +11294,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -10688,6 +11314,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10718,6 +11345,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10795,6 +11423,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -10833,6 +11470,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -10845,6 +11483,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -10896,11 +11535,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10947,6 +11588,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -11009,6 +11652,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -11018,6 +11662,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11035,6 +11680,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11063,7 +11709,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11078,6 +11726,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11133,6 +11782,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -11195,6 +11845,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -11254,11 +11905,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11291,10 +11944,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -11311,6 +11966,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11380,11 +12036,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11461,11 +12119,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11500,7 +12160,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11546,6 +12208,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -11564,7 +12227,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11584,6 +12249,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -11615,6 +12281,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -11622,6 +12289,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11644,6 +12312,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11682,6 +12351,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -11696,6 +12366,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11734,6 +12405,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -11793,11 +12465,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -11821,6 +12495,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11870,11 +12545,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11886,11 +12563,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -11901,6 +12580,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -11917,11 +12597,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -11933,14 +12615,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -11966,11 +12651,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12000,11 +12687,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12015,6 +12704,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -12028,6 +12718,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12044,11 +12735,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12078,11 +12771,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12093,12 +12788,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -12120,11 +12817,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12154,11 +12853,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12169,6 +12870,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -12182,6 +12884,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -12198,11 +12901,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12232,11 +12937,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12247,12 +12954,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -12263,16 +12972,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -12326,6 +13046,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -12335,10 +13056,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -12358,6 +13081,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12396,6 +13120,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12418,6 +13143,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12429,10 +13155,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -12447,6 +13175,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12485,6 +13214,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12497,12 +13227,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12513,6 +13247,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12520,6 +13255,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -12534,6 +13270,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -12551,6 +13288,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12592,6 +13330,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -12609,6 +13348,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12651,6 +13391,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -12681,6 +13422,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12755,6 +13497,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -12785,6 +13528,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -12875,16 +13619,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -12940,6 +13695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -12970,6 +13726,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13032,6 +13789,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -13043,6 +13803,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -13052,6 +13814,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -13068,6 +13833,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13085,6 +13851,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13126,6 +13893,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -13143,6 +13911,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13185,6 +13954,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13215,6 +13985,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13260,6 +14031,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -13273,6 +14051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -13303,6 +14082,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -13380,6 +14160,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -13418,6 +14207,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -13430,6 +14220,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -13481,11 +14272,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -13532,6 +14325,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -13594,6 +14389,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -13603,6 +14399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -13620,6 +14417,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -13648,7 +14446,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -13663,6 +14463,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -13718,6 +14519,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -13780,6 +14582,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -13839,11 +14642,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -13876,10 +14681,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -13896,6 +14703,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -13965,11 +14773,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14046,11 +14856,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14085,7 +14897,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14131,6 +14945,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -14149,7 +14964,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14169,6 +14986,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -14200,6 +15018,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -14207,6 +15026,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14229,6 +15049,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14267,6 +15088,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -14281,6 +15103,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14321,6 +15144,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14381,11 +15205,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -14397,11 +15223,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -14412,6 +15240,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -14428,11 +15257,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -14444,14 +15275,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -14477,11 +15311,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14511,11 +15347,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14526,6 +15364,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -14539,6 +15378,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -14555,11 +15395,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14589,11 +15431,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14604,12 +15448,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -14631,11 +15477,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14665,11 +15513,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14680,6 +15530,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -14693,6 +15544,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -14709,11 +15561,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14743,11 +15597,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -14758,12 +15614,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -14774,16 +15632,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -14837,6 +15706,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -14846,10 +15716,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -14869,6 +15741,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14907,6 +15780,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14929,6 +15803,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -14940,10 +15815,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -14958,6 +15835,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -14996,6 +15874,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15008,12 +15887,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15024,6 +15907,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -15031,6 +15915,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -15045,6 +15930,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15062,6 +15948,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15103,6 +15990,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15120,6 +16008,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15162,6 +16051,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15192,6 +16082,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15266,6 +16157,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15296,6 +16188,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15386,16 +16279,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -15451,6 +16355,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15481,6 +16386,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15543,6 +16449,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -15554,6 +16463,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -15563,6 +16474,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -15579,6 +16493,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15596,6 +16511,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15637,6 +16553,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -15654,6 +16571,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15696,6 +16614,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15726,6 +16645,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15771,6 +16691,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -15784,6 +16711,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -15814,6 +16742,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -15891,6 +16820,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -15929,6 +16867,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -15941,6 +16880,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -15992,11 +16932,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -16043,6 +16985,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -16105,6 +17049,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -16114,6 +17059,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16131,6 +17077,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16159,7 +17106,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16174,6 +17123,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16229,6 +17179,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -16291,6 +17242,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -16350,11 +17302,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -16387,10 +17341,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -16407,6 +17363,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16476,11 +17433,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16557,11 +17516,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -16596,7 +17557,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16642,6 +17605,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -16660,7 +17624,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -16680,6 +17646,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -16711,6 +17678,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -16718,6 +17686,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16740,6 +17709,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16778,6 +17748,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -16792,6 +17763,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -16833,6 +17805,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -16892,11 +17865,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -16934,6 +17909,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -16993,11 +17969,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mssqlservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mssqlservers.yaml
index 3f010cf02..fb51592f3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mssqlservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mssqlservers.yaml
@@ -158,6 +158,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -198,16 +199,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -256,6 +268,13 @@ spec:
type: object
type: object
type: object
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
halted:
type: boolean
healthChecker:
@@ -370,6 +389,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -379,6 +399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -396,6 +417,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -424,7 +446,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -439,6 +463,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -494,6 +519,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -535,6 +561,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -594,11 +621,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -631,10 +660,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -651,6 +682,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -687,6 +719,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -704,6 +737,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -742,6 +776,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -789,16 +824,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -902,11 +948,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -981,11 +1029,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1020,7 +1070,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1066,6 +1118,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1084,7 +1137,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1104,6 +1159,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1135,6 +1191,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1142,6 +1199,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1164,6 +1222,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1204,6 +1263,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1218,6 +1278,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1370,14 +1431,6 @@ spec:
default: 60s
type: string
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -1416,10 +1469,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1434,6 +1489,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1472,6 +1528,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1484,12 +1541,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1500,6 +1561,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1507,6 +1569,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1521,6 +1584,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1538,6 +1602,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1579,6 +1644,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1596,6 +1662,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1638,6 +1705,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1668,6 +1736,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1742,6 +1811,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1772,6 +1842,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1862,16 +1933,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1927,6 +2009,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1957,6 +2040,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2019,6 +2103,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2030,6 +2117,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2039,6 +2128,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2051,6 +2143,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2060,10 +2153,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2076,10 +2171,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2094,6 +2191,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2132,6 +2230,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2144,12 +2243,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2160,6 +2263,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2167,6 +2271,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2181,6 +2286,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2198,6 +2304,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2239,6 +2346,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2256,6 +2364,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2298,6 +2407,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2328,6 +2438,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2402,6 +2513,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2432,6 +2544,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2522,16 +2635,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2587,6 +2711,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2617,6 +2742,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2681,6 +2807,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2692,6 +2821,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2701,6 +2832,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2714,8 +2848,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -2730,6 +2867,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2741,10 +2879,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2759,6 +2899,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2797,6 +2938,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2809,12 +2951,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2825,6 +2971,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2832,6 +2979,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2846,6 +2994,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2863,6 +3012,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2904,6 +3054,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2921,6 +3072,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2963,6 +3115,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2993,6 +3146,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3067,6 +3221,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3097,6 +3252,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3187,16 +3343,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3252,6 +3419,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3282,6 +3450,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3344,6 +3513,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -3355,6 +3527,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3364,6 +3538,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -3392,6 +3569,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -3416,6 +3602,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3454,6 +3649,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3466,6 +3662,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3556,6 +3753,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3565,6 +3763,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3582,6 +3781,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3610,7 +3810,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3625,6 +3827,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3680,6 +3883,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3742,6 +3946,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3801,11 +4006,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3838,10 +4045,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3858,6 +4067,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3927,11 +4137,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4008,11 +4220,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4047,7 +4261,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4093,6 +4309,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4111,7 +4328,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4131,6 +4350,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4162,6 +4382,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4169,6 +4390,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4191,6 +4413,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4229,6 +4452,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4243,6 +4467,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4349,6 +4574,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4408,11 +4634,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4433,13 +4661,111 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
+ tls:
+ properties:
+ certificates:
+ items:
+ properties:
+ alias:
+ type: string
+ dnsNames:
+ items:
+ type: string
+ type: array
+ duration:
+ type: string
+ emailAddresses:
+ items:
+ type: string
+ type: array
+ ipAddresses:
+ items:
+ type: string
+ type: array
+ issuerRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ privateKey:
+ properties:
+ encoding:
+ enum:
+ - PKCS1
+ - PKCS8
+ type: string
+ type: object
+ renewBefore:
+ type: string
+ secretName:
+ type: string
+ subject:
+ properties:
+ countries:
+ items:
+ type: string
+ type: array
+ localities:
+ items:
+ type: string
+ type: array
+ organizationalUnits:
+ items:
+ type: string
+ type: array
+ organizations:
+ items:
+ type: string
+ type: array
+ postalCodes:
+ items:
+ type: string
+ type: array
+ provinces:
+ items:
+ type: string
+ type: array
+ serialNumber:
+ type: string
+ streetAddresses:
+ items:
+ type: string
+ type: array
+ type: object
+ uris:
+ items:
+ type: string
+ type: array
+ required:
+ - alias
+ type: object
+ type: array
+ clientTLS:
+ type: boolean
+ issuerRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ required:
+ - clientTLS
+ type: object
topology:
properties:
availabilityGroup:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mysqls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mysqls.yaml
index 4bc591f86..5483a691b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mysqls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/mysqls.yaml
@@ -229,11 +229,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -254,11 +256,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -295,11 +299,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -320,11 +326,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -353,6 +361,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -364,6 +373,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -404,16 +414,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -576,6 +597,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -585,6 +607,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -602,6 +625,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -630,7 +654,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -645,6 +671,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -700,6 +727,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -741,6 +769,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -800,11 +829,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -837,10 +868,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -857,6 +890,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -893,6 +927,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -910,6 +945,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -948,6 +984,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -995,16 +1032,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1108,11 +1156,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1187,11 +1237,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1226,7 +1278,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1272,6 +1326,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1290,7 +1345,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1310,6 +1367,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1341,6 +1399,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1348,6 +1407,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1370,6 +1430,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1410,6 +1471,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1424,6 +1486,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1479,6 +1542,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1517,6 +1581,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1568,16 +1633,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1683,11 +1759,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1699,11 +1777,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1714,6 +1794,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1730,11 +1811,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1746,14 +1829,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1779,11 +1865,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1813,11 +1901,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1828,6 +1918,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1841,6 +1932,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1857,11 +1949,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1891,11 +1985,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1906,12 +2002,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1933,11 +2031,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1967,11 +2067,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1982,6 +2084,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1995,6 +2098,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -2011,11 +2115,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2045,11 +2151,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2060,12 +2168,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -2076,16 +2186,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2139,6 +2260,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2148,10 +2270,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2171,6 +2295,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2209,6 +2334,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2231,6 +2357,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2242,10 +2369,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2260,6 +2389,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2298,6 +2428,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2310,12 +2441,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2326,6 +2461,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2333,6 +2469,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2347,6 +2484,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2364,6 +2502,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2405,6 +2544,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2422,6 +2562,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2464,6 +2605,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2494,6 +2636,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2568,6 +2711,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2598,6 +2742,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2688,16 +2833,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2753,6 +2909,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2783,6 +2940,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2845,6 +3003,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2856,6 +3017,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2865,6 +3028,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2881,6 +3047,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2898,6 +3065,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2939,6 +3107,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2956,6 +3125,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2998,6 +3168,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3028,6 +3199,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3073,6 +3245,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -3086,6 +3265,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3116,6 +3296,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3193,6 +3374,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3231,6 +3421,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3243,6 +3434,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3294,11 +3486,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3345,6 +3539,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3407,6 +3603,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3416,6 +3613,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3433,6 +3631,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3461,7 +3660,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3476,6 +3677,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3531,6 +3733,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3593,6 +3796,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3652,11 +3856,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3689,10 +3895,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3709,6 +3917,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3778,11 +3987,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3859,11 +4070,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3898,7 +4111,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3944,6 +4159,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3962,7 +4178,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3982,6 +4200,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4013,6 +4232,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4020,6 +4240,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4042,6 +4263,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4080,6 +4302,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4094,6 +4317,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4202,6 +4426,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4261,11 +4486,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4461,11 +4688,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -4477,11 +4706,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -4492,6 +4723,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -4508,11 +4740,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -4524,14 +4758,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -4557,11 +4794,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4591,11 +4830,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4606,6 +4847,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -4619,6 +4861,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -4635,11 +4878,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4669,11 +4914,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4684,12 +4931,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -4711,11 +4960,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4745,11 +4996,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4760,6 +5013,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -4773,6 +5027,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -4789,11 +5044,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4823,11 +5080,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4838,12 +5097,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -4854,16 +5115,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4917,6 +5189,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -4926,10 +5199,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -4949,6 +5224,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4987,6 +5263,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5009,6 +5286,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5020,10 +5298,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -5038,6 +5318,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5076,6 +5357,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5088,12 +5370,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5104,6 +5390,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5111,6 +5398,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -5125,6 +5413,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5142,6 +5431,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5183,6 +5473,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5200,6 +5491,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5242,6 +5534,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5272,6 +5565,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5346,6 +5640,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5376,6 +5671,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5466,16 +5762,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5531,6 +5838,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5561,6 +5869,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5623,6 +5932,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5634,6 +5946,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5643,6 +5957,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5659,6 +5976,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5676,6 +5994,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5717,6 +6036,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5734,6 +6054,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5776,6 +6097,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5806,6 +6128,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5851,6 +6174,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -5864,6 +6194,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5894,6 +6225,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5971,6 +6303,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -6009,6 +6350,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -6021,6 +6363,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -6072,11 +6415,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6123,6 +6468,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -6185,6 +6532,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -6194,6 +6542,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6211,6 +6560,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6239,7 +6589,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6254,6 +6606,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6309,6 +6662,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -6371,6 +6725,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6430,11 +6785,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6467,10 +6824,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -6487,6 +6846,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6556,11 +6916,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6637,11 +6999,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6676,7 +7040,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6722,6 +7088,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -6740,7 +7107,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6760,6 +7129,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -6791,6 +7161,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -6798,6 +7169,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6820,6 +7192,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6858,6 +7231,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -6872,6 +7246,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/perconaxtradbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/perconaxtradbs.yaml
index 4e3b87c43..648039d6f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/perconaxtradbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/perconaxtradbs.yaml
@@ -147,11 +147,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -172,11 +174,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -189,6 +193,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -200,6 +205,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -240,16 +246,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -412,6 +429,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -421,6 +439,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -438,6 +457,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -466,7 +486,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -481,6 +503,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -536,6 +559,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -577,6 +601,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -636,11 +661,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -673,10 +700,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -693,6 +722,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -729,6 +759,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -746,6 +777,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -784,6 +816,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -831,16 +864,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -944,11 +988,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1023,11 +1069,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1062,7 +1110,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1108,6 +1158,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1126,7 +1177,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1146,6 +1199,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1177,6 +1231,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1184,6 +1239,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1206,6 +1262,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1246,6 +1303,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1260,6 +1318,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1315,6 +1374,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1353,6 +1413,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1404,16 +1465,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1519,11 +1591,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1535,11 +1609,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1550,6 +1626,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1566,11 +1643,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1582,14 +1661,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1615,11 +1697,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1649,11 +1733,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1664,6 +1750,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1677,6 +1764,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1693,11 +1781,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1727,11 +1817,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1742,12 +1834,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1769,11 +1863,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1803,11 +1899,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1818,6 +1916,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1831,6 +1930,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1847,11 +1947,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1881,11 +1983,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1896,12 +2000,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1912,16 +2018,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1975,6 +2092,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1984,10 +2102,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2007,6 +2127,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2045,6 +2166,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2067,6 +2189,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2078,10 +2201,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2096,6 +2221,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2134,6 +2260,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2146,12 +2273,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2162,6 +2293,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2169,6 +2301,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2183,6 +2316,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2200,6 +2334,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2241,6 +2376,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2258,6 +2394,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2300,6 +2437,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2330,6 +2468,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2404,6 +2543,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2434,6 +2574,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2524,16 +2665,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2589,6 +2741,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2619,6 +2772,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2681,6 +2835,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2692,6 +2849,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2701,6 +2860,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2717,6 +2879,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2734,6 +2897,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2775,6 +2939,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2792,6 +2957,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2834,6 +3000,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2864,6 +3031,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2909,6 +3077,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2922,6 +3097,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2952,6 +3128,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3029,6 +3206,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3067,6 +3253,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3079,6 +3266,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3130,11 +3318,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3181,6 +3371,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3243,6 +3435,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3252,6 +3445,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3269,6 +3463,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3297,7 +3492,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3312,6 +3509,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3367,6 +3565,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3429,6 +3628,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3488,11 +3688,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3525,10 +3727,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3545,6 +3749,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3614,11 +3819,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3695,11 +3902,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3734,7 +3943,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3780,6 +3991,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3798,7 +4010,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3818,6 +4032,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3849,6 +4064,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3856,6 +4072,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3878,6 +4095,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3916,6 +4134,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3930,6 +4149,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4038,6 +4258,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4097,11 +4318,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4129,6 +4352,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4137,6 +4361,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgbouncers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgbouncers.yaml
index 096cb4c0e..60e4d58e2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgbouncers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgbouncers.yaml
@@ -113,6 +113,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -124,6 +125,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -179,33 +181,30 @@ spec:
format: int64
type: integer
type: object
- databases:
- items:
- properties:
- alias:
- type: string
- databaseName:
- type: string
- databaseRef:
- properties:
- name:
- type: string
- namespace:
- type: string
- parameters:
- type: object
- x-kubernetes-embedded-resource: true
- x-kubernetes-preserve-unknown-fields: true
- required:
- - name
- - namespace
- type: object
- required:
- - alias
- - databaseName
- - databaseRef
- type: object
- type: array
+ database:
+ properties:
+ databaseName:
+ type: string
+ databaseRef:
+ properties:
+ name:
+ type: string
+ namespace:
+ type: string
+ parameters:
+ type: object
+ x-kubernetes-embedded-resource: true
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - name
+ - namespace
+ type: object
+ syncUsers:
+ type: boolean
+ required:
+ - databaseName
+ - databaseRef
+ type: object
healthChecker:
default:
failureThreshold: 1
@@ -257,6 +256,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -295,6 +295,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -346,16 +347,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -461,11 +473,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -477,11 +491,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -492,6 +508,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -508,11 +525,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -524,14 +543,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -557,11 +579,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -591,11 +615,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -606,6 +632,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -619,6 +646,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -635,11 +663,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -669,11 +699,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -684,12 +716,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -711,11 +745,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -745,11 +781,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -760,6 +798,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -773,6 +812,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -789,11 +829,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -823,11 +865,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -838,12 +882,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -854,16 +900,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -917,6 +974,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -926,10 +984,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -949,6 +1009,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -987,6 +1048,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1009,6 +1071,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1020,10 +1083,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1038,6 +1103,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1076,6 +1142,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1088,12 +1155,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1104,6 +1175,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1111,6 +1183,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1125,6 +1198,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1142,6 +1216,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1183,6 +1258,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1200,6 +1276,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1242,6 +1319,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1272,6 +1350,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1346,6 +1425,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1376,6 +1456,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1466,16 +1547,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1531,6 +1623,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1561,6 +1654,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1623,6 +1717,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1634,6 +1731,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1643,6 +1742,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1659,6 +1761,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1676,6 +1779,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1717,6 +1821,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1734,6 +1839,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1776,6 +1882,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1806,6 +1913,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1851,6 +1959,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -1864,6 +1979,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1894,6 +2010,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1971,6 +2088,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2009,6 +2135,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2021,6 +2148,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2072,11 +2200,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2123,6 +2253,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2185,6 +2317,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2194,6 +2327,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2211,6 +2345,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2239,7 +2374,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2254,6 +2391,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2309,6 +2447,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2371,6 +2510,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2430,11 +2570,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2467,10 +2609,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2487,6 +2631,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2556,11 +2701,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2637,11 +2784,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2676,7 +2825,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2722,6 +2873,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2740,7 +2892,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2760,6 +2914,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2791,6 +2946,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2798,6 +2954,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2820,6 +2977,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2858,6 +3016,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -2872,6 +3031,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgpools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgpools.yaml
index dc032911e..61f84d793 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgpools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/pgpools.yaml
@@ -158,6 +158,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -171,9 +172,17 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
healthChecker:
default:
failureThreshold: 1
@@ -231,6 +240,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -269,6 +279,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -320,16 +331,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -389,14 +411,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -435,10 +449,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -453,6 +469,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -491,6 +508,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -503,12 +521,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -519,6 +541,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -526,6 +549,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -540,6 +564,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -557,6 +582,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -598,6 +624,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -615,6 +642,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -657,6 +685,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -687,6 +716,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -761,6 +791,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -791,6 +822,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -881,16 +913,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -946,6 +989,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -976,6 +1020,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1038,6 +1083,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1049,6 +1097,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1058,6 +1108,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1070,6 +1123,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1079,10 +1133,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1095,10 +1151,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1113,6 +1171,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1151,6 +1210,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1163,12 +1223,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1179,6 +1243,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1186,6 +1251,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1200,6 +1266,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1217,6 +1284,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1258,6 +1326,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1275,6 +1344,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1317,6 +1387,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1347,6 +1418,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1421,6 +1493,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1451,6 +1524,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1541,16 +1615,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1606,6 +1691,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1636,6 +1722,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1700,6 +1787,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1711,6 +1801,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1720,6 +1812,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1733,8 +1828,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1749,6 +1847,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1760,10 +1859,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1778,6 +1879,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1816,6 +1918,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1828,12 +1931,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1844,6 +1951,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1851,6 +1959,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1865,6 +1974,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1882,6 +1992,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1923,6 +2034,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1940,6 +2052,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1982,6 +2095,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2012,6 +2126,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2086,6 +2201,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2116,6 +2232,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2206,16 +2323,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2271,6 +2399,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2301,6 +2430,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2363,6 +2493,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2374,6 +2507,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2383,6 +2518,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2411,6 +2549,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2435,6 +2582,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2473,6 +2629,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2485,6 +2642,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2575,6 +2733,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2584,6 +2743,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2601,6 +2761,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2629,7 +2790,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2644,6 +2807,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2699,6 +2863,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2761,6 +2926,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2820,11 +2986,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2857,10 +3025,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2877,6 +3047,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2946,11 +3117,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3027,11 +3200,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3066,7 +3241,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3112,6 +3289,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3130,7 +3308,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3150,6 +3330,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3181,6 +3362,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3188,6 +3370,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3210,6 +3393,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3248,6 +3432,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3262,6 +3447,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3382,13 +3568,6 @@ spec:
type: string
syncUsers:
type: boolean
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/postgreses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/postgreses.yaml
index 933c813af..0f4a32aec 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/postgreses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/postgreses.yaml
@@ -206,11 +206,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -231,11 +233,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -319,6 +323,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -336,6 +341,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -376,16 +382,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -550,6 +567,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -559,6 +577,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -576,6 +595,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -604,7 +624,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -619,6 +641,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -674,6 +697,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -715,6 +739,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -774,11 +799,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -811,10 +838,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -831,6 +860,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -867,6 +897,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -884,6 +915,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -922,6 +954,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -969,16 +1002,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1082,11 +1126,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1161,11 +1207,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1200,7 +1248,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1246,6 +1296,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1264,7 +1315,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1284,6 +1337,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1315,6 +1369,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1322,6 +1377,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1344,6 +1400,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1384,6 +1441,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1398,6 +1456,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1488,6 +1547,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1526,6 +1586,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1577,16 +1638,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1692,11 +1764,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1708,11 +1782,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1723,6 +1799,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1739,11 +1816,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1755,14 +1834,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1788,11 +1870,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1822,11 +1906,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1837,6 +1923,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1850,6 +1937,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1866,11 +1954,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1900,11 +1990,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1915,12 +2007,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1942,11 +2036,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1976,11 +2072,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1991,6 +2089,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -2004,6 +2103,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -2020,11 +2120,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2054,11 +2156,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2069,12 +2173,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -2085,16 +2191,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2148,6 +2265,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2157,10 +2275,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2180,6 +2300,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2218,6 +2339,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2240,6 +2362,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2251,10 +2374,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2269,6 +2394,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2307,6 +2433,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2319,12 +2446,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2335,6 +2466,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2342,6 +2474,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2356,6 +2489,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2373,6 +2507,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2414,6 +2549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2431,6 +2567,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2473,6 +2610,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2503,6 +2641,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2577,6 +2716,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2607,6 +2747,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2697,16 +2838,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2762,6 +2914,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2792,6 +2945,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2854,6 +3008,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2865,6 +3022,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2874,6 +3033,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2890,6 +3052,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2907,6 +3070,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2948,6 +3112,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2965,6 +3130,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3007,6 +3173,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3037,6 +3204,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3082,6 +3250,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -3095,6 +3270,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3125,6 +3301,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3202,6 +3379,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3240,6 +3426,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3252,6 +3439,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3303,11 +3491,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3354,6 +3544,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3416,6 +3608,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3425,6 +3618,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3442,6 +3636,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3470,7 +3665,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3485,6 +3682,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3540,6 +3738,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3602,6 +3801,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3661,11 +3861,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3698,10 +3900,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3718,6 +3922,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3787,11 +3992,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3868,11 +4075,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3907,7 +4116,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3953,6 +4164,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3971,7 +4183,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3991,6 +4205,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4022,6 +4237,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4029,6 +4245,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4051,6 +4268,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4089,6 +4307,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4103,6 +4322,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4262,6 +4482,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4321,11 +4542,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/proxysqls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/proxysqls.yaml
index 458a4ae0d..e68b8484a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/proxysqls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/proxysqls.yaml
@@ -141,6 +141,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -152,12 +153,14 @@ spec:
backend:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -261,6 +264,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -299,6 +303,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -350,16 +355,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -465,11 +481,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -481,11 +499,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -496,6 +516,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -512,11 +533,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -528,14 +551,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -561,11 +587,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -595,11 +623,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -610,6 +640,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -623,6 +654,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -639,11 +671,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -673,11 +707,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -688,12 +724,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -715,11 +753,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -749,11 +789,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -764,6 +806,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -777,6 +820,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -793,11 +837,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -827,11 +873,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -842,12 +890,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -858,16 +908,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -921,6 +982,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -930,10 +992,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -953,6 +1017,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -991,6 +1056,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1013,6 +1079,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1024,10 +1091,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1042,6 +1111,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1080,6 +1150,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1092,12 +1163,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1108,6 +1183,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1115,6 +1191,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1129,6 +1206,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1146,6 +1224,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1187,6 +1266,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1204,6 +1284,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1246,6 +1327,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1276,6 +1358,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1350,6 +1433,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1380,6 +1464,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1470,16 +1555,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1535,6 +1631,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1565,6 +1662,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1627,6 +1725,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1638,6 +1739,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1647,6 +1750,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1663,6 +1769,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1680,6 +1787,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1721,6 +1829,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1738,6 +1847,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1780,6 +1890,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1810,6 +1921,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1855,6 +1967,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -1868,6 +1987,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1898,6 +2018,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1975,6 +2096,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2013,6 +2143,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2025,6 +2156,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2076,11 +2208,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2127,6 +2261,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2189,6 +2325,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2198,6 +2335,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2215,6 +2353,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2243,7 +2382,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2258,6 +2399,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2313,6 +2455,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2375,6 +2518,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2434,11 +2578,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2471,10 +2617,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2491,6 +2639,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2560,11 +2709,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2641,11 +2792,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2680,7 +2833,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2726,6 +2881,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2744,7 +2900,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2764,6 +2922,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2795,6 +2954,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2802,6 +2962,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2824,6 +2985,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2862,6 +3024,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -2876,6 +3039,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/rabbitmqs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/rabbitmqs.yaml
index 1260aa5bf..20c000eff 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/rabbitmqs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/rabbitmqs.yaml
@@ -158,15 +158,24 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableSecurity:
type: boolean
enableSSL:
@@ -224,6 +233,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -262,6 +272,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -313,16 +324,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -382,14 +404,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -428,10 +442,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -446,6 +462,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -484,6 +501,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -496,12 +514,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -512,6 +534,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -519,6 +542,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -533,6 +557,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -550,6 +575,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -591,6 +617,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -608,6 +635,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -650,6 +678,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -680,6 +709,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -754,6 +784,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -784,6 +815,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -874,16 +906,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -939,6 +982,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -969,6 +1013,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1031,6 +1076,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1042,6 +1090,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1051,6 +1101,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1063,6 +1116,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1072,10 +1126,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1088,10 +1144,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1106,6 +1164,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1144,6 +1203,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1156,12 +1216,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1172,6 +1236,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1179,6 +1244,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1193,6 +1259,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1210,6 +1277,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1251,6 +1319,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1268,6 +1337,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1310,6 +1380,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1340,6 +1411,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1414,6 +1486,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1444,6 +1517,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1534,16 +1608,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1599,6 +1684,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1629,6 +1715,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1693,6 +1780,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1704,6 +1794,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1713,6 +1805,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1726,8 +1821,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1742,6 +1840,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1753,10 +1852,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1771,6 +1872,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1809,6 +1911,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1821,12 +1924,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1837,6 +1944,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1844,6 +1952,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1858,6 +1967,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1875,6 +1985,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1916,6 +2027,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1933,6 +2045,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1975,6 +2088,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2005,6 +2119,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2079,6 +2194,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2109,6 +2225,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2199,16 +2316,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2264,6 +2392,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2294,6 +2423,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2356,6 +2486,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2367,6 +2500,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2376,6 +2511,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2404,6 +2542,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2428,6 +2575,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2466,6 +2622,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2478,6 +2635,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2568,6 +2726,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2577,6 +2736,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2594,6 +2754,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2622,7 +2783,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2637,6 +2800,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2692,6 +2856,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2754,6 +2919,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2813,11 +2979,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2850,10 +3018,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2870,6 +3040,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2939,11 +3110,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3020,11 +3193,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3059,7 +3234,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3105,6 +3282,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3123,7 +3301,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3143,6 +3323,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3174,6 +3355,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3181,6 +3363,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3203,6 +3386,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3241,6 +3425,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3255,6 +3440,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3361,6 +3547,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3420,11 +3607,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3445,13 +3634,6 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redises.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redises.yaml
index 7ccf80e84..50ef852f5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redises.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redises.yaml
@@ -188,11 +188,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -213,11 +215,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -230,6 +234,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -250,6 +255,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -290,16 +296,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -464,6 +481,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -473,6 +491,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -490,6 +509,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -518,7 +538,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -533,6 +555,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -588,6 +611,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -629,6 +653,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -688,11 +713,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -725,10 +752,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -745,6 +774,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -781,6 +811,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -798,6 +829,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -836,6 +868,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -883,16 +916,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -996,11 +1040,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1075,11 +1121,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1114,7 +1162,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1160,6 +1210,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -1178,7 +1229,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1198,6 +1251,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1229,6 +1283,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1236,6 +1291,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1258,6 +1314,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1298,6 +1355,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1312,6 +1370,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1373,6 +1432,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1411,6 +1471,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1462,16 +1523,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1577,11 +1649,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1593,11 +1667,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -1608,6 +1684,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -1624,11 +1701,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -1640,14 +1719,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -1673,11 +1755,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1707,11 +1791,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1722,6 +1808,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1735,6 +1822,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1751,11 +1839,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1785,11 +1875,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1800,12 +1892,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -1827,11 +1921,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1861,11 +1957,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1876,6 +1974,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -1889,6 +1988,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -1905,11 +2005,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1939,11 +2041,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1954,12 +2058,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -1970,16 +2076,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2033,6 +2150,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2042,10 +2160,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2065,6 +2185,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2103,6 +2224,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2125,6 +2247,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2136,10 +2259,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2154,6 +2279,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2192,6 +2318,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2204,12 +2331,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2220,6 +2351,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2227,6 +2359,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2241,6 +2374,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2258,6 +2392,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2299,6 +2434,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2316,6 +2452,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2358,6 +2495,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2388,6 +2526,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2462,6 +2601,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2492,6 +2632,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2582,16 +2723,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2647,6 +2799,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2677,6 +2830,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2739,6 +2893,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2750,6 +2907,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2759,6 +2918,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2775,6 +2937,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2792,6 +2955,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2833,6 +2997,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2850,6 +3015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2892,6 +3058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2922,6 +3089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2967,6 +3135,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -2980,6 +3155,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3010,6 +3186,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3087,6 +3264,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3125,6 +3311,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3137,6 +3324,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3188,11 +3376,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3239,6 +3429,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3301,6 +3493,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3310,6 +3503,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3327,6 +3521,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3355,7 +3550,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3370,6 +3567,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3425,6 +3623,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3487,6 +3686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3546,11 +3746,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3583,10 +3785,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3603,6 +3807,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3672,11 +3877,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3753,11 +3960,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3792,7 +4001,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3838,6 +4049,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3856,7 +4068,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3876,6 +4090,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3907,6 +4122,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3914,6 +4130,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3936,6 +4153,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3974,6 +4192,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3988,6 +4207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4101,6 +4321,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4160,11 +4381,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redissentinels.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redissentinels.yaml
index 04b43428b..de56c7964 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redissentinels.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/redissentinels.yaml
@@ -62,6 +62,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -125,6 +126,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -163,6 +165,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -214,16 +217,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -329,11 +343,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -345,11 +361,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -360,6 +378,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -376,11 +395,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -392,14 +413,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -425,11 +449,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -459,11 +485,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -474,6 +502,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -487,6 +516,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -503,11 +533,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -537,11 +569,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -552,12 +586,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -579,11 +615,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -613,11 +651,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -628,6 +668,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -641,6 +682,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -657,11 +699,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -691,11 +735,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -706,12 +752,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
args:
@@ -722,16 +770,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -785,6 +844,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -794,10 +854,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -817,6 +879,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -855,6 +918,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -877,6 +941,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -888,10 +953,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -906,6 +973,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -944,6 +1012,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -956,12 +1025,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -972,6 +1045,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -979,6 +1053,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -993,6 +1068,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1010,6 +1086,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1051,6 +1128,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1068,6 +1146,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1110,6 +1189,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1140,6 +1220,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1214,6 +1295,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1244,6 +1326,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1334,16 +1417,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1399,6 +1493,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1429,6 +1524,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1491,6 +1587,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1502,6 +1601,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1511,6 +1612,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1527,6 +1631,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1544,6 +1649,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1585,6 +1691,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1602,6 +1709,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1644,6 +1752,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1674,6 +1783,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1719,6 +1829,13 @@ spec:
type: string
type: object
x-kubernetes-map-type: atomic
+ podPlacementPolicy:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
priority:
format: int32
type: integer
@@ -1732,6 +1849,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1762,6 +1880,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1839,6 +1958,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -1877,6 +2005,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -1889,6 +2018,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -1940,11 +2070,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1991,6 +2123,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2053,6 +2187,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2062,6 +2197,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2079,6 +2215,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2107,7 +2244,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2122,6 +2261,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2177,6 +2317,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2239,6 +2380,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2298,11 +2440,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2335,10 +2479,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2355,6 +2501,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2424,11 +2571,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2505,11 +2654,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2544,7 +2695,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2590,6 +2743,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -2608,7 +2762,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2628,6 +2784,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -2659,6 +2816,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -2666,6 +2824,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2688,6 +2847,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2726,6 +2886,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -2740,6 +2901,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2846,6 +3008,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2905,11 +3068,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/singlestores.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/singlestores.yaml
index 362a3fb65..6629ac636 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/singlestores.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/singlestores.yaml
@@ -158,15 +158,24 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
halted:
type: boolean
healthChecker:
@@ -281,6 +290,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -290,6 +300,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -307,6 +318,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -335,7 +347,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -350,6 +364,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -405,6 +420,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -446,6 +462,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -505,11 +522,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -542,10 +561,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -562,6 +583,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -598,6 +620,7 @@ spec:
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -615,6 +638,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -653,6 +677,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -700,16 +725,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -813,11 +849,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -892,11 +930,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -931,7 +971,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -977,6 +1019,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -995,7 +1038,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1015,6 +1060,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -1046,6 +1092,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -1053,6 +1100,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1075,6 +1123,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1115,6 +1164,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -1129,6 +1179,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1159,6 +1210,7 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1192,6 +1244,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1230,6 +1283,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1281,16 +1335,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1350,14 +1415,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -1396,10 +1453,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1414,6 +1473,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1452,6 +1512,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1464,12 +1525,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1480,6 +1545,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1487,6 +1553,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1501,6 +1568,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1518,6 +1586,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1559,6 +1628,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1576,6 +1646,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1618,6 +1689,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1648,6 +1720,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1722,6 +1795,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1752,6 +1826,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1842,16 +1917,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1907,6 +1993,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1937,6 +2024,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1999,6 +2087,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2010,6 +2101,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2019,6 +2112,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2031,6 +2127,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -2040,10 +2137,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -2056,10 +2155,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2074,6 +2175,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2112,6 +2214,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2124,12 +2227,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2140,6 +2247,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2147,6 +2255,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2161,6 +2270,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2178,6 +2288,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2219,6 +2330,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2236,6 +2348,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2278,6 +2391,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2308,6 +2422,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2382,6 +2497,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2412,6 +2528,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2502,16 +2619,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2567,6 +2695,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2597,6 +2726,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2661,6 +2791,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2672,6 +2805,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2681,6 +2816,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2694,8 +2832,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -2710,6 +2851,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2721,10 +2863,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2739,6 +2883,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2777,6 +2922,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2789,12 +2935,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2805,6 +2955,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2812,6 +2963,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2826,6 +2978,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2843,6 +2996,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2884,6 +3038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2901,6 +3056,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2943,6 +3099,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2973,6 +3130,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3047,6 +3205,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3077,6 +3236,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3167,16 +3327,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -3232,6 +3403,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3262,6 +3434,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3324,6 +3497,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -3335,6 +3511,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -3344,6 +3522,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -3372,6 +3553,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -3396,6 +3586,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3434,6 +3633,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3446,6 +3646,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3536,6 +3737,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3545,6 +3747,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3562,6 +3765,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3590,7 +3794,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3605,6 +3811,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3660,6 +3867,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3722,6 +3930,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3781,11 +3990,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3818,10 +4029,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3838,6 +4051,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3907,11 +4121,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3988,11 +4204,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4027,7 +4245,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4073,6 +4293,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4091,7 +4312,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4111,6 +4334,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4142,6 +4366,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4149,6 +4374,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4171,6 +4397,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4209,6 +4436,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4223,6 +4451,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4250,9 +4479,6 @@ spec:
type: array
type: object
type: object
- replicas:
- format: int32
- type: integer
serviceTemplates:
items:
properties:
@@ -4329,6 +4555,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -4388,11 +4615,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4413,13 +4642,6 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
@@ -4525,11 +4747,10 @@ spec:
properties:
aggregator:
properties:
- podPlacementPolicy:
- default:
- name: default
+ configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4571,10 +4792,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4589,6 +4812,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4627,6 +4851,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4639,12 +4864,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4655,6 +4884,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4662,6 +4892,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4676,6 +4907,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4693,6 +4925,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4734,6 +4967,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4751,6 +4985,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4793,6 +5028,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4823,6 +5059,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4897,6 +5134,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4927,6 +5165,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5017,16 +5256,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5082,6 +5332,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5112,6 +5363,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5174,6 +5426,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5185,6 +5440,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5194,6 +5451,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5206,6 +5466,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -5215,10 +5476,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -5231,10 +5494,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -5249,6 +5514,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5287,6 +5553,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5299,12 +5566,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5315,6 +5586,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5322,6 +5594,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -5336,6 +5609,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5353,6 +5627,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5394,6 +5669,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5411,6 +5687,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5453,6 +5730,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5483,6 +5761,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5557,6 +5836,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5587,6 +5867,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5677,16 +5958,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5742,6 +6034,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5772,6 +6065,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5836,6 +6130,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5847,6 +6144,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5856,6 +6155,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5869,8 +6171,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -5885,6 +6190,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5896,10 +6202,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -5914,6 +6222,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5952,6 +6261,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5964,12 +6274,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5980,6 +6294,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5987,6 +6302,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6001,6 +6317,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6018,6 +6335,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6059,6 +6377,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6076,6 +6395,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6118,6 +6438,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6148,6 +6469,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6222,6 +6544,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6252,6 +6575,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6342,16 +6666,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -6407,6 +6742,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6437,6 +6773,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6499,6 +6836,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -6510,6 +6850,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -6519,6 +6861,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -6547,6 +6892,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -6571,6 +6925,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -6609,6 +6972,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -6621,6 +6985,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -6711,6 +7076,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -6720,6 +7086,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6737,6 +7104,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6765,7 +7133,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6780,6 +7150,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6835,6 +7206,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -6897,6 +7269,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6956,11 +7329,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6993,10 +7368,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -7013,6 +7390,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7082,11 +7460,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7163,11 +7543,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7202,7 +7584,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7248,6 +7632,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -7266,7 +7651,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7286,6 +7673,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -7317,6 +7705,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -7324,6 +7713,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7346,6 +7736,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7384,6 +7775,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -7398,6 +7790,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7434,6 +7827,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -7493,11 +7887,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -7518,11 +7914,10 @@ spec:
type: object
leaf:
properties:
- podPlacementPolicy:
- default:
- name: default
+ configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7564,10 +7959,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7582,6 +7979,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7620,6 +8018,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7632,12 +8031,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7648,6 +8051,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7655,6 +8059,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -7669,6 +8074,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7686,6 +8092,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7727,6 +8134,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7744,6 +8152,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7786,6 +8195,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7816,6 +8226,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7890,6 +8301,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7920,6 +8332,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8010,16 +8423,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -8075,6 +8499,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8105,6 +8530,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8167,6 +8593,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -8178,6 +8607,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -8187,6 +8618,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -8199,6 +8633,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -8208,10 +8643,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -8224,10 +8661,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -8242,6 +8681,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8280,6 +8720,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8292,12 +8733,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8308,6 +8753,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8315,6 +8761,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -8329,6 +8776,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -8346,6 +8794,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8387,6 +8836,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -8404,6 +8854,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8446,6 +8897,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8476,6 +8928,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8550,6 +9003,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8580,6 +9034,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8670,16 +9125,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -8735,6 +9201,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8765,6 +9232,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8829,6 +9297,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -8840,6 +9311,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -8849,6 +9322,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -8862,8 +9338,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -8878,6 +9357,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8889,10 +9369,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -8907,6 +9389,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8945,6 +9428,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8957,12 +9441,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8973,6 +9461,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8980,6 +9469,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -8994,6 +9484,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9011,6 +9502,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9052,6 +9544,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9069,6 +9562,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9111,6 +9605,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9141,6 +9636,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9215,6 +9711,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9245,6 +9742,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9335,16 +9833,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -9400,6 +9909,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9430,6 +9940,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9492,6 +10003,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -9503,6 +10017,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -9512,6 +10028,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -9540,6 +10059,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -9564,6 +10092,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -9602,6 +10139,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -9614,6 +10152,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -9704,6 +10243,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -9713,6 +10253,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9730,6 +10271,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9758,7 +10300,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9773,6 +10317,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9828,6 +10373,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -9890,6 +10436,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -9949,11 +10496,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9986,10 +10535,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -10006,6 +10557,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10075,11 +10627,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10156,11 +10710,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -10195,7 +10751,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10241,6 +10799,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -10259,7 +10818,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10279,6 +10840,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -10310,6 +10872,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -10317,6 +10880,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10339,6 +10903,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10377,6 +10942,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -10391,6 +10957,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10427,6 +10994,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -10486,11 +11054,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/solrs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/solrs.yaml
index 41ffad03b..eab4d4bc6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/solrs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/solrs.yaml
@@ -156,21 +156,31 @@ spec:
authConfigSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
authSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableSecurity:
type: boolean
enableSSL:
@@ -226,6 +236,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -264,6 +275,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -315,16 +327,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -384,14 +407,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -430,10 +445,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -448,6 +465,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -486,6 +504,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -498,12 +517,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -514,6 +537,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -521,6 +545,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -535,6 +560,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -552,6 +578,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -593,6 +620,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -610,6 +638,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -652,6 +681,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -682,6 +712,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -756,6 +787,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -786,6 +818,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -876,16 +909,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -941,6 +985,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -971,6 +1016,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1033,6 +1079,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1044,6 +1093,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1053,6 +1104,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1065,6 +1119,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1074,10 +1129,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1090,10 +1147,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1108,6 +1167,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1146,6 +1206,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1158,12 +1219,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1174,6 +1239,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1181,6 +1247,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1195,6 +1262,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1212,6 +1280,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1253,6 +1322,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1270,6 +1340,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1312,6 +1383,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1342,6 +1414,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1416,6 +1489,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1446,6 +1520,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1536,16 +1611,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1601,6 +1687,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1631,6 +1718,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1695,6 +1783,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1706,6 +1797,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1715,6 +1808,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1728,8 +1824,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1744,6 +1843,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1755,10 +1855,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1773,6 +1875,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1811,6 +1914,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1823,12 +1927,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1839,6 +1947,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1846,6 +1955,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1860,6 +1970,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1877,6 +1988,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1918,6 +2030,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1935,6 +2048,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1977,6 +2091,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2007,6 +2122,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2081,6 +2197,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2111,6 +2228,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2201,16 +2319,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2266,6 +2395,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2296,6 +2426,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2358,6 +2489,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2369,6 +2503,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2378,6 +2514,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2406,6 +2545,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2430,6 +2578,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2468,6 +2625,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2480,6 +2638,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2570,6 +2729,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2579,6 +2739,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2596,6 +2757,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2624,7 +2786,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2639,6 +2803,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2694,6 +2859,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2756,6 +2922,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2815,11 +2982,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2852,10 +3021,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2872,6 +3043,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2941,11 +3113,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3022,11 +3196,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3061,7 +3237,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3107,6 +3285,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3125,7 +3304,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3145,6 +3326,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3176,6 +3358,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3183,6 +3366,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3205,6 +3389,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3243,6 +3428,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3257,6 +3443,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3371,6 +3558,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3430,11 +3618,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3455,13 +3645,6 @@ spec:
- Durable
- Ephemeral
type: string
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
tls:
properties:
certificates:
@@ -3567,19 +3750,6 @@ spec:
properties:
coordinator:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -3618,10 +3788,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -3636,6 +3808,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3674,6 +3847,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3686,12 +3860,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3702,6 +3880,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3709,6 +3888,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -3723,6 +3903,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3740,6 +3921,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3781,6 +3963,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -3798,6 +3981,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3840,6 +4024,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3870,6 +4055,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -3944,6 +4130,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -3974,6 +4161,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4064,16 +4252,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4129,6 +4328,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4159,6 +4359,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4221,6 +4422,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4232,6 +4436,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4241,6 +4447,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4253,6 +4462,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -4262,10 +4472,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -4278,10 +4490,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4296,6 +4510,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4334,6 +4549,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4346,12 +4562,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4362,6 +4582,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4369,6 +4590,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -4383,6 +4605,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4400,6 +4623,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4441,6 +4665,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -4458,6 +4683,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4500,6 +4726,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4530,6 +4757,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4604,6 +4832,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4634,6 +4863,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4724,16 +4954,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -4789,6 +5030,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -4819,6 +5061,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -4883,6 +5126,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -4894,6 +5140,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -4903,6 +5151,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -4916,8 +5167,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -4932,6 +5186,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4943,10 +5198,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -4961,6 +5218,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4999,6 +5257,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5011,12 +5270,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5027,6 +5290,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5034,6 +5298,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -5048,6 +5313,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5065,6 +5331,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5106,6 +5373,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -5123,6 +5391,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5165,6 +5434,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5195,6 +5465,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5269,6 +5540,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5299,6 +5571,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5389,16 +5662,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -5454,6 +5738,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -5484,6 +5769,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -5546,6 +5832,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -5557,6 +5846,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -5566,6 +5857,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -5594,6 +5888,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -5618,6 +5921,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -5656,6 +5968,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -5668,6 +5981,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -5758,6 +6072,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -5767,6 +6082,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5784,6 +6100,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5812,7 +6129,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -5827,6 +6146,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -5882,6 +6202,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -5944,6 +6265,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6003,11 +6325,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6040,10 +6364,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -6060,6 +6386,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6129,11 +6456,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6210,11 +6539,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6249,7 +6580,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6295,6 +6628,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -6313,7 +6647,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6333,6 +6669,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -6364,6 +6701,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -6371,6 +6709,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6393,6 +6732,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6431,6 +6771,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -6445,6 +6786,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -6481,6 +6823,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -6540,11 +6883,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -6562,38 +6907,9 @@ spec:
type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
data:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -6632,10 +6948,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -6650,6 +6968,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6688,6 +7007,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6700,12 +7020,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6716,6 +7040,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -6723,6 +7048,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -6737,6 +7063,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6754,6 +7081,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6795,6 +7123,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -6812,6 +7141,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6854,6 +7184,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6884,6 +7215,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -6958,6 +7290,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -6988,6 +7321,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7078,16 +7412,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7143,6 +7488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7173,6 +7519,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7235,6 +7582,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7246,6 +7596,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7255,6 +7607,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7267,6 +7622,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -7276,10 +7632,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -7292,10 +7650,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7310,6 +7670,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7348,6 +7709,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7360,12 +7722,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7376,6 +7742,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -7383,6 +7750,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -7397,6 +7765,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7414,6 +7783,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7455,6 +7825,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -7472,6 +7843,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7514,6 +7886,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7544,6 +7917,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7618,6 +7992,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7648,6 +8023,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7738,16 +8114,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -7803,6 +8190,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -7833,6 +8221,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -7897,6 +8286,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -7908,6 +8300,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -7917,6 +8311,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -7930,8 +8327,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -7946,6 +8346,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -7957,10 +8358,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -7975,6 +8378,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8013,6 +8417,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8025,12 +8430,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8041,6 +8450,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8048,6 +8458,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -8062,6 +8473,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -8079,6 +8491,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8120,6 +8533,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -8137,6 +8551,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8179,6 +8594,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8209,6 +8625,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8283,6 +8700,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8313,6 +8731,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8403,16 +8822,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -8468,6 +8898,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -8498,6 +8929,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -8560,6 +8992,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -8571,6 +9006,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -8580,6 +9017,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -8608,6 +9048,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -8632,6 +9081,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -8670,6 +9128,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -8682,6 +9141,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -8772,6 +9232,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -8781,6 +9242,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8798,6 +9260,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8826,7 +9289,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -8841,6 +9306,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -8896,6 +9362,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -8958,6 +9425,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -9017,11 +9485,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9054,10 +9524,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -9074,6 +9546,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9143,11 +9616,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9224,11 +9699,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9263,7 +9740,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9309,6 +9788,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -9327,7 +9807,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9347,6 +9829,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -9378,6 +9861,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -9385,6 +9869,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9407,6 +9892,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9445,6 +9931,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -9459,6 +9946,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -9495,6 +9983,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -9554,11 +10043,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -9576,38 +10067,9 @@ spec:
type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
overseer:
properties:
- nodeSelector:
- additionalProperties:
- type: string
- type: object
- x-kubernetes-map-type: atomic
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -9646,10 +10108,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -9664,6 +10128,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9702,6 +10167,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9714,12 +10180,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9730,6 +10200,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -9737,6 +10208,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -9751,6 +10223,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9768,6 +10241,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9809,6 +10283,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -9826,6 +10301,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9868,6 +10344,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -9898,6 +10375,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -9972,6 +10450,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10002,6 +10481,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10092,16 +10572,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -10157,6 +10648,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10187,6 +10679,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10249,6 +10742,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -10260,6 +10756,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10269,6 +10767,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -10281,6 +10782,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -10290,10 +10792,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -10306,10 +10810,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -10324,6 +10830,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10362,6 +10869,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10374,12 +10882,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10390,6 +10902,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -10397,6 +10910,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -10411,6 +10925,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10428,6 +10943,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10469,6 +10985,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -10486,6 +11003,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10528,6 +11046,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10558,6 +11077,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10632,6 +11152,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10662,6 +11183,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10752,16 +11274,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -10817,6 +11350,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -10847,6 +11381,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -10911,6 +11446,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -10922,6 +11460,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -10931,6 +11471,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -10944,8 +11487,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -10960,6 +11506,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -10971,10 +11518,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -10989,6 +11538,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11027,6 +11577,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11039,12 +11590,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11055,6 +11610,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11062,6 +11618,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -11076,6 +11633,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11093,6 +11651,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11134,6 +11693,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -11151,6 +11711,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11193,6 +11754,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11223,6 +11785,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11297,6 +11860,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11327,6 +11891,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11417,16 +11982,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -11482,6 +12058,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -11512,6 +12089,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -11574,6 +12152,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -11585,6 +12166,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -11594,6 +12177,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -11622,6 +12208,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -11646,6 +12241,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -11684,6 +12288,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -11696,6 +12301,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -11786,6 +12392,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -11795,6 +12402,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11812,6 +12420,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11840,7 +12449,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -11855,6 +12466,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -11910,6 +12522,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -11972,6 +12585,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -12031,11 +12645,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12068,10 +12684,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -12088,6 +12706,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12157,11 +12776,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12238,11 +12859,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12277,7 +12900,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12323,6 +12948,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -12341,7 +12967,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -12361,6 +12989,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -12392,6 +13021,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -12399,6 +13029,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12421,6 +13052,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12459,6 +13091,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -12473,6 +13106,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -12509,6 +13143,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -12568,11 +13203,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -12590,22 +13227,6 @@ spec:
type: object
suffix:
type: string
- tolerations:
- items:
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- format: int64
- type: integer
- value:
- type: string
- type: object
- type: array
type: object
type: object
version:
@@ -12613,12 +13234,14 @@ spec:
zookeeperDigestReadonlySecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
zookeeperDigestSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/zookeepers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/zookeepers.yaml
index 87f39bf83..c8ee4f0e3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/zookeepers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/kubedb.com/v1alpha2/zookeepers.yaml
@@ -162,15 +162,24 @@ spec:
externallyManaged:
type: boolean
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ deletionPolicy:
+ enum:
+ - Halt
+ - Delete
+ - WipeOut
+ - DoNotTerminate
+ type: string
disableAuth:
type: boolean
halted:
@@ -226,6 +235,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -264,6 +274,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -315,16 +326,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -384,14 +406,6 @@ spec:
type: object
type: object
type: object
- podPlacementPolicy:
- default:
- name: default
- properties:
- name:
- type: string
- type: object
- x-kubernetes-map-type: atomic
podTemplate:
properties:
controller:
@@ -430,10 +444,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -448,6 +464,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -486,6 +503,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -498,12 +516,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -514,6 +536,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -521,6 +544,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -535,6 +559,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -552,6 +577,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -593,6 +619,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -610,6 +637,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -652,6 +680,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -682,6 +711,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -756,6 +786,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -786,6 +817,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -876,16 +908,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -941,6 +984,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -971,6 +1015,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1033,6 +1078,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1044,6 +1092,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1053,6 +1103,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1065,6 +1118,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1074,10 +1128,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1090,10 +1146,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1108,6 +1166,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1146,6 +1205,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1158,12 +1218,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1174,6 +1238,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1181,6 +1246,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1195,6 +1261,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1212,6 +1279,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1253,6 +1321,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1270,6 +1339,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1312,6 +1382,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1342,6 +1413,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1416,6 +1488,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1446,6 +1519,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1536,16 +1610,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1601,6 +1686,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1631,6 +1717,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1695,6 +1782,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1706,6 +1796,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1715,6 +1807,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -1728,8 +1823,11 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
hostIPC:
@@ -1744,6 +1842,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -1755,10 +1854,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1773,6 +1874,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1811,6 +1913,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1823,12 +1926,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1839,6 +1946,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1846,6 +1954,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1860,6 +1969,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1877,6 +1987,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1918,6 +2029,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1935,6 +2047,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1977,6 +2090,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2007,6 +2121,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2081,6 +2196,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2111,6 +2227,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2201,16 +2318,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2266,6 +2394,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2296,6 +2425,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2358,6 +2488,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2369,6 +2502,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2378,6 +2513,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
@@ -2406,6 +2544,15 @@ spec:
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
+ podPlacementPolicy:
+ default:
+ name: default
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
preemptionPolicy:
type: string
priority:
@@ -2430,6 +2577,15 @@ spec:
type: string
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -2468,6 +2624,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -2480,6 +2637,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -2570,6 +2728,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -2579,6 +2738,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2596,6 +2756,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2624,7 +2785,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2639,6 +2802,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2694,6 +2858,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -2756,6 +2921,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -2815,11 +2981,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -2852,10 +3020,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -2872,6 +3042,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -2941,11 +3112,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3022,11 +3195,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3061,7 +3236,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3107,6 +3284,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3125,7 +3303,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3145,6 +3325,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3176,6 +3357,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3183,6 +3365,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3205,6 +3388,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3243,6 +3427,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3257,6 +3442,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3363,6 +3549,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3422,11 +3609,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3442,17 +3631,9 @@ spec:
volumeName:
type: string
type: object
- terminationPolicy:
- enum:
- - Halt
- - Delete
- - WipeOut
- - DoNotTerminate
- type: string
version:
type: string
required:
- - adminServerPort
- version
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
index efdf7a7cb..23d771890 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
@@ -130,6 +130,12 @@ spec:
items:
items:
properties:
+ featureMode:
+ enum:
+ - ALPHA
+ - BETA
+ - GA
+ type: string
icons:
items:
description: ImageSpec contains information about an image
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
index 010b780b9..40ac05223 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
@@ -153,11 +153,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
index cba487215..7e7184c3a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
@@ -362,11 +362,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
index 91457e84f..3a6a19bed 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
@@ -80,6 +80,45 @@ spec:
- LabelSelector
- Taint
type: string
+ requirements:
+ description: Requirements are layered with GetLabels and applied to
+ every node.
+ items:
+ description: A node selector requirement is a selector that contains
+ values, a key, and an operator that relates the key and values.
+ properties:
+ key:
+ description: The label key that the selector applies to.
+ type: string
+ operator:
+ description: Represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and
+ Lt.
+ type: string
+ values:
+ description: An array of string values. If the operator is In
+ or NotIn, the values array must be non-empty. If the operator
+ is Exists or DoesNotExist, the values array must be empty. If
+ the operator is Gt or Lt, the values array must have a single
+ element, which will be interpreted as an integer. This array
+ is replaced during a strategic merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ maxItems: 30
+ type: array
+ x-kubernetes-validations:
+ - message: requirements with operator 'In' must have a value defined
+ rule: 'self.all(x, x.operator == ''In'' ? x.values.size() != 0 : true)'
+ - message: requirements operator 'Gt' or 'Lt' must have a single positive
+ integer value
+ rule: 'self.all(x, (x.operator == ''Gt'' || x.operator == ''Lt'')
+ ? (x.values.size() == 1 && int(x.values[0]) >= 0) : true)'
topologyKey:
type: string
required:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml
new file mode 100644
index 000000000..75a8761b1
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml
@@ -0,0 +1,64 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: offline.licenses.appscode.com
+ k8s.io/kind: OfflineLicense
+ k8s.io/resource: offlinelicenses
+ k8s.io/version: v1alpha1
+ name: offline.licenses.appscode.com-v1alpha1-offlinelicenses
+spec:
+ resource:
+ group: offline.licenses.appscode.com
+ kind: OfflineLicense
+ name: offlinelicenses
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ description: 'APIVersion defines the versioned schema of this representation
+ of an object. Servers should convert recognized schemas to the latest
+ internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ type: string
+ kind:
+ description: 'Kind is a string value representing the REST resource this
+ object represents. Servers may infer this from the endpoint the client
+ submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/clustermanagers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/clustermanagers.yaml
index 973c1da77..000dc6a23 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/clustermanagers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/clustermanagers.yaml
@@ -282,7 +282,71 @@ spec:
description: RegistrationImagePullSpec represents the desired image
of registration controller/webhook installed on hub.
type: string
+ resourceRequirement:
+ description: ResourceRequirement specify QoS classes of deployments
+ managed by clustermanager. It applies to all the containers in the
+ deployments.
+ properties:
+ resourceRequirements:
+ description: ResourceRequirements defines resource requests and
+ limits when Type is ResourceQosClassResourceRequirement
+ properties:
+ claims:
+ description: "Claims lists the names of resources, defined in
+ spec.resourceClaims, that are used by this container. \n This
+ is an alpha field and requires enabling the DynamicResourceAllocation
+ feature gate. \n This field is immutable. It can only be set
+ for containers."
+ items:
+ description: ResourceClaim references one entry in PodSpec.ResourceClaims.
+ properties:
+ name:
+ description: Name must match the name of one entry in
+ pod.spec.resourceClaims of the Pod where this field
+ is used. It makes that resource available inside a container.
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Limits describes the maximum amount of compute
+ resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Requests describes the minimum amount of compute
+ resources required. If Requests is omitted for a container,
+ it defaults to Limits if that is explicitly specified, otherwise
+ to an implementation-defined value. Requests cannot exceed
+ Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
+ type: object
+ type:
+ default: Default
+ enum:
+ - Default
+ - BestEffort
+ - ResourceRequirement
+ type: string
+ type: object
workConfiguration:
+ default:
+ workDriver: kube
description: WorkConfiguration contains the configuration of work
properties:
featureGates:
@@ -316,6 +380,22 @@ spec:
- feature
type: object
type: array
+ workDriver:
+ default: kube
+ description: "WorkDriver represents the type of work driver. Possible
+ values are \"kube\", \"mqtt\", or \"grpc\". If not provided, the
+ default value is \"kube\". If set to non-\"kube\" drivers, the
+ klusterlet need to use the same driver. and the driver configuration
+ must be provided in a secret named \"work-driver-config\" in the
+ namespace where the cluster manager is running, adhering to the
+ following structure: config.yaml: | \n
+ For detailed driver configuration, please refer to the sdk-go
+ documentation: https://github.com/open-cluster-management-io/sdk-go/blob/main/pkg/cloudevents/README.md#supported-protocols-and-drivers"
+ enum:
+ - kube
+ - mqtt
+ - grpc
+ type: string
type: object
workImagePullSpec:
default: quay.io/open-cluster-management/work
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/klusterlets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/klusterlets.yaml
index 1bf517e64..fb5e28d6b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/klusterlets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/operator.open-cluster-management.io/v1/klusterlets.yaml
@@ -138,7 +138,7 @@ spec:
like service accounts, roles and rolebindings, while the agent is
deployed to the namespace with the same name as klusterlet on the
management cluster.
- maxLength: 63
+ maxLength: 57
pattern: ^open-cluster-management-[-a-z0-9]*[a-z0-9]$
type: string
nodePlacement:
@@ -194,10 +194,64 @@ spec:
type: object
type: array
type: object
+ priorityClassName:
+ description: PriorityClassName is the name of the PriorityClass that
+ will be used by the deployed klusterlet agent. It will be ignored
+ when the PriorityClass/v1 API is not available on the managed cluster.
+ type: string
registrationConfiguration:
description: RegistrationConfiguration contains the configuration of
registration
properties:
+ bootstrapKubeConfigs:
+ description: "BootstrapKubeConfigs defines the ordered list of bootstrap
+ kubeconfigs. The order decides which bootstrap kubeconfig to use
+ first when rebootstrap. \n When the agent loses the connection
+ to the current hub over HubConnectionTimeoutSeconds, or the managedcluster
+ CR is set `hubAcceptsClient=false` on the hub, the controller
+ marks the related bootstrap kubeconfig as \"failed\". \n A failed
+ bootstrapkubeconfig won't be used for the duration specified by
+ SkipFailedBootstrapKubeConfigSeconds. But if the user updates
+ the content of a failed bootstrapkubeconfig, the \"failed\" mark
+ will be cleared."
+ properties:
+ localSecretsConfig:
+ description: LocalSecretsConfig include a list of secrets that
+ contains the kubeconfigs for ordered bootstrap kubeconifigs.
+ The secrets must be in the same namespace where the agent
+ controller runs.
+ properties:
+ hubConnectionTimeoutSeconds:
+ default: 600
+ description: HubConnectionTimeoutSeconds is used to set
+ the timeout of connecting to the hub cluster. When agent
+ loses the connection to the hub over the timeout seconds,
+ the agent do a rebootstrap. By default is 10 mins.
+ format: int32
+ minimum: 180
+ type: integer
+ kubeConfigSecrets:
+ description: KubeConfigSecrets is a list of secret names.
+ The secrets are in the same namespace where the agent
+ controller runs.
+ items:
+ properties:
+ name:
+ description: Name is the name of the secret.
+ type: string
+ type: object
+ type: array
+ type: object
+ type:
+ default: None
+ description: Type specifies the type of priority bootstrap kubeconfigs.
+ By default, it is set to None, representing no priority bootstrap
+ kubeconfigs are set.
+ enum:
+ - None
+ - LocalSecrets
+ type: string
+ type: object
clientCertExpirationSeconds:
description: clientCertExpirationSeconds represents the seconds
of a client certificate to expire. If it is not set or 0, the
@@ -244,15 +298,98 @@ spec:
- feature
type: object
type: array
+ kubeAPIBurst:
+ default: 100
+ description: 'KubeAPIBurst indicates the maximum burst of the throttle
+ while talking with apiserver of hub cluster from the spoke cluster.
+ If it is set empty, use the default value: 100'
+ format: int32
+ type: integer
+ kubeAPIQPS:
+ default: 50
+ description: 'KubeAPIQPS indicates the maximum QPS while talking
+ with apiserver of hub cluster from the spoke cluster. If it is
+ set empty, use the default value: 50'
+ format: int32
+ type: integer
type: object
registrationImagePullSpec:
description: RegistrationImagePullSpec represents the desired image
configuration of registration agent. quay.io/open-cluster-management.io/registration:latest
will be used if unspecified.
type: string
+ resourceRequirement:
+ description: ResourceRequirement specify QoS classes of deployments
+ managed by klusterlet. It applies to all the containers in the deployments.
+ properties:
+ resourceRequirements:
+ description: ResourceRequirements defines resource requests and
+ limits when Type is ResourceQosClassResourceRequirement
+ properties:
+ claims:
+ description: "Claims lists the names of resources, defined in
+ spec.resourceClaims, that are used by this container. \n This
+ is an alpha field and requires enabling the DynamicResourceAllocation
+ feature gate. \n This field is immutable. It can only be set
+ for containers."
+ items:
+ description: ResourceClaim references one entry in PodSpec.ResourceClaims.
+ properties:
+ name:
+ description: Name must match the name of one entry in
+ pod.spec.resourceClaims of the Pod where this field
+ is used. It makes that resource available inside a container.
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Limits describes the maximum amount of compute
+ resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ description: 'Requests describes the minimum amount of compute
+ resources required. If Requests is omitted for a container,
+ it defaults to Limits if that is explicitly specified, otherwise
+ to an implementation-defined value. Requests cannot exceed
+ Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
+ type: object
+ type: object
+ type:
+ default: Default
+ enum:
+ - Default
+ - BestEffort
+ - ResourceRequirement
+ type: string
+ type: object
workConfiguration:
description: WorkConfiguration contains the configuration of work
properties:
+ appliedManifestWorkEvictionGracePeriod:
+ description: AppliedManifestWorkEvictionGracePeriod is the eviction
+ grace period the work agent will wait before evicting the AppliedManifestWorks,
+ whose corresponding ManifestWorks are missing on the hub cluster,
+ from the managed cluster. If not present, the default value of
+ the work agent will be used.
+ pattern: ^([0-9]+(s|m|h))+$
+ type: string
featureGates:
description: 'FeatureGates represents the list of feature gates
for work If it is set empty, default feature gates will be used.
@@ -284,6 +421,20 @@ spec:
- feature
type: object
type: array
+ kubeAPIBurst:
+ default: 100
+ description: 'KubeAPIBurst indicates the maximum burst of the throttle
+ while talking with apiserver of hub cluster from the spoke cluster.
+ If it is set empty, use the default value: 100'
+ format: int32
+ type: integer
+ kubeAPIQPS:
+ default: 50
+ description: 'KubeAPIQPS indicates the maximum QPS while talking
+ with apiserver of hub cluster from the spoke cluster. If it is
+ set empty, use the default value: 50'
+ format: int32
+ type: integer
type: object
workImagePullSpec:
description: WorkImagePullSpec represents the desired image configuration
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml
new file mode 100644
index 000000000..868b06913
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml
@@ -0,0 +1,406 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: DruidOpsRequest
+ k8s.io/resource: druidopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-druidopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: DruidOpsRequest
+ name: druidopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ restart:
+ type: object
+ timeout:
+ type: string
+ type:
+ enum:
+ - VerticalScaling
+ - VolumeExpansion
+ - Restart
+ type: string
+ verticalScaling:
+ properties:
+ brokers:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ coordinators:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ historicals:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ middleManagers:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ overlords:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ routers:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ type: object
+ volumeExpansion:
+ properties:
+ historicals:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ middleManagers:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ mode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ required:
+ - mode
+ type: object
+ required:
+ - databaseRef
+ - type
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
index 20ed9d566..a6788023a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -91,6 +92,7 @@ spec:
secureConfigSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -98,6 +100,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
index ee79f0ba8..ae74de017 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
@@ -77,6 +77,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
index 91a2c60a2..f5a571b17 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
index 317c3f6cc..3d64ca8e0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
index cf469a66c..fd83ab607 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
@@ -73,10 +73,25 @@ spec:
- Always
type: string
configuration:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
type: object
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -84,6 +99,8 @@ spec:
type: object
restart:
type: object
+ timeout:
+ type: string
tls:
properties:
certificates:
@@ -209,6 +226,55 @@ spec:
type: object
verticalScaling:
properties:
+ memcached:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
readinessCriteria:
type: object
type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
index 7ab8f1058..164a8f590 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
@@ -103,6 +103,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -118,6 +119,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -133,6 +135,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -148,6 +151,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -163,6 +167,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -178,6 +183,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -193,6 +199,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -203,6 +210,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
index 135fbf09e..e1df6959f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
index f42c35a36..d90fa2842 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
index 674af9d5b..47a8e15be 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
@@ -88,6 +88,7 @@ spec:
serverRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml
new file mode 100644
index 000000000..5da97126d
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml
@@ -0,0 +1,155 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: PgpoolOpsRequest
+ k8s.io/resource: pgpoolopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-pgpoolopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: PgpoolOpsRequest
+ name: pgpoolopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ configuration:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
+ type: object
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ restart:
+ type: object
+ timeout:
+ type: string
+ type:
+ enum:
+ - VerticalScaling
+ - Reconfigure
+ - Restart
+ type: string
+ verticalScaling:
+ properties:
+ node:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ type: object
+ required:
+ - databaseRef
+ - type
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
index 70982b7fa..d774f49ab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
index d4370c1f6..ca2c5d481 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
@@ -146,6 +146,7 @@ spec:
proxyRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
index 23301a226..a17d674ab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
@@ -63,22 +63,159 @@ spec:
- IfReady
- Always
type: string
+ configuration:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
+ type: object
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
+ horizontalScaling:
+ properties:
+ node:
+ format: int32
+ type: integer
+ type: object
restart:
type: object
timeout:
type: string
+ tls:
+ properties:
+ certificates:
+ items:
+ properties:
+ alias:
+ type: string
+ dnsNames:
+ items:
+ type: string
+ type: array
+ duration:
+ type: string
+ emailAddresses:
+ items:
+ type: string
+ type: array
+ ipAddresses:
+ items:
+ type: string
+ type: array
+ issuerRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ privateKey:
+ properties:
+ encoding:
+ enum:
+ - PKCS1
+ - PKCS8
+ type: string
+ type: object
+ renewBefore:
+ type: string
+ secretName:
+ type: string
+ subject:
+ properties:
+ countries:
+ items:
+ type: string
+ type: array
+ localities:
+ items:
+ type: string
+ type: array
+ organizationalUnits:
+ items:
+ type: string
+ type: array
+ organizations:
+ items:
+ type: string
+ type: array
+ postalCodes:
+ items:
+ type: string
+ type: array
+ provinces:
+ items:
+ type: string
+ type: array
+ serialNumber:
+ type: string
+ streetAddresses:
+ items:
+ type: string
+ type: array
+ type: object
+ uris:
+ items:
+ type: string
+ type: array
+ required:
+ - alias
+ type: object
+ type: array
+ issuerRef:
+ properties:
+ apiGroup:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ remove:
+ type: boolean
+ rotateCertificates:
+ type: boolean
+ type: object
type:
enum:
+ - UpdateVersion
+ - HorizontalScaling
- VerticalScaling
- VolumeExpansion
- Restart
+ - Reconfigure
+ - ReconfigureTLS
type: string
+ updateVersion:
+ properties:
+ targetVersion:
+ type: string
+ type: object
verticalScaling:
properties:
node:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
index aed9cd969..b36f1baf0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
index 27df5e0ba..1996a1242 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
@@ -81,6 +81,7 @@ spec:
configSecret:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -90,6 +91,7 @@ spec:
databaseRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml
new file mode 100644
index 000000000..a5cc88396
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml
@@ -0,0 +1,351 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: SinglestoreOpsRequest
+ k8s.io/resource: singlestoreopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-singlestoreopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: SinglestoreOpsRequest
+ name: singlestoreopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ properties:
+ apiVersion:
+ type: string
+ kind:
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ namespace:
+ description: "Namespace defines the space within which each name must
+ be unique. An empty namespace is equivalent to the \"default\" namespace,
+ but \"default\" is the canonical representation. Not all objects are
+ required to be scoped to a namespace - the value of this field for
+ those objects will be empty. \n Must be a DNS_LABEL. Cannot be updated.
+ More info: http://kubernetes.io/docs/user-guide/namespaces"
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ properties:
+ apply:
+ default: IfReady
+ enum:
+ - IfReady
+ - Always
+ type: string
+ configuration:
+ properties:
+ aggregator:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
+ type: object
+ leaf:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
+ type: object
+ node:
+ properties:
+ applyConfig:
+ additionalProperties:
+ type: string
+ type: object
+ configSecret:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ removeCustomConfig:
+ type: boolean
+ type: object
+ type: object
+ databaseRef:
+ properties:
+ name:
+ default: ""
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ restart:
+ type: object
+ timeout:
+ type: string
+ type:
+ enum:
+ - VerticalScaling
+ - VolumeExpansion
+ - Restart
+ - Configuration
+ type: string
+ verticalScaling:
+ properties:
+ aggregator:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ coordinator:
+ properties:
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ type: object
+ leaf:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ node:
+ properties:
+ nodeSelectionPolicy:
+ enum:
+ - LabelSelector
+ - Taint
+ type: string
+ resources:
+ properties:
+ claims:
+ items:
+ properties:
+ name:
+ type: string
+ required:
+ - name
+ type: object
+ type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
+ limits:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ requests:
+ additionalProperties:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ type: object
+ type: object
+ topology:
+ properties:
+ key:
+ type: string
+ value:
+ type: string
+ required:
+ - key
+ - value
+ type: object
+ type: object
+ type: object
+ volumeExpansion:
+ properties:
+ aggregator:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ leaf:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ mode:
+ enum:
+ - Offline
+ - Online
+ type: string
+ node:
+ anyOf:
+ - type: integer
+ - type: string
+ pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
+ x-kubernetes-int-or-string: true
+ required:
+ - mode
+ type: object
+ required:
+ - databaseRef
+ - type
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/publishers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/publishers.yaml
index bf4ed8a40..376b1614a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/publishers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/publishers.yaml
@@ -86,11 +86,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -111,11 +113,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -154,6 +158,7 @@ spec:
serverRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/subscribers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/subscribers.yaml
index c8ccb8855..c0368e7a1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/subscribers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/postgres.kubedb.com/v1alpha1/subscribers.yaml
@@ -122,6 +122,7 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -133,6 +134,7 @@ spec:
serverRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml
new file mode 100644
index 000000000..79dc3a9af
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml
@@ -0,0 +1,342 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: proxy.open-cluster-management.io
+ k8s.io/kind: ManagedProxyConfiguration
+ k8s.io/resource: managedproxyconfigurations
+ k8s.io/version: v1alpha1
+ name: proxy.open-cluster-management.io-v1alpha1-managedproxyconfigurations
+spec:
+ resource:
+ group: proxy.open-cluster-management.io
+ kind: ManagedProxyConfiguration
+ name: managedproxyconfigurations
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: ManagedProxyConfiguration is the Schema for the managedproxyconfigurations
+ API
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ManagedProxyConfigurationSpec is the prescription of ManagedProxyConfiguration
+ properties:
+ authentication:
+ description: |-
+ `authentication` defines how the credentials for the authentication
+ between proxy servers and proxy agents are signed and mounted.
+ properties:
+ dump:
+ description: '`dump` is where we store the signed certificates from
+ signers.'
+ properties:
+ secrets:
+ description: '`secrets` is the names of the secrets for saving
+ the signed certificates.'
+ properties:
+ signingAgentServerSecretName:
+ default: agent-server
+ description: |-
+ `signingAgentServerSecretName` is the secret name of the proxy servers to receive
+ tunneling handshakes from proxy agents.
+ type: string
+ signingProxyClientSecretName:
+ default: proxy-client
+ description: |-
+ `signingProxyClientSecretName` is the secret name for requesting/streaming over
+ the proxy server.
+ type: string
+ signingProxyServerSecretName:
+ default: proxy-server
+ description: |-
+ `signingProxyServerSecretName` the secret name of the proxy server's listening
+ certificates for serving proxy requests.
+ type: string
+ type: object
+ type: object
+ signer:
+ description: |-
+ `signer` defines how we sign server and client certificates for the proxy servers
+ and agents.
+ properties:
+ selfSigned:
+ description: '`selfSigned` prescribes the detail of how we self-sign
+ the certificates.'
+ properties:
+ additionalSANs:
+ description: '`additionalSANs` adds a few custom hostnames
+ or IPs to the signing certificates.'
+ items:
+ type: string
+ type: array
+ type: object
+ type:
+ default: SelfSigned
+ description: '`type` is the supported type of signer. Currently
+ only "SelfSign" supported.'
+ enum:
+ - SelfSigned
+ - Provided
+ - CertManager
+ type: string
+ type: object
+ type: object
+ deploy:
+ description: |-
+ `deploy` is where we override miscellaneous details for deploying either
+ proxy servers or agents.
+ properties:
+ ports:
+ description: '`ports` is the ports for proxying and tunneling.'
+ properties:
+ adminServer:
+ default: 8095
+ description: '`adminServer` is the port for debugging and operating.'
+ format: int32
+ type: integer
+ agentServer:
+ default: 8091
+ description: '`agentServer` is the listening port of proxy server
+ for serving tunneling handshakes.'
+ format: int32
+ type: integer
+ healthServer:
+ default: 8092
+ description: '`healthServer` is for probing the healthiness.'
+ format: int32
+ type: integer
+ proxyServer:
+ default: 8090
+ description: '`proxyServer` is the listening port of proxy server
+ for serving proxy requests.'
+ format: int32
+ type: integer
+ type: object
+ required:
+ - ports
+ type: object
+ proxyAgent:
+ description: '`proxyServer` structurelized the arguments for running
+ proxy agents.'
+ properties:
+ additionalArgs:
+ description: '`additionalArgs` defines args used in proxy-agent.'
+ items:
+ type: string
+ type: array
+ image:
+ description: '`image` is the container image of the proxy agent.'
+ type: string
+ imagePullSecrets:
+ description: '`imagePullSecrets` defines the imagePullSecrets used
+ by proxy-agent'
+ items:
+ type: string
+ type: array
+ replicas:
+ default: 3
+ description: '`replicas` is the replicas of the agents.'
+ format: int32
+ type: integer
+ required:
+ - image
+ type: object
+ proxyServer:
+ description: '`proxyServer` structurelized the arguments for running
+ proxy servers.'
+ properties:
+ additionalArgs:
+ description: '`additionalArgs` adds arbitrary additional command
+ line args to the proxy-server.'
+ items:
+ type: string
+ type: array
+ entrypoint:
+ description: '`entrypoint` defines how will the proxy agents connecting
+ the servers.'
+ properties:
+ hostname:
+ description: '`hostname` points to a fixed hostname for serving
+ agents'' handshakes.'
+ properties:
+ value:
+ type: string
+ required:
+ - value
+ type: object
+ loadBalancerService:
+ description: '`loadBalancerService` points to a load-balancer
+ typed service in the hub cluster.'
+ properties:
+ annotations:
+ description: |-
+ Annotations is the annoations of the load-balancer service.
+ This is for allowing customizing service using vendor-specific extended annotations such as:
+ - service.beta.kubernetes.io/alibaba-cloud-loadbalancer-address-type: "intranet"
+ - service.beta.kubernetes.io/azure-load-balancer-internal: true
+ items:
+ description: AnnotationVar list of annotation variables
+ to set in the LB Service.
+ properties:
+ key:
+ description: Key is the key of annotation
+ type: string
+ value:
+ description: Value is the value of annotation
+ type: string
+ required:
+ - key
+ type: object
+ type: array
+ name:
+ default: proxy-agent-entrypoint
+ description: |-
+ `name` is the name of the load-balancer service. And the namespace will align
+ to where the proxy-servers are deployed.
+ type: string
+ type: object
+ port:
+ default: 8091
+ description: '`port` is the target port to access proxy servers'
+ format: int32
+ minimum: 1
+ type: integer
+ type:
+ description: |-
+ `type` is the type of the entrypoint of the proxy servers.
+ Currently supports "Hostname", "LoadBalancerService"
+ enum:
+ - Hostname
+ - LoadBalancerService
+ - PortForward
+ type: string
+ required:
+ - type
+ type: object
+ image:
+ description: '`image` is the container image of the proxy servers.'
+ type: string
+ inClusterServiceName:
+ default: proxy-entrypoint
+ description: |-
+ `inClusterServiceName` is the name of the in-cluster service for proxying
+ requests inside the hub cluster to the proxy servers.
+ type: string
+ namespace:
+ default: open-cluster-management-cluster-proxy
+ description: |-
+ `namespace` is the namespace where we will deploy the proxy servers and related
+ resources.
+ type: string
+ nodePlacement:
+ description: NodePlacement defines which Nodes the proxy server
+ are scheduled on. The default is an empty list.
+ properties:
+ nodeSelector:
+ additionalProperties:
+ type: string
+ description: NodeSelector defines which Nodes the Pods are scheduled
+ on. The default is an empty list.
+ type: object
+ tolerations:
+ description: |-
+ Tolerations is attached by pods to tolerate any taint that matches
+ the triple using the matching operator .
+ The default is an empty list.
+ items:
+ description: |-
+ The pod this Toleration is attached to tolerates any taint that matches
+ the triple using the matching operator .
+ properties:
+ effect:
+ description: |-
+ Effect indicates the taint effect to match. Empty means match all taint effects.
+ When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
+ type: string
+ key:
+ description: |-
+ Key is the taint key that the toleration applies to. Empty means match all taint keys.
+ If the key is empty, operator must be Exists; this combination means to match all values and all keys.
+ type: string
+ operator:
+ description: |-
+ Operator represents a key's relationship to the value.
+ Valid operators are Exists and Equal. Defaults to Equal.
+ Exists is equivalent to wildcard for value, so that a pod can
+ tolerate all taints of a particular category.
+ type: string
+ tolerationSeconds:
+ description: |-
+ TolerationSeconds represents the period of time the toleration (which must be
+ of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
+ it is not set, which means tolerate the taint forever (do not evict). Zero and
+ negative values will be treated as 0 (evict immediately) by the system.
+ format: int64
+ type: integer
+ value:
+ description: |-
+ Value is the taint value the toleration matches to.
+ If the operator is Exists, the value should be empty, otherwise just a regular string.
+ type: string
+ type: object
+ type: array
+ type: object
+ replicas:
+ default: 3
+ description: |-
+ `replicas` is the expected replicas of the proxy servers.
+ Note that the replicas will also be reflected in the flag `--server-count`
+ so that agents can discover all the server instances.
+ format: int32
+ type: integer
+ required:
+ - image
+ type: object
+ required:
+ - authentication
+ - proxyAgent
+ - proxyServer
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml
new file mode 100644
index 000000000..fedd4a0fe
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml
@@ -0,0 +1,119 @@
+apiVersion: meta.k8s.appscode.com/v1alpha1
+kind: ResourceDescriptor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: proxy.open-cluster-management.io
+ k8s.io/kind: ManagedProxyServiceResolver
+ k8s.io/resource: managedproxyserviceresolvers
+ k8s.io/version: v1alpha1
+ name: proxy.open-cluster-management.io-v1alpha1-managedproxyserviceresolvers
+spec:
+ resource:
+ group: proxy.open-cluster-management.io
+ kind: ManagedProxyServiceResolver
+ name: managedproxyserviceresolvers
+ scope: Cluster
+ version: v1alpha1
+ validation:
+ openAPIV3Schema:
+ description: |-
+ ManagedProxyServiceResolver defines a target service that need to expose from a set of managed clusters to the hub.
+ To access a target service on a managed cluster from hub. First, users need to apply a proper ManagedProxyServiceResolver.
+ The managed cluster should match the ManagedClusterSet in the ManagedProxyServiceResolver.Spec. The serviceNamespace and serviceName should also match the target service.
+ A usage example: /examples/access-other-services/main.go
+ properties:
+ apiVersion:
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
+ type: string
+ kind:
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
+ type: string
+ metadata:
+ properties:
+ name:
+ description: 'Name must be unique within a namespace. Is required when
+ creating resources, although some resources may allow a client to
+ request the generation of an appropriate name automatically. Name
+ is primarily intended for creation idempotence and configuration definition.
+ Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names'
+ type: string
+ labels:
+ additionalProperties:
+ type: string
+ description: 'Map of string keys and values that can be used to organize
+ and categorize (scope and select) objects. May match selectors of
+ replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels'
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: 'Annotations is an unstructured key value map stored with
+ a resource that may be set by external tools to store and retrieve
+ arbitrary metadata. They are not queryable and should be preserved
+ when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations'
+ type: object
+ type: object
+ spec:
+ description: ManagedProxyServiceResolverSpec defines the desired state of
+ ManagedProxyServiceResolver.
+ properties:
+ managedClusterSelector:
+ description: ManagedClusterSelector selects a set of managed clusters.
+ properties:
+ managedClusterSet:
+ description: ManagedClusterSet defines a set of managed clusters
+ that need to expose the service.
+ properties:
+ name:
+ description: Name is the name of the managed cluster set.
+ type: string
+ required:
+ - name
+ type: object
+ type:
+ default: ManagedClusterSet
+ description: Type represents the type of the selector. Now only
+ ManagedClusterSet is supported.
+ enum:
+ - ManagedClusterSet
+ type: string
+ type: object
+ serviceSelector:
+ description: ServiceSelector selects a service.
+ properties:
+ serviceRef:
+ description: ServiceRef defines a service in a namespace.
+ properties:
+ name:
+ description: Name represents the name of the service.
+ type: string
+ namespace:
+ description: Namespace represents the namespace of the service.
+ type: string
+ required:
+ - name
+ - namespace
+ type: object
+ type:
+ default: ServiceRef
+ description: Type represents the type of the selector. Now only
+ ServiceRef type is supported.
+ enum:
+ - ServiceRef
+ type: string
+ type: object
+ required:
+ - managedClusterSelector
+ - serviceSelector
+ type: object
+ type: object
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
index aad12aa3c..3e355058a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
@@ -20,14 +20,19 @@ spec:
description: ExtensionConfig is the Schema for the ExtensionConfig API.
properties:
apiVersion:
- description: 'APIVersion defines the versioned schema of this representation
- of an object. Servers should convert recognized schemas to the latest
- internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+ description: |-
+ APIVersion defines the versioned schema of this representation of an object.
+ Servers should convert recognized schemas to the latest internal value, and
+ may reject unrecognized values.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
- description: 'Kind is a string value representing the REST resource this
- object represents. Servers may infer this from the endpoint the client
- submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+ description: |-
+ Kind is a string value representing the REST resource this object represents.
+ Servers may infer this from the endpoint the client submits requests to.
+ Cannot be updated.
+ In CamelCase.
+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
properties:
@@ -67,10 +72,12 @@ spec:
format: byte
type: string
service:
- description: "Service is a reference to the Kubernetes service for
- the Extension server. Note: Exactly one of `url` or `service`
- must be specified. \n If the Extension server is running within
- a cluster, then you should use `service`."
+ description: |-
+ Service is a reference to the Kubernetes service for the Extension server.
+ Note: Exactly one of `url` or `service` must be specified.
+
+
+ If the Extension server is running within a cluster, then you should use `service`.
properties:
name:
description: Name is the name of the service.
@@ -79,14 +86,15 @@ spec:
description: Namespace is the namespace of the service.
type: string
path:
- description: Path is an optional URL path and if present may
- be any string permissible in a URL. If a path is set it will
- be used as prefix to the hook-specific path.
+ description: |-
+ Path is an optional URL path and if present may be any string permissible in
+ a URL. If a path is set it will be used as prefix to the hook-specific path.
type: string
port:
- description: Port is the port on the service that's hosting
- the Extension server. Defaults to 443. Port should be a valid
- port number (1-65535, inclusive).
+ description: |-
+ Port is the port on the service that's hosting the Extension server.
+ Defaults to 443.
+ Port should be a valid port number (1-65535, inclusive).
format: int32
type: integer
required:
@@ -94,69 +102,84 @@ spec:
- namespace
type: object
url:
- description: "URL gives the location of the Extension server, in
- standard URL form (`scheme://host:port/path`). Note: Exactly one
- of `url` or `service` must be specified. \n The scheme must be
- \"https\". \n The `host` should not refer to a service running
- in the cluster; use the `service` field instead. \n A path is
- optional, and if present may be any string permissible in a URL.
- If a path is set it will be used as prefix to the hook-specific
- path. \n Attempting to use a user or basic auth e.g. \"user:password@\"
- is not allowed. Fragments (\"#...\") and query parameters (\"?...\")
- are not allowed either."
+ description: |-
+ URL gives the location of the Extension server, in standard URL form
+ (`scheme://host:port/path`).
+ Note: Exactly one of `url` or `service` must be specified.
+
+
+ The scheme must be "https".
+
+
+ The `host` should not refer to a service running in the cluster; use
+ the `service` field instead.
+
+
+ A path is optional, and if present may be any string permissible in
+ a URL. If a path is set it will be used as prefix to the hook-specific path.
+
+
+ Attempting to use a user or basic auth e.g. "user:password@" is not
+ allowed. Fragments ("#...") and query parameters ("?...") are not
+ allowed either.
type: string
type: object
namespaceSelector:
- description: NamespaceSelector decides whether to call the hook for
- an object based on whether the namespace for that object matches the
- selector. Defaults to the empty LabelSelector, which matches all objects.
+ description: |-
+ NamespaceSelector decides whether to call the hook for an object based
+ on whether the namespace for that object matches the selector.
+ Defaults to the empty LabelSelector, which matches all objects.
properties:
matchExpressions:
description: matchExpressions is a list of label selector requirements.
The requirements are ANDed.
items:
- description: A label selector requirement is a selector that contains
- values, a key, and an operator that relates the key and values.
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
- description: operator represents a key's relationship to a
- set of values. Valid operators are In, NotIn, Exists and
- DoesNotExist.
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
- description: values is an array of string values. If the operator
- is In or NotIn, the values array must be non-empty. If the
- operator is Exists or DoesNotExist, the values array must
- be empty. This array is replaced during a strategic merge
- patch.
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
- description: matchLabels is a map of {key,value} pairs. A single
- {key,value} in the matchLabels map is equivalent to an element
- of matchExpressions, whose key field is "key", the operator is
- "In", and the values array contains only "value". The requirements
- are ANDed.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
type: object
+ x-kubernetes-map-type: atomic
settings:
additionalProperties:
type: string
- description: 'Settings defines key value pairs to be passed to all calls
- to all supported RuntimeExtensions. Note: Settings can be overridden
- on the ClusterClass.'
+ description: |-
+ Settings defines key value pairs to be passed to all calls
+ to all supported RuntimeExtensions.
+ Note: Settings can be overridden on the ClusterClass.
type: object
required:
- clientConfig
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
index 2b206874c..c5414a1a9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
@@ -173,6 +173,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -182,6 +183,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -199,6 +201,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -227,7 +230,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -242,6 +247,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -297,6 +303,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -338,6 +345,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -397,11 +405,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -434,10 +444,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -454,6 +466,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -534,11 +547,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -625,11 +640,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -641,11 +658,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -656,6 +675,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -672,11 +692,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -688,14 +710,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -721,11 +746,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -755,11 +782,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -770,6 +799,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -783,6 +813,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -799,11 +830,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -833,11 +866,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -848,12 +883,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -875,11 +912,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -909,11 +948,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -924,6 +965,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -937,6 +979,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -953,11 +996,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -987,11 +1032,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1002,12 +1049,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -1019,10 +1068,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1037,6 +1088,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1075,6 +1127,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1087,12 +1140,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1103,6 +1160,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1110,6 +1168,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1124,6 +1183,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1141,6 +1201,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1182,6 +1243,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1199,6 +1261,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1241,6 +1304,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1271,6 +1335,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1345,6 +1410,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1375,6 +1441,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1465,16 +1532,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1530,6 +1608,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1560,6 +1639,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1622,6 +1702,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1633,6 +1716,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1642,18 +1727,25 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
dnsConfig:
properties:
nameservers:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1663,10 +1755,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1679,10 +1773,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1697,6 +1793,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1735,6 +1832,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1747,12 +1845,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1763,6 +1865,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1770,6 +1873,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1784,6 +1888,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1801,6 +1906,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1842,6 +1948,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1859,6 +1966,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1901,6 +2009,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1931,6 +2040,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2005,6 +2115,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2035,6 +2146,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2125,16 +2237,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2190,6 +2313,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2220,6 +2344,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2284,6 +2409,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2295,6 +2423,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2304,12 +2434,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
hostAliases:
items:
properties:
@@ -2317,10 +2453,16 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - ip
+ x-kubernetes-list-type: map
hostIPC:
type: boolean
hostNetwork:
@@ -2335,10 +2477,14 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
initContainers:
items:
properties:
@@ -2346,10 +2492,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2364,6 +2512,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2402,6 +2551,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2414,12 +2564,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2430,6 +2584,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2437,6 +2592,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2451,6 +2607,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2468,6 +2625,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2509,6 +2667,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2526,6 +2685,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2568,6 +2728,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2598,6 +2759,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2672,6 +2834,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2702,6 +2865,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2792,16 +2956,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2857,6 +3032,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2887,6 +3063,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2949,6 +3126,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2960,6 +3140,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2969,12 +3151,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
nodeName:
type: string
nodeSelector:
@@ -3013,6 +3201,7 @@ spec:
- conditionType
type: object
type: array
+ x-kubernetes-list-type: atomic
resourceClaims:
items:
properties:
@@ -3052,6 +3241,15 @@ spec:
x-kubernetes-list-type: map
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3090,6 +3288,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3102,6 +3301,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3143,6 +3343,7 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
topologySpreadConstraints:
items:
properties:
@@ -3159,11 +3360,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3252,6 +3455,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3261,6 +3465,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3278,6 +3483,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3306,7 +3512,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3321,6 +3529,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3376,6 +3585,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3417,6 +3627,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3476,11 +3687,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3513,10 +3726,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3533,6 +3748,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3613,11 +3829,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3694,11 +3912,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3733,7 +3953,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3779,6 +4001,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3797,7 +4020,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3817,6 +4042,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3848,6 +4074,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3855,6 +4082,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3877,6 +4105,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3915,6 +4144,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3929,6 +4159,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3954,6 +4185,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
required:
- containers
type: object
@@ -3992,11 +4226,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4031,7 +4267,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4077,6 +4315,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4095,7 +4334,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4115,6 +4356,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4146,6 +4388,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4153,6 +4396,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4175,6 +4419,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4215,6 +4460,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4229,6 +4475,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
index 185ec49bd..a806d055c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
@@ -167,6 +167,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -176,6 +177,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -193,6 +195,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -221,7 +224,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -236,6 +241,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -291,6 +297,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -332,6 +339,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -391,11 +399,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -428,10 +438,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -448,6 +460,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -528,11 +541,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -619,11 +634,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -635,11 +652,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -650,6 +669,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -666,11 +686,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -682,14 +704,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -715,11 +740,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -749,11 +776,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -764,6 +793,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -777,6 +807,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -793,11 +824,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -827,11 +860,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -842,12 +877,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -869,11 +906,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -903,11 +942,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -918,6 +959,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -931,6 +973,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -947,11 +990,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -981,11 +1026,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -996,12 +1043,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -1013,10 +1062,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1031,6 +1082,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1069,6 +1121,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1081,12 +1134,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1097,6 +1154,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1104,6 +1162,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1118,6 +1177,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1135,6 +1195,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1176,6 +1237,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1193,6 +1255,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1235,6 +1298,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1265,6 +1329,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1339,6 +1404,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1369,6 +1435,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1459,16 +1526,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1524,6 +1602,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1554,6 +1633,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1616,6 +1696,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1627,6 +1710,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1636,18 +1721,25 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
dnsConfig:
properties:
nameservers:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1657,10 +1749,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1673,10 +1767,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1691,6 +1787,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1729,6 +1826,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1741,12 +1839,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1757,6 +1859,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1764,6 +1867,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1778,6 +1882,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1795,6 +1900,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1836,6 +1942,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1853,6 +1960,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1895,6 +2003,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1925,6 +2034,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1999,6 +2109,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2029,6 +2140,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2119,16 +2231,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2184,6 +2307,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2214,6 +2338,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2278,6 +2403,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2289,6 +2417,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2298,12 +2428,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
hostAliases:
items:
properties:
@@ -2311,10 +2447,16 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - ip
+ x-kubernetes-list-type: map
hostIPC:
type: boolean
hostNetwork:
@@ -2329,10 +2471,14 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
initContainers:
items:
properties:
@@ -2340,10 +2486,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2358,6 +2506,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2396,6 +2545,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2408,12 +2558,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2424,6 +2578,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2431,6 +2586,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2445,6 +2601,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2462,6 +2619,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2503,6 +2661,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2520,6 +2679,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2562,6 +2722,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2592,6 +2753,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2666,6 +2828,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2696,6 +2859,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2786,16 +2950,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2851,6 +3026,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2881,6 +3057,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2943,6 +3120,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2954,6 +3134,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2963,12 +3145,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
nodeName:
type: string
nodeSelector:
@@ -3007,6 +3195,7 @@ spec:
- conditionType
type: object
type: array
+ x-kubernetes-list-type: atomic
resourceClaims:
items:
properties:
@@ -3046,6 +3235,15 @@ spec:
x-kubernetes-list-type: map
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3084,6 +3282,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3096,6 +3295,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3137,6 +3337,7 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
topologySpreadConstraints:
items:
properties:
@@ -3153,11 +3354,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3246,6 +3449,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3255,6 +3459,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3272,6 +3477,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3300,7 +3506,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3315,6 +3523,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3370,6 +3579,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3411,6 +3621,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3470,11 +3681,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3507,10 +3720,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3527,6 +3742,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3607,11 +3823,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3688,11 +3906,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3727,7 +3947,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3773,6 +3995,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3791,7 +4014,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3811,6 +4036,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3842,6 +4068,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3849,6 +4076,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3871,6 +4099,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3909,6 +4138,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3923,6 +4153,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3948,6 +4179,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
required:
- containers
type: object
@@ -3986,11 +4220,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4025,7 +4261,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4071,6 +4309,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4089,7 +4328,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4109,6 +4350,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4140,6 +4382,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4147,6 +4390,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4169,6 +4413,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4209,6 +4454,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4223,6 +4469,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
index 21f2e00d7..195e0a1cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
@@ -176,6 +176,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -185,6 +186,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -202,6 +204,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -230,7 +233,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -245,6 +250,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -300,6 +306,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -341,6 +348,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -400,11 +408,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -437,10 +447,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -457,6 +469,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -537,11 +550,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -628,11 +643,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -644,11 +661,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -659,6 +678,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -675,11 +695,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -691,14 +713,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -724,11 +749,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -758,11 +785,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -773,6 +802,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -786,6 +816,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -802,11 +833,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -836,11 +869,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -851,12 +886,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -878,11 +915,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -912,11 +951,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -927,6 +968,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -940,6 +982,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -956,11 +999,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -990,11 +1035,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1005,12 +1052,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -1022,10 +1071,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1040,6 +1091,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1078,6 +1130,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1090,12 +1143,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1106,6 +1163,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1113,6 +1171,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1127,6 +1186,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1144,6 +1204,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1185,6 +1246,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1202,6 +1264,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1244,6 +1307,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1274,6 +1338,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1348,6 +1413,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1378,6 +1444,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1468,16 +1535,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1533,6 +1611,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1563,6 +1642,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1625,6 +1705,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1636,6 +1719,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1645,18 +1730,25 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
dnsConfig:
properties:
nameservers:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1666,10 +1758,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1682,10 +1776,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1700,6 +1796,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1738,6 +1835,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1750,12 +1848,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1766,6 +1868,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1773,6 +1876,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1787,6 +1891,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1804,6 +1909,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1845,6 +1951,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1862,6 +1969,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1904,6 +2012,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1934,6 +2043,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2008,6 +2118,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2038,6 +2149,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2128,16 +2240,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2193,6 +2316,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2223,6 +2347,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2287,6 +2412,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2298,6 +2426,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2307,12 +2437,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
hostAliases:
items:
properties:
@@ -2320,10 +2456,16 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - ip
+ x-kubernetes-list-type: map
hostIPC:
type: boolean
hostNetwork:
@@ -2338,10 +2480,14 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
initContainers:
items:
properties:
@@ -2349,10 +2495,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2367,6 +2515,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2405,6 +2554,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2417,12 +2567,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2433,6 +2587,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2440,6 +2595,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2454,6 +2610,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2471,6 +2628,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2512,6 +2670,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2529,6 +2688,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2571,6 +2731,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2601,6 +2762,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2675,6 +2837,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2705,6 +2868,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2795,16 +2959,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2860,6 +3035,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2890,6 +3066,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2952,6 +3129,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2963,6 +3143,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2972,12 +3154,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
nodeName:
type: string
nodeSelector:
@@ -3016,6 +3204,7 @@ spec:
- conditionType
type: object
type: array
+ x-kubernetes-list-type: atomic
resourceClaims:
items:
properties:
@@ -3055,6 +3244,15 @@ spec:
x-kubernetes-list-type: map
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3093,6 +3291,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3105,6 +3304,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3146,6 +3346,7 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
topologySpreadConstraints:
items:
properties:
@@ -3162,11 +3363,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3255,6 +3458,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3264,6 +3468,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3281,6 +3486,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3309,7 +3515,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3324,6 +3532,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3379,6 +3588,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3420,6 +3630,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3479,11 +3690,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3516,10 +3729,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3536,6 +3751,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3616,11 +3832,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3697,11 +3915,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3736,7 +3956,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3782,6 +4004,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3800,7 +4023,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3820,6 +4045,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3851,6 +4077,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3858,6 +4085,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3880,6 +4108,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3918,6 +4147,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3932,6 +4162,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3957,6 +4188,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
required:
- containers
type: object
@@ -3995,11 +4229,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4034,7 +4270,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4080,6 +4318,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4098,7 +4337,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4118,6 +4359,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4149,6 +4391,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4156,6 +4399,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4178,6 +4422,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4218,6 +4463,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4232,6 +4478,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
index 11df199bd..8962b4068 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
@@ -179,6 +179,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -188,6 +189,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -205,6 +207,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -233,7 +236,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -248,6 +253,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -303,6 +309,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -344,6 +351,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -403,11 +411,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -440,10 +450,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -460,6 +472,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -540,11 +553,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -631,11 +646,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -647,11 +664,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
weight:
@@ -662,6 +681,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
properties:
nodeSelectorTerms:
@@ -678,11 +698,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchFields:
items:
properties:
@@ -694,14 +716,17 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-type: atomic
required:
- nodeSelectorTerms
type: object
@@ -727,11 +752,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -761,11 +788,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -776,6 +805,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -789,6 +819,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -805,11 +836,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -839,11 +872,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -854,12 +889,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
podAntiAffinity:
properties:
@@ -881,11 +918,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -915,11 +954,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -930,6 +971,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
@@ -943,6 +985,7 @@ spec:
- weight
type: object
type: array
+ x-kubernetes-list-type: atomic
requiredDuringSchedulingIgnoredDuringExecution:
items:
properties:
@@ -959,11 +1002,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -993,11 +1038,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -1008,12 +1055,14 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
topologyKey:
type: string
required:
- topologyKey
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
type: object
automountServiceAccountToken:
@@ -1025,10 +1074,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1043,6 +1094,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1081,6 +1133,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1093,12 +1146,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1109,6 +1166,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1116,6 +1174,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1130,6 +1189,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1147,6 +1207,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1188,6 +1249,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1205,6 +1267,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1247,6 +1310,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1277,6 +1341,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1351,6 +1416,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1381,6 +1447,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1471,16 +1538,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -1536,6 +1614,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1566,6 +1645,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1628,6 +1708,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -1639,6 +1722,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -1648,18 +1733,25 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
dnsConfig:
properties:
nameservers:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
options:
items:
properties:
@@ -1669,10 +1761,12 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
searches:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
dnsPolicy:
type: string
@@ -1685,10 +1779,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -1703,6 +1799,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1741,6 +1838,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1753,12 +1851,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1769,6 +1871,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -1776,6 +1879,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -1790,6 +1894,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1807,6 +1912,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1848,6 +1954,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -1865,6 +1972,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -1907,6 +2015,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -1937,6 +2046,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2011,6 +2121,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2041,6 +2152,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2131,16 +2243,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2196,6 +2319,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2226,6 +2350,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2290,6 +2415,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2301,6 +2429,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2310,12 +2440,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
hostAliases:
items:
properties:
@@ -2323,10 +2459,16 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
ip:
type: string
+ required:
+ - ip
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - ip
+ x-kubernetes-list-type: map
hostIPC:
type: boolean
hostNetwork:
@@ -2341,10 +2483,14 @@ spec:
items:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
initContainers:
items:
properties:
@@ -2352,10 +2498,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
command:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
env:
items:
properties:
@@ -2370,6 +2518,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2408,6 +2557,7 @@ spec:
key:
type: string
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2420,12 +2570,16 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
envFrom:
items:
properties:
configMapRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2436,6 +2590,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
optional:
type: boolean
@@ -2443,6 +2598,7 @@ spec:
x-kubernetes-map-type: atomic
type: object
type: array
+ x-kubernetes-list-type: atomic
image:
type: string
imagePullPolicy:
@@ -2457,6 +2613,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2474,6 +2631,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2515,6 +2673,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
httpGet:
properties:
@@ -2532,6 +2691,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2574,6 +2734,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2604,6 +2765,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2678,6 +2840,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2708,6 +2871,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2798,16 +2962,27 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
capabilities:
properties:
add:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
drop:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
privileged:
type: boolean
@@ -2863,6 +3038,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
failureThreshold:
format: int32
@@ -2893,6 +3069,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
port:
@@ -2955,6 +3132,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - devicePath
+ x-kubernetes-list-type: map
volumeMounts:
items:
properties:
@@ -2966,6 +3146,8 @@ spec:
type: string
readOnly:
type: boolean
+ recursiveReadOnly:
+ type: string
subPath:
type: string
subPathExpr:
@@ -2975,12 +3157,18 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - mountPath
+ x-kubernetes-list-type: map
workingDir:
type: string
required:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
nodeName:
type: string
nodeSelector:
@@ -3019,6 +3207,7 @@ spec:
- conditionType
type: object
type: array
+ x-kubernetes-list-type: atomic
resourceClaims:
items:
properties:
@@ -3058,6 +3247,15 @@ spec:
x-kubernetes-list-type: map
securityContext:
properties:
+ appArmorProfile:
+ properties:
+ localhostProfile:
+ type: string
+ type:
+ type: string
+ required:
+ - type
+ type: object
fsGroup:
format: int64
type: integer
@@ -3096,6 +3294,7 @@ spec:
format: int64
type: integer
type: array
+ x-kubernetes-list-type: atomic
sysctls:
items:
properties:
@@ -3108,6 +3307,7 @@ spec:
- value
type: object
type: array
+ x-kubernetes-list-type: atomic
windowsOptions:
properties:
gmsaCredentialSpec:
@@ -3149,6 +3349,7 @@ spec:
type: string
type: object
type: array
+ x-kubernetes-list-type: atomic
topologySpreadConstraints:
items:
properties:
@@ -3165,11 +3366,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3258,6 +3461,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
path:
type: string
readOnly:
@@ -3267,6 +3471,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3284,6 +3489,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3312,7 +3518,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3327,6 +3535,7 @@ spec:
nodePublishSecretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3382,6 +3591,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
emptyDir:
properties:
@@ -3423,6 +3633,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
dataSource:
properties:
apiGroup:
@@ -3482,11 +3693,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3519,10 +3732,12 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
wwids:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
type: object
flexVolume:
properties:
@@ -3539,6 +3754,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3619,11 +3835,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
readOnly:
type: boolean
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3700,11 +3918,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -3739,7 +3959,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3785,6 +4007,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -3803,7 +4026,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -3823,6 +4048,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -3854,6 +4080,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -3861,6 +4088,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3883,6 +4111,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3921,6 +4150,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -3935,6 +4165,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -3960,6 +4191,9 @@ spec:
- name
type: object
type: array
+ x-kubernetes-list-map-keys:
+ - name
+ x-kubernetes-list-type: map
required:
- containers
type: object
@@ -3998,11 +4232,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
@@ -4037,7 +4273,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4083,6 +4321,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
secret:
properties:
@@ -4101,7 +4340,9 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
name:
+ default: ""
type: string
optional:
type: boolean
@@ -4121,6 +4362,7 @@ spec:
type: object
type: object
type: array
+ x-kubernetes-list-type: atomic
type: object
quobyte:
properties:
@@ -4152,6 +4394,7 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
pool:
type: string
readOnly:
@@ -4159,6 +4402,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4181,6 +4425,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
@@ -4221,6 +4466,7 @@ spec:
- path
type: object
type: array
+ x-kubernetes-list-type: atomic
optional:
type: boolean
secretName:
@@ -4235,6 +4481,7 @@ spec:
secretRef:
properties:
name:
+ default: ""
type: string
type: object
x-kubernetes-map-type: atomic
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/source.toolkit.fluxcd.io/v1/helmcharts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
index 9fa3b351b..05d5af8aa 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
@@ -9,6 +9,15 @@ metadata:
k8s.io/version: v1
name: source.toolkit.fluxcd.io-v1-helmcharts
spec:
+ connections:
+ - labels:
+ - source
+ references:
+ - '{.spec.sourceRef.name}'
+ target:
+ apiVersion: source.toolkit.fluxcd.io/v1beta2
+ kind: HelmRepository
+ type: MatchRef
resource:
group: source.toolkit.fluxcd.io
kind: HelmChart
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
index 001b7fd56..303581e1c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
@@ -362,11 +362,13 @@ spec:
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
required:
- key
- operator
type: object
type: array
+ x-kubernetes-list-type: atomic
matchLabels:
additionalProperties:
type: string
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1/manifestworks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1/manifestworks.yaml
index 05a5e30c8..389ec7d1c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1/manifestworks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1/manifestworks.yaml
@@ -289,11 +289,14 @@ spec:
update resource using server side apply with work-controller
as the field manager. If there is conflict, the related
Applied condition of manifest will be in the status of False
- with the reason of ApplyConflict.
+ with the reason of ApplyConflict. ReadOnly type means the
+ agent will only check the existence of the resource based
+ on its metadata.
enum:
- Update
- CreateOnly
- ServerSideApply
+ - ReadOnly
type: string
required:
- type
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
index ddbc8bab3..13bc5953e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourcedescriptors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
@@ -311,11 +311,14 @@ spec:
server side apply with work-controller as the field
manager. If there is conflict, the related Applied condition
of manifest will be in the status of False with the
- reason of ApplyConflict.
+ reason of ApplyConflict. ReadOnly type means the agent
+ will only check the existence of the resource based
+ on its metadata.
enum:
- Update
- CreateOnly
- ServerSideApply
+ - ReadOnly
type: string
required:
- type
@@ -355,29 +358,67 @@ spec:
rolloutStrategy:
default:
all:
- timeout: None
+ progressDeadline: None
type: All
description: Rollout strategy to apply workload to the selected
clusters by Placement and DecisionStrategy.
properties:
all:
- description: All define required fields for RolloutStrategy
+ description: All defines required fields for RolloutStrategy
type All
properties:
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number of
+ clusters in the current rollout that can fail before
+ proceeding to the next rollout. Fail means the cluster
+ has a failed status or timeout status (does not reach
+ successful status after ProgressDeadline). Once the
+ MaxFailures is breached, the rollout will stop. MaxFailures
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. For Progressive, this is considered
+ over the total number of clusters. For ProgressivePerGroup,
+ this is considered according to the size of the current
+ group. For both Progressive and ProgressivePerGroup,
+ the MaxFailures does not apply for MandatoryDecisionGroups,
+ which tolerate no failures. Default is that no failures
+ are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has been
+ reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. The default value is 0 meaning
+ the workload applier proceeds immediately after a successful
+ state is reached. MinSuccessTime must be defined in
+ [0-9h]|[0-9m]|[0-9s] format examples; 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the successful
- state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to reach
+ a successful state in the cluster. If the workload does
+ not reach a successful state after ProgressDeadline,
+ will stop waiting and workload will be treated as "timeout"
+ and be counted into MaxFailures. Once the MaxFailures
+ is breached, the rollout will stop. ProgressDeadline
+ default value is "None", meaning the workload applier
+ will wait for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
progressive:
- description: Progressive define required fields for RolloutStrategy
+ description: Progressive defines required fields for RolloutStrategy
type Progressive
properties:
mandatoryDecisionGroups:
@@ -414,20 +455,58 @@ spec:
defined in the placement->DecisionStrategy.
pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
x-kubernetes-int-or-string: true
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number of
+ clusters in the current rollout that can fail before
+ proceeding to the next rollout. Fail means the cluster
+ has a failed status or timeout status (does not reach
+ successful status after ProgressDeadline). Once the
+ MaxFailures is breached, the rollout will stop. MaxFailures
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. For Progressive, this is considered
+ over the total number of clusters. For ProgressivePerGroup,
+ this is considered according to the size of the current
+ group. For both Progressive and ProgressivePerGroup,
+ the MaxFailures does not apply for MandatoryDecisionGroups,
+ which tolerate no failures. Default is that no failures
+ are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has been
+ reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. The default value is 0 meaning
+ the workload applier proceeds immediately after a successful
+ state is reached. MinSuccessTime must be defined in
+ [0-9h]|[0-9m]|[0-9s] format examples; 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the successful
- state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to reach
+ a successful state in the cluster. If the workload does
+ not reach a successful state after ProgressDeadline,
+ will stop waiting and workload will be treated as "timeout"
+ and be counted into MaxFailures. Once the MaxFailures
+ is breached, the rollout will stop. ProgressDeadline
+ default value is "None", meaning the workload applier
+ will wait for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
progressivePerGroup:
- description: ProgressivePerGroup define required fields for
+ description: ProgressivePerGroup defines required fields for
RolloutStrategy type ProgressivePerGroup
properties:
mandatoryDecisionGroups:
@@ -454,31 +533,58 @@ spec:
type: string
type: object
type: array
- timeout:
+ maxFailures:
+ anyOf:
+ - type: integer
+ - type: string
+ default: 0
+ description: MaxFailures is a percentage or number of
+ clusters in the current rollout that can fail before
+ proceeding to the next rollout. Fail means the cluster
+ has a failed status or timeout status (does not reach
+ successful status after ProgressDeadline). Once the
+ MaxFailures is breached, the rollout will stop. MaxFailures
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. For Progressive, this is considered
+ over the total number of clusters. For ProgressivePerGroup,
+ this is considered according to the size of the current
+ group. For both Progressive and ProgressivePerGroup,
+ the MaxFailures does not apply for MandatoryDecisionGroups,
+ which tolerate no failures. Default is that no failures
+ are tolerated.
+ pattern: ^((100|[0-9]{1,2})%|[0-9]+)$
+ x-kubernetes-int-or-string: true
+ minSuccessTime:
+ default: "0"
+ description: MinSuccessTime is a "soak" time. In other
+ words, the minimum amount of time the workload applier
+ controller will wait from the start of each rollout
+ before proceeding (assuming a successful state has been
+ reached and MaxFailures wasn't breached). MinSuccessTime
+ is only considered for rollout types Progressive and
+ ProgressivePerGroup. The default value is 0 meaning
+ the workload applier proceeds immediately after a successful
+ state is reached. MinSuccessTime must be defined in
+ [0-9h]|[0-9m]|[0-9s] format examples; 2h , 90m , 360s
+ type: string
+ progressDeadline:
default: None
- description: Timeout define how long workload applier
- controller will wait till workload reach successful
- state in the cluster. Timeout default value is None
- meaning the workload applier will not proceed apply
- workload to other clusters if did not reach the successful
- state. Timeout must be defined in [0-9h]|[0-9m]|[0-9s]
- format examples; 2h , 90m , 360s
+ description: ProgressDeadline defines how long workload
+ applier controller will wait for the workload to reach
+ a successful state in the cluster. If the workload does
+ not reach a successful state after ProgressDeadline,
+ will stop waiting and workload will be treated as "timeout"
+ and be counted into MaxFailures. Once the MaxFailures
+ is breached, the rollout will stop. ProgressDeadline
+ default value is "None", meaning the workload applier
+ will wait for a successful state indefinitely. ProgressDeadline
+ must be defined in [0-9h]|[0-9m]|[0-9s] format examples;
+ 2h , 90m , 360s
pattern: ^(([0-9])+[h|m|s])|None$
type: string
type: object
type:
default: All
- description: Rollout strategy Types are All, Progressive and
- ProgressivePerGroup 1) All means apply the workload to all
- clusters in the decision groups at once. 2) Progressive
- means apply the workload to the selected clusters progressively
- per cluster. The workload will not be applied to the next
- cluster unless one of the current applied clusters reach
- the successful state or timeout. 3) ProgressivePerGroup
- means apply the workload to decisionGroup clusters progressively
- per group. The workload will not be applied to the next
- decisionGroup unless all clusters in the current group reach
- the successful state or timeout.
enum:
- All
- Progressive
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/challenges.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/challenges.yaml
index d368bdbf4..a166c0047 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/challenges.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/challenges.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/orders.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/orders.yaml
index 84ec860e5..7bf7c62e4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/orders.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/acme.cert-manager.io/v1/orders.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
index ae78f8245..30a1d9094 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addondeploymentconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
index 49e64382c..14213a573 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/addontemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
index e9b1b0004..132e12fff 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/clustermanagementaddons.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/managedclusteraddons.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/managedclusteraddons.yaml
index 38b18e750..09fdd42d2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/managedclusteraddons.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addon.open-cluster-management.io/v1alpha1/managedclusteraddons.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
index a42869117..daafdeb81 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesetbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
index ebc25a39c..32f9ca18a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.cluster.x-k8s.io/v1beta1/clusterresourcesets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/addons.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/addons.yaml
index 928cd6ae0..5a72e553f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/addons.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/addons.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/functions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/functions.yaml
index 26c8aeb86..ac0c6b8b9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/functions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/addons.kubestash.com/v1alpha1/functions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations.yaml
index 6fdf3de19..fcfabf8d9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/validatingwebhookconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/validatingwebhookconfigurations.yaml
index c7b414077..d5360c5dd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/validatingwebhookconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/admissionregistration.k8s.io/v1/validatingwebhookconfigurations.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositeresourcedefinitions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositeresourcedefinitions.yaml
index 165c2b252..28ecc2d8c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositeresourcedefinitions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositeresourcedefinitions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositionrevisions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositionrevisions.yaml
index 6ad0b9fc8..de782f3c0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositionrevisions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositionrevisions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositions.yaml
index fcc900f17..980e90510 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1/compositions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1alpha1/environmentconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1alpha1/environmentconfigs.yaml
index f4b396446..994a3bb63 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1alpha1/environmentconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.crossplane.io/v1alpha1/environmentconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.k8s.io/v1/customresourcedefinitions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.k8s.io/v1/customresourcedefinitions.yaml
index 7f6bf58f4..30c628b20 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.k8s.io/v1/customresourcedefinitions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiextensions.k8s.io/v1/customresourcedefinitions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiregistration.k8s.io/v1/apiservices.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiregistration.k8s.io/v1/apiservices.yaml
index 8e75cee92..953c5c3fa 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiregistration.k8s.io/v1/apiservices.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apiregistration.k8s.io/v1/apiservices.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/app.k8s.io/v1beta1/applications.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/app.k8s.io/v1beta1/applications.yaml
index b0cca3d73..fb625c07e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/app.k8s.io/v1beta1/applications.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/app.k8s.io/v1beta1/applications.yaml
@@ -22,7 +22,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
instanceLabelPaths:
- spec.selector.matchLabels
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/appcatalog.appscode.com/v1alpha1/appbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/appcatalog.appscode.com/v1alpha1/appbindings.yaml
index d287946d1..58d0b71ec 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/appcatalog.appscode.com/v1alpha1/appbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/appcatalog.appscode.com/v1alpha1/appbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/daemonsets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/daemonsets.yaml
index 981d2a6ab..9cac00d6e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/daemonsets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/daemonsets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/deployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/deployments.yaml
index dff0af952..d8d2d9728 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/deployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/deployments.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/replicasets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/replicasets.yaml
index 021e8a44b..e5caab886 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/replicasets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/replicasets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/statefulsets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/statefulsets.yaml
index 9f744bf7c..3a1bf03cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/statefulsets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/apps/v1/statefulsets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
index d331262f5..f1f548360 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mariadbarchivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
index 8a67d0160..2341b4e1b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mongodbarchivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
index 64af1c4f0..d3b4ac34d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/mysqlarchivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
index b3892b010..b69a17a5c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/archiver.kubedb.com/v1alpha1/postgresarchivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditregistration.k8s.io/v1alpha1/auditsinks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditregistration.k8s.io/v1alpha1/auditsinks.yaml
index 417f31ef3..21393f623 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditregistration.k8s.io/v1alpha1/auditsinks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditregistration.k8s.io/v1alpha1/auditsinks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.k8s.appscode.com/v1alpha1/users.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.k8s.appscode.com/v1alpha1/users.yaml
new file mode 100644
index 000000000..be863e9c7
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.k8s.appscode.com/v1alpha1/users.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.k8s.appscode.com
+ k8s.io/kind: User
+ k8s.io/resource: users
+ k8s.io/version: v1alpha1
+ name: authentication.k8s.appscode.com-v1alpha1-users
+spec:
+ resource:
+ group: authentication.k8s.appscode.com
+ kind: User
+ name: users
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: authenticationk8sappscodecom-user-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml
new file mode 100644
index 000000000..c7fb5af2d
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1alpha1/managedserviceaccounts.yaml
@@ -0,0 +1,17 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.open-cluster-management.io
+ k8s.io/kind: ManagedServiceAccount
+ k8s.io/resource: managedserviceaccounts
+ k8s.io/version: v1alpha1
+ name: authentication.open-cluster-management.io-v1alpha1-managedserviceaccounts
+spec:
+ resource:
+ group: authentication.open-cluster-management.io
+ kind: ManagedServiceAccount
+ name: managedserviceaccounts
+ scope: Namespaced
+ version: v1alpha1
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml
new file mode 100644
index 000000000..af5e4d7d7
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authentication.open-cluster-management.io/v1beta1/managedserviceaccounts.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authentication.open-cluster-management.io
+ k8s.io/kind: ManagedServiceAccount
+ k8s.io/resource: managedserviceaccounts
+ k8s.io/version: v1beta1
+ name: authentication.open-cluster-management.io-v1beta1-managedserviceaccounts
+spec:
+ resource:
+ group: authentication.open-cluster-management.io
+ kind: ManagedServiceAccount
+ name: managedserviceaccounts
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: authenticationopenclustermanagementio-managedserviceaccount-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.azure.kubedb.com/v1alpha1/roleassignments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.azure.kubedb.com/v1alpha1/roleassignments.yaml
index 9cd29ea48..6b11101d4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.azure.kubedb.com/v1alpha1/roleassignments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.azure.kubedb.com/v1alpha1/roleassignments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml
new file mode 100644
index 000000000..62a8f3ce0
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterrolebindings.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterRoleBinding
+ k8s.io/resource: managedclusterrolebindings
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclusterrolebindings
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterRoleBinding
+ name: managedclusterrolebindings
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: authorizationk8sappscodecom-managedclusterrolebinding-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml
new file mode 100644
index 000000000..e48f99312
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclusterroles.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterRole
+ k8s.io/resource: managedclusterroles
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclusterroles
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterRole
+ name: managedclusterroles
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: authorizationk8sappscodecom-managedclusterrole-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml
new file mode 100644
index 000000000..390fd5e45
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/authorization.k8s.appscode.com/v1alpha1/managedclustersetrolebindings.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: authorization.k8s.appscode.com
+ k8s.io/kind: ManagedClusterSetRoleBinding
+ k8s.io/resource: managedclustersetrolebindings
+ k8s.io/version: v1alpha1
+ name: authorization.k8s.appscode.com-v1alpha1-managedclustersetrolebindings
+spec:
+ resource:
+ group: authorization.k8s.appscode.com
+ kind: ManagedClusterSetRoleBinding
+ name: managedclustersetrolebindings
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: authorizationk8sappscodecom-managedclustersetrolebinding-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalercheckpoints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalercheckpoints.yaml
index b4a8a2912..4b5c090a9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalercheckpoints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalercheckpoints.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalers.yaml
index b9ec05ac7..b78ae9b82 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.k8s.io/v1/verticalpodautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml
new file mode 100644
index 000000000..da082c58f
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/druidautoscalers.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: DruidAutoscaler
+ k8s.io/resource: druidautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-druidautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: DruidAutoscaler
+ name: druidautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: autoscalingkubedbcom-druidautoscaler-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
index 24236db71..c8ec9ba74 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/elasticsearchautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
index 23bb7321b..0f50d1d58 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/etcdautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
index 52b075e3a..2d5efaaad 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/kafkaautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
index 9b76be051..a9d27046f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mariadbautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
index deb005685..69a5f98d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/memcachedautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
index 65085e764..e50f07acf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mongodbautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
index 1fc5721e3..5321a66f9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/mysqlautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
index 59b9c5880..8c6984027 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/perconaxtradbautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
index fbfc8baa5..6a9ac53bd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgbouncerautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml
new file mode 100644
index 000000000..3eed487e7
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/pgpoolautoscalers.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: PgpoolAutoscaler
+ k8s.io/resource: pgpoolautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-pgpoolautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: PgpoolAutoscaler
+ name: pgpoolautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: autoscalingkubedbcom-pgpoolautoscaler-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
index ef279c6fe..88afaccfd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/postgresautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
index 2f4db12b0..7c7be8d00 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/proxysqlautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
index eefee574c..de46a0aaf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/rabbitmqautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
index 12633feab..427b93bb4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redisautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
index 8ac66f85c..ac16bfc6a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/redissentinelautoscalers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml
new file mode 100644
index 000000000..df1a9c357
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling.kubedb.com/v1alpha1/singlestoreautoscalers.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: autoscaling.kubedb.com
+ k8s.io/kind: SinglestoreAutoscaler
+ k8s.io/resource: singlestoreautoscalers
+ k8s.io/version: v1alpha1
+ name: autoscaling.kubedb.com-v1alpha1-singlestoreautoscalers
+spec:
+ resource:
+ group: autoscaling.kubedb.com
+ kind: SinglestoreAutoscaler
+ name: singlestoreautoscalers
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: autoscalingkubedbcom-singlestoreautoscaler-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling/v2beta2/horizontalpodautoscalers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling/v2beta2/horizontalpodautoscalers.yaml
index 63c797c7a..4a2eba00b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling/v2beta2/horizontalpodautoscalers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/autoscaling/v2beta2/horizontalpodautoscalers.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1alpha1/storeconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1alpha1/storeconfigs.yaml
index 57e68271b..ea029419b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1alpha1/storeconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1alpha1/storeconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigs.yaml
index 600d311b5..7c395587b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigusages.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigusages.yaml
index 2c4853d88..43fb91dbf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigusages.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/aws.kubedb.com/v1beta1/providerconfigusages.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/providerregistrations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/providerregistrations.yaml
index 7b9561752..cb114dde6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/providerregistrations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/providerregistrations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/resourcegroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/resourcegroups.yaml
index 87506bbe0..c26619084 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/resourcegroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/resourcegroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/storeconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/storeconfigs.yaml
index 6daeb6189..bff8035b7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/storeconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/storeconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/subscriptions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/subscriptions.yaml
index daaf7ce1a..b340a8bd4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/subscriptions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1alpha1/subscriptions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigs.yaml
index 40856bac6..74efac21f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigusages.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigusages.yaml
index 8cbb88e68..5e6313062 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigusages.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/azure.kubedb.com/v1beta1/providerconfigusages.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/cronjobs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/cronjobs.yaml
index e803fc7cf..2ed449725 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/cronjobs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/cronjobs.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/jobs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/jobs.yaml
index 4a0546977..85931c6ac 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/jobs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1/jobs.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1beta1/cronjobs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1beta1/cronjobs.yaml
index 0248ba29d..927aab9c2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1beta1/cronjobs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/batch/v1beta1/cronjobs.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
index 2008aa4fa..c23a506ea 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
index 5a78be864..04b704392 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/bootstrap.cluster.x-k8s.io/v1beta2/eksconfigtemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/rediscaches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/rediscaches.yaml
index 69e03d94f..62d1cae46 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/rediscaches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/rediscaches.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterpriseclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterpriseclusters.yaml
index d09bdb578..71ce4a681 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterpriseclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterpriseclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterprisedatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterprisedatabases.yaml
index c5779d63a..293ed601b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterprisedatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisenterprisedatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisfirewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisfirewallrules.yaml
index 3b3806ce2..5ed10b272 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisfirewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redisfirewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redislinkedservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redislinkedservers.yaml
index e7411be28..2ba2cd88a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redislinkedservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cache.azure.kubedb.com/v1alpha1/redislinkedservers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/druidbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/druidbindings.yaml
index 18f3c59ee..b726b63fd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/druidbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/druidbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/elasticsearchbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/elasticsearchbindings.yaml
index 295aaa78e..311921956 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/elasticsearchbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/elasticsearchbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/ferretdbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/ferretdbbindings.yaml
index db7b2bfba..16083d1d8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/ferretdbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/ferretdbbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/kafkabindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/kafkabindings.yaml
index 1c5b65f3f..acdd403a4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/kafkabindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/kafkabindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mariadbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mariadbbindings.yaml
index b1caa7a2a..ad82248b2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mariadbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mariadbbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/memcachedbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/memcachedbindings.yaml
index f50f2bc4b..00a61be29 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/memcachedbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/memcachedbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mongodbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mongodbbindings.yaml
index 4ec85283c..b7bd05561 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mongodbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mongodbbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mssqlserverbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mssqlserverbindings.yaml
index c23b51a8a..02b43fc80 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mssqlserverbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mssqlserverbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mysqlbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mysqlbindings.yaml
index 8947cbec0..de996d03a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mysqlbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/mysqlbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/perconaxtradbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/perconaxtradbbindings.yaml
index 5bad92d8c..4455368c7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/perconaxtradbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/perconaxtradbbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgbouncerbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgbouncerbindings.yaml
index 40c48ac4a..935e77a0e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgbouncerbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgbouncerbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgpoolbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgpoolbindings.yaml
index 32735ac7a..d564fd5dc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgpoolbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/pgpoolbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/postgresbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/postgresbindings.yaml
index eca745129..cb82bb858 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/postgresbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/postgresbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/proxysqlbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/proxysqlbindings.yaml
index 5fca77276..8c6d5c250 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/proxysqlbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/proxysqlbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/rabbitmqbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/rabbitmqbindings.yaml
index 0aada08f0..c79c0dfe5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/rabbitmqbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/rabbitmqbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/redisbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/redisbindings.yaml
index afcc6966b..d2e785646 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/redisbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/redisbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/singlestorebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/singlestorebindings.yaml
index 6ee1f42b6..10fd9c6df 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/singlestorebindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/singlestorebindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/solrbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/solrbindings.yaml
index fb1af7397..beadef9a0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/solrbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/solrbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/zookeeperbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/zookeeperbindings.yaml
index 54621d440..276932396 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/zookeeperbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.appscode.com/v1alpha1/zookeeperbindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml
new file mode 100644
index 000000000..2eeb6bf85
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/clickhouseversions.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: catalog.kubedb.com
+ k8s.io/kind: ClickHouseVersion
+ k8s.io/resource: clickhouseversions
+ k8s.io/version: v1alpha1
+ name: catalog.kubedb.com-v1alpha1-clickhouseversions
+spec:
+ resource:
+ group: catalog.kubedb.com
+ kind: ClickHouseVersion
+ name: clickhouseversions
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: catalogkubedbcom-clickhouseversion-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/druidversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/druidversions.yaml
index 1244e849c..a11da63bc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/druidversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/druidversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/elasticsearchversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/elasticsearchversions.yaml
index f6c6d6587..b48eb3aa3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/elasticsearchversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/elasticsearchversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/etcdversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/etcdversions.yaml
index 2fabc931c..c5552e58c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/etcdversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/etcdversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/ferretdbversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/ferretdbversions.yaml
index f95cff3cb..cc1d59d3b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/ferretdbversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/ferretdbversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaconnectorversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaconnectorversions.yaml
index ac45e36e6..a3c185cc8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaconnectorversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaconnectorversions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaversions.yaml
index b2742efda..5018dba73 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/kafkaversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mariadbversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mariadbversions.yaml
index 33cba466a..8dba35dbe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mariadbversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mariadbversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/memcachedversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/memcachedversions.yaml
index 31365aa95..2b84663c5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/memcachedversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/memcachedversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mongodbversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mongodbversions.yaml
index 6cf92fcde..fb2fd6519 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mongodbversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mongodbversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mssqlserverversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mssqlserverversions.yaml
index 69ed801f0..78f23c035 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mssqlserverversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mssqlserverversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mysqlversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mysqlversions.yaml
index 5ae35ca4c..4106aacb7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mysqlversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/mysqlversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/perconaxtradbversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/perconaxtradbversions.yaml
index 4d87d29e3..6ff730423 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/perconaxtradbversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/perconaxtradbversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgbouncerversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgbouncerversions.yaml
index dde8bd2fe..56728f97a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgbouncerversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgbouncerversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgpoolversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgpoolversions.yaml
index 0de155b59..a77a02297 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgpoolversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/pgpoolversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/postgresversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/postgresversions.yaml
index 7be73c769..430365738 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/postgresversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/postgresversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/proxysqlversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/proxysqlversions.yaml
index 8d27816ed..b30c2fa9a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/proxysqlversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/proxysqlversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/rabbitmqversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/rabbitmqversions.yaml
index ae54c3fcc..e10c39ce9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/rabbitmqversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/rabbitmqversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/redisversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/redisversions.yaml
index 9732360e1..da7949139 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/redisversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/redisversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml
new file mode 100644
index 000000000..11a4719f9
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/schemaregistryversions.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: catalog.kubedb.com
+ k8s.io/kind: SchemaRegistryVersion
+ k8s.io/resource: schemaregistryversions
+ k8s.io/version: v1alpha1
+ name: catalog.kubedb.com-v1alpha1-schemaregistryversions
+spec:
+ resource:
+ group: catalog.kubedb.com
+ kind: SchemaRegistryVersion
+ name: schemaregistryversions
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: catalogkubedbcom-schemaregistryversion-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/singlestoreversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/singlestoreversions.yaml
index 214c73095..0764d8274 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/singlestoreversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/singlestoreversions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/solrversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/solrversions.yaml
index ed0efdeba..6607ed0e5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/solrversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/solrversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/zookeeperversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/zookeeperversions.yaml
index 506778839..973cd166e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/zookeeperversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubedb.com/v1alpha1/zookeeperversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubevault.com/v1alpha1/vaultserverversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubevault.com/v1alpha1/vaultserverversions.yaml
index 5fee9ee43..b014ca69c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubevault.com/v1alpha1/vaultserverversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubevault.com/v1alpha1/vaultserverversions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/elasticsearchbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/elasticsearchbindings.yaml
index a000dc557..7b723a05b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/elasticsearchbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/elasticsearchbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/kafkabindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/kafkabindings.yaml
index 8d9abfa7c..22f32d0c2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/kafkabindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/kafkabindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mariadbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mariadbbindings.yaml
index 0d9d64ceb..f340f7f81 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mariadbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mariadbbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/memcachedbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/memcachedbindings.yaml
index 600498ea9..f9f043a41 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/memcachedbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/memcachedbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mongodbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mongodbbindings.yaml
index aa34c4feb..d3bc29f5a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mongodbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mongodbbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mysqlbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mysqlbindings.yaml
index b15718065..980491a68 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mysqlbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/mysqlbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/perconaxtradbbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/perconaxtradbbindings.yaml
index 48de3ec24..2867a4ffe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/perconaxtradbbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/perconaxtradbbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/pgbouncerbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/pgbouncerbindings.yaml
index c8712fa4b..a9c8419f9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/pgbouncerbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/pgbouncerbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/postgresbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/postgresbindings.yaml
index 45a1fa2f6..f4a90c04d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/postgresbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/postgresbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/proxysqlbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/proxysqlbindings.yaml
index 7ee37a2ff..4bc7715da 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/proxysqlbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/proxysqlbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/redisbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/redisbindings.yaml
index 656418fbe..f674bfd1e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/redisbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/catalog.kubeware.dev/v1alpha1/redisbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificaterequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificaterequests.yaml
index 58995c99a..c5c0432e4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificaterequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificaterequests.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificates.yaml
index cd0418572..98a968503 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/certificates.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/clusterissuers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/clusterissuers.yaml
index c9dfd9888..6bb8ce95e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/clusterissuers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/clusterissuers.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/issuers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/issuers.yaml
index eef4e41c2..284a76549 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/issuers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cert-manager.io/v1/issuers.yaml
@@ -35,5 +35,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1/certificatesigningrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1/certificatesigningrequests.yaml
index b7e4a8ba6..951af6b76 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1/certificatesigningrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1/certificatesigningrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1beta1/certificatesigningrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1beta1/certificatesigningrequests.yaml
index 421aeb1d6..9b1a0e432 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1beta1/certificatesigningrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/certificates.k8s.io/v1beta1/certificatesigningrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/chartpresets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/chartpresets.yaml
index a2ddc0a75..3bab91b0d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/chartpresets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/chartpresets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/clusterchartpresets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/clusterchartpresets.yaml
index 833a8aa4b..15d8dac40 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/clusterchartpresets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/charts.x-helm.dev/v1alpha1/clusterchartpresets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1/managedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1/managedclusters.yaml
index bf4787662..834beaf3b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1/managedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1/managedclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/addonplacementscores.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/addonplacementscores.yaml
index cd8706f5b..df3667ffc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/addonplacementscores.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/addonplacementscores.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/clusterclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/clusterclaims.yaml
index 6f3ae1723..f2bebad66 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/clusterclaims.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1alpha1/clusterclaims.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
index 06030fe97..b2d150d80 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placementdecisions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placements.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placements.yaml
index 7a5a9406c..3ff906276 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placements.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta1/placements.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
index 1f960c224..5e9a1fa0d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersetbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
index c472fca13..cb0d5f54d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.open-cluster-management.io/v1beta2/managedclustersets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machines.yaml
index 73a763c30..f36287e70 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machines.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machinesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
index f5e08aaba..88ee35ef2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1alpha3/machinesets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
index 3c5446782..a153d2963 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusterclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusters.yaml
index d7600c3d0..b379d68e1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/clusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
index e7508a7ab..cc8435c79 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinedeployments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
index 5cbd0c3e2..375355d9a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinehealthchecks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinepools.yaml
index 2656204df..6c58622ef 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machines.yaml
index 3f0e0cc7e..29e65dfc3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machines.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinesets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinesets.yaml
index 1757b8edc..66c4e38fc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinesets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cluster.x-k8s.io/v1beta1/machinesets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/firewalls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/firewalls.yaml
index 4c55a5008..ead1fea4d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/firewalls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/firewalls.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networkpeerings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networkpeerings.yaml
index ee5b94ec9..9b9cd0d30 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networkpeerings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networkpeerings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networks.yaml
index 0722aa687..fd6ecbee3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/compute.gcp.kubedb.com/v1alpha1/networks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gatekeeper.sh/v1alpha1/configs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gatekeeper.sh/v1alpha1/configs.yaml
index be0bdc769..fbf91f20c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gatekeeper.sh/v1alpha1/configs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gatekeeper.sh/v1alpha1/configs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
index fa0e5ab22..7888f717e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml
new file mode 100644
index 000000000..8a100787a
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/config.gateway.open-cluster-management.io/v1alpha1/clustergatewayconfigurations.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: config.gateway.open-cluster-management.io
+ k8s.io/kind: ClusterGatewayConfiguration
+ k8s.io/resource: clustergatewayconfigurations
+ k8s.io/version: v1alpha1
+ name: config.gateway.open-cluster-management.io-v1alpha1-clustergatewayconfigurations
+spec:
+ resource:
+ group: config.gateway.open-cluster-management.io
+ kind: ClusterGatewayConfiguration
+ name: clustergatewayconfigurations
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: configgatewayopenclustermanagementio-clustergatewayconfiguration-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
index f64d26af4..01c191319 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/awsmanagedcontrolplanes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml
new file mode 100644
index 000000000..79d8c07dc
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/controlplane.cluster.x-k8s.io/v1beta2/rosacontrolplanes.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: controlplane.cluster.x-k8s.io
+ k8s.io/kind: ROSAControlPlane
+ k8s.io/resource: rosacontrolplanes
+ k8s.io/version: v1beta2
+ name: controlplane.cluster.x-k8s.io-v1beta2-rosacontrolplanes
+spec:
+ resource:
+ group: controlplane.cluster.x-k8s.io
+ kind: ROSAControlPlane
+ name: rosacontrolplanes
+ scope: Namespaced
+ version: v1beta2
+ ui:
+ editor:
+ name: controlplaneclusterxk8sio-rosacontrolplane-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/coordination.k8s.io/v1/leases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/coordination.k8s.io/v1/leases.yaml
index a8499b2e8..658f59192 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/coordination.k8s.io/v1/leases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/coordination.k8s.io/v1/leases.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresources.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
index 8bc407287..7e8f48e1c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresources.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
index d93d8fa6b..c644e459c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/genericresourceservices.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/podviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/podviews.yaml
index 89b363ade..05c2c1397 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/podviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/podviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/projects.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/projects.yaml
index db841ff83..7271d1380 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/projects.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/projects.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
index 441245432..fb707cc4e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.k8s.appscode.com/v1alpha1/resourcesummaries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupbatches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupbatches.yaml
index 6631932f7..e30575d83 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupbatches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupbatches.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupblueprints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupblueprints.yaml
index fe29147aa..80979eb61 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupblueprints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupblueprints.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupconfigurations.yaml
index 94c981e23..e151e6b5e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupsessions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupsessions.yaml
index 63a079e5d..4dd8e843a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupsessions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/backupsessions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/hooktemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/hooktemplates.yaml
index 7ece6fe95..f83f975d1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/hooktemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/hooktemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/restoresessions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/restoresessions.yaml
index 259e101f6..2eb7091e5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/restoresessions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core.kubestash.com/v1alpha1/restoresessions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/bindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/bindings.yaml
index ac40cd481..7b01defcd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/bindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/bindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/componentstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/componentstatuses.yaml
index 944f19cc0..a834e1583 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/componentstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/componentstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/configmaps.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/configmaps.yaml
index 9e5fdcd42..ca7692174 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/configmaps.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/configmaps.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/endpoints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/endpoints.yaml
index 064fba53c..7abeb250c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/endpoints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/endpoints.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/ephemeralcontainers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/ephemeralcontainers.yaml
index 8a71e46af..d6f8800b5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/ephemeralcontainers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/ephemeralcontainers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/events.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/events.yaml
index 011cdb264..51789e5f6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/events.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/events.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/limitranges.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/limitranges.yaml
index cf429f88b..361ff896f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/limitranges.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/limitranges.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/namespaces.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/namespaces.yaml
index 87ef92745..d01b46ec3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/namespaces.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/namespaces.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/nodes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/nodes.yaml
index 33162454f..b2b6d95e1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/nodes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/nodes.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumeclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumeclaims.yaml
index 73127634d..2b91ed52a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumeclaims.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumeclaims.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumes.yaml
index c9fa8a6e1..c1cf1f9ac 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/persistentvolumes.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/pods.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/pods.yaml
index 3ca324db8..9ea82800c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/pods.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/pods.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/podstatusresults.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/podstatusresults.yaml
index 83f17dae7..d53dfc9d3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/podstatusresults.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/podstatusresults.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/rangeallocations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/rangeallocations.yaml
index 75b5fb98c..b46c12106 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/rangeallocations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/rangeallocations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/replicationcontrollers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/replicationcontrollers.yaml
index aaedf72c3..6073e9fa8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/replicationcontrollers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/replicationcontrollers.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/resourcequotas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/resourcequotas.yaml
index 548d43d08..228d5c45f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/resourcequotas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/resourcequotas.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/secrets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/secrets.yaml
index d507d793e..56b471589 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/secrets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/secrets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/serviceaccounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/serviceaccounts.yaml
index dde912299..8233068ed 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/serviceaccounts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/serviceaccounts.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/services.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/services.yaml
index 0d5093c78..b3cbd06e4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/services.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/core/v1/services.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/accounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/accounts.yaml
index fe400e7a4..d760cddfb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/accounts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/accounts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandraclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandraclusters.yaml
index 0cf6f670a..ade2a0509 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandraclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandraclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandradatacenters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandradatacenters.yaml
index cf0b16540..435269de8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandradatacenters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandradatacenters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandrakeyspaces.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandrakeyspaces.yaml
index 782408a5c..12e832531 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandrakeyspaces.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandrakeyspaces.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandratables.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandratables.yaml
index 1d0267177..7ee6b8cb5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandratables.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/cassandratables.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlindatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlindatabases.yaml
index 0b240da29..32700e048 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlindatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlindatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlingraphs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlingraphs.yaml
index bcc0b8eb6..686b0a0dc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlingraphs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/gremlingraphs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongocollections.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongocollections.yaml
index 2e119f806..5b8ada402 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongocollections.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongocollections.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongodatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongodatabases.yaml
index 99aa873a0..f4d14da9f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongodatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/mongodatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlcontainers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlcontainers.yaml
index 8ba44ee86..8abfe6603 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlcontainers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlcontainers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldatabases.yaml
index b63dc3248..4a7c4c5a7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldedicatedgateways.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldedicatedgateways.yaml
index d02c72f2c..659816896 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldedicatedgateways.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqldedicatedgateways.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlfunctions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlfunctions.yaml
index 201b4e52b..9b36c3fa1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlfunctions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlfunctions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroleassignments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroleassignments.yaml
index b5a285f65..45c883f23 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroleassignments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroleassignments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroledefinitions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroledefinitions.yaml
index 201dae936..f72ce439f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroledefinitions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlroledefinitions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlstoredprocedures.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlstoredprocedures.yaml
index af6e7d4f5..8c8e37b87 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlstoredprocedures.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqlstoredprocedures.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqltriggers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqltriggers.yaml
index b0edb7d08..997af9202 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqltriggers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/sqltriggers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/tables.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/tables.yaml
index 871b0b973..87df6a099 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/tables.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/cosmosdb.azure.kubedb.com/v1alpha1/tables.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/configurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/configurations.yaml
index 1fcc2eba6..7747e0a19 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/configurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/configurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/databases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/databases.yaml
index 8d1ad6c06..12732af91 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/databases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/databases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/firewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/firewallrules.yaml
index f8228154a..2b71e95e9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/firewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/firewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/servers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/servers.yaml
index 478b4d5d7..21c684007 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/servers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/servers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
index 3a9ea2c35..a91222088 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformariadb.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
index 056f052c4..40f4289d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/configurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/configurations.yaml
index 8374ecdb9..fc3c662af 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/configurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/configurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/databases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/databases.yaml
index 442cf8404..39568fde5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/databases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/databases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/firewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/firewallrules.yaml
index 0d09065fa..b222ee817 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/firewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/firewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibledatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibledatabases.yaml
index fe9d7fd1a..1b58cd85d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibledatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibledatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
index 6e19ecced..cab08664f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
index 7d091c3bb..bb231fa20 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
index efea52295..8d8879b38 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/servers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/servers.yaml
index 16e7d84d1..48d145174 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/servers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/servers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
index a72ad5323..e66bc796a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbformysql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
index 000d3123a..2901add63 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/activedirectoryadministrators.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/configurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/configurations.yaml
index a94fa9de8..5cc6ae9e3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/configurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/configurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/databases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/databases.yaml
index 5756a6905..6f74b281c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/databases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/databases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/firewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/firewallrules.yaml
index 6e76b023e..b23f34922 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/firewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/firewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
index a945932c0..731f80c84 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverdatabases.yaml
index da1d25c5e..fd67e895b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverdatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
index 418525384..12ac901e2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleserverfirewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
index af3e76728..16a7c4300 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/flexibleservers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/serverkeys.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/serverkeys.yaml
index 734a6f704..2c980fafc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/serverkeys.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/serverkeys.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/servers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/servers.yaml
index 855684c2c..385dcf50e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/servers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/servers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
index d0324c6f6..0926905fe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dbforpostgresql.azure.kubedb.com/v1alpha1/virtualnetworkrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1/endpointslice.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1/endpointslice.yaml
index 384c907e5..949af5a38 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1/endpointslice.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1/endpointslice.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslice.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslice.yaml
index c43195571..358000fb1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslice.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslice.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslices.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslices.yaml
index 6a7edfef1..58db14789 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslices.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/discovery.k8s.io/v1beta1/endpointslices.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterinstances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterinstances.yaml
index a09572ea3..0a3208e8e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterinstances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterinstances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
index 87071ddd1..aaa8eecc6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusters.yaml
index 3ff33f83f..fdcd5a67e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clustersnapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
index 988c1439c..80dcbba14 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
index 2d983041b..e65274ceb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/globalclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/globalclusters.yaml
index eb1b9fdfe..7b1ab8b3f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/globalclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/globalclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/subnetgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
index ae7eb03b0..ae9ec264f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/docdb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/drivers.x-helm.dev/v1alpha1/appreleases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/drivers.x-helm.dev/v1alpha1/appreleases.yaml
index 65f19de2c..65dcbae55 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/drivers.x-helm.dev/v1alpha1/appreleases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/drivers.x-helm.dev/v1alpha1/appreleases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/contributorinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/contributorinsights.yaml
index 13b3d30e8..044c430d0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/contributorinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/contributorinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/globaltables.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/globaltables.yaml
index 765fa01f5..eb50df4c0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/globaltables.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/globaltables.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/kinesisstreamingdestinations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/kinesisstreamingdestinations.yaml
index cff797b57..8d012ba14 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/kinesisstreamingdestinations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/kinesisstreamingdestinations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tableitems.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tableitems.yaml
index eec4839ef..7aa7ed052 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tableitems.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tableitems.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tablereplicas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tablereplicas.yaml
index ebf2bd4d7..893a7e7f6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tablereplicas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tablereplicas.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tables.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tables.yaml
index f602594e8..d189dab4f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tables.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tables.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tags.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tags.yaml
index 9729952e5..816805f34 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tags.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/dynamodb.aws.kubedb.com/v1alpha1/tags.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/routes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/routes.yaml
index 83d74f9f6..1ed537fba 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/routes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/routes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygrouprules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygrouprules.yaml
index 5cdc66952..aa981e3ce 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygrouprules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygrouprules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygroups.yaml
index d9a10035f..444f3ea82 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/securitygroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/subnets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/subnets.yaml
index 843305514..40f055956 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/subnets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/subnets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcendpoints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcendpoints.yaml
index 7e0538041..fabf26e72 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcendpoints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcendpoints.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcpeeringconnections.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcpeeringconnections.yaml
index acf9c5d9c..2b7e7f5d1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcpeeringconnections.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcpeeringconnections.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcs.yaml
index c2cc35ffa..dc9ba868d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ec2.aws.kubedb.com/v1alpha1/vpcs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/clusters.yaml
index da41534ef..1d7130fd9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/clusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/parametergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/parametergroups.yaml
index 93226c45f..7177a62d3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/parametergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/parametergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/replicationgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/replicationgroups.yaml
index 178763434..57bbddabb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/replicationgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/replicationgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/subnetgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/subnetgroups.yaml
index 52a7d547a..e87bfe4a3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/subnetgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/subnetgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/usergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/usergroups.yaml
index 5407140bb..baaae9f55 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/usergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/usergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/users.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/users.yaml
index 1f8e49bdb..fef17dacb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/users.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticache.aws.kubedb.com/v1alpha1/users.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainpolicies.yaml
index a4a4ebf4b..d01dfc9f2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domains.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domains.yaml
index 41526fe1b..ac0f0c3a2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domains.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domains.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainsamloptions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainsamloptions.yaml
index 20e93be4d..0836cb7ef 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainsamloptions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.aws.kubedb.com/v1alpha1/domainsamloptions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
index 2690ebfb0..00bb4bdaa 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/elasticsearch.kubedb.com/v1alpha1/elasticsearchdashboards.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/awsroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/awsroles.yaml
index 48b40a1bb..51548d258 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/awsroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/awsroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/azureroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/azureroles.yaml
index 0b0624817..8bb57bad4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/azureroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/azureroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/elasticsearchroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/elasticsearchroles.yaml
index a0dfa11dc..e05110e8e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/elasticsearchroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/elasticsearchroles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/gcproles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/gcproles.yaml
index 868a19f5f..6379ee99f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/gcproles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/gcproles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mariadbroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mariadbroles.yaml
index 6dd0f1ed7..0c8752a81 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mariadbroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mariadbroles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mongodbroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mongodbroles.yaml
index e3a506005..e7c4f01ab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mongodbroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mongodbroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mysqlroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mysqlroles.yaml
index 741ad1d72..e8e1c8444 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mysqlroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/mysqlroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/pkiroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/pkiroles.yaml
index 12b1a8763..09bf3db34 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/pkiroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/pkiroles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/postgresroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/postgresroles.yaml
index b8424ee78..47a0b777e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/postgresroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/postgresroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/redisroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/redisroles.yaml
index 5bc5fd416..d52f758b2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/redisroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/redisroles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretaccessrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretaccessrequests.yaml
index f13b068ff..ec86d37d9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretaccessrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretaccessrequests.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretengines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretengines.yaml
index 16e348670..db3c595e7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretengines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretengines.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretrolebindings.yaml
index 5147a9cae..f8fe86b86 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretrolebindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/engine.kubevault.com/v1alpha1/secretrolebindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1/events.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1/events.yaml
index 986f7cb18..584f8adf9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1/events.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1/events.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1beta1/events.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1beta1/events.yaml
index 9209d28ad..bcdf16fd2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1beta1/events.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/events.k8s.io/v1beta1/events.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/expansion.gatekeeper.sh/v1alpha1/expansiontemplate.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/expansion.gatekeeper.sh/v1alpha1/expansiontemplate.yaml
index cd87da1e3..de18d229a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/expansion.gatekeeper.sh/v1alpha1/expansiontemplate.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/expansion.gatekeeper.sh/v1alpha1/expansiontemplate.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/daemonsets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/daemonsets.yaml
index 062b6a366..6ed7b295d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/daemonsets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/daemonsets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/deployments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/deployments.yaml
index 556dace1e..fdd202d8e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/deployments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/deployments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/ingresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/ingresses.yaml
index 93d27a4f2..a9b4436ec 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/ingresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/ingresses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/networkpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/networkpolicies.yaml
index 2feeb94cb..b661f31db 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/networkpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/networkpolicies.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/podsecuritypolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/podsecuritypolicies.yaml
index 3c8090a18..c5eb01d31 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/podsecuritypolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/podsecuritypolicies.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/replicasets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/replicasets.yaml
index a85887710..bbf11b595 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/replicasets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/replicasets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/scales.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/scales.yaml
index f6ef40bef..f1530a426 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/scales.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/extensions/v1beta1/scales.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/external-dns.appscode.com/v1alpha1/externaldns.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/external-dns.appscode.com/v1alpha1/externaldns.yaml
index 0c6390f28..11246411c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/external-dns.appscode.com/v1alpha1/externaldns.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/external-dns.appscode.com/v1alpha1/externaldns.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/falco.appscode.com/v1alpha1/falcoevents.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/falco.appscode.com/v1alpha1/falcoevents.yaml
index c3518f47a..a80b8c899 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/falco.appscode.com/v1alpha1/falcoevents.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/falco.appscode.com/v1alpha1/falcoevents.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas.yaml
index 35f551a73..ddac39f32 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations.yaml
index 1dd82b75b..e2ff69acf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas.yaml
index 5932df5b2..7a481c3ab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations.yaml
index 4dd25c8ae..81301465f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml
new file mode 100644
index 000000000..e9f882d27
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/fluxcd.open-cluster-management.io/v1alpha1/fluxcdconfigs.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: fluxcd.open-cluster-management.io
+ k8s.io/kind: FluxCDConfig
+ k8s.io/resource: fluxcdconfigs
+ k8s.io/version: v1alpha1
+ name: fluxcd.open-cluster-management.io-v1alpha1-fluxcdconfigs
+spec:
+ resource:
+ group: fluxcd.open-cluster-management.io
+ kind: FluxCDConfig
+ name: fluxcdconfigs
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: fluxcdopenclustermanagementio-fluxcdconfig-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/authenticationfilters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/authenticationfilters.yaml
index c4fcbbd13..a35b498e8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/authenticationfilters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/authenticationfilters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/backendtrafficpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/backendtrafficpolicies.yaml
index cb39af51a..4eee07304 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/backendtrafficpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/backendtrafficpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/clienttrafficpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/clienttrafficpolicies.yaml
index 81bb38720..8e832cb32 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/clienttrafficpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/clienttrafficpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoypatchpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoypatchpolicies.yaml
index 59be7608e..8542ab709 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoypatchpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoypatchpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
index cdb251a3a..d4a8746f4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/envoyproxies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/ratelimitfilters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/ratelimitfilters.yaml
index 04706f66b..bb0c5fff5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/ratelimitfilters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/ratelimitfilters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/securitypolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/securitypolicies.yaml
index 5eabe1e3b..d9840f2db 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/securitypolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.envoyproxy.io/v1alpha1/securitypolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gatewayclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gatewayclasses.yaml
index 5e12cd705..3e597d8ac 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gatewayclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gatewayclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gateways.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gateways.yaml
index 88a23b8e3..d89192caf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gateways.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/gateways.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/httproutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/httproutes.yaml
index e08f7219f..adef2e8b8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/httproutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1/httproutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/backendtlspolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/backendtlspolicies.yaml
index 10d641515..b5c0ddc66 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/backendtlspolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/backendtlspolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/grpcroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/grpcroutes.yaml
index cb89c2762..a3f029736 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/grpcroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/grpcroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tcproutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tcproutes.yaml
index e80d345c3..b5fe05ef0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tcproutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tcproutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tlsroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tlsroutes.yaml
index 7482aceec..e7a7e8619 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tlsroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/tlsroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/udproutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/udproutes.yaml
index 13abbbce7..db549f0a0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/udproutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1alpha2/udproutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gatewayclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gatewayclasses.yaml
index 833e8e962..60f1a6c86 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gatewayclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gatewayclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gateways.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gateways.yaml
index c39c03cd8..3b5c12c24 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gateways.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/gateways.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/httproutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/httproutes.yaml
index effdc63fa..e1e11960d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/httproutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/httproutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/referencegrants.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/referencegrants.yaml
index 1ac23340a..c034aa419 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/referencegrants.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.networking.k8s.io/v1beta1/referencegrants.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml
new file mode 100644
index 000000000..7a01f59c6
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.open-cluster-management.io/v1alpha1/clustergateways.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: gateway.open-cluster-management.io
+ k8s.io/kind: ClusterGateway
+ k8s.io/resource: clustergateways
+ k8s.io/version: v1alpha1
+ name: gateway.open-cluster-management.io-v1alpha1-clustergateways
+spec:
+ resource:
+ group: gateway.open-cluster-management.io
+ kind: ClusterGateway
+ name: clustergateways
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: gatewayopenclustermanagementio-clustergateway-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/kafkaroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/kafkaroutes.yaml
index ae0ccb4c8..6dd41d880 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/kafkaroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/kafkaroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mongodbroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mongodbroutes.yaml
index 3e05d4eb3..4d4e2604f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mongodbroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mongodbroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mysqlroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mysqlroutes.yaml
index 9e3449282..b318e0268 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mysqlroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/mysqlroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/postgresroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/postgresroutes.yaml
index c3dbd898d..0cd0ad236 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/postgresroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/postgresroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/redisroutes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/redisroutes.yaml
index db7767af5..0378fcbe5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/redisroutes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gateway.voyagermesh.com/v1alpha1/redisroutes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1alpha1/storeconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1alpha1/storeconfigs.yaml
index 314a0d3ef..7fb21b927 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1alpha1/storeconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1alpha1/storeconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigs.yaml
index e3cc9315c..4389e8b58 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigusages.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigusages.yaml
index b7daf9339..5929e637a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigusages.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/gcp.kubedb.com/v1beta1/providerconfigusages.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
index 966d2b31d..4614abfa8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2/helmreleases.yaml
@@ -15,3 +15,12 @@ spec:
name: helmreleases
scope: Namespaced
version: v2
+ ui:
+ editor:
+ name: helmtoolkitfluxcdio-helmrelease-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta1/helmreleases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta1/helmreleases.yaml
index 79f007cb3..20ffaa548 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta1/helmreleases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta1/helmreleases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta2/helmreleases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta2/helmreleases.yaml
index c8424bf8c..7d1737386 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta2/helmreleases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/helm.toolkit.fluxcd.io/v2beta2/helmreleases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/iam.aws.kubedb.com/v1alpha1/roles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/iam.aws.kubedb.com/v1alpha1/roles.yaml
index e27159fd8..55208cbcd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/iam.aws.kubedb.com/v1alpha1/roles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/iam.aws.kubedb.com/v1alpha1/roles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml
new file mode 100644
index 000000000..457cf53b4
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/clusteridentitys.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: identity.k8s.appscode.com
+ k8s.io/kind: ClusterIdentity
+ k8s.io/resource: clusteridentitys
+ k8s.io/version: v1alpha1
+ name: identity.k8s.appscode.com-v1alpha1-clusteridentitys
+spec:
+ resource:
+ group: identity.k8s.appscode.com
+ kind: ClusterIdentity
+ name: clusteridentitys
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: identityk8sappscodecom-clusteridentity-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml
new file mode 100644
index 000000000..b573787f4
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/selfsubjectnamespaceaccessreviews.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: identity.k8s.appscode.com
+ k8s.io/kind: SelfSubjectNamespaceAccessReview
+ k8s.io/resource: selfsubjectnamespaceaccessreviews
+ k8s.io/version: v1alpha1
+ name: identity.k8s.appscode.com-v1alpha1-selfsubjectnamespaceaccessreviews
+spec:
+ resource:
+ group: identity.k8s.appscode.com
+ kind: SelfSubjectNamespaceAccessReview
+ name: selfsubjectnamespaceaccessreviews
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: identityk8sappscodecom-selfsubjectnamespaceaccessreview-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditor.appscode.com/v1alpha1/siteinfos.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
similarity index 68%
rename from vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditor.appscode.com/v1alpha1/siteinfos.yaml
rename to vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
index 877da5004..6c2b7ebf3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/auditor.appscode.com/v1alpha1/siteinfos.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/identity.k8s.appscode.com/v1alpha1/siteinfos.yaml
@@ -3,24 +3,24 @@ kind: ResourceEditor
metadata:
creationTimestamp: null
labels:
- k8s.io/group: auditor.appscode.com
+ k8s.io/group: identity.k8s.appscode.com
k8s.io/kind: SiteInfo
k8s.io/resource: siteinfos
k8s.io/version: v1alpha1
- name: auditor.appscode.com-v1alpha1-siteinfos
+ name: identity.k8s.appscode.com-v1alpha1-siteinfos
spec:
resource:
- group: auditor.appscode.com
+ group: identity.k8s.appscode.com
kind: SiteInfo
name: siteinfos
scope: Cluster
version: v1alpha1
ui:
editor:
- name: auditorappscodecom-siteinfo-editor
+ name: identityk8sappscodecom-siteinfo-editor
sourceRef:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagepolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagepolicies.yaml
index 8adcf845d..973b794e3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagepolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagepolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagerepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagerepositories.yaml
index 7064c7d5f..935910d29 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagerepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imagerepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imageupdateautomations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imageupdateautomations.yaml
index e2c5baa95..57e7e87af 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imageupdateautomations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta1/imageupdateautomations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagepolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagepolicies.yaml
index 6242592c3..779569c3d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagepolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagepolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagerepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagerepositories.yaml
index 88ffa4706..b985089cd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagerepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imagerepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imageupdateautomations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imageupdateautomations.yaml
index 0ca4ae0c2..7dc2e04e7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imageupdateautomations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/image.toolkit.fluxcd.io/v1beta2/imageupdateautomations.yaml
@@ -15,3 +15,12 @@ spec:
name: imageupdateautomations
scope: Namespaced
version: v1beta2
+ ui:
+ editor:
+ name: imagetoolkitfluxcdio-imageupdateautomation-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/imagepolicy.k8s.io/v1alpha1/imagereviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/imagepolicy.k8s.io/v1alpha1/imagereviews.yaml
index a92d2169d..4d2e67ba9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/imagepolicy.k8s.io/v1alpha1/imagereviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/imagepolicy.k8s.io/v1alpha1/imagereviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml
new file mode 100644
index 000000000..e125c971d
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclusters.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedCluster
+ k8s.io/resource: azureasomanagedclusters
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedclusters
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedCluster
+ name: azureasomanagedclusters
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedcluster-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml
new file mode 100644
index 000000000..545958624
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedclustertemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedClusterTemplate
+ k8s.io/resource: azureasomanagedclustertemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedclustertemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedClusterTemplate
+ name: azureasomanagedclustertemplates
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedclustertemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml
new file mode 100644
index 000000000..acaf15bd1
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanes.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedControlPlane
+ k8s.io/resource: azureasomanagedcontrolplanes
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedcontrolplanes
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedControlPlane
+ name: azureasomanagedcontrolplanes
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedcontrolplane-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml
new file mode 100644
index 000000000..7d52f64d0
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedcontrolplanetemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedControlPlaneTemplate
+ k8s.io/resource: azureasomanagedcontrolplanetemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedcontrolplanetemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedControlPlaneTemplate
+ name: azureasomanagedcontrolplanetemplates
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedcontrolplanetemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml
new file mode 100644
index 000000000..27f223556
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepools.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedMachinePool
+ k8s.io/resource: azureasomanagedmachinepools
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedmachinepools
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedMachinePool
+ name: azureasomanagedmachinepools
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedmachinepool-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml
new file mode 100644
index 000000000..b56814595
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha1/azureasomanagedmachinepooltemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureASOManagedMachinePoolTemplate
+ k8s.io/resource: azureasomanagedmachinepooltemplates
+ k8s.io/version: v1alpha1
+ name: infrastructure.cluster.x-k8s.io-v1alpha1-azureasomanagedmachinepooltemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureASOManagedMachinePoolTemplate
+ name: azureasomanagedmachinepooltemplates
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azureasomanagedmachinepooltemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureserviceprincipals.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureserviceprincipals.yaml
index 79410479a..6c5c48c7a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureserviceprincipals.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureserviceprincipals.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azuresystemassignedidentites.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azuresystemassignedidentites.yaml
index 62a7f36be..0834c01a1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azuresystemassignedidentites.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azuresystemassignedidentites.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureuserassignedidentites.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureuserassignedidentites.yaml
index c14565304..84e08b973 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureuserassignedidentites.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1alpha3/azureuserassignedidentites.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
index 907f4f6fc..9a8f8d281 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusteridentities.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
index 21a7789c8..078570eb8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
index 2cb889ba1..eea34db58 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azureclustertemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
index 0bd86201a..938cc6948 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepoolmachines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
index 1a241e451..baad507ce 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
index 8db00b38b..bc6523efa 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
index 34872e709..ac42803ec 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremachinetemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
index 3bc763074..eff7e9223 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml
new file mode 100644
index 000000000..771b40164
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedclustertemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedClusterTemplate
+ k8s.io/resource: azuremanagedclustertemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedclustertemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedClusterTemplate
+ name: azuremanagedclustertemplates
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azuremanagedclustertemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
index 5d053ca3f..24a8fb4b1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml
new file mode 100644
index 000000000..1a4732ff1
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedcontrolplanetemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedControlPlaneTemplate
+ k8s.io/resource: azuremanagedcontrolplanetemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedcontrolplanetemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedControlPlaneTemplate
+ name: azuremanagedcontrolplanetemplates
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azuremanagedcontrolplanetemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
index f611d3017..e37cf4bef 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml
new file mode 100644
index 000000000..0924daacd
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/azuremanagedmachinepooltemplates.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: AzureManagedMachinePoolTemplate
+ k8s.io/resource: azuremanagedmachinepooltemplates
+ k8s.io/version: v1beta1
+ name: infrastructure.cluster.x-k8s.io-v1beta1-azuremanagedmachinepooltemplates
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: AzureManagedMachinePoolTemplate
+ name: azuremanagedmachinepooltemplates
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-azuremanagedmachinepooltemplate-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
index 404f1a39f..d3a5a276d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
index fbf9a1473..064743f7d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpclustertemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
index f1a26e379..6a5317d9a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
index 9978672b4..5b7a259bd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmachinetemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
index 4a059d0e4..3a98c641e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
index b5f943e78..0e902cc0a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedcontrolplanes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
index b06fed278..cc3e93f91 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta1/gcpmanagedmachinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
index 6e755acf0..b8c1c5e62 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustercontrolleridentities.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
index bae0e97d6..1039e82b7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterroleidentities.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
index 410ecf2b4..27753b737 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
index ef978a702..155ec18a7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclusterstaticidentities.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
index 95d0d7e42..bd917abb8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsclustertemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
index f75698c69..e25e2a80a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsfargateprofiles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
index 04011caf6..873c29696 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
index d2196cc26..d41799fc9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
index 1eb7aadb0..f260110d0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmachinetemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
index 257344e5f..517c68e9b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
index 3761c4e82..38f404ad2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/awsmanagedmachinepools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml
new file mode 100644
index 000000000..fb44e43ab
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosaclusters.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: ROSACluster
+ k8s.io/resource: rosaclusters
+ k8s.io/version: v1beta2
+ name: infrastructure.cluster.x-k8s.io-v1beta2-rosaclusters
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: ROSACluster
+ name: rosaclusters
+ scope: Namespaced
+ version: v1beta2
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-rosacluster-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml
new file mode 100644
index 000000000..78cffac45
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/infrastructure.cluster.x-k8s.io/v1beta2/rosamachinepools.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: infrastructure.cluster.x-k8s.io
+ k8s.io/kind: ROSAMachinePool
+ k8s.io/resource: rosamachinepools
+ k8s.io/version: v1beta2
+ name: infrastructure.cluster.x-k8s.io-v1beta2-rosamachinepools
+spec:
+ resource:
+ group: infrastructure.cluster.x-k8s.io
+ kind: ROSAMachinePool
+ name: rosamachinepools
+ scope: Namespaced
+ version: v1beta2
+ ui:
+ editor:
+ name: infrastructureclusterxk8sio-rosamachinepool-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/internal.apiserver.k8s.io/v1alpha1/storageversions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/internal.apiserver.k8s.io/v1alpha1/storageversions.yaml
index 3aae9a916..3f62e4cfc 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/internal.apiserver.k8s.io/v1alpha1/storageversions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/internal.apiserver.k8s.io/v1alpha1/storageversions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
index d5c789f30..eae6d4065 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddressclaims.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
index 4109dcb65..4b14830ef 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1alpha1/ipaddresses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml
new file mode 100644
index 000000000..ce52663fa
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddressclaims.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ipam.cluster.x-k8s.io
+ k8s.io/kind: IPAddressClaim
+ k8s.io/resource: ipaddressclaims
+ k8s.io/version: v1beta1
+ name: ipam.cluster.x-k8s.io-v1beta1-ipaddressclaims
+spec:
+ resource:
+ group: ipam.cluster.x-k8s.io
+ kind: IPAddressClaim
+ name: ipaddressclaims
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: ipamclusterxk8sio-ipaddressclaim-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml
new file mode 100644
index 000000000..7ba6fa19b
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ipam.cluster.x-k8s.io/v1beta1/ipaddresses.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ipam.cluster.x-k8s.io
+ k8s.io/kind: IPAddress
+ k8s.io/resource: ipaddresses
+ k8s.io/version: v1beta1
+ name: ipam.cluster.x-k8s.io-v1beta1-ipaddresses
+spec:
+ resource:
+ group: ipam.cluster.x-k8s.io
+ kind: IPAddress
+ name: ipaddresses
+ scope: Namespaced
+ version: v1beta1
+ ui:
+ editor:
+ name: ipamclusterxk8sio-ipaddress-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/clusters.yaml
index 5f68f0962..aa5620f31 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/clusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/configurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/configurations.yaml
index 739099800..501162812 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/configurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.aws.kubedb.com/v1alpha1/configurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
index 02ee44cb8..ba400ee13 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectors.yaml
index 116ba93bb..2a869f621 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/connectors.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml
new file mode 100644
index 000000000..bf5eb9746
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kafka.kubedb.com/v1alpha1/schemaregistries.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: kafka.kubedb.com
+ k8s.io/kind: SchemaRegistry
+ k8s.io/resource: schemaregistries
+ k8s.io/version: v1alpha1
+ name: kafka.kubedb.com-v1alpha1-schemaregistries
+spec:
+ resource:
+ group: kafka.kubedb.com
+ kind: SchemaRegistry
+ name: schemaregistries
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: kafkakubedbcom-schemaregistry-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml
new file mode 100644
index 000000000..ee2ce3b99
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.azure.com/v1alpha2/aksnodeclasses.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.azure.com
+ k8s.io/kind: AKSNodeClass
+ k8s.io/resource: aksnodeclasses
+ k8s.io/version: v1alpha2
+ name: karpenter.azure.com-v1alpha2-aksnodeclasses
+spec:
+ resource:
+ group: karpenter.azure.com
+ kind: AKSNodeClass
+ name: aksnodeclasses
+ scope: Cluster
+ version: v1alpha2
+ ui:
+ editor:
+ name: karpenterazurecom-aksnodeclass-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml
new file mode 100644
index 000000000..21c209222
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.k8s.aws/v1beta1/ec2nodeclasses.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.k8s.aws
+ k8s.io/kind: EC2NodeClass
+ k8s.io/resource: ec2nodeclasses
+ k8s.io/version: v1beta1
+ name: karpenter.k8s.aws-v1beta1-ec2nodeclasses
+spec:
+ resource:
+ group: karpenter.k8s.aws
+ kind: EC2NodeClass
+ name: ec2nodeclasses
+ scope: Cluster
+ version: v1beta1
+ ui:
+ editor:
+ name: karpenterk8saws-ec2nodeclass-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodeclaims.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodeclaims.yaml
new file mode 100644
index 000000000..dd5286fa4
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodeclaims.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.sh
+ k8s.io/kind: NodeClaim
+ k8s.io/resource: nodeclaims
+ k8s.io/version: v1beta1
+ name: karpenter.sh-v1beta1-nodeclaims
+spec:
+ resource:
+ group: karpenter.sh
+ kind: NodeClaim
+ name: nodeclaims
+ scope: Cluster
+ version: v1beta1
+ ui:
+ editor:
+ name: karpentersh-nodeclaim-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodepools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodepools.yaml
new file mode 100644
index 000000000..89349b619
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/karpenter.sh/v1beta1/nodepools.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: karpenter.sh
+ k8s.io/kind: NodePool
+ k8s.io/resource: nodepools
+ k8s.io/version: v1beta1
+ name: karpenter.sh-v1beta1-nodepools
+spec:
+ resource:
+ group: karpenter.sh
+ kind: NodePool
+ name: nodepools
+ scope: Cluster
+ version: v1beta1
+ ui:
+ editor:
+ name: karpentersh-nodepool-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/keys.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/keys.yaml
index d4966351e..3fad06e6f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/keys.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/keys.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/vaults.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/vaults.yaml
index aeb1a77ae..2428560d6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/vaults.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/keyvault.azure.kubedb.com/v1alpha1/vaults.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kinesis.aws.kubedb.com/v1alpha1/streams.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kinesis.aws.kubedb.com/v1alpha1/streams.yaml
index e78dfbc24..722ec4d07 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kinesis.aws.kubedb.com/v1alpha1/streams.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kinesis.aws.kubedb.com/v1alpha1/streams.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kms.aws.kubedb.com/v1alpha1/keys.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kms.aws.kubedb.com/v1alpha1/keys.yaml
index 178016722..eed15d7b6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kms.aws.kubedb.com/v1alpha1/keys.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kms.aws.kubedb.com/v1alpha1/keys.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicebindings.yaml
index 9a7f14557..114b73cc6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicebindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicebindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexportrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexportrequests.yaml
index fd277fa56..c024a86d1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexportrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexportrequests.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexports.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexports.yaml
index 08646fbe3..2cac7d03d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexports.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiserviceexports.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicenamespaces.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicenamespaces.yaml
index 0ea261185..a40341ba8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicenamespaces.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/apiservicenamespaces.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/clusterbindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/clusterbindings.yaml
index eeee9f417..7e747cc0e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/clusterbindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kube-bind.appscode.com/v1alpha1/clusterbindings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/clickhouses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/clickhouses.yaml
new file mode 100644
index 000000000..524de1544
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/clickhouses.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: kubedb.com
+ k8s.io/kind: ClickHouse
+ k8s.io/resource: clickhouses
+ k8s.io/version: v1alpha2
+ name: kubedb.com-v1alpha2-clickhouses
+spec:
+ resource:
+ group: kubedb.com
+ kind: ClickHouse
+ name: clickhouses
+ scope: Namespaced
+ version: v1alpha2
+ ui:
+ editor:
+ name: kubedbcom-clickhouse-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/druids.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/druids.yaml
index 9b714ce8c..18e8b0722 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/druids.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/druids.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-druid-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/elasticsearches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/elasticsearches.yaml
index 8991f0f72..21dcc4bab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/elasticsearches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/elasticsearches.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -89,7 +89,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -103,7 +103,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -117,7 +117,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -135,7 +135,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -149,7 +149,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -164,7 +164,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-elasticsearch-editor-options
@@ -172,7 +172,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/etcds.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/etcds.yaml
index 02b9496d0..76efbd7be 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/etcds.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/etcds.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: kubedbcom-etcd-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/ferretdbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/ferretdbs.yaml
index b58c5164e..2db6f1247 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/ferretdbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/ferretdbs.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-ferretdb-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/kafkas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/kafkas.yaml
index ffc93928b..2ea1d29f9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/kafkas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/kafkas.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -44,7 +44,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-kafka-editor-options
@@ -52,7 +52,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mariadbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mariadbs.yaml
index 6512ce0ef..b8cc9b1f2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mariadbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mariadbs.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -105,7 +105,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -119,7 +119,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -133,7 +133,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -149,7 +149,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -163,7 +163,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -178,7 +178,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-mariadb-editor-options
@@ -186,7 +186,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/memcacheds.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/memcacheds.yaml
index 888188ac7..4d97e1b12 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/memcacheds.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/memcacheds.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: kubedbcom-memcached-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mongodbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mongodbs.yaml
index 67227b60b..44a7bcf5c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mongodbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mongodbs.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -105,7 +105,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -119,7 +119,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -133,7 +133,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -142,6 +142,36 @@ spec:
name: Expand Volume
operationId: create-opsrequest-volumeexpansion
name: Scaling
+ - items:
+ - editor:
+ name: autoscalingkubedbcom-mongodbautoscaler-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.20
+ enforceQuota: true
+ flow: standalone-create
+ icons:
+ - src: https://cdn.appscode.com/k8s/icons/action-icons/compute.svg
+ type: image/svg+xml
+ name: Compute
+ operationId: create-opsrequest-compute
+ - editor:
+ name: autoscalingkubedbcom-mongodbautoscaler-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.20
+ enforceQuota: true
+ flow: standalone-create
+ icons:
+ - src: https://cdn.appscode.com/k8s/icons/action-icons/storage.svg
+ type: image/svg+xml
+ name: Storage
+ operationId: create-opsrequest-storage
+ name: Autoscaling
- items:
- editor:
name: opskubedbcom-mongodbopsrequest-editor
@@ -149,7 +179,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -163,7 +193,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -178,7 +208,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-mongodb-editor-options
@@ -186,7 +216,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mssqlservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mssqlservers.yaml
index 8fb4f0f0d..41d37a4cf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mssqlservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mssqlservers.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-mssqlserver-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mysqls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mysqls.yaml
index 5a6121d14..53a110cb9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mysqls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/mysqls.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -105,7 +105,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -119,7 +119,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -133,7 +133,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -149,7 +149,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -163,7 +163,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -178,7 +178,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-mysql-editor-options
@@ -186,7 +186,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/perconaxtradbs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/perconaxtradbs.yaml
index 7e1f6bfd6..d0e709dce 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/perconaxtradbs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/perconaxtradbs.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-perconaxtradb-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgbouncers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgbouncers.yaml
index 04c017603..2941ac06e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgbouncers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgbouncers.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: kubedbcom-pgbouncer-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgpools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgpools.yaml
index ada2ed336..4f1fab6dd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgpools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/pgpools.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-pgpool-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/postgreses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/postgreses.yaml
index cd28274cd..5fe40f4b5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/postgreses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/postgreses.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -105,7 +105,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -119,7 +119,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -133,7 +133,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -149,7 +149,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -163,7 +163,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -178,7 +178,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-postgres-editor-options
@@ -186,7 +186,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/proxysqls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/proxysqls.yaml
index b82f505e0..486776b99 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/proxysqls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/proxysqls.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -57,7 +57,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -103,7 +103,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -117,7 +117,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -132,7 +132,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: kubedbcom-proxysql-editor-options
@@ -140,7 +140,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/rabbitmqs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/rabbitmqs.yaml
index a537bb770..b15ed9e59 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/rabbitmqs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/rabbitmqs.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-rabbitmq-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redises.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redises.yaml
index 0281004cd..ed8dbb2b9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redises.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redises.yaml
@@ -29,7 +29,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -43,7 +43,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -59,7 +59,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -73,7 +73,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -87,7 +87,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -105,7 +105,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -119,7 +119,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -133,7 +133,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: true
flow: standalone-create
icons:
@@ -149,7 +149,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-create
icons:
@@ -163,7 +163,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
flow: standalone-edit
icons:
@@ -178,7 +178,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-redis-editor-options
@@ -186,7 +186,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redissentinels.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redissentinels.yaml
index ef266607b..9f30e9f30 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redissentinels.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/redissentinels.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
variants:
- name: default
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/singlestores.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/singlestores.yaml
index 5895eee12..9733f9642 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/singlestores.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/singlestores.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-singlestore-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/solrs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/solrs.yaml
index e9daf8d16..a5a2d12c8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/solrs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/solrs.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-solr-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/zookeepers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/zookeepers.yaml
index d2161c1b6..04e687fd9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/zookeepers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubedb.com/v1alpha2/zookeepers.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: true
options:
name: kubedbcom-zookeeper-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubevault.com/v1alpha2/vaultservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubevault.com/v1alpha2/vaultservers.yaml
index cdbe56246..b8b7f65dd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubevault.com/v1alpha2/vaultservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kubevault.com/v1alpha2/vaultservers.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: kubevaultcom-vaultserver-editor-options
@@ -35,7 +35,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
variants:
- name: default
selector:
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1/kustomizations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1/kustomizations.yaml
index cc54b4010..b5dc8db0e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1/kustomizations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1/kustomizations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1beta2/kustomizations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1beta2/kustomizations.yaml
index 06933df0a..430bc0eb3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1beta2/kustomizations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/kustomize.toolkit.fluxcd.io/v1beta2/kustomizations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/management.k8s.appscode.com/v1alpha1/projectquotas.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/management.k8s.appscode.com/v1alpha1/projectquotas.yaml
index c3d606a68..e1d980347 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/management.k8s.appscode.com/v1alpha1/projectquotas.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/management.k8s.appscode.com/v1alpha1/projectquotas.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/match.gatekeeper.sh/match/matchcrd.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/match.gatekeeper.sh/match/matchcrd.yaml
index bb2c223a3..acdf0864c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/match.gatekeeper.sh/match/matchcrd.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/match.gatekeeper.sh/match/matchcrd.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/acls.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/acls.yaml
index 02b70bfa4..51c8201c2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/acls.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/acls.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/clusters.yaml
index 767368921..b5e6bad0b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/clusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/parametergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/parametergroups.yaml
index 7b9f8a251..b24b8a267 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/parametergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/parametergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/snapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/snapshots.yaml
index 0adbe1b32..93c852c0d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/snapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/snapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/subnetgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
index 0b3d0f915..794718727 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/memorydb.aws.kubedb.com/v1alpha1/subnetgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.appscode.com/v1alpha1/resourcedescriptors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.appscode.com/v1alpha1/resourcedescriptors.yaml
index 5d465c7d4..135b1e95b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.appscode.com/v1alpha1/resourcedescriptors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.appscode.com/v1alpha1/resourcedescriptors.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/clusterstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/clusterstatuses.yaml
index 103d1bb34..6c94ad1b0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/clusterstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/clusterstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
index 87a415cce..d54fecdd0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menuoutlines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menus.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menus.yaml
index c2ede5b7f..6476f55a5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menus.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/menus.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceblockdefinitions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceblockdefinitions.yaml
index b704ed516..b6d5f85f4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceblockdefinitions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceblockdefinitions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcecalculators.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcecalculators.yaml
index c57cf3a38..0dc384389 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcecalculators.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcecalculators.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
index 88257599e..55f1a8d24 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcedescriptors.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
index d66807414..1253bebe3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceeditors.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcelayouts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcelayouts.yaml
index 878692717..4575ccb1d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcelayouts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcelayouts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceoutlines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceoutlines.yaml
index aae8aa67f..d07769ed9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceoutlines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourceoutlines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcetabledefinitions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcetabledefinitions.yaml
index cefea05b1..ee8d33d47 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcetabledefinitions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/meta.k8s.appscode.com/v1alpha1/resourcetabledefinitions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/metrics.appscode.com/v1alpha1/metricsconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/metrics.appscode.com/v1alpha1/metricsconfigurations.yaml
index 83abca5f7..3539fa783 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/metrics.appscode.com/v1alpha1/metricsconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/metrics.appscode.com/v1alpha1/metricsconfigurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/alertmanagers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/alertmanagers.yaml
index 996848602..c4a3a8691 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/alertmanagers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/alertmanagers.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/podmonitors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/podmonitors.yaml
index 1d45f783b..e3999409f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/podmonitors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/podmonitors.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/probes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/probes.yaml
index 9d2ebb358..d8fe0eb28 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/probes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/probes.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheuses.yaml
index f41e22fac..6c61e890b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheuses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheusrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheusrules.yaml
index 5fb5ac755..ad3c08616 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheusrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/prometheusrules.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/servicemonitors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/servicemonitors.yaml
index 51f84b871..bf8e20a35 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/servicemonitors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/servicemonitors.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
instanceLabelPaths:
- spec.selector.matchLabels
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/thanosrulers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/thanosrulers.yaml
index c7795a91b..7f358c688 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/thanosrulers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1/thanosrulers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/alertmanagerconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/alertmanagerconfigs.yaml
index 624c52c0e..07d0851c9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/alertmanagerconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/alertmanagerconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/prometheusagents.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/prometheusagents.yaml
index 76d6eba0c..923b499d5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/prometheusagents.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/prometheusagents.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/scrapeconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/scrapeconfigs.yaml
index 0dd0c5941..05767debe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/scrapeconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/monitoring.coreos.com/v1alpha1/scrapeconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assign.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assign.yaml
index 010b0ba6a..fc1119eed 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assign.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assign.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assignmetadata.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assignmetadata.yaml
index 2f83b68d1..8bcedc16f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assignmetadata.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/assignmetadata.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/modifyset.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/modifyset.yaml
index 54f9d575c..2236d02f6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/modifyset.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1/modifyset.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1alpha1/assignimage.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1alpha1/assignimage.yaml
index f60b4622e..ea4d30c00 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1alpha1/assignimage.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/mutations.gatekeeper.sh/v1alpha1/assignimage.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszones.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszones.yaml
index 7d873e3d4..0ed068a34 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszones.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszones.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszonevirtualnetworklinks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszonevirtualnetworklinks.yaml
index 4a4acdab1..da6e19051 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszonevirtualnetworklinks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/privatednszonevirtualnetworklinks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/routetables.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/routetables.yaml
index 321cffee5..7e2a4b59e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/routetables.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/routetables.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/securitygroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/securitygroups.yaml
index c05e711f2..423b266c8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/securitygroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/securitygroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetnetworksecuritygroupassociations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetnetworksecuritygroupassociations.yaml
index 24d21c81c..37b8b6e77 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetnetworksecuritygroupassociations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetnetworksecuritygroupassociations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetroutetableassociations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetroutetableassociations.yaml
index ee73a979f..c752562c6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetroutetableassociations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnetroutetableassociations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnets.yaml
index 874ef9aff..1c3fce5e8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/subnets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworkpeerings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworkpeerings.yaml
index a62956ea2..f1fcde503 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworkpeerings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworkpeerings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworks.yaml
index 8bbc6335c..73b36ef76 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/network.azure.kubedb.com/v1alpha1/virtualnetworks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingressclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingressclasses.yaml
index 3bb3256a0..5744c4303 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingressclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingressclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingresses.yaml
index 5236125e1..164df6239 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/ingresses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/networkpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/networkpolicies.yaml
index 4c14986e2..9643cc385 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/networkpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1/networkpolicies.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingressclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingressclasses.yaml
index 08ba8647b..7c28533a3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingressclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingressclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingresses.yaml
index feaeeef14..f6befef9b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/networking.k8s.io/v1beta1/ingresses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
index c168ab3ef..ac06d2e73 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.appscode.com/v1alpha1/nodetopologies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1/runtimeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1/runtimeclasses.yaml
index 5c4ac365e..08a1c99b2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1/runtimeclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1/runtimeclasses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1beta1/runtimeclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1beta1/runtimeclasses.yaml
index 782914e32..dc927ff97 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1beta1/runtimeclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/node.k8s.io/v1beta1/runtimeclasses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1/receivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1/receivers.yaml
index 44f032db6..0e2908aab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1/receivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1/receivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/alerts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/alerts.yaml
index 94a598374..7cfbf81a5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/alerts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/alerts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/providers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/providers.yaml
index 1d5fcb9ee..112237686 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/providers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/providers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/receivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/receivers.yaml
index 6fdbab45d..f7e74382d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/receivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta1/receivers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/alerts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/alerts.yaml
index b6c058282..b3487373a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/alerts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/alerts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/providers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/providers.yaml
index ba64482ef..e8cee80a2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/providers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/notification.toolkit.fluxcd.io/v1beta3/providers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml
new file mode 100644
index 000000000..9ce7fff51
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/offline.licenses.appscode.com/v1alpha1/offlinelicenses.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: offline.licenses.appscode.com
+ k8s.io/kind: OfflineLicense
+ k8s.io/resource: offlinelicenses
+ k8s.io/version: v1alpha1
+ name: offline.licenses.appscode.com-v1alpha1-offlinelicenses
+spec:
+ resource:
+ group: offline.licenses.appscode.com
+ kind: OfflineLicense
+ name: offlinelicenses
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: offlinelicensesappscodecom-offlinelicense-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboards.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboards.yaml
index 8534a3cce..88e895cbe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboards.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboards.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboardtemplates.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboardtemplates.yaml
index bab212a8f..7b8827615 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboardtemplates.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadashboardtemplates.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadatasources.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadatasources.yaml
index 9aaad8732..dcfe993fe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadatasources.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/openviz.dev/v1alpha1/grafanadatasources.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/clustermanagers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/clustermanagers.yaml
index 7959041f1..20c85bda1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/clustermanagers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/clustermanagers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/klusterlets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/klusterlets.yaml
index d07d6c64a..0655dcbdd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/klusterlets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/operator.open-cluster-management.io/v1/klusterlets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml
new file mode 100644
index 000000000..4ebf4cf7d
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/druidopsrequests.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: DruidOpsRequest
+ k8s.io/resource: druidopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-druidopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: DruidOpsRequest
+ name: druidopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: opskubedbcom-druidopsrequest-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
index b8dd00715..a0dba21a5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/elasticsearchopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
index 71934d742..ea93a0ac4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/etcdopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
index 9fc881aa4..ee53f0418 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/kafkaopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
index d75c7842c..709b8da1a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mariadbopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
index ea0f011e4..54d9abb6f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/memcachedopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
index ceb01aae0..1534db972 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mongodbopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
index d4fe85120..c3eb5a00d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/mysqlopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
index c361e8007..56d5009de 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/perconaxtradbopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
index 3fdd81174..850c002c1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgbounceropsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml
new file mode 100644
index 000000000..97450b1ce
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/pgpoolopsrequests.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: PgpoolOpsRequest
+ k8s.io/resource: pgpoolopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-pgpoolopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: PgpoolOpsRequest
+ name: pgpoolopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: opskubedbcom-pgpoolopsrequest-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
index 543004cfe..4dc9968c4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/postgresopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
index 356a08b0f..77960483e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/proxysqlopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
index a3d629e7b..1ce631865 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/rabbitmqopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
index 135c7581a..4eee2bb11 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redisopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
index b0f300e91..69f7d8473 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/redissentinelopsrequests.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml
new file mode 100644
index 000000000..a826ea7af
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubedb.com/v1alpha1/singlestoreopsrequests.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: ops.kubedb.com
+ k8s.io/kind: SinglestoreOpsRequest
+ k8s.io/resource: singlestoreopsrequests
+ k8s.io/version: v1alpha1
+ name: ops.kubedb.com-v1alpha1-singlestoreopsrequests
+spec:
+ resource:
+ group: ops.kubedb.com
+ kind: SinglestoreOpsRequest
+ name: singlestoreopsrequests
+ scope: Namespaced
+ version: v1alpha1
+ ui:
+ editor:
+ name: opskubedbcom-singlestoreopsrequest-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubevault.com/v1alpha1/vaultopsrequests.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubevault.com/v1alpha1/vaultopsrequests.yaml
index 4335472a3..4a4c3c8d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubevault.com/v1alpha1/vaultopsrequests.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ops.kubevault.com/v1alpha1/vaultopsrequests.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurationrevisions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurationrevisions.yaml
index 6f37db357..5909db67c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurationrevisions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurationrevisions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurations.yaml
index 22a513e82..4e10a674d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/configurations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providerrevisions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providerrevisions.yaml
index a04031eb2..27e39573c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providerrevisions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providerrevisions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providers.yaml
index abc48cc88..6abd44e9f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1/providers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1alpha1/controllerconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1alpha1/controllerconfigs.yaml
index 15530b073..4913abd97 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1alpha1/controllerconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1alpha1/controllerconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1beta1/locks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1beta1/locks.yaml
index e2715ceae..fe14593bb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1beta1/locks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/pkg.crossplane.io/v1beta1/locks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicies.yaml
index 7b13dc05f..1fb354e59 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicies.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicybindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicybindings.yaml
index e1355619b..d6b1b1628 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicybindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy.kubevault.com/v1alpha1/vaultpolicybindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/evictions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/evictions.yaml
index 01892b2cf..261a0c223 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/evictions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/evictions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/poddisruptionbudgets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/poddisruptionbudgets.yaml
index 04efc4425..012585a90 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/poddisruptionbudgets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/poddisruptionbudgets.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/podsecuritypolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/podsecuritypolicies.yaml
index 2a1951afa..4189f6734 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/podsecuritypolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/policy/v1beta1/podsecuritypolicies.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/publishers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/publishers.yaml
index 3a52cbf3e..43f785185 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/publishers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/publishers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/subscribers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/subscribers.yaml
index 93be790c6..f30f8c940 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/subscribers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/postgres.kubedb.com/v1alpha1/subscribers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/plans.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/plans.yaml
index 70097ba2a..3f7d9de19 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/plans.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/plans.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/products.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/products.yaml
index 44875dc94..91c3948b4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/products.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/products.x-helm.dev/v1alpha1/products.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml
new file mode 100644
index 000000000..b62f77e3c
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyconfigurations.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: proxy.open-cluster-management.io
+ k8s.io/kind: ManagedProxyConfiguration
+ k8s.io/resource: managedproxyconfigurations
+ k8s.io/version: v1alpha1
+ name: proxy.open-cluster-management.io-v1alpha1-managedproxyconfigurations
+spec:
+ resource:
+ group: proxy.open-cluster-management.io
+ kind: ManagedProxyConfiguration
+ name: managedproxyconfigurations
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: proxyopenclustermanagementio-managedproxyconfiguration-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml
new file mode 100644
index 000000000..0752319d5
--- /dev/null
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/proxy.open-cluster-management.io/v1alpha1/managedproxyserviceresolvers.yaml
@@ -0,0 +1,26 @@
+apiVersion: ui.k8s.appscode.com/v1alpha1
+kind: ResourceEditor
+metadata:
+ creationTimestamp: null
+ labels:
+ k8s.io/group: proxy.open-cluster-management.io
+ k8s.io/kind: ManagedProxyServiceResolver
+ k8s.io/resource: managedproxyserviceresolvers
+ k8s.io/version: v1alpha1
+ name: proxy.open-cluster-management.io-v1alpha1-managedproxyserviceresolvers
+spec:
+ resource:
+ group: proxy.open-cluster-management.io
+ kind: ManagedProxyServiceResolver
+ name: managedproxyserviceresolvers
+ scope: Cluster
+ version: v1alpha1
+ ui:
+ editor:
+ name: proxyopenclustermanagementio-managedproxyserviceresolver-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterrolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterrolebindings.yaml
index 382c4c4fb..65898f2ad 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterrolebindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterrolebindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterroles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterroles.yaml
index c93a56225..fca735594 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterroles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/clusterroles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/rolebindings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/rolebindings.yaml
index aa5c26176..abd4183d2 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/rolebindings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/rolebindings.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/roles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/roles.yaml
index 71fed43a1..17e9943a7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/roles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rbac.authorization.k8s.io/v1/roles.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusteractivitystreams.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusteractivitystreams.yaml
index ee0ea27ff..6d8844b7b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusteractivitystreams.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusteractivitystreams.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterendpoints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterendpoints.yaml
index cf92929ec..ba4828f28 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterendpoints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterendpoints.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterinstances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterinstances.yaml
index 1105ca25f..429067474 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterinstances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterinstances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
index a6d2c665d..10874b1d7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterparametergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterroleassociations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterroleassociations.yaml
index 8a6a93e17..0b39ccf43 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterroleassociations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusterroleassociations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusters.yaml
index 03803b8a6..0e7c4db5a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clusters.yaml
@@ -22,7 +22,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
variants:
- name: MariaDB
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clustersnapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
index 6f0631f71..5c811dc73 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/clustersnapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbinstanceautomatedbackupsreplications.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbinstanceautomatedbackupsreplications.yaml
index 92c1c8096..9a1f30ffa 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbinstanceautomatedbackupsreplications.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbinstanceautomatedbackupsreplications.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbsnapshotcopies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbsnapshotcopies.yaml
index ca3f1fb09..6a6cf8725 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbsnapshotcopies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/dbsnapshotcopies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
index db5627d24..530f35dea 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/eventsubscriptions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/globalclusters.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/globalclusters.yaml
index dbea9a31f..52f53025e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/globalclusters.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/globalclusters.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instanceroleassociations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instanceroleassociations.yaml
index 038fded51..6381f5a13 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instanceroleassociations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instanceroleassociations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instances.yaml
index 5a94e7ca4..c06b55c92 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/instances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/optiongroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/optiongroups.yaml
index 703fc436d..0854b1126 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/optiongroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/optiongroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/parametergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/parametergroups.yaml
index 67a213974..77eb03a02 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/parametergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/parametergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxies.yaml
index 74eed061a..0e87abae7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxydefaulttargetgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxydefaulttargetgroups.yaml
index 9fc745ebe..4841df486 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxydefaulttargetgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxydefaulttargetgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxyendpoints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxyendpoints.yaml
index 9629dbd1b..262427c55 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxyendpoints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxyendpoints.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxytargets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxytargets.yaml
index 014c8ee9b..70884f3c1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxytargets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/proxytargets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/snapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/snapshots.yaml
index 622469fdb..20f890a5a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/snapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/snapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/subnetgroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/subnetgroups.yaml
index 360f5bfd9..13e27a499 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/subnetgroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/rds.aws.kubedb.com/v1alpha1/subnetgroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/redis.gcp.kubedb.com/v1alpha1/instances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/redis.gcp.kubedb.com/v1alpha1/instances.yaml
index 83a22dc2f..5399f225c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/redis.gcp.kubedb.com/v1alpha1/instances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/redis.gcp.kubedb.com/v1alpha1/instances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/bundles.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/bundles.yaml
index e4002b767..5c2e99ce0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/bundles.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/bundles.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/orders.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/orders.yaml
index 0e24d84da..37637ec84 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/orders.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/releases.x-helm.dev/v1alpha1/orders.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/repositories.stash.appscode.com/v1alpha1/snapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/repositories.stash.appscode.com/v1alpha1/snapshots.yaml
index 8dc0ac80f..22aebcbce 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/repositories.stash.appscode.com/v1alpha1/snapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/repositories.stash.appscode.com/v1alpha1/snapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
index 0466ef87b..656fe8129 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/runtime.cluster.x-k8s.io/v1alpha1/extensionconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/scheduling.k8s.io/v1/priorityclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/scheduling.k8s.io/v1/priorityclasses.yaml
index 73b18c428..8d5384705 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/scheduling.k8s.io/v1/priorityclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/scheduling.k8s.io/v1/priorityclasses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
index 0ff338b42..4f45561c8 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mariadbdatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
index 691402d4a..ad59f475a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mongodbdatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
index d2467b2ae..ae9e9770a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/mysqldatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
index 3a0230c45..cdf58dffe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/schema.kubedb.com/v1alpha1/postgresdatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasses.yaml
index 8a7c32e98..db29c1159 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasspodstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasspodstatuses.yaml
index 9912de49b..df253e014 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasspodstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets-store.csi.x-k8s.io/v1alpha1/secretproviderclasspodstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets.crossplane.io/v1alpha1/storeconfigs.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets.crossplane.io/v1alpha1/storeconfigs.yaml
index 6472239b8..60cfccdfe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets.crossplane.io/v1alpha1/storeconfigs.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secrets.crossplane.io/v1alpha1/storeconfigs.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secretsmanager.aws.kubedb.com/v1alpha1/secrets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secretsmanager.aws.kubedb.com/v1alpha1/secrets.yaml
index 1eb95075d..b37a5a42a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secretsmanager.aws.kubedb.com/v1alpha1/secrets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/secretsmanager.aws.kubedb.com/v1alpha1/secrets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/settings.k8s.io/v1alpha1/podpresets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/settings.k8s.io/v1alpha1/podpresets.yaml
index a55b1f010..a2f9be56f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/settings.k8s.io/v1alpha1/podpresets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/settings.k8s.io/v1alpha1/podpresets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotclasses.yaml
index d4d285be4..c25df1207 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotclasses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotcontents.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotcontents.yaml
index 98f56361a..eab54ccd4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotcontents.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshotcontents.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshots.yaml
index de733e395..2ac0b50e1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/snapshot.storage.k8s.io/v1/volumesnapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sns.aws.kubedb.com/v1alpha1/topics.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sns.aws.kubedb.com/v1alpha1/topics.yaml
index 6a663fe70..4efa7003f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sns.aws.kubedb.com/v1alpha1/topics.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sns.aws.kubedb.com/v1alpha1/topics.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/gitrepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/gitrepositories.yaml
index b707b6218..4fba49b0f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/gitrepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/gitrepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmcharts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
index fcbe737b3..e251729c5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmcharts.yaml
@@ -15,3 +15,12 @@ spec:
name: helmcharts
scope: Namespaced
version: v1
+ ui:
+ editor:
+ name: sourcetoolkitfluxcdio-helmchart-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmrepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmrepositories.yaml
index f958686cb..66e01b5d5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmrepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1/helmrepositories.yaml
@@ -15,3 +15,12 @@ spec:
name: helmrepositories
scope: Namespaced
version: v1
+ ui:
+ editor:
+ name: sourcetoolkitfluxcdio-helmrepository-editor
+ sourceRef:
+ apiGroup: source.toolkit.fluxcd.io
+ kind: HelmRepository
+ name: appscode-charts-oci
+ version: v0.4.21
+ enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/buckets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/buckets.yaml
index a9dcb8642..bc16f9051 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/buckets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/buckets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/gitrepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/gitrepositories.yaml
index 78dcc3b94..6b852558c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/gitrepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/gitrepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmcharts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmcharts.yaml
index 212c63821..6717e0ccd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmcharts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmcharts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmrepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmrepositories.yaml
index 962bf28ea..5ebf82067 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmrepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/helmrepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/ocirepositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/ocirepositories.yaml
index 93dd0572d..70acc2867 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/ocirepositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/source.toolkit.fluxcd.io/v1beta2/ocirepositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databaseiammembers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databaseiammembers.yaml
index c462ca8fb..c1cf7c650 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databaseiammembers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databaseiammembers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databases.yaml
index 832a52718..ed1078b3d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/databases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instanceiammembers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instanceiammembers.yaml
index 93a910883..4a1b1ab16 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instanceiammembers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instanceiammembers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instances.yaml
index 52b77ff99..c6e15bc91 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/spanner.gcp.kubedb.com/v1alpha1/instances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabases.yaml
index ac49824f7..0d43b4fd9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabasevulnerabilityassessmentrulebaselines.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabasevulnerabilityassessmentrulebaselines.yaml
index 3bbd698ea..1b4f64bca 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabasevulnerabilityassessmentrulebaselines.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqldatabasevulnerabilityassessmentrulebaselines.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlelasticpools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlelasticpools.yaml
index 3d8f46867..da3ad9645 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlelasticpools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlelasticpools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfailovergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfailovergroups.yaml
index 1c84c922a..1cee04577 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfailovergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfailovergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfirewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfirewallrules.yaml
index c9d22bcaa..cd71a7d6f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfirewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlfirewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobagents.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobagents.yaml
index 5da8fae68..dc69af00c 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobagents.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobagents.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobcredentials.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobcredentials.yaml
index fd3019004..1d1410288 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobcredentials.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqljobcredentials.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanageddatabases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanageddatabases.yaml
index f8db91986..046fe047f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanageddatabases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanageddatabases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstanceactivedirectoryadministrators.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstanceactivedirectoryadministrators.yaml
index 44865c829..0484f1b3f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstanceactivedirectoryadministrators.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstanceactivedirectoryadministrators.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancefailovergroups.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancefailovergroups.yaml
index 49af293ed..83c8813fe 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancefailovergroups.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancefailovergroups.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstances.yaml
index 2f95807bd..ce44d0f16 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancevulnerabilityassessments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancevulnerabilityassessments.yaml
index db940207d..d6bf4b512 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancevulnerabilityassessments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlmanagedinstancevulnerabilityassessments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqloutboundfirewallrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqloutboundfirewallrules.yaml
index fd57662c4..0e43d9b15 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqloutboundfirewallrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqloutboundfirewallrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserverdnsaliases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserverdnsaliases.yaml
index 90ba7cb4f..eb36985a6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserverdnsaliases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserverdnsaliases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservermicrosoftsupportauditingpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservermicrosoftsupportauditingpolicies.yaml
index 7721258e8..bb1d9af78 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservermicrosoftsupportauditingpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservermicrosoftsupportauditingpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservers.yaml
index 7c92eb0db..c0d34370a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserversecurityalertpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserversecurityalertpolicies.yaml
index 852895a8c..8b29bb2f6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserversecurityalertpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlserversecurityalertpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservertransparentdataencryptions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservertransparentdataencryptions.yaml
index 87721c3b3..9f0118f51 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservertransparentdataencryptions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservertransparentdataencryptions.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservervulnerabilityassessments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservervulnerabilityassessments.yaml
index e6f28d185..9dd306900 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservervulnerabilityassessments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlservervulnerabilityassessments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlvirtualnetworkrules.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlvirtualnetworkrules.yaml
index 58ba13022..be97699b3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlvirtualnetworkrules.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.azure.kubedb.com/v1alpha1/mssqlvirtualnetworkrules.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databaseinstances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databaseinstances.yaml
index f3acd0de2..0ac7a5694 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databaseinstances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databaseinstances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databases.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databases.yaml
index b4f3671d6..72ae2f0f3 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databases.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/databases.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sourcerepresentationinstances.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sourcerepresentationinstances.yaml
index dfa30e6fb..3357927f1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sourcerepresentationinstances.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sourcerepresentationinstances.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sslcerts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sslcerts.yaml
index f023cb702..b4cdbd5c9 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sslcerts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/sslcerts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/users.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/users.yaml
index 346b604ee..7b6b7d6c5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/users.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/sql.gcp.kubedb.com/v1alpha1/users.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/recoveries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/recoveries.yaml
index 19819e0aa..1126ce239 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/recoveries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/recoveries.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/repositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/repositories.yaml
index ad9ccea5a..5a5f72937 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/repositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/repositories.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: stashappscodecom-repository-editor-options
@@ -35,4 +35,4 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/restics.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/restics.yaml
index 145eb0ba6..b05a77b49 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/restics.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1alpha1/restics.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupbatches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupbatches.yaml
index f2b708822..61fe7d3d6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupbatches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupbatches.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupblueprints.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupblueprints.yaml
index 2900a1551..b217d1a8f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupblueprints.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupblueprints.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupconfigurations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupconfigurations.yaml
index c9ceaab84..39f730ab0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupconfigurations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupconfigurations.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupsessions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupsessions.yaml
index 32134cbe5..21a94f18d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupsessions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/backupsessions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/functions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/functions.yaml
index f91b5bf8b..91561c5a7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/functions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/functions.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restorebatches.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restorebatches.yaml
index a8d58830e..b4299564d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restorebatches.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restorebatches.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restoresessions.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restoresessions.yaml
index 83289a189..53790515b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restoresessions.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/restoresessions.yaml
@@ -27,7 +27,7 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
options:
name: stashappscodecom-restoresession-editor-options
@@ -35,4 +35,4 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/tasks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/tasks.yaml
index 1fce67cc1..7dd80bb1a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/tasks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/stash.appscode.com/v1beta1/tasks.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constraintpodstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constraintpodstatuses.yaml
index e2227e25d..34958f879 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constraintpodstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constraintpodstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constrainttemplatepodstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constrainttemplatepodstatuses.yaml
index ae5713e16..8d8837e84 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constrainttemplatepodstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/constrainttemplatepodstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/expansiontemplatepodstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/expansiontemplatepodstatuses.yaml
index d13457f0a..c680bf3da 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/expansiontemplatepodstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/expansiontemplatepodstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/mutatorpodstatuses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/mutatorpodstatuses.yaml
index 6b50d32b6..cc434a126 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/mutatorpodstatuses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/status.gatekeeper.sh/v1beta1/mutatorpodstatuses.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/accounts.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/accounts.yaml
index 640b3c73b..543ed29f0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/accounts.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/accounts.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/containers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/containers.yaml
index 59b03f3b1..d123d0030 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/containers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.azure.kubedb.com/v1alpha1/containers.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csidrivers.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csidrivers.yaml
index 36f903cd9..678920a57 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csidrivers.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csidrivers.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csinodes.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csinodes.yaml
index 86d2a5ee0..959b1f7d6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csinodes.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/csinodes.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/storageclasses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/storageclasses.yaml
index 13002fc5c..45afab223 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/storageclasses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/storageclasses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/volumeattachments.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/volumeattachments.yaml
index f20c33e81..f084cb93d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/volumeattachments.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1/volumeattachments.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1beta1/csistoragecapacities.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1beta1/csistoragecapacities.yaml
index bea6c8d5b..b4e9a190e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1beta1/csistoragecapacities.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.k8s.io/v1beta1/csistoragecapacities.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/backupstorages.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/backupstorages.yaml
index 54ee1fb9f..31672736f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/backupstorages.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/backupstorages.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/repositories.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/repositories.yaml
index 9cf03601f..ace30f182 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/repositories.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/repositories.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/retentionpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/retentionpolicies.yaml
index 49e7bd839..b3b3d6f19 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/retentionpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/retentionpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/snapshots.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/snapshots.yaml
index 195229064..821696e29 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/snapshots.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/storage.kubestash.com/v1alpha1/snapshots.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/approvalpolicies.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/approvalpolicies.yaml
index f2ee63a93..800ab75f0 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/approvalpolicies.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/approvalpolicies.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/clustermaintenancewindows.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/clustermaintenancewindows.yaml
index 300ba950b..235b1d3ed 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/clustermaintenancewindows.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/clustermaintenancewindows.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/maintenancewindows.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/maintenancewindows.yaml
index 55718b533..04f24576a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/maintenancewindows.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/maintenancewindows.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/recommendations.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/recommendations.yaml
index c9d1e0817..1d5097aab 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/recommendations.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/supervisor.appscode.com/v1alpha1/recommendations.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/featuresets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/featuresets.yaml
index e62853071..7af9bf7bb 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/featuresets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/featuresets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourcedashboards.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourcedashboards.yaml
index a4b8fa03d..742c2a755 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourcedashboards.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourcedashboards.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
index 40d8f2359..9ed056db6 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.k8s.appscode.com/v1alpha1/resourceeditors.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchinsights.yaml
index 68448d1c2..f848c104a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchnodesstats.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchnodesstats.yaml
index 1ef740c26..119c4099b 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchnodesstats.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchnodesstats.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchschemaoverviews.yaml
index 65b75ccaf..985498573 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/elasticsearchschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbinsights.yaml
index 2e2b601f3..2835b3899 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbqueries.yaml
index e7f68ff5e..75266ea3a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbschemaoverviews.yaml
index e663011c3..e0263e50a 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mariadbschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbinsights.yaml
index 3cfa17f9f..16121594f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbqueries.yaml
index 3071734e9..8d984dfa4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbschemaoverviews.yaml
index 0e61cf1b3..681c92b81 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mongodbschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlinsights.yaml
index 74eec1ce6..096bedaad 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlqueries.yaml
index ca1c08beb..1d47261e5 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlschemaoverviews.yaml
index f5686ba10..d7a825122 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/mysqlschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerinsights.yaml
index 53d237e7e..4f8bf23ac 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpooloverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpooloverviews.yaml
index 65aff4674..c0c65e6d4 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpooloverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpooloverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpools.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpools.yaml
index ca29d7f77..4ddbe1ca7 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpools.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerpools.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerserveroverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerserveroverviews.yaml
index 92d88dfac..f2a4fb718 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerserveroverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncerserveroverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncersettings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncersettings.yaml
index 074a161fd..2e4521248 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncersettings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/pgbouncersettings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresinsights.yaml
index ff048f763..1adf28594 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresqueries.yaml
index 267bdbfe3..8d9a47554 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresschemaoverviews.yaml
index 7d08941e6..9340c038f 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgresschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgressettings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgressettings.yaml
index eee355b18..99afc2fbd 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgressettings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/postgressettings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlinsights.yaml
index 506ce4f15..44db31530 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlqueries.yaml
index 8833a47b9..563e22ecf 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlsettings.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlsettings.yaml
index fa6029dad..739fe3523 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlsettings.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/proxysqlsettings.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisinsights.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisinsights.yaml
index 117bb0463..a6b49d011 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisinsights.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisinsights.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisqueries.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisqueries.yaml
index 641670d1b..790283f85 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisqueries.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisqueries.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisschemaoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisschemaoverviews.yaml
index 3472cad4d..b8a114be1 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisschemaoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.kubedb.com/v1alpha1/redisschemaoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.stash.appscode.com/v1alpha1/backupoverviews.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.stash.appscode.com/v1alpha1/backupoverviews.yaml
index a3ad50ef2..1fe0c4332 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.stash.appscode.com/v1alpha1/backupoverviews.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/ui.stash.appscode.com/v1alpha1/backupoverviews.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1/ingresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1/ingresses.yaml
index 1ec137c88..411705e8e 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1/ingresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1/ingresses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1beta1/ingresses.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1beta1/ingresses.yaml
index 3b566fb73..a822db71d 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1beta1/ingresses.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/voyager.appscode.com/v1beta1/ingresses.yaml
@@ -27,5 +27,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.20
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/appliedmanifestworks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/appliedmanifestworks.yaml
index 2471d7491..28aa30972 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/appliedmanifestworks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/appliedmanifestworks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/manifestworks.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/manifestworks.yaml
index 5047ffd4f..da5fd1a71 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/manifestworks.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1/manifestworks.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
index 1b3e5ccdf..2ec00b543 100644
--- a/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
+++ b/vendor/kmodules.xyz/resource-metadata/hub/resourceeditors/work.open-cluster-management.io/v1alpha1/manifestworkreplicasets.yaml
@@ -22,5 +22,5 @@ spec:
apiGroup: source.toolkit.fluxcd.io
kind: HelmRepository
name: appscode-charts-oci
- version: v0.4.19
+ version: v0.4.21
enforceQuota: false
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 43cf0ac01..982c84223 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -23,11 +23,11 @@ github.com/Azure/azure-sdk-for-go/sdk/azcore/policy
github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime
github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming
github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing
-# github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2
+# github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
## explicit; go 1.18
github.com/Azure/azure-sdk-for-go/sdk/azidentity
github.com/Azure/azure-sdk-for-go/sdk/azidentity/internal
-# github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2
+# github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0
## explicit; go 1.18
github.com/Azure/azure-sdk-for-go/sdk/internal/diag
github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo
@@ -735,7 +735,7 @@ go.starlark.net/resolve
go.starlark.net/starlark
go.starlark.net/starlarkstruct
go.starlark.net/syntax
-# golang.org/x/crypto v0.23.0
+# golang.org/x/crypto v0.24.0
## explicit; go 1.18
golang.org/x/crypto/bcrypt
golang.org/x/crypto/blowfish
@@ -754,7 +754,7 @@ golang.org/x/crypto/scrypt
# golang.org/x/exp v0.0.0-20230905200255-921286631fa9
## explicit; go 1.20
golang.org/x/exp/maps
-# golang.org/x/net v0.25.0
+# golang.org/x/net v0.26.0
## explicit; go 1.18
golang.org/x/net/html
golang.org/x/net/html/atom
@@ -775,16 +775,16 @@ golang.org/x/oauth2/internal
## explicit; go 1.18
golang.org/x/sync/errgroup
golang.org/x/sync/semaphore
-# golang.org/x/sys v0.20.0
+# golang.org/x/sys v0.21.0
## explicit; go 1.18
golang.org/x/sys/execabs
golang.org/x/sys/plan9
golang.org/x/sys/unix
golang.org/x/sys/windows
-# golang.org/x/term v0.20.0
+# golang.org/x/term v0.21.0
## explicit; go 1.18
golang.org/x/term
-# golang.org/x/text v0.15.0
+# golang.org/x/text v0.16.0
## explicit; go 1.18
golang.org/x/text/encoding
golang.org/x/text/encoding/charmap
@@ -1315,7 +1315,7 @@ kmodules.xyz/apiversion
# kmodules.xyz/apply v0.29.0
## explicit; go 1.21.5
kmodules.xyz/apply
-# kmodules.xyz/client-go v0.30.0
+# kmodules.xyz/client-go v0.30.11
## explicit; go 1.22.0
kmodules.xyz/client-go
kmodules.xyz/client-go/api/v1
@@ -1327,17 +1327,16 @@ kmodules.xyz/client-go/cluster
kmodules.xyz/client-go/core/v1
kmodules.xyz/client-go/discovery
kmodules.xyz/client-go/meta
-kmodules.xyz/client-go/tools/clusterid
kmodules.xyz/client-go/tools/parser
# kmodules.xyz/go-containerregistry v0.0.12
## explicit; go 1.21.5
kmodules.xyz/go-containerregistry/name
-# kmodules.xyz/offshoot-api v0.29.0
-## explicit; go 1.21.5
+# kmodules.xyz/offshoot-api v0.29.4
+## explicit; go 1.22.0
kmodules.xyz/offshoot-api/api/v1
kmodules.xyz/offshoot-api/api/v2
-# kmodules.xyz/resource-metadata v0.18.6-0.20240519125927-d558ba96f4da
-## explicit; go 1.22.0
+# kmodules.xyz/resource-metadata v0.18.10
+## explicit; go 1.22.1
kmodules.xyz/resource-metadata/apis/meta
kmodules.xyz/resource-metadata/apis/meta/v1alpha1
kmodules.xyz/resource-metadata/apis/shared
@@ -1347,8 +1346,8 @@ kmodules.xyz/resource-metadata/crds
kmodules.xyz/resource-metadata/hub
kmodules.xyz/resource-metadata/hub/resourcedescriptors
kmodules.xyz/resource-metadata/hub/resourceeditors
-# kmodules.xyz/resource-metrics v0.29.5
-## explicit; go 1.21.5
+# kmodules.xyz/resource-metrics v0.30.1
+## explicit; go 1.22.1
kmodules.xyz/resource-metrics/api
# oras.land/oras-go v1.2.4
## explicit; go 1.18
@@ -1373,7 +1372,7 @@ sigs.k8s.io/cli-utils/pkg/kstatus/polling/event
sigs.k8s.io/cli-utils/pkg/kstatus/polling/statusreaders
sigs.k8s.io/cli-utils/pkg/kstatus/status
sigs.k8s.io/cli-utils/pkg/object
-# sigs.k8s.io/controller-runtime v0.18.2
+# sigs.k8s.io/controller-runtime v0.18.4
## explicit; go 1.22.0
sigs.k8s.io/controller-runtime
sigs.k8s.io/controller-runtime/pkg/builder
diff --git a/vendor/sigs.k8s.io/controller-runtime/pkg/controller/controllerutil/controllerutil.go b/vendor/sigs.k8s.io/controller-runtime/pkg/controller/controllerutil/controllerutil.go
index 05153f74c..176ce0db0 100644
--- a/vendor/sigs.k8s.io/controller-runtime/pkg/controller/controllerutil/controllerutil.go
+++ b/vendor/sigs.k8s.io/controller-runtime/pkg/controller/controllerutil/controllerutil.go
@@ -52,12 +52,22 @@ func newAlreadyOwnedError(obj metav1.Object, owner metav1.OwnerReference) *Alrea
}
}
+// OwnerReferenceOption is a function that can modify a `metav1.OwnerReference`.
+type OwnerReferenceOption func(*metav1.OwnerReference)
+
+// WithBlockOwnerDeletion allows configuring the BlockOwnerDeletion field on the `metav1.OwnerReference`.
+func WithBlockOwnerDeletion(blockOwnerDeletion bool) OwnerReferenceOption {
+ return func(ref *metav1.OwnerReference) {
+ ref.BlockOwnerDeletion = &blockOwnerDeletion
+ }
+}
+
// SetControllerReference sets owner as a Controller OwnerReference on controlled.
// This is used for garbage collection of the controlled object and for
// reconciling the owner object on changes to controlled (with a Watch + EnqueueRequestForOwner).
// Since only one OwnerReference can be a controller, it returns an error if
// there is another OwnerReference with Controller flag set.
-func SetControllerReference(owner, controlled metav1.Object, scheme *runtime.Scheme) error {
+func SetControllerReference(owner, controlled metav1.Object, scheme *runtime.Scheme, opts ...OwnerReferenceOption) error {
// Validate the owner.
ro, ok := owner.(runtime.Object)
if !ok {
@@ -80,6 +90,9 @@ func SetControllerReference(owner, controlled metav1.Object, scheme *runtime.Sch
BlockOwnerDeletion: ptr.To(true),
Controller: ptr.To(true),
}
+ for _, opt := range opts {
+ opt(&ref)
+ }
// Return early with an error if the object is already controlled.
if existing := metav1.GetControllerOf(controlled); existing != nil && !referSameObject(*existing, ref) {
@@ -94,7 +107,7 @@ func SetControllerReference(owner, controlled metav1.Object, scheme *runtime.Sch
// SetOwnerReference is a helper method to make sure the given object contains an object reference to the object provided.
// This allows you to declare that owner has a dependency on the object without specifying it as a controller.
// If a reference to the same object already exists, it'll be overwritten with the newly provided version.
-func SetOwnerReference(owner, object metav1.Object, scheme *runtime.Scheme) error {
+func SetOwnerReference(owner, object metav1.Object, scheme *runtime.Scheme, opts ...OwnerReferenceOption) error {
// Validate the owner.
ro, ok := owner.(runtime.Object)
if !ok {
@@ -115,6 +128,9 @@ func SetOwnerReference(owner, object metav1.Object, scheme *runtime.Scheme) erro
UID: owner.GetUID(),
Name: owner.GetName(),
}
+ for _, opt := range opts {
+ opt(&ref)
+ }
// Update owner references and return.
upsertOwnerRef(ref, object)