From cf169fff6310fc292fbd38d4000693033d799ca3 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Tue, 9 Jan 2024 02:12:45 -0600 Subject: [PATCH 001/123] Update quick_start.md (#2965) Signed-off-by: Derek Wang --- docs/quick_start.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/quick_start.md b/docs/quick_start.md index 0c3bb646ec..9e87eeac9e 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -10,9 +10,16 @@ The Argo Workflow controller will need to be configured to listen for Workflow o kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v<>/install.yaml -1. Make sure to have the eventbus pods running in the namespace. Run following command to create the eventbus. - +1. Install Argo Events + kubectl create namespace argo-events + kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-events/stable/manifests/install.yaml + # Install with a validating admission controller + kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-events/stable/manifests/install-validating-webhook.yaml + + +1. Make sure to have the eventbus pods running in the namespace. Run following command to create the eventbus. + kubectl apply -n argo-events -f https://raw.githubusercontent.com/argoproj/argo-events/stable/examples/eventbus/native.yaml 1. Setup event-source for webhook as follows. From e8ea11128ac8e262fa39d118a4abb9d57dbafec5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 12:29:57 +0000 Subject: [PATCH 002/123] chore(deps): bump github.com/Azure/azure-event-hubs-go/v3 from 3.6.0 to 3.6.2 (#2972) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ecf6515952..f803f1a24f 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( cloud.google.com/go/compute/metadata v0.2.3 cloud.google.com/go/pubsub v1.33.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 - github.com/Azure/azure-event-hubs-go/v3 v3.6.0 + github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 diff --git a/go.sum b/go.sum index 286aa6503c..36e71aee66 100644 --- a/go.sum +++ b/go.sum @@ -620,8 +620,8 @@ github.com/AthenZ/athenz v1.10.39 h1:mtwHTF/v62ewY2Z5KWhuZgVXftBej1/Tn80zx4DcawY github.com/AthenZ/athenz v1.10.39/go.mod h1:3Tg8HLsiQZp81BJY58JBeU2BR6B/H4/0MQGfCwhHNEA= github.com/Azure/azure-amqp-common-go/v4 v4.2.0 h1:q/jLx1KJ8xeI8XGfkOWMN9XrXzAfVTkyvCxPvHCjd2I= github.com/Azure/azure-amqp-common-go/v4 v4.2.0/go.mod h1:GD3m/WPPma+621UaU6KNjKEo5Hl09z86viKwQjTpV0Q= -github.com/Azure/azure-event-hubs-go/v3 v3.6.0 h1:UXRi5KewXYoTiekVjrj0gyGfbyGvtbYdot6/4IMf4I4= -github.com/Azure/azure-event-hubs-go/v3 v3.6.0/go.mod h1:UgyRnRU7H5e33igaLHJTqbkoNR1uj0j3MA/n7dABU24= +github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7lO7OmpbKoakKY= +github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 h1:9kDVnTz3vbfweTqAUmk/a/pH5pWFCHtvRpHYC0G/dcA= From e765f5062c6d2a392bb7d58557ed454ea7c5cb3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 12:31:11 +0000 Subject: [PATCH 003/123] chore(deps): bump google.golang.org/api from 0.155.0 to 0.156.0 (#2974) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 24 ++++++++++++------------ go.sum | 44 +++++++++++++++++++++++++------------------- 2 files changed, 37 insertions(+), 31 deletions(-) diff --git a/go.mod b/go.mod index f803f1a24f..5e3768d267 100644 --- a/go.mod +++ b/go.mod @@ -78,8 +78,8 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 - golang.org/x/crypto v0.17.0 - google.golang.org/api v0.155.0 + golang.org/x/crypto v0.18.0 + google.golang.org/api v0.156.0 google.golang.org/grpc v1.60.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -163,8 +163,8 @@ require ( golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231211222908-989df2bf70f3 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -172,7 +172,7 @@ require ( ) require ( - cloud.google.com/go v0.110.10 // indirect + cloud.google.com/go v0.111.0 // indirect cloud.google.com/go/iam v1.1.5 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/go-amqp v1.0.2 // indirect @@ -309,18 +309,18 @@ require ( go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.10.0 // indirect golang.org/x/mod v0.12.0 // indirect - golang.org/x/net v0.19.0 // indirect - golang.org/x/oauth2 v0.15.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/term v0.15.0 // indirect + golang.org/x/net v0.20.0 // indirect + golang.org/x/oauth2 v0.16.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.16.0 // indirect + golang.org/x/term v0.16.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 // indirect - google.golang.org/protobuf v1.31.0 // indirect + google.golang.org/genproto v0.0.0-20231212172506-995d672761c0 // indirect + google.golang.org/protobuf v1.32.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect diff --git a/go.sum b/go.sum index 36e71aee66..85746821f1 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,8 @@ cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFO cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.110.10 h1:LXy9GEO+timppncPIAZoOj3l58LIU9k+kn48AN7IO3Y= -cloud.google.com/go v0.110.10/go.mod h1:v1OoFqYxiBkUrruItNM3eT4lLByNjxmJSV/xDKJNnic= +cloud.google.com/go v0.111.0 h1:YHLKNupSD1KqjDbQ3+LVdQ81h/UJbJyZG203cEfnQgM= +cloud.google.com/go v0.111.0/go.mod h1:0mibmpKP1TyOOFYQY5izo0LnT+ecvOQ0Sg3OdmMiNRU= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= @@ -1895,6 +1895,7 @@ go.opentelemetry.io/otel/metric v1.21.0 h1:tlYWfeo+Bocx5kLEloTjbcDwBuELRrIFxwdQ3 go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzug24uvsyIEJRWM= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= +go.opentelemetry.io/otel/sdk v1.19.0 h1:6USY6zH+L8uMH8L3t1enZPR3WFEmSTADlqldyHtJi3o= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= @@ -1959,8 +1960,8 @@ golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.18.0 h1:PGVlW0xEltQnzFZ55hkuX5+KLyrMYhHld1YHO4AKcdc= +golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2105,8 +2106,9 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo= +golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2138,8 +2140,9 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.15.0 h1:s8pnnxNVzjWyrvYdFUQq5llS1PX2zhPXmccZv99h7uQ= golang.org/x/oauth2 v0.15.0/go.mod h1:q48ptWNTY5XWf+JNten23lcvHpLJ0ZSxF5ttTHKVCAM= +golang.org/x/oauth2 v0.16.0 h1:aDkGMBSYxElaoP81NpoUoz2oo2R2wHdZpGToUxfyQrQ= +golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2158,8 +2161,8 @@ golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2280,8 +2283,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2295,8 +2299,9 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.16.0 h1:m+B6fahuftsE9qjo0VWp2FW0mB3MTJvR0BaMQrq0pmE= +golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2494,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.155.0 h1:vBmGhCYs0djJttDNynWo44zosHlPvHmA0XiN2zP2DtA= -google.golang.org/api v0.155.0/go.mod h1:GI5qK5f40kCpHfPn6+YzGAByIKWv8ujFnmoWm7Igduk= +google.golang.org/api v0.156.0 h1:yloYcGbBtVYjLKQe4enCunxvwn3s2w/XPrrhVf6MsvQ= +google.golang.org/api v0.156.0/go.mod h1:bUSmn4KFO0Q+69zo9CNIDp4Psi6BqM0np0CbzKRSiSY= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2643,21 +2648,21 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 h1:1hfbdAfFbkmpg41000wDVqr7jUpK/Yo+LPnIxxGzmkg= -google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3/go.mod h1:5RBcpGRxr25RbDzY5w+dmaqpSEvl8Gwl1x2CICf60ic= +google.golang.org/genproto v0.0.0-20231212172506-995d672761c0 h1:YJ5pD9rF8o9Qtta0Cmy9rdBwkSjrTCT6XTiUQVOtIos= +google.golang.org/genproto v0.0.0-20231212172506-995d672761c0/go.mod h1:l/k7rMz0vFTBPy+tFSGvXEd3z+BcoG1k7EHbqm+YBsY= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20231211222908-989df2bf70f3 h1:EWIeHfGuUf00zrVZGEgYFxok7plSAXBGcH7NNdMAWvA= -google.golang.org/genproto/googleapis/api v0.0.0-20231211222908-989df2bf70f3/go.mod h1:k2dtGpRrbsSyKcNPKKI5sstZkrNCZwpU/ns96JoHbGg= +google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0 h1:s1w3X6gQxwrLEpxnLd/qXTVLgQE2yXwaOaoa6IlY/+o= +google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0/go.mod h1:CAny0tYF+0/9rmDB9fahA9YLzX3+AEVl1qXbv5hhj6c= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 h1:/jFB8jK5R3Sq3i/lmeZO0cATSzFfZaJq1J2Euan3XKU= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0/go.mod h1:FUoWkonphQm3RhTS+kOEhF8h0iDpm4tdXolVCeZ9KKA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 h1:6G8oQ016D88m1xAKljMlBOOGWDZkes4kMhgGFlf8WcQ= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917/go.mod h1:xtjpI3tXFPP051KaWnhvxkiubL/6dJ18vLVf7q2pTOU= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -2719,8 +2724,9 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= +google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= From ffd53d573f5848c06d503912e46df23f4b93087e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 12:50:29 +0000 Subject: [PATCH 004/123] chore(deps): bump github.com/nats-io/nats.go from 1.31.0 to 1.32.0 (#2975) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 5e3768d267..75e92e52d5 100644 --- a/go.mod +++ b/go.mod @@ -57,7 +57,7 @@ require ( github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f - github.com/nats-io/nats.go v1.31.0 + github.com/nats-io/nats.go v1.32.0 github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 @@ -269,7 +269,7 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/nats-io/nats-server/v2 v2.9.23 // indirect github.com/nats-io/nats-streaming-server v0.24.3 // indirect - github.com/nats-io/nkeys v0.4.6 // indirect + github.com/nats-io/nkeys v0.4.7 // indirect github.com/nats-io/nuid v1.0.1 // indirect github.com/nicksnyder/go-i18n v1.10.1-0.20190510212457-b280125b035a // indirect github.com/pelletier/go-toml v1.9.5 // indirect diff --git a/go.sum b/go.sum index 85746821f1..e4b84144af 100644 --- a/go.sum +++ b/go.sum @@ -1548,11 +1548,11 @@ github.com/nats-io/nats.go v1.13.0/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/ github.com/nats-io/nats.go v1.13.1-0.20220121202836-972a071d373d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.22.1/go.mod h1:tLqubohF7t4z3du1QDPYJIQQyhb4wl6DhjxEajSI7UA= -github.com/nats-io/nats.go v1.31.0 h1:/WFBHEc/dOKBF6qf1TZhrdEfTmOZ5JzdJ+Y3m6Y/p7E= -github.com/nats-io/nats.go v1.31.0/go.mod h1:di3Bm5MLsoB4Bx61CBTsxuarI36WbhAwOm8QrW39+i8= +github.com/nats-io/nats.go v1.32.0 h1:Bx9BZS+aXYlxW08k8Gd3yR2s73pV5XSoAQUyp1Kwvp0= +github.com/nats-io/nats.go v1.32.0/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV6A5y4= -github.com/nats-io/nkeys v0.4.6 h1:IzVe95ru2CT6ta874rt9saQRkWfe2nFj1NtvYSLqMzY= -github.com/nats-io/nkeys v0.4.6/go.mod h1:4DxZNzenSVd1cYQoAa8948QY3QDjrHfcfVADymtkpts= +github.com/nats-io/nkeys v0.4.7 h1:RwNJbbIdYCoClSDNY7QVKZlyb/wfT6ugvFCiKy6vDvI= +github.com/nats-io/nkeys v0.4.7/go.mod h1:kqXRgRDPlGy7nGaEDMuYzmiJCIAAWDK0IMBtDmGD0nc= github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/nats-io/stan.go v0.10.2/go.mod h1:vo2ax8K2IxaR3JtEMLZRFKIdoK/3o1/PKueapB7ezX0= From a387d5cff31ce236f3b266cf8ebe3f40e4bd31d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:21:34 +0000 Subject: [PATCH 005/123] chore(deps): bump google.golang.org/api from 0.156.0 to 0.157.0 (#2981) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 75e92e52d5..51f890a8a7 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.18.0 - google.golang.org/api v0.156.0 + google.golang.org/api v0.157.0 google.golang.org/grpc v1.60.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -163,8 +163,8 @@ require ( golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -319,7 +319,7 @@ require ( golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20231212172506-995d672761c0 // indirect + google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 // indirect google.golang.org/protobuf v1.32.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index e4b84144af..51e4bf4db8 100644 --- a/go.sum +++ b/go.sum @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.156.0 h1:yloYcGbBtVYjLKQe4enCunxvwn3s2w/XPrrhVf6MsvQ= -google.golang.org/api v0.156.0/go.mod h1:bUSmn4KFO0Q+69zo9CNIDp4Psi6BqM0np0CbzKRSiSY= +google.golang.org/api v0.157.0 h1:ORAeqmbrrozeyw5NjnMxh7peHO0UzV4wWYSwZeCUb20= +google.golang.org/api v0.157.0/go.mod h1:+z4v4ufbZ1WEpld6yMGHyggs+PmAHiaLNj5ytP3N01g= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2648,21 +2648,21 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20231212172506-995d672761c0 h1:YJ5pD9rF8o9Qtta0Cmy9rdBwkSjrTCT6XTiUQVOtIos= -google.golang.org/genproto v0.0.0-20231212172506-995d672761c0/go.mod h1:l/k7rMz0vFTBPy+tFSGvXEd3z+BcoG1k7EHbqm+YBsY= +google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 h1:nz5NESFLZbJGPFxDT/HCn+V1mZ8JGNoY4nUpmW/Y2eg= +google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917/go.mod h1:pZqR+glSb11aJ+JQcczCvgf47+duRuzNSKqE8YAQnV0= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0 h1:s1w3X6gQxwrLEpxnLd/qXTVLgQE2yXwaOaoa6IlY/+o= -google.golang.org/genproto/googleapis/api v0.0.0-20231212172506-995d672761c0/go.mod h1:CAny0tYF+0/9rmDB9fahA9YLzX3+AEVl1qXbv5hhj6c= +google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 h1:rcS6EyEaoCO52hQDupoSfrxI3R6C2Tq741is7X8OvnM= +google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917/go.mod h1:CmlNWB9lSezaYELKS5Ym1r44VrrbPUa7JTvw+6MbpJ0= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 h1:6G8oQ016D88m1xAKljMlBOOGWDZkes4kMhgGFlf8WcQ= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917/go.mod h1:xtjpI3tXFPP051KaWnhvxkiubL/6dJ18vLVf7q2pTOU= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac h1:nUQEQmH/csSvFECKYRv6HWEyypysidKl2I6Qpsglq/0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac/go.mod h1:daQN87bsDqDoe316QbbvX60nMoJQa4r6Ds0ZuoAe5yA= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From 914490e536a211b22e7263afd1ca4d83558b221e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:22:46 +0000 Subject: [PATCH 006/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.4.0 to 1.5.1 (#2983) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 12 ++++++------ go.sum | 25 ++++++++++++------------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/go.mod b/go.mod index 51f890a8a7..a798531249 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( cloud.google.com/go/pubsub v1.33.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 - github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.42.0 @@ -100,9 +100,9 @@ require ( github.com/99designs/keyring v1.2.1 // indirect github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect - github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 // indirect github.com/DataDog/zstd v1.5.0 // indirect github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect @@ -121,7 +121,7 @@ require ( github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible // indirect - github.com/golang-jwt/jwt/v5 v5.0.0 // indirect + github.com/golang-jwt/jwt/v5 v5.2.0 // indirect github.com/google/gnostic v0.5.7-v3refs // indirect github.com/google/go-github/v41 v41.0.0 // indirect github.com/google/go-github/v57 v57.0.0 // indirect @@ -144,7 +144,7 @@ require ( github.com/pelletier/go-toml/v2 v2.1.0 // indirect github.com/pierrec/lz4/v4 v4.1.18 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect - github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect + github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pkg/errors v0.9.1 // indirect github.com/sagikazarmark/locafero v0.4.0 // indirect github.com/sagikazarmark/slog-shim v0.1.0 // indirect diff --git a/go.sum b/go.sum index 51e4bf4db8..8c93493b17 100644 --- a/go.sum +++ b/go.sum @@ -624,12 +624,12 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7 github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 h1:9kDVnTz3vbfweTqAUmk/a/pH5pWFCHtvRpHYC0G/dcA= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0/go.mod h1:3Ug6Qzto9anB6mGlEdgYMDF5zHQ+wwhEaYR4s17PHMw= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 h1:BMAjVKJM0U/CYF27gA0ZMmXGkOcvfFtD0oHVZ1TIPRI= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0/go.mod h1:1fXstnBMas5kzG+S3q8UoJcmyU6nUeunJcMDHcRYHhs= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 h1:sXr+ck84g/ZlZUOZiNELInmMgOsuGwdjjVkEIde0OtY= -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/azcore v1.9.1 h1:lGlwhPtrX6EVml1hO0ivjkUxsSyl4dsiw9qcA1k/3IQ= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1/go.mod h1:RKUqNu35KJYcVG/fqTRqmuXJZYNhYkBrnC/hX7yGbTA= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 h1:6oNBlSdi1QqM1PNW7FPA6xOGA5UNsXnkaYZz9vdPGhA= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1/go.mod h1:s4kgfzA0covAXNicZHDMN58jExvcng2mC/DepXiF1EI= github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0 h1:HKHkea1fdm18LT8VAxTVZgJpPsLgv+0NZhmtus1UqJQ= github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0/go.mod h1:4BbKA+mRmmTP8VaLfDPNF5nOdhRm5upG3AXVWfv1dxc= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTHJKx/ZF6CJSt9znxmLw9DqSTvyRU= @@ -669,8 +669,8 @@ github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= -github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 h1:WpB/QDNLpMw72xHJc34BNNykqSOeEJDAWkhf0u12/Jk= -github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 h1:DzHpqpoJVaCgOUdVHxE8QB52S6NiVdDQvGlny1qvPqA= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= @@ -1086,8 +1086,8 @@ github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzw github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE= -github.com/golang-jwt/jwt/v5 v5.0.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= +github.com/golang-jwt/jwt/v5 v5.2.0 h1:d/ix8ftRUorsN+5eMIlF4T6J8CAt9rch3My2winC1Jw= +github.com/golang-jwt/jwt/v5 v5.2.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= @@ -1611,8 +1611,8 @@ github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 h1:KoWmjvw+nsYOo29YJK9vDA65RGE3NrOnUtO7a+RF9HU= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= +github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= +github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU= github.com/pkg/diff v0.0.0-20200914180035-5b29258ca4f7/go.mod h1:zO8QMzTeZd5cpnIkz/Gn6iK0jDfGicM1nynOkkPIl28= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -2240,7 +2240,6 @@ golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= From 1bc102b4f67a73ab86fd94640db2d2a868e798da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:23:00 +0000 Subject: [PATCH 007/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.95.2 to 0.96.0 (#2982) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a798531249..57ada8282a 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.0 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.95.2 + github.com/xanzy/go-gitlab v0.96.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 diff --git a/go.sum b/go.sum index 8c93493b17..8355d886a1 100644 --- a/go.sum +++ b/go.sum @@ -1813,8 +1813,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.95.2 h1:4p0IirHqEp5f0baK/aQqr4TR57IsD+8e4fuyAA1yi88= -github.com/xanzy/go-gitlab v0.95.2/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.96.0 h1:LGkZ+wSNMRtHIBaYE4Hq3dZVjprwHv3Y1+rhKU3WETs= +github.com/xanzy/go-gitlab v0.96.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 8fa1ae5c81553052661ca45672171892d4d6815c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:25:44 +0000 Subject: [PATCH 008/123] chore(deps): bump github.com/cloudevents/sdk-go/v2 from 2.13.0 to 2.15.0 (#2984) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 57ada8282a..d248c3bdce 100644 --- a/go.mod +++ b/go.mod @@ -27,7 +27,7 @@ require ( github.com/aws/aws-sdk-go v1.44.209 github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 - github.com/cloudevents/sdk-go/v2 v2.13.0 + github.com/cloudevents/sdk-go/v2 v2.15.0 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 github.com/eclipse/paho.mqtt.golang v1.4.3 github.com/emitter-io/go/v2 v2.0.9 diff --git a/go.sum b/go.sum index 8355d886a1..2b13d2833e 100644 --- a/go.sum +++ b/go.sum @@ -802,8 +802,8 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudevents/sdk-go/v2 v2.13.0 h1:2zxDS8RyY1/wVPULGGbdgniGXSzLaRJVl136fLXGsYw= -github.com/cloudevents/sdk-go/v2 v2.13.0/go.mod h1:xDmKfzNjM8gBvjaF8ijFjM1VYOVUEeUfapHMUX1T5To= +github.com/cloudevents/sdk-go/v2 v2.15.0 h1:aKnhLQhyoJXqEECQdOIZnbZ9VupqlidE6hedugDGr+I= +github.com/cloudevents/sdk-go/v2 v2.15.0/go.mod h1:lL7kSWAE/V8VI4Wh0jbL2v/jvqsm6tjmaQBSvxcv4uE= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= From 2cc883b4c283b107adc24391226911c45f439ded Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:48:30 +0000 Subject: [PATCH 009/123] chore(deps): bump cloud.google.com/go/pubsub from 1.33.0 to 1.34.0 (#2985) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index d248c3bdce..c39b123b41 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ retract v1.15.0 // Published accidentally. require ( cloud.google.com/go/compute/metadata v0.2.3 - cloud.google.com/go/pubsub v1.33.0 + cloud.google.com/go/pubsub v1.34.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 diff --git a/go.sum b/go.sum index 2b13d2833e..29037598b7 100644 --- a/go.sum +++ b/go.sum @@ -432,8 +432,8 @@ cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcd cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.33.0 h1:6SPCPvWav64tj0sVX/+npCBKhUi/UjJehy9op/V3p2g= -cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= +cloud.google.com/go/pubsub v1.34.0 h1:ZtPbfwfi5rLaPeSvDC29fFoE20/tQvGrUS6kVJZJvkU= +cloud.google.com/go/pubsub v1.34.0/go.mod h1:alj4l4rBg+N3YTFDDC+/YyFTs6JAjam2QfYsddcAW4c= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= From fcf98dd71f526a9ecba0b2d7d0573bf7e9e98476 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:52:11 +0000 Subject: [PATCH 010/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus from 1.5.0 to 1.6.0 (#2986) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index c39b123b41..4ca3a79114 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 - github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0 + github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.42.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible @@ -175,7 +175,7 @@ require ( cloud.google.com/go v0.111.0 // indirect cloud.google.com/go/iam v1.1.5 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect - github.com/Azure/go-amqp v1.0.2 // indirect + github.com/Azure/go-amqp v1.0.4 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.28 // indirect github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect diff --git a/go.sum b/go.sum index 29037598b7..97e72bc28f 100644 --- a/go.sum +++ b/go.sum @@ -630,12 +630,12 @@ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 h1:6oNBlSdi1QqM1PNW7FPA6xOGA5UNsXnkaYZz9vdPGhA= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1/go.mod h1:s4kgfzA0covAXNicZHDMN58jExvcng2mC/DepXiF1EI= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0 h1:HKHkea1fdm18LT8VAxTVZgJpPsLgv+0NZhmtus1UqJQ= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.5.0/go.mod h1:4BbKA+mRmmTP8VaLfDPNF5nOdhRm5upG3AXVWfv1dxc= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 h1:Fhg/LkAagiLv9Xpw6r2knr19tn9t1TiQoJu5bOMzflc= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0/go.mod h1:7xwz/6tTwO9zMKni8/EozIMi0DTexFSm7YNE9HdD3cQ= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTHJKx/ZF6CJSt9znxmLw9DqSTvyRU= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0/go.mod h1:GfT0aGew8Qj5yiQVqOO5v7N8fanbJGyUoHqXg56qcVY= -github.com/Azure/go-amqp v1.0.2 h1:zHCHId+kKC7fO8IkwyZJnWMvtRXhYC0VJtD0GYkHc6M= -github.com/Azure/go-amqp v1.0.2/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= +github.com/Azure/go-amqp v1.0.4 h1:GX5OFOs706UjuFRD5PDKm3aOuLQ92F7DMbua+DKAYCc= +github.com/Azure/go-amqp v1.0.4/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= From 74f47a9a60ff14091b86ce8925e95431d633b4b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 13:14:02 +0000 Subject: [PATCH 011/123] chore(deps): bump actions/cache from 3 to 4 (#2987) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c7504178cd..a26748ccc0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: with: go-version: "1.20" - name: Restore go build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -72,7 +72,7 @@ jobs: with: go-version: "1.20" - name: Restore go build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -99,7 +99,7 @@ jobs: with: go-version: "1.20" - name: Restore go build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -132,7 +132,7 @@ jobs: with: go-version: "1.20" - name: Restore go build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build From 1220e33f3343d7f04512e8c8123abc35bd611bb6 Mon Sep 17 00:00:00 2001 From: Babis K Date: Sat, 27 Jan 2024 07:28:58 +0200 Subject: [PATCH 012/123] Replace url https://not-existing.com/ with https://invalid.com/ (#2993) (#2994) Signed-off-by: Babis Kaidos --- test/e2e/testdata/sensor-atleastonce-fail.yaml | 2 +- test/e2e/testdata/sensor-atmostonce-fail.yaml | 2 +- test/e2e/testdata/sensor-test-metrics.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/testdata/sensor-atleastonce-fail.yaml b/test/e2e/testdata/sensor-atleastonce-fail.yaml index 15a2fffb23..497ff830de 100644 --- a/test/e2e/testdata/sensor-atleastonce-fail.yaml +++ b/test/e2e/testdata/sensor-atleastonce-fail.yaml @@ -19,7 +19,7 @@ spec: name: trigger-atleastonce http: # Expect to fail - url: https://not-existing.com/ + url: https://invalid.com/ method: GET atLeastOnce: true retryStrategy: diff --git a/test/e2e/testdata/sensor-atmostonce-fail.yaml b/test/e2e/testdata/sensor-atmostonce-fail.yaml index bbfb3d7943..0aa8ebfea8 100644 --- a/test/e2e/testdata/sensor-atmostonce-fail.yaml +++ b/test/e2e/testdata/sensor-atmostonce-fail.yaml @@ -19,7 +19,7 @@ spec: name: trigger-atmostonce http: # Expect to fail - url: https://not-existing.com/ + url: https://invalid.com/ method: GET retryStrategy: steps: 100 diff --git a/test/e2e/testdata/sensor-test-metrics.yaml b/test/e2e/testdata/sensor-test-metrics.yaml index d830759cd1..913c06a0e8 100644 --- a/test/e2e/testdata/sensor-test-metrics.yaml +++ b/test/e2e/testdata/sensor-test-metrics.yaml @@ -17,5 +17,5 @@ spec: name: http-trigger http: # Expect to fail - url: https://not-existing.com/ + url: https://invalid.com/ method: GET \ No newline at end of file From 4f9e283830f3fdcc61dd61904b796dcffa9085e2 Mon Sep 17 00:00:00 2001 From: Zubair Haque Date: Sat, 27 Jan 2024 00:51:54 -0500 Subject: [PATCH 013/123] adding base/kafka_test.go for code coverage (#2990) Signed-off-by: zhaque44 --- eventbus/kafka/base/kafka_test.go | 105 ++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 eventbus/kafka/base/kafka_test.go diff --git a/eventbus/kafka/base/kafka_test.go b/eventbus/kafka/base/kafka_test.go new file mode 100644 index 0000000000..06e70d751c --- /dev/null +++ b/eventbus/kafka/base/kafka_test.go @@ -0,0 +1,105 @@ +package base + +import ( + "testing" + + "github.com/IBM/sarama" + eventbusv1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1" + "github.com/stretchr/testify/assert" + "go.uber.org/zap" +) + +func TestBrokers(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "broker1:9092,broker2:9092", + } + + logger := zap.NewNop().Sugar() + kafka := NewKafka(config, logger) + + expectedBrokers := []string{"broker1:9092", "broker2:9092"} + actualBrokers := kafka.Brokers() + + assert.Equal(t, expectedBrokers, actualBrokers) +} + +func TestConfig(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "localhost:9092", + } + + logger := zap.NewNop().Sugar() + + kafka := NewKafka(config, logger) + + saramaConfig, err := kafka.Config() + + assert.NoError(t, err) + assert.NotNil(t, saramaConfig) + assert.Equal(t, sarama.OffsetNewest, saramaConfig.Consumer.Offsets.Initial) + assert.Equal(t, sarama.WaitForAll, saramaConfig.Producer.RequiredAcks) +} + +func TestConfig_StartOldest(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "localhost:9092", + ConsumerGroup: &eventbusv1alpha1.KafkaConsumerGroup{ + StartOldest: true, + }, + } + + logger := zap.NewNop().Sugar() + + kafka := NewKafka(config, logger) + + saramaConfig, err := kafka.Config() + + assert.NoError(t, err) + assert.NotNil(t, saramaConfig) + assert.Equal(t, sarama.OffsetOldest, saramaConfig.Consumer.Offsets.Initial) +} + +func TestConfig_NoSASL(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "localhost:9092", + SASL: nil, + } + + logger := zap.NewNop().Sugar() + + kafka := NewKafka(config, logger) + + saramaConfig, err := kafka.Config() + + assert.NoError(t, err) + assert.NotNil(t, saramaConfig) + assert.False(t, saramaConfig.Net.SASL.Enable) +} + +func TestNewKafka(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "localhost:9092", + } + + logger := zap.NewNop().Sugar() + + kafka := NewKafka(config, logger) + + assert.NotNil(t, kafka) + assert.NotNil(t, kafka.Logger) + assert.NotNil(t, kafka.config) +} + +func TestNewKafka_EmptyURL(t *testing.T) { + config := &eventbusv1alpha1.KafkaBus{ + URL: "", + } + + logger := zap.NewNop().Sugar() + + kafka := NewKafka(config, logger) + + assert.NotNil(t, kafka) + assert.NotNil(t, kafka.Logger) + assert.NotNil(t, kafka.config) +} From 5c4b0d47707e036f7025de2e3083443c0695993c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:26:34 +0000 Subject: [PATCH 014/123] chore(deps): bump google.golang.org/grpc from 1.60.1 to 1.61.0 (#2998) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 4ca3a79114..0713de1d6a 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.26.0 golang.org/x/crypto v0.18.0 google.golang.org/api v0.157.0 - google.golang.org/grpc v1.60.1 + google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 k8s.io/apimachinery v0.24.3 diff --git a/go.sum b/go.sum index 97e72bc28f..eb881dd74a 100644 --- a/go.sum +++ b/go.sum @@ -822,7 +822,7 @@ github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWH github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4 h1:/inchEIKaYC1Akx+H+gqO04wryn5h75LSazbRlnya1k= +github.com/cncf/xds/go v0.0.0-20231109132714-523115ebc101 h1:7To3pQ+pZo0i3dsWEbinPNFs5gPSBOsJtx3wTT94VBY= github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= @@ -2703,8 +2703,8 @@ google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5v google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.60.1 h1:26+wFr+cNqSGFcOXcabYC0lUVJVRa2Sb2ortSK7VrEU= -google.golang.org/grpc v1.60.1/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= +google.golang.org/grpc v1.61.0 h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0= +google.golang.org/grpc v1.61.0/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= From 2e4a178982ada53ff8da2f807c012ba64758d31b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:26:48 +0000 Subject: [PATCH 015/123] chore(deps): bump cloud.google.com/go/pubsub from 1.34.0 to 1.36.0 (#2999) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 19 ++++++++++--------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/go.mod b/go.mod index 0713de1d6a..1820facbd8 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ retract v1.15.0 // Published accidentally. require ( cloud.google.com/go/compute/metadata v0.2.3 - cloud.google.com/go/pubsub v1.34.0 + cloud.google.com/go/pubsub v1.36.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 @@ -163,7 +163,7 @@ require ( golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect @@ -172,7 +172,7 @@ require ( ) require ( - cloud.google.com/go v0.111.0 // indirect + cloud.google.com/go v0.112.0 // indirect cloud.google.com/go/iam v1.1.5 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/go-amqp v1.0.4 // indirect @@ -319,7 +319,7 @@ require ( golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 // indirect + google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect google.golang.org/protobuf v1.32.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index eb881dd74a..b9b47f69dc 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,8 @@ cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFO cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.111.0 h1:YHLKNupSD1KqjDbQ3+LVdQ81h/UJbJyZG203cEfnQgM= -cloud.google.com/go v0.111.0/go.mod h1:0mibmpKP1TyOOFYQY5izo0LnT+ecvOQ0Sg3OdmMiNRU= +cloud.google.com/go v0.112.0 h1:tpFCD7hpHFlQ8yPwT3x+QeXqc2T6+n6T+hmABHfDUSM= +cloud.google.com/go v0.112.0/go.mod h1:3jEEVwZ/MHU4djK5t5RHuKOA/GbLddgTdVubX1qnPD4= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= @@ -432,8 +432,8 @@ cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcd cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.34.0 h1:ZtPbfwfi5rLaPeSvDC29fFoE20/tQvGrUS6kVJZJvkU= -cloud.google.com/go/pubsub v1.34.0/go.mod h1:alj4l4rBg+N3YTFDDC+/YyFTs6JAjam2QfYsddcAW4c= +cloud.google.com/go/pubsub v1.36.0 h1:cgaJ0mgwEM0YNNATXFXSnLfji6XcMieTc2mRjH1ZYdY= +cloud.google.com/go/pubsub v1.36.0/go.mod h1:qQvGW4ANjuYcOpTMTy5+u6HBIoJF00cPfQ/ubMcc/D8= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= @@ -1855,6 +1855,7 @@ github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= +go.einride.tech/aip v0.65.0 h1:aqKEV1g9diXcR6DAxBVZoJn6ho8SuC+TOZFXzuu7kLU= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= @@ -1895,7 +1896,7 @@ go.opentelemetry.io/otel/metric v1.21.0 h1:tlYWfeo+Bocx5kLEloTjbcDwBuELRrIFxwdQ3 go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzug24uvsyIEJRWM= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= -go.opentelemetry.io/otel/sdk v1.19.0 h1:6USY6zH+L8uMH8L3t1enZPR3WFEmSTADlqldyHtJi3o= +go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= @@ -2647,14 +2648,14 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 h1:nz5NESFLZbJGPFxDT/HCn+V1mZ8JGNoY4nUpmW/Y2eg= -google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917/go.mod h1:pZqR+glSb11aJ+JQcczCvgf47+duRuzNSKqE8YAQnV0= +google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac h1:ZL/Teoy/ZGnzyrqK/Optxxp2pmVh+fmJ97slxSRyzUg= +google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac/go.mod h1:+Rvu7ElI+aLzyDQhpHMFMMltsD6m7nqpuWDd2CwJw3k= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 h1:rcS6EyEaoCO52hQDupoSfrxI3R6C2Tq741is7X8OvnM= -google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917/go.mod h1:CmlNWB9lSezaYELKS5Ym1r44VrrbPUa7JTvw+6MbpJ0= +google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457 h1:KHBtwE+eQc3+NxpjmRFlQ3pJQ2FNnhhgB9xOV8kyBuU= +google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457/go.mod h1:4jWUdICTdgc3Ibxmr8nAJiiLHwQBY0UI0XZcEMaFKaA= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= From ff9de1f1133b5db9841a8512bae67c71f59b012e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:30:44 +0000 Subject: [PATCH 016/123] chore(deps): bump github.com/google/uuid from 1.5.0 to 1.6.0 (#3001) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 1820facbd8..8b967a3a09 100644 --- a/go.mod +++ b/go.mod @@ -45,7 +45,7 @@ require ( github.com/golang/protobuf v1.5.3 github.com/google/go-cmp v0.6.0 github.com/google/go-github/v50 v50.2.0 - github.com/google/uuid v1.5.0 + github.com/google/uuid v1.6.0 github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/hamba/avro v1.8.0 diff --git a/go.sum b/go.sum index b9b47f69dc..c17a50d41f 100644 --- a/go.sum +++ b/go.sum @@ -1202,8 +1202,8 @@ github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8 github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= -github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= From 33a5cefa7df542ae1687e0ed7039b086873cb3cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:46:10 +0000 Subject: [PATCH 017/123] chore(deps): bump google.golang.org/api from 0.157.0 to 0.159.0 (#3000) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 14 +++++++------- go.sum | 28 ++++++++++++++-------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/go.mod b/go.mod index 8b967a3a09..cae4c0398a 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.18.0 - google.golang.org/api v0.157.0 + google.golang.org/api v0.159.0 google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -155,11 +155,11 @@ require ( github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect - go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/metric v1.21.0 // indirect - go.opentelemetry.io/otel/trace v1.21.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect + go.opentelemetry.io/otel v1.22.0 // indirect + go.opentelemetry.io/otel/metric v1.22.0 // indirect + go.opentelemetry.io/otel/trace v1.22.0 // indirect golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect @@ -209,7 +209,7 @@ require ( github.com/fatih/structs v1.1.0 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect - github.com/go-logr/logr v1.3.0 // indirect + github.com/go-logr/logr v1.4.1 // indirect github.com/go-openapi/analysis v0.21.4 // indirect github.com/go-openapi/errors v0.20.3 // indirect github.com/go-openapi/jsonpointer v0.19.5 // indirect diff --git a/go.sum b/go.sum index c17a50d41f..ce6087e108 100644 --- a/go.sum +++ b/go.sum @@ -976,8 +976,8 @@ github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTg github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY= -github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-logr/zapr v1.2.0 h1:n4JnPI1T3Qq1SFEi/F8rwLrZERp2bso19PJZDB9dayk= @@ -1882,26 +1882,26 @@ go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 h1:SpGay3w+nEwMpfVnbqOLH5gY52/foP8RE8UzTZ1pdSE= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1/go.mod h1:4UoMYEZOC0yN/sPGH76KPkkU7zgiEWYWL9vwmbnTJPE= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 h1:UNQQKPfTDe1J81ViolILjTKPr9WetKW6uei2hFgJmFs= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0/go.mod h1:r9vWsPS/3AQItv3OSlEJ/E4mbrhUbbw18meOjArPtKQ= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 h1:aFJWCqJMNjENlcleuuOkGAPH82y0yULBScfXcIEdS24= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1/go.mod h1:sEGXWArGqc3tVa+ekntsN65DmVbVeW+7lTKTjZF3/Fo= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 h1:sv9kVfal0MK0wBMCOGr+HeJm9v803BkJxGrk2au7j08= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0/go.mod h1:SK2UL73Zy1quvRPonmOmRDiWk1KBV3LyIeeIxcEApWw= go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= -go.opentelemetry.io/otel v1.21.0 h1:hzLeKBZEL7Okw2mGzZ0cc4k/A7Fta0uoPgaJCr8fsFc= -go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo= +go.opentelemetry.io/otel v1.22.0 h1:xS7Ku+7yTFvDfDraDIJVpw7XPyuHlB9MCiqqX5mcJ6Y= +go.opentelemetry.io/otel v1.22.0/go.mod h1:eoV4iAi3Ea8LkAEI9+GFT44O6T/D0GWAVFyZVCC6pMI= go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= -go.opentelemetry.io/otel/metric v1.21.0 h1:tlYWfeo+Bocx5kLEloTjbcDwBuELRrIFxwdQ36PlJu4= -go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzug24uvsyIEJRWM= +go.opentelemetry.io/otel/metric v1.22.0 h1:lypMQnGyJYeuYPhOM/bgjbFM6WE44W1/T45er4d8Hhg= +go.opentelemetry.io/otel/metric v1.22.0/go.mod h1:evJGjVpZv0mQ5QBRJoBF64yMuOf4xCWdXjK8pzFvliY= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= -go.opentelemetry.io/otel/trace v1.21.0 h1:WD9i5gzvoUPuXIXH24ZNBudiarZDKuekPqi/E8fpfLc= -go.opentelemetry.io/otel/trace v1.21.0/go.mod h1:LGbsEB0f9LGjN+OZaQQ26sohbOmiMR+BaslueVtS/qQ= +go.opentelemetry.io/otel/trace v1.22.0 h1:Hg6pPujv0XG9QaVbGOBVHunyuLcCC3jN7WEhPx83XD0= +go.opentelemetry.io/otel/trace v1.22.0/go.mod h1:RbbHXVqKES9QhzZq/fE5UnOSILqRt40a21sPw2He1xo= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.157.0 h1:ORAeqmbrrozeyw5NjnMxh7peHO0UzV4wWYSwZeCUb20= -google.golang.org/api v0.157.0/go.mod h1:+z4v4ufbZ1WEpld6yMGHyggs+PmAHiaLNj5ytP3N01g= +google.golang.org/api v0.159.0 h1:fVTj+7HHiUYz4JEZCHHoRIeQX7h5FMzrA2RF/DzDdbs= +google.golang.org/api v0.159.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= From ab388a06e7f66ae0d6df14ecfb16a709902f39a1 Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Tue, 30 Jan 2024 06:07:30 +0000 Subject: [PATCH 018/123] feat: add waitTime config field to azure queue storage event source (#2996) Signed-off-by: eduardodbr --- api/event-source.html | 13 + api/event-source.md | 13 + api/jsonschema/schema.json | 5 + api/openapi-spec/swagger.json | 5 + .../sources/azurequeuestorage/start.go | 8 + .../event-sources/azure-queue-storage.yaml | 2 + pkg/apis/eventsource/v1alpha1/generated.pb.go | 929 +++++++-------- pkg/apis/eventsource/v1alpha1/generated.proto | 5 + .../eventsource/v1alpha1/openapi_generated.go | 7 + pkg/apis/eventsource/v1alpha1/types.go | 4 + .../v1alpha1/zz_generated.deepcopy.go | 5 + test/e2e/functional_test.go | 1021 ++++++++--------- 12 files changed, 1057 insertions(+), 960 deletions(-) diff --git a/api/event-source.html b/api/event-source.html index c2ca99c863..f3fa7490e4 100644 --- a/api/event-source.html +++ b/api/event-source.html @@ -716,6 +716,19 @@

AzureQueueStorageEven If set to true the decoding is done before the evaluation of JSONBody

+ + +waitTimeInSeconds
+ +int32 + + + +(Optional) +

WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. +The default value is 3 seconds.

+ +

AzureServiceBusEventSource diff --git a/api/event-source.md b/api/event-source.md index 12d7f78751..1a4a743cd6 100644 --- a/api/event-source.md +++ b/api/event-source.md @@ -753,6 +753,19 @@ set to true the decoding is done before the evaluation of JSONBody

+ + +waitTimeInSeconds
int32 + + +(Optional) +

+WaitTimeInSeconds is the duration (in seconds) for which the event +source waits between empty results from the queue. The default value is +3 seconds. +

+ +

diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index d8b77f66dc..11422f7237 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -978,6 +978,11 @@ "storageAccountName": { "description": "StorageAccountName is the name of the storage account where the queue is. This field is necessary to access via Azure AD (managed identity) and it is ignored if ConnectionString is set.", "type": "string" + }, + "waitTimeInSeconds": { + "description": "WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. The default value is 3 seconds.", + "format": "int32", + "type": "integer" } }, "required": [ diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 00c6ec4832..6ea86a354b 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -974,6 +974,11 @@ "storageAccountName": { "description": "StorageAccountName is the name of the storage account where the queue is. This field is necessary to access via Azure AD (managed identity) and it is ignored if ConnectionString is set.", "type": "string" + }, + "waitTimeInSeconds": { + "description": "WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. The default value is 3 seconds.", + "type": "integer", + "format": "int32" } } }, diff --git a/eventsources/sources/azurequeuestorage/start.go b/eventsources/sources/azurequeuestorage/start.go index 6418360af8..2efda677d9 100644 --- a/eventsources/sources/azurequeuestorage/start.go +++ b/eventsources/sources/azurequeuestorage/start.go @@ -90,6 +90,10 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt } var numMessages int32 = 10 var visibilityTimeout int32 = 120 + var waitTime int32 = 3 // Defaults to 3 seconds + if el.AzureQueueStorageEventSource.WaitTimeInSeconds != nil { + waitTime = *el.AzureQueueStorageEventSource.WaitTimeInSeconds + } log.Info("listening for messages on the queue...") for { select { @@ -98,6 +102,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt return nil default: } + log.Info("dequeing messages....") messages, err := queueClient.DequeueMessages(ctx, &azqueue.DequeueMessagesOptions{ NumberOfMessages: &numMessages, VisibilityTimeout: &visibilityTimeout, @@ -115,6 +120,9 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt } }, log) } + if len(messages.Messages) == 0 { + time.Sleep(time.Second * time.Duration(waitTime)) + } } } diff --git a/examples/event-sources/azure-queue-storage.yaml b/examples/event-sources/azure-queue-storage.yaml index 5c60d2afa0..0710c9b8f0 100644 --- a/examples/event-sources/azure-queue-storage.yaml +++ b/examples/event-sources/azure-queue-storage.yaml @@ -12,6 +12,8 @@ spec: jsonBody: true # DecodeMessage specifies if all the messages from AQS should be base64 decoded decodeMessage: false + # waitTimeInSeconds defines the wait time between empty reads from the queue + waitTimeInSeconds: 2 # connection string contains information about K8s secret that stores the connection string connectionString: # Key within the K8s secret whose corresponding value (must be base64 encoded) is access key diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index 4b1a0f6027..5cc8718f14 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1770,458 +1770,460 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7209 bytes of a gzipped FileDescriptorProto + // 7236 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x4d, 0x6c, 0x24, 0xc7, - 0x75, 0xb0, 0x9a, 0x9c, 0x19, 0xce, 0x3c, 0xfe, 0xd7, 0xae, 0x56, 0x23, 0x5a, 0x5a, 0xee, 0x47, - 0xc1, 0x8b, 0xd5, 0x17, 0x99, 0x1b, 0x6d, 0xe2, 0x58, 0x96, 0x62, 0x19, 0x43, 0x72, 0xb9, 0x4b, - 0x2d, 0xc9, 0x1d, 0x56, 0x73, 0xf5, 0x63, 0x59, 0x92, 0x9b, 0x3d, 0xc5, 0x61, 0x9b, 0x3d, 0xdd, - 0xc3, 0xee, 0x1e, 0x6a, 0xb9, 0x40, 0x6c, 0xc3, 0x80, 0x13, 0x5b, 0x3f, 0xb6, 0x95, 0xc4, 0x49, - 0x90, 0xc0, 0x07, 0x27, 0x81, 0x2f, 0x09, 0x72, 0x8b, 0x91, 0x6b, 0x90, 0x1c, 0x8c, 0x24, 0x07, - 0x27, 0xb9, 0x38, 0x36, 0xb0, 0xb0, 0x19, 0xe4, 0x96, 0x4b, 0xe0, 0x53, 0x72, 0x0a, 0xea, 0xa7, - 0xab, 0xab, 0x7f, 0x86, 0xcb, 0xe1, 0xf4, 0x90, 0xbb, 0x46, 0x4e, 0xe4, 0xd4, 0x7b, 0xf5, 0xde, - 0xeb, 0xaa, 0xf7, 0x5e, 0xbd, 0x7a, 0xf5, 0x07, 0x6b, 0x4d, 0x2b, 0xd8, 0xe9, 0x6c, 0xcd, 0x9b, - 0x6e, 0xeb, 0xaa, 0xe1, 0x35, 0xdd, 0xb6, 0xe7, 0x7e, 0x91, 0xfd, 0xf3, 0x09, 0xb2, 0x4f, 0x9c, - 0xc0, 0xbf, 0xda, 0xde, 0x6d, 0x5e, 0x35, 0xda, 0x96, 0x7f, 0x95, 0xff, 0x76, 0x3b, 0x9e, 0x49, - 0xae, 0xee, 0x3f, 0x6f, 0xd8, 0xed, 0x1d, 0xe3, 0xf9, 0xab, 0x4d, 0xe2, 0x10, 0xcf, 0x08, 0x48, - 0x63, 0xbe, 0xed, 0xb9, 0x81, 0x8b, 0x3e, 0x13, 0x91, 0x9b, 0x0f, 0xc9, 0xb1, 0x7f, 0xde, 0xe1, - 0xd5, 0xe7, 0xdb, 0xbb, 0xcd, 0x79, 0x4a, 0x6e, 0x5e, 0x21, 0x37, 0x1f, 0x92, 0x9b, 0xf9, 0xec, - 0xb1, 0xa5, 0x31, 0xdd, 0x56, 0xcb, 0x75, 0x92, 0xfc, 0x67, 0x3e, 0xa1, 0x10, 0x68, 0xba, 0x4d, - 0xf7, 0x2a, 0x2b, 0xde, 0xea, 0x6c, 0xb3, 0x5f, 0xec, 0x07, 0xfb, 0x4f, 0xa0, 0xcf, 0xed, 0xbe, - 0xe0, 0xcf, 0x5b, 0x2e, 0x25, 0x79, 0xd5, 0x74, 0x3d, 0xfa, 0x61, 0x29, 0x92, 0xbf, 0x1e, 0xe1, - 0xb4, 0x0c, 0x73, 0xc7, 0x72, 0x88, 0x77, 0x10, 0xc9, 0xd1, 0x22, 0x81, 0x91, 0x55, 0xeb, 0x6a, - 0xb7, 0x5a, 0x5e, 0xc7, 0x09, 0xac, 0x16, 0x49, 0x55, 0xf8, 0x8d, 0x07, 0x55, 0xf0, 0xcd, 0x1d, - 0xd2, 0x32, 0x92, 0xf5, 0xe6, 0xfe, 0x5b, 0x83, 0xe9, 0xda, 0xda, 0x46, 0x7d, 0xd1, 0x75, 0xfc, - 0x4e, 0x8b, 0x2c, 0xba, 0xce, 0xb6, 0xd5, 0x44, 0x9f, 0x84, 0x51, 0x93, 0x17, 0x78, 0x9b, 0x46, - 0xb3, 0xaa, 0x5d, 0xd2, 0xae, 0x54, 0x16, 0xce, 0xfd, 0xf0, 0xfe, 0xec, 0x63, 0x87, 0xf7, 0x67, - 0x47, 0x17, 0x23, 0x10, 0x56, 0xf1, 0xd0, 0xb3, 0x30, 0x62, 0x74, 0x02, 0xb7, 0x66, 0xee, 0x56, - 0x87, 0x2e, 0x69, 0x57, 0xca, 0x0b, 0x93, 0xa2, 0xca, 0x48, 0x8d, 0x17, 0xe3, 0x10, 0x8e, 0xae, - 0x42, 0x85, 0xdc, 0x35, 0xed, 0x8e, 0x6f, 0xed, 0x93, 0xea, 0x30, 0x43, 0x9e, 0x16, 0xc8, 0x95, - 0xeb, 0x21, 0x00, 0x47, 0x38, 0x94, 0xb6, 0xe3, 0xae, 0xba, 0xa6, 0x61, 0x57, 0x0b, 0x71, 0xda, - 0xeb, 0xbc, 0x18, 0x87, 0x70, 0x74, 0x19, 0x4a, 0x8e, 0xfb, 0x9a, 0x61, 0x05, 0xd5, 0x22, 0xc3, - 0x9c, 0x10, 0x98, 0xa5, 0x75, 0x56, 0x8a, 0x05, 0x74, 0xee, 0x3f, 0x47, 0x61, 0x92, 0x7e, 0xfb, - 0x75, 0xaa, 0x1c, 0x3a, 0xd3, 0x25, 0xf4, 0x34, 0x0c, 0x77, 0x3c, 0x5b, 0x7c, 0xf1, 0xa8, 0xa8, - 0x38, 0x7c, 0x07, 0xaf, 0x62, 0x5a, 0x8e, 0x5e, 0x80, 0x31, 0x72, 0xd7, 0xdc, 0x31, 0x9c, 0x26, - 0x59, 0x37, 0x5a, 0x84, 0x7d, 0x66, 0x65, 0xe1, 0xbc, 0xc0, 0x1b, 0xbb, 0xae, 0xc0, 0x70, 0x0c, - 0x53, 0xad, 0xb9, 0x79, 0xd0, 0xe6, 0xdf, 0x9c, 0x51, 0x93, 0xc2, 0x70, 0x0c, 0x13, 0x5d, 0x03, - 0xf0, 0xdc, 0x4e, 0x60, 0x39, 0xcd, 0x5b, 0xe4, 0x80, 0x7d, 0x7c, 0x65, 0x01, 0x89, 0x7a, 0x80, - 0x25, 0x04, 0x2b, 0x58, 0xe8, 0xb7, 0x60, 0xda, 0x74, 0x1d, 0x87, 0x98, 0x81, 0xe5, 0x3a, 0x0b, - 0x86, 0xb9, 0xeb, 0x6e, 0x6f, 0xb3, 0xd6, 0x18, 0xbd, 0xf6, 0xc2, 0xfc, 0xb1, 0x8d, 0x8c, 0x5b, - 0xc9, 0xbc, 0xa8, 0xbf, 0xf0, 0xf8, 0xe1, 0xfd, 0xd9, 0xe9, 0xc5, 0x24, 0x59, 0x9c, 0xe6, 0x84, - 0x9e, 0x83, 0xf2, 0x17, 0x7d, 0xd7, 0x59, 0x70, 0x1b, 0x07, 0xd5, 0x12, 0xeb, 0x83, 0x29, 0x21, - 0x70, 0xf9, 0x15, 0xfd, 0xf6, 0x3a, 0x2d, 0xc7, 0x12, 0x03, 0xdd, 0x81, 0xe1, 0xc0, 0xf6, 0xab, - 0x23, 0x4c, 0xbc, 0x17, 0x7b, 0x16, 0x6f, 0x73, 0x55, 0xe7, 0x6a, 0xbb, 0x30, 0x42, 0xfb, 0x6a, - 0x73, 0x55, 0xc7, 0x94, 0x1e, 0x7a, 0x4f, 0x83, 0x32, 0xb5, 0xaf, 0x86, 0x11, 0x18, 0xd5, 0xf2, - 0xa5, 0xe1, 0x2b, 0xa3, 0xd7, 0x3e, 0x3f, 0xdf, 0x97, 0x83, 0x99, 0x4f, 0x68, 0xcb, 0xfc, 0x9a, - 0x20, 0x7f, 0xdd, 0x09, 0xbc, 0x83, 0xe8, 0x1b, 0xc3, 0x62, 0x2c, 0xf9, 0xa3, 0x3f, 0xd4, 0x60, - 0x32, 0xec, 0xd5, 0x25, 0x62, 0xda, 0x86, 0x47, 0xaa, 0x15, 0xf6, 0xc1, 0xaf, 0xe7, 0x21, 0x53, - 0x9c, 0xb2, 0x68, 0x8e, 0x73, 0x87, 0xf7, 0x67, 0x27, 0x13, 0x20, 0x9c, 0x94, 0x02, 0xbd, 0xaf, - 0xc1, 0xd8, 0x5e, 0x87, 0x74, 0xa4, 0x58, 0xc0, 0xc4, 0xba, 0x93, 0x83, 0x58, 0x1b, 0x0a, 0x59, - 0x21, 0xd3, 0x14, 0x55, 0x76, 0xb5, 0x1c, 0xc7, 0x98, 0xa3, 0x2f, 0x43, 0x85, 0xfd, 0x5e, 0xb0, - 0x9c, 0x46, 0x75, 0x94, 0x49, 0x82, 0xf3, 0x92, 0x84, 0xd2, 0x14, 0x62, 0x8c, 0x53, 0x3f, 0x23, - 0x0b, 0x71, 0xc4, 0x13, 0xbd, 0x0b, 0x23, 0xc2, 0xa5, 0x55, 0xc7, 0x18, 0xfb, 0x7a, 0x0e, 0xec, - 0x63, 0xde, 0x75, 0x61, 0x94, 0x7a, 0x2d, 0x51, 0x84, 0x43, 0x6e, 0xe8, 0x75, 0x28, 0x18, 0x9d, - 0x60, 0xa7, 0x3a, 0x7e, 0x42, 0x33, 0x58, 0x30, 0x7c, 0xcb, 0xac, 0x75, 0x82, 0x9d, 0x85, 0xf2, - 0xe1, 0xfd, 0xd9, 0x02, 0xfd, 0x0f, 0x33, 0x8a, 0x08, 0x43, 0xa5, 0xe3, 0xd9, 0x3a, 0x31, 0x3d, - 0x12, 0x54, 0x27, 0x18, 0xf9, 0x8f, 0xcf, 0xf3, 0xf1, 0x82, 0x52, 0x98, 0xa7, 0x43, 0xd7, 0xfc, - 0xfe, 0xf3, 0xf3, 0x1c, 0xe3, 0x16, 0x39, 0xd0, 0x89, 0x4d, 0xcc, 0xc0, 0xf5, 0x78, 0x33, 0xdd, - 0xc1, 0xab, 0x1c, 0x82, 0x23, 0x32, 0x28, 0x80, 0xd2, 0xb6, 0x65, 0x07, 0xc4, 0xab, 0x4e, 0xe6, - 0xd2, 0x4a, 0x8a, 0x55, 0x2d, 0x33, 0xba, 0x0b, 0x40, 0x3d, 0x36, 0xff, 0x1f, 0x0b, 0x5e, 0x33, - 0x2f, 0xc1, 0x78, 0xcc, 0xe4, 0xd0, 0x14, 0x0c, 0xef, 0x92, 0x03, 0xee, 0xae, 0x31, 0xfd, 0x17, - 0x9d, 0x87, 0xe2, 0xbe, 0x61, 0x77, 0x84, 0x6b, 0xc6, 0xfc, 0xc7, 0x8b, 0x43, 0x2f, 0x68, 0x73, - 0x3f, 0xd2, 0xe0, 0xc9, 0xae, 0xc6, 0x42, 0xc7, 0x97, 0x46, 0xc7, 0x33, 0xb6, 0x6c, 0xc2, 0xa8, - 0x29, 0xe3, 0xcb, 0x12, 0x2f, 0xc6, 0x21, 0x9c, 0x3a, 0x64, 0x3a, 0x8c, 0x2d, 0x11, 0x9b, 0x04, - 0x44, 0x8c, 0x74, 0xd2, 0x21, 0xd7, 0x24, 0x04, 0x2b, 0x58, 0xd4, 0x23, 0x5a, 0x4e, 0x40, 0x3c, - 0xc7, 0xb0, 0xc5, 0x70, 0x27, 0xbd, 0xc5, 0x8a, 0x28, 0xc7, 0x12, 0x43, 0x19, 0xc1, 0x0a, 0x47, - 0x8e, 0x60, 0x9f, 0x81, 0x73, 0x19, 0xda, 0xad, 0x54, 0xd7, 0x8e, 0xac, 0xfe, 0x67, 0x43, 0x70, - 0x21, 0xdb, 0x4e, 0xd1, 0x25, 0x28, 0x38, 0x74, 0x80, 0xe3, 0x03, 0xe1, 0x98, 0x20, 0x50, 0x60, - 0x03, 0x1b, 0x83, 0xa8, 0x0d, 0x36, 0xd4, 0x53, 0x83, 0x0d, 0x1f, 0xab, 0xc1, 0x62, 0x01, 0x42, - 0xe1, 0x18, 0x01, 0xc2, 0x31, 0x47, 0x7d, 0x4a, 0xd8, 0xf0, 0x9a, 0x9d, 0x16, 0x55, 0x42, 0x36, - 0x38, 0x55, 0x22, 0xc2, 0xb5, 0x10, 0x80, 0x23, 0x9c, 0xb9, 0xf7, 0x8a, 0xf0, 0x64, 0xed, 0x5e, - 0xc7, 0x23, 0x4c, 0x47, 0xfd, 0x9b, 0x9d, 0x2d, 0x35, 0x60, 0xb8, 0x04, 0x85, 0xed, 0xbd, 0x86, + 0x75, 0xb0, 0x9a, 0x1c, 0x0e, 0x67, 0x1e, 0xff, 0x6b, 0x57, 0xab, 0x11, 0x2d, 0x2d, 0xf7, 0xa3, + 0xe0, 0x85, 0xf4, 0x7d, 0x32, 0xf7, 0xd3, 0x26, 0x8e, 0x65, 0x29, 0x96, 0x31, 0x43, 0x2e, 0x77, + 0xa9, 0x25, 0xb9, 0xc3, 0x6a, 0xae, 0x7e, 0x2c, 0x4b, 0x72, 0xb3, 0xa7, 0x38, 0x6c, 0xb3, 0xa7, + 0x7b, 0xd8, 0xdd, 0xc3, 0x5d, 0x2e, 0x10, 0xdb, 0x30, 0xe0, 0xc4, 0xd6, 0x8f, 0x6d, 0x25, 0x71, + 0x12, 0x24, 0x30, 0x10, 0x27, 0x81, 0x2f, 0x09, 0x72, 0x8b, 0x91, 0x6b, 0x90, 0x1c, 0x8c, 0x24, + 0x07, 0x27, 0xb9, 0x38, 0x36, 0xb0, 0xb0, 0x19, 0xe4, 0x96, 0x4b, 0xe0, 0x53, 0x72, 0x0a, 0xea, + 0xa7, 0xab, 0xab, 0x7f, 0x86, 0xcb, 0xe1, 0xf4, 0x90, 0xbb, 0x46, 0x4e, 0xe4, 0xd4, 0x7b, 0xf5, + 0xde, 0xeb, 0xaa, 0xf7, 0x5e, 0xbd, 0x7a, 0xf5, 0x07, 0x6b, 0x4d, 0x2b, 0xd8, 0xe9, 0x6c, 0x2d, + 0x98, 0x6e, 0xeb, 0x8a, 0xe1, 0x35, 0xdd, 0xb6, 0xe7, 0x7e, 0x91, 0xfd, 0xf3, 0x09, 0xb2, 0x4f, + 0x9c, 0xc0, 0xbf, 0xd2, 0xde, 0x6d, 0x5e, 0x31, 0xda, 0x96, 0x7f, 0x85, 0xff, 0x76, 0x3b, 0x9e, + 0x49, 0xae, 0xec, 0xbf, 0x60, 0xd8, 0xed, 0x1d, 0xe3, 0x85, 0x2b, 0x4d, 0xe2, 0x10, 0xcf, 0x08, + 0x48, 0x63, 0xa1, 0xed, 0xb9, 0x81, 0x8b, 0x3e, 0x13, 0x91, 0x5b, 0x08, 0xc9, 0xb1, 0x7f, 0xde, + 0xe5, 0xd5, 0x17, 0xda, 0xbb, 0xcd, 0x05, 0x4a, 0x6e, 0x41, 0x21, 0xb7, 0x10, 0x92, 0x9b, 0xfd, + 0xec, 0xb1, 0xa5, 0x31, 0xdd, 0x56, 0xcb, 0x75, 0x92, 0xfc, 0x67, 0x3f, 0xa1, 0x10, 0x68, 0xba, + 0x4d, 0xf7, 0x0a, 0x2b, 0xde, 0xea, 0x6c, 0xb3, 0x5f, 0xec, 0x07, 0xfb, 0x4f, 0xa0, 0xcf, 0xef, + 0xbe, 0xe8, 0x2f, 0x58, 0x2e, 0x25, 0x79, 0xc5, 0x74, 0x3d, 0xfa, 0x61, 0x29, 0x92, 0xbf, 0x1a, + 0xe1, 0xb4, 0x0c, 0x73, 0xc7, 0x72, 0x88, 0x77, 0x10, 0xc9, 0xd1, 0x22, 0x81, 0x91, 0x55, 0xeb, + 0x4a, 0xb7, 0x5a, 0x5e, 0xc7, 0x09, 0xac, 0x16, 0x49, 0x55, 0xf8, 0xb5, 0x07, 0x55, 0xf0, 0xcd, + 0x1d, 0xd2, 0x32, 0x92, 0xf5, 0xe6, 0xff, 0x4b, 0x83, 0x99, 0xea, 0xda, 0x46, 0x7d, 0xd1, 0x75, + 0xfc, 0x4e, 0x8b, 0x2c, 0xba, 0xce, 0xb6, 0xd5, 0x44, 0x9f, 0x84, 0x31, 0x93, 0x17, 0x78, 0x9b, + 0x46, 0xb3, 0xa2, 0x5d, 0xd2, 0x9e, 0x2d, 0xd7, 0xce, 0xfd, 0xf0, 0xfe, 0xdc, 0x63, 0x87, 0xf7, + 0xe7, 0xc6, 0x16, 0x23, 0x10, 0x56, 0xf1, 0xd0, 0x73, 0x30, 0x6a, 0x74, 0x02, 0xb7, 0x6a, 0xee, + 0x56, 0x86, 0x2e, 0x69, 0xcf, 0x96, 0x6a, 0x53, 0xa2, 0xca, 0x68, 0x95, 0x17, 0xe3, 0x10, 0x8e, + 0xae, 0x40, 0x99, 0xdc, 0x35, 0xed, 0x8e, 0x6f, 0xed, 0x93, 0xca, 0x30, 0x43, 0x9e, 0x11, 0xc8, + 0xe5, 0x6b, 0x21, 0x00, 0x47, 0x38, 0x94, 0xb6, 0xe3, 0xae, 0xba, 0xa6, 0x61, 0x57, 0x0a, 0x71, + 0xda, 0xeb, 0xbc, 0x18, 0x87, 0x70, 0x74, 0x19, 0x8a, 0x8e, 0xfb, 0xba, 0x61, 0x05, 0x95, 0x11, + 0x86, 0x39, 0x29, 0x30, 0x8b, 0xeb, 0xac, 0x14, 0x0b, 0xe8, 0xfc, 0x7f, 0x8c, 0xc1, 0x14, 0xfd, + 0xf6, 0x6b, 0x54, 0x39, 0x74, 0xa6, 0x4b, 0xe8, 0x69, 0x18, 0xee, 0x78, 0xb6, 0xf8, 0xe2, 0x31, + 0x51, 0x71, 0xf8, 0x36, 0x5e, 0xc5, 0xb4, 0x1c, 0xbd, 0x08, 0xe3, 0xe4, 0xae, 0xb9, 0x63, 0x38, + 0x4d, 0xb2, 0x6e, 0xb4, 0x08, 0xfb, 0xcc, 0x72, 0xed, 0xbc, 0xc0, 0x1b, 0xbf, 0xa6, 0xc0, 0x70, + 0x0c, 0x53, 0xad, 0xb9, 0x79, 0xd0, 0xe6, 0xdf, 0x9c, 0x51, 0x93, 0xc2, 0x70, 0x0c, 0x13, 0x5d, + 0x05, 0xf0, 0xdc, 0x4e, 0x60, 0x39, 0xcd, 0x9b, 0xe4, 0x80, 0x7d, 0x7c, 0xb9, 0x86, 0x44, 0x3d, + 0xc0, 0x12, 0x82, 0x15, 0x2c, 0xf4, 0x1b, 0x30, 0x63, 0xba, 0x8e, 0x43, 0xcc, 0xc0, 0x72, 0x9d, + 0x9a, 0x61, 0xee, 0xba, 0xdb, 0xdb, 0xac, 0x35, 0xc6, 0xae, 0xbe, 0xb8, 0x70, 0x6c, 0x23, 0xe3, + 0x56, 0xb2, 0x20, 0xea, 0xd7, 0x1e, 0x3f, 0xbc, 0x3f, 0x37, 0xb3, 0x98, 0x24, 0x8b, 0xd3, 0x9c, + 0xd0, 0xf3, 0x50, 0xfa, 0xa2, 0xef, 0x3a, 0x35, 0xb7, 0x71, 0x50, 0x29, 0xb2, 0x3e, 0x98, 0x16, + 0x02, 0x97, 0x5e, 0xd5, 0x6f, 0xad, 0xd3, 0x72, 0x2c, 0x31, 0xd0, 0x6d, 0x18, 0x0e, 0x6c, 0xbf, + 0x32, 0xca, 0xc4, 0x7b, 0xa9, 0x67, 0xf1, 0x36, 0x57, 0x75, 0xae, 0xb6, 0xb5, 0x51, 0xda, 0x57, + 0x9b, 0xab, 0x3a, 0xa6, 0xf4, 0xd0, 0x7b, 0x1a, 0x94, 0xa8, 0x7d, 0x35, 0x8c, 0xc0, 0xa8, 0x94, + 0x2e, 0x0d, 0x3f, 0x3b, 0x76, 0xf5, 0xf3, 0x0b, 0x7d, 0x39, 0x98, 0x85, 0x84, 0xb6, 0x2c, 0xac, + 0x09, 0xf2, 0xd7, 0x9c, 0xc0, 0x3b, 0x88, 0xbe, 0x31, 0x2c, 0xc6, 0x92, 0x3f, 0xfa, 0x7d, 0x0d, + 0xa6, 0xc2, 0x5e, 0x5d, 0x22, 0xa6, 0x6d, 0x78, 0xa4, 0x52, 0x66, 0x1f, 0xfc, 0x46, 0x1e, 0x32, + 0xc5, 0x29, 0x8b, 0xe6, 0x38, 0x77, 0x78, 0x7f, 0x6e, 0x2a, 0x01, 0xc2, 0x49, 0x29, 0xd0, 0xfb, + 0x1a, 0x8c, 0xef, 0x75, 0x48, 0x47, 0x8a, 0x05, 0x4c, 0xac, 0xdb, 0x39, 0x88, 0xb5, 0xa1, 0x90, + 0x15, 0x32, 0x4d, 0x53, 0x65, 0x57, 0xcb, 0x71, 0x8c, 0x39, 0xfa, 0x32, 0x94, 0xd9, 0xef, 0x9a, + 0xe5, 0x34, 0x2a, 0x63, 0x4c, 0x12, 0x9c, 0x97, 0x24, 0x94, 0xa6, 0x10, 0x63, 0x82, 0xfa, 0x19, + 0x59, 0x88, 0x23, 0x9e, 0xe8, 0x0e, 0x8c, 0x0a, 0x97, 0x56, 0x19, 0x67, 0xec, 0xeb, 0x39, 0xb0, + 0x8f, 0x79, 0xd7, 0xda, 0x18, 0xf5, 0x5a, 0xa2, 0x08, 0x87, 0xdc, 0xd0, 0x1b, 0x50, 0x30, 0x3a, + 0xc1, 0x4e, 0x65, 0xe2, 0x84, 0x66, 0x50, 0x33, 0x7c, 0xcb, 0xac, 0x76, 0x82, 0x9d, 0x5a, 0xe9, + 0xf0, 0xfe, 0x5c, 0x81, 0xfe, 0x87, 0x19, 0x45, 0x84, 0xa1, 0xdc, 0xf1, 0x6c, 0x9d, 0x98, 0x1e, + 0x09, 0x2a, 0x93, 0x8c, 0xfc, 0xc7, 0x17, 0xf8, 0x78, 0x41, 0x29, 0x2c, 0xd0, 0xa1, 0x6b, 0x61, + 0xff, 0x85, 0x05, 0x8e, 0x71, 0x93, 0x1c, 0xe8, 0xc4, 0x26, 0x66, 0xe0, 0x7a, 0xbc, 0x99, 0x6e, + 0xe3, 0x55, 0x0e, 0xc1, 0x11, 0x19, 0x14, 0x40, 0x71, 0xdb, 0xb2, 0x03, 0xe2, 0x55, 0xa6, 0x72, + 0x69, 0x25, 0xc5, 0xaa, 0x96, 0x19, 0xdd, 0x1a, 0x50, 0x8f, 0xcd, 0xff, 0xc7, 0x82, 0xd7, 0xec, + 0xcb, 0x30, 0x11, 0x33, 0x39, 0x34, 0x0d, 0xc3, 0xbb, 0xe4, 0x80, 0xbb, 0x6b, 0x4c, 0xff, 0x45, + 0xe7, 0x61, 0x64, 0xdf, 0xb0, 0x3b, 0xc2, 0x35, 0x63, 0xfe, 0xe3, 0xa5, 0xa1, 0x17, 0xb5, 0xf9, + 0x1f, 0x69, 0xf0, 0x64, 0x57, 0x63, 0xa1, 0xe3, 0x4b, 0xa3, 0xe3, 0x19, 0x5b, 0x36, 0x61, 0xd4, + 0x94, 0xf1, 0x65, 0x89, 0x17, 0xe3, 0x10, 0x4e, 0x1d, 0x32, 0x1d, 0xc6, 0x96, 0x88, 0x4d, 0x02, + 0x22, 0x46, 0x3a, 0xe9, 0x90, 0xab, 0x12, 0x82, 0x15, 0x2c, 0xea, 0x11, 0x2d, 0x27, 0x20, 0x9e, + 0x63, 0xd8, 0x62, 0xb8, 0x93, 0xde, 0x62, 0x45, 0x94, 0x63, 0x89, 0xa1, 0x8c, 0x60, 0x85, 0x23, + 0x47, 0xb0, 0xcf, 0xc0, 0xb9, 0x0c, 0xed, 0x56, 0xaa, 0x6b, 0x47, 0x56, 0xff, 0xd3, 0x21, 0xb8, + 0x90, 0x6d, 0xa7, 0xe8, 0x12, 0x14, 0x1c, 0x3a, 0xc0, 0xf1, 0x81, 0x70, 0x5c, 0x10, 0x28, 0xb0, + 0x81, 0x8d, 0x41, 0xd4, 0x06, 0x1b, 0xea, 0xa9, 0xc1, 0x86, 0x8f, 0xd5, 0x60, 0xb1, 0x00, 0xa1, + 0x70, 0x8c, 0x00, 0xe1, 0x98, 0xa3, 0x3e, 0x25, 0x6c, 0x78, 0xcd, 0x4e, 0x8b, 0x2a, 0x21, 0x1b, + 0x9c, 0xca, 0x11, 0xe1, 0x6a, 0x08, 0xc0, 0x11, 0xce, 0xfc, 0x7b, 0x23, 0xf0, 0x64, 0xf5, 0x5e, + 0xc7, 0x23, 0x4c, 0x47, 0xfd, 0x1b, 0x9d, 0x2d, 0x35, 0x60, 0xb8, 0x04, 0x85, 0xed, 0xbd, 0x86, 0x93, 0x6c, 0xa8, 0xe5, 0x8d, 0xa5, 0x75, 0xcc, 0x20, 0xa8, 0x0d, 0xe7, 0xfc, 0x1d, 0xc3, 0x23, - 0x8d, 0x9a, 0x69, 0x12, 0xdf, 0xbf, 0x45, 0x0e, 0x64, 0xe8, 0x70, 0x6c, 0x43, 0x7c, 0xe2, 0xf0, - 0xfe, 0xec, 0x39, 0x3d, 0x4d, 0x05, 0x67, 0x91, 0x46, 0x0d, 0x98, 0x4c, 0x14, 0xb3, 0x46, 0x3f, + 0x8d, 0xaa, 0x69, 0x12, 0xdf, 0xbf, 0x49, 0x0e, 0x64, 0xe8, 0x70, 0x6c, 0x43, 0x7c, 0xe2, 0xf0, + 0xfe, 0xdc, 0x39, 0x3d, 0x4d, 0x05, 0x67, 0x91, 0x46, 0x0d, 0x98, 0x4a, 0x14, 0xb3, 0x46, 0x3f, 0x36, 0x37, 0x36, 0x70, 0x24, 0xb8, 0xe1, 0x24, 0x49, 0xaa, 0x00, 0x3b, 0x9d, 0x2d, 0xf6, 0x2d, - 0x3c, 0x28, 0x91, 0x0a, 0x70, 0x93, 0x17, 0xe3, 0x10, 0x8e, 0x7e, 0x5f, 0x1d, 0x8a, 0x8b, 0x6c, - 0x28, 0xde, 0xee, 0xd7, 0xad, 0x76, 0xeb, 0x91, 0x1e, 0x06, 0xe5, 0xc8, 0x89, 0x95, 0x1e, 0x15, - 0x27, 0xf6, 0xd3, 0x22, 0x3c, 0xc5, 0x3e, 0x9d, 0xd9, 0xac, 0x1e, 0xb8, 0x9e, 0xd1, 0x24, 0xaa, - 0x3e, 0xbe, 0x02, 0xc8, 0xe7, 0xa5, 0x35, 0xd3, 0x74, 0x3b, 0x4e, 0xb0, 0x1e, 0x99, 0xf1, 0x8c, - 0x68, 0x0b, 0xa4, 0xa7, 0x30, 0x70, 0x46, 0x2d, 0xd4, 0x84, 0xa9, 0x28, 0xb6, 0xd3, 0x03, 0xcf, - 0x72, 0x9a, 0xbd, 0xa9, 0xed, 0xf9, 0xc3, 0xfb, 0xb3, 0x53, 0x8b, 0x09, 0x12, 0x38, 0x45, 0x94, - 0xda, 0x24, 0x1b, 0x81, 0x99, 0xac, 0xc3, 0x71, 0x9b, 0xdc, 0x08, 0x01, 0x38, 0xc2, 0x89, 0x05, - 0x98, 0x85, 0x07, 0x06, 0x98, 0x4f, 0xc3, 0x70, 0xc3, 0xde, 0x13, 0x7e, 0x41, 0x06, 0xf5, 0x4b, - 0xab, 0x1b, 0x98, 0x96, 0xd3, 0xd8, 0x2c, 0xd2, 0xce, 0x12, 0xd3, 0x4e, 0x2b, 0x0f, 0xed, 0xec, - 0xd2, 0x45, 0x27, 0x52, 0xd0, 0x91, 0xd3, 0x53, 0x50, 0xf4, 0x12, 0x8c, 0x37, 0x88, 0xe9, 0x36, - 0xc8, 0x1a, 0xf1, 0x7d, 0xa3, 0x49, 0xaa, 0x65, 0xd6, 0x70, 0x8f, 0x0b, 0x41, 0xc7, 0x97, 0x54, - 0x20, 0x8e, 0xe3, 0xf6, 0xa7, 0xdd, 0x3f, 0x2e, 0xc1, 0x0c, 0x6b, 0x3a, 0x9d, 0x78, 0xfb, 0x96, - 0x49, 0x16, 0x3a, 0xbe, 0xaa, 0xdb, 0x59, 0xfa, 0xa8, 0x0d, 0x5c, 0x1f, 0x87, 0x8e, 0xa1, 0x8f, - 0x57, 0xa1, 0x12, 0xb8, 0x6d, 0xcb, 0xcc, 0x52, 0xe0, 0xcd, 0x10, 0x80, 0x23, 0x1c, 0xb4, 0x04, - 0x53, 0x7e, 0x67, 0xcb, 0x37, 0x3d, 0xab, 0x4d, 0xf9, 0x2a, 0x5e, 0xb4, 0x2a, 0xea, 0x4d, 0xe9, - 0x09, 0x38, 0x4e, 0xd5, 0x08, 0x67, 0x4e, 0xc5, 0x9c, 0x67, 0x4e, 0xbd, 0x4d, 0xdf, 0xbe, 0xa3, - 0x9a, 0xcf, 0x08, 0x33, 0x9f, 0x66, 0x1e, 0xe6, 0x93, 0xa9, 0x03, 0x27, 0x32, 0x9e, 0xf2, 0x29, - 0x1a, 0xcf, 0x1b, 0xf0, 0xc4, 0x76, 0xc7, 0xb6, 0x0f, 0x36, 0x3a, 0x86, 0x6d, 0x6d, 0x5b, 0xa4, - 0x41, 0x3b, 0xca, 0x6f, 0x1b, 0x26, 0x9f, 0xef, 0x55, 0x16, 0x66, 0x85, 0xc8, 0x4f, 0x2c, 0x67, - 0xa3, 0xe1, 0x6e, 0xf5, 0xfb, 0x33, 0xad, 0x9f, 0x68, 0x30, 0xbe, 0x60, 0x05, 0x5b, 0x1d, 0x73, - 0x97, 0x04, 0x74, 0x72, 0x80, 0x3c, 0x28, 0x6e, 0xd1, 0x39, 0x83, 0x30, 0xa1, 0x8d, 0x3e, 0x9b, - 0x47, 0x12, 0x8f, 0x26, 0x22, 0x95, 0xc3, 0xfb, 0xb3, 0x45, 0xf6, 0x13, 0x73, 0x56, 0xe8, 0x0e, - 0x80, 0x4b, 0xe7, 0x24, 0x9b, 0xee, 0x2e, 0x71, 0x7a, 0x1b, 0x4b, 0x26, 0x68, 0xb0, 0x78, 0xbb, - 0x16, 0x56, 0xc6, 0x0a, 0xa1, 0xb9, 0x1f, 0x68, 0x80, 0xd2, 0xfc, 0xd1, 0x6d, 0x28, 0x77, 0x7c, - 0x1a, 0x51, 0x8b, 0x11, 0xf0, 0xd8, 0xbc, 0xc6, 0xa8, 0x4a, 0xdd, 0x11, 0x55, 0xb1, 0x24, 0x42, - 0x09, 0xb6, 0x0d, 0xdf, 0x7f, 0xd7, 0xf5, 0x1a, 0xbd, 0x09, 0xcf, 0x08, 0xd6, 0x45, 0x55, 0x2c, - 0x89, 0xcc, 0xfd, 0x62, 0x04, 0xce, 0x4b, 0xc1, 0x13, 0xc3, 0x78, 0x83, 0x05, 0xc2, 0x37, 0x5d, - 0x77, 0xf7, 0xb6, 0xb3, 0x6c, 0x39, 0x96, 0xbf, 0x23, 0xc2, 0x79, 0x39, 0x8c, 0x2f, 0xa5, 0x30, - 0x70, 0x46, 0x2d, 0xf4, 0x2d, 0xd5, 0x40, 0x87, 0x98, 0x81, 0x1a, 0x79, 0x75, 0xf6, 0x49, 0x4d, - 0x73, 0xe4, 0x5d, 0xb2, 0xb5, 0xe3, 0xba, 0xbb, 0x22, 0x30, 0x5d, 0xeb, 0x53, 0x9e, 0xd7, 0x38, - 0xb5, 0x45, 0xd7, 0x09, 0xc8, 0xdd, 0x80, 0xcf, 0xb0, 0x45, 0x19, 0x0e, 0x59, 0xa1, 0x2f, 0x8a, - 0x19, 0x76, 0x81, 0xb1, 0x5c, 0xcd, 0xab, 0x09, 0x32, 0xe7, 0xdc, 0x73, 0x50, 0xe2, 0xb5, 0x58, - 0xb8, 0x5b, 0xe1, 0xae, 0x82, 0x87, 0xab, 0x58, 0x40, 0xd0, 0x27, 0xa0, 0xe8, 0xbe, 0xeb, 0x88, - 0xe8, 0xb3, 0xb2, 0xf0, 0x84, 0x68, 0xb0, 0xc9, 0x25, 0xd2, 0xf6, 0x88, 0x69, 0x04, 0xa4, 0x71, - 0x9b, 0x82, 0x31, 0xc7, 0x42, 0xbf, 0x09, 0x40, 0x45, 0x24, 0x26, 0xd5, 0x2c, 0x16, 0x10, 0x54, - 0x16, 0x9e, 0x12, 0x75, 0xce, 0x47, 0x75, 0xea, 0x12, 0x07, 0x2b, 0xf8, 0xe8, 0x26, 0x4c, 0x78, - 0xa4, 0xed, 0xfa, 0x56, 0xe0, 0x7a, 0x07, 0xba, 0xdd, 0x69, 0x32, 0xaf, 0x58, 0x59, 0xb8, 0x24, - 0x28, 0x54, 0x23, 0x0a, 0x38, 0x86, 0x87, 0x13, 0xf5, 0xd0, 0x07, 0x1a, 0x8c, 0xc9, 0x22, 0x8b, - 0xf8, 0xd5, 0x0a, 0x53, 0x29, 0x9c, 0x57, 0x7b, 0x46, 0xec, 0xa3, 0xf4, 0x28, 0x56, 0xf8, 0xe1, - 0x18, 0x77, 0xc5, 0xcd, 0xc3, 0xa3, 0x12, 0xc4, 0xdf, 0x83, 0x73, 0x19, 0x5f, 0x8b, 0x9e, 0x09, - 0xf5, 0x81, 0x47, 0xeb, 0xe3, 0xe2, 0xe3, 0x8b, 0x31, 0x2d, 0x78, 0x39, 0xd5, 0x8f, 0x3c, 0x3e, - 0xb9, 0x20, 0xb0, 0x27, 0x8e, 0xee, 0xbd, 0xb9, 0x7f, 0xad, 0xc0, 0x8c, 0x64, 0x4e, 0x87, 0x58, - 0xe2, 0xa9, 0x7e, 0x47, 0xb1, 0x4c, 0xed, 0xf4, 0x2c, 0x33, 0xae, 0xda, 0x43, 0x7d, 0xab, 0xf6, - 0xf0, 0x09, 0x55, 0xfb, 0x77, 0x93, 0xaa, 0x5d, 0x60, 0xaa, 0xfd, 0x7a, 0x5e, 0xaa, 0xcd, 0xdb, - 0xbb, 0x47, 0x05, 0x3f, 0x8e, 0x2b, 0x79, 0x1d, 0x46, 0x0d, 0x36, 0x31, 0xe7, 0x03, 0x6b, 0xa9, - 0x97, 0xb1, 0x69, 0xf2, 0xf0, 0xfe, 0xec, 0x68, 0x2d, 0xaa, 0x8d, 0x55, 0x52, 0xe8, 0x6d, 0x18, - 0x17, 0xbd, 0x24, 0x12, 0x88, 0x23, 0xbd, 0xd0, 0x9e, 0xa6, 0xf3, 0x85, 0xd7, 0xd4, 0xfa, 0x38, - 0x4e, 0x0e, 0xbd, 0x0a, 0x17, 0xb6, 0xc2, 0xe6, 0xf1, 0x59, 0xf3, 0x2c, 0x18, 0x3e, 0xb9, 0x83, - 0x57, 0x85, 0x7f, 0xba, 0x28, 0x5a, 0xe8, 0x42, 0xa2, 0x11, 0x05, 0x16, 0xee, 0x52, 0xbb, 0xcb, - 0x00, 0x5a, 0x39, 0xd1, 0x00, 0x1a, 0x8b, 0x70, 0x21, 0x97, 0x08, 0xb7, 0xbb, 0x09, 0x9e, 0x28, - 0xc2, 0x1d, 0x3d, 0xc5, 0x08, 0x57, 0x4c, 0x3a, 0xc6, 0xf2, 0x9d, 0x74, 0xf4, 0xe7, 0x51, 0xbf, - 0xa5, 0xc1, 0x93, 0x5d, 0xad, 0x0c, 0x5d, 0x8b, 0xb9, 0x17, 0x2d, 0xbe, 0x82, 0xd6, 0xc5, 0xa9, - 0xf4, 0xeb, 0x67, 0xff, 0xbc, 0x08, 0xe7, 0x16, 0x0d, 0x9b, 0x38, 0x0d, 0x23, 0xe6, 0x60, 0x9f, - 0x83, 0xb2, 0x6f, 0xee, 0x90, 0x46, 0xc7, 0x0e, 0xb3, 0x32, 0xb2, 0x87, 0x75, 0x51, 0x8e, 0x25, - 0x86, 0x4c, 0x1b, 0xef, 0x1b, 0xb6, 0xe0, 0x1f, 0x4f, 0x1b, 0xef, 0xcb, 0xb4, 0xf1, 0xbe, 0x61, - 0xa3, 0x17, 0x61, 0x42, 0xe4, 0x43, 0x5d, 0x67, 0xc9, 0x08, 0x88, 0x5f, 0x1d, 0x66, 0x1e, 0x03, - 0x51, 0x79, 0xaf, 0xc7, 0x20, 0x38, 0x81, 0x49, 0x39, 0x05, 0x56, 0x8b, 0xdc, 0x73, 0x9d, 0x70, - 0x22, 0x2a, 0x39, 0x6d, 0x8a, 0x72, 0x2c, 0x31, 0xd0, 0x37, 0xd3, 0x09, 0xbd, 0x2f, 0xf4, 0xa9, - 0x7c, 0x19, 0x8d, 0xd5, 0x83, 0x29, 0x7c, 0x55, 0x83, 0xd1, 0x36, 0xf1, 0x7c, 0xcb, 0x0f, 0x88, - 0x63, 0x12, 0xe1, 0x01, 0x6f, 0xe7, 0x61, 0x10, 0xf5, 0x88, 0x2c, 0xf7, 0x95, 0x4a, 0x01, 0x56, - 0x99, 0x9e, 0xcd, 0x8c, 0xb3, 0x3f, 0xc3, 0xb9, 0x0b, 0xe7, 0x17, 0x8d, 0xc0, 0xdc, 0xe9, 0xb4, - 0xb9, 0x51, 0x76, 0x3c, 0x23, 0xb0, 0x5c, 0x07, 0x3d, 0x0b, 0x23, 0xc4, 0x31, 0xb6, 0x6c, 0xd2, - 0x48, 0x2e, 0x87, 0x5c, 0xe7, 0xc5, 0x38, 0x84, 0xa3, 0x4f, 0xc2, 0x68, 0xcb, 0xb8, 0xbb, 0x24, - 0x6a, 0x0a, 0x35, 0x95, 0x9b, 0x05, 0xd6, 0x22, 0x10, 0x56, 0xf1, 0xe6, 0xbe, 0x04, 0xe7, 0x39, - 0xcb, 0x35, 0xa3, 0xad, 0xb4, 0xe8, 0x31, 0x56, 0x1e, 0x96, 0x60, 0xca, 0xf4, 0x88, 0x11, 0x90, - 0x95, 0xed, 0x75, 0x37, 0xb8, 0x7e, 0xd7, 0xf2, 0x03, 0xb1, 0x04, 0x21, 0x73, 0x27, 0x8b, 0x09, - 0x38, 0x4e, 0xd5, 0x98, 0xfb, 0xf6, 0x08, 0xa0, 0xeb, 0x2d, 0x2b, 0x08, 0xe2, 0x01, 0xd0, 0x65, - 0x28, 0x6d, 0x79, 0xee, 0xae, 0x8c, 0xc2, 0xe4, 0x32, 0xc2, 0x02, 0x2b, 0xc5, 0x02, 0x4a, 0x7d, - 0x8a, 0xb9, 0x63, 0x38, 0x0e, 0xb1, 0xa3, 0x90, 0x45, 0xfa, 0x94, 0x45, 0x09, 0xc1, 0x0a, 0x16, - 0xdb, 0x56, 0xc1, 0x7f, 0x29, 0x79, 0xa2, 0x68, 0x5b, 0x45, 0x04, 0xc2, 0x2a, 0x5e, 0x6c, 0x1a, - 0x5b, 0xc8, 0x7b, 0x1a, 0x5b, 0xcc, 0x61, 0x1a, 0x9b, 0xbd, 0xdd, 0xa0, 0x74, 0x26, 0xdb, 0x0d, - 0x46, 0x8e, 0xbb, 0xdd, 0xa0, 0x9c, 0x73, 0xd2, 0xec, 0x43, 0xd5, 0x25, 0xf2, 0x29, 0xd1, 0x3b, - 0xfd, 0xda, 0x7f, 0x4a, 0x3d, 0x4f, 0x14, 0x1c, 0x3c, 0x32, 0xf3, 0xa2, 0x8f, 0x86, 0x60, 0x2a, - 0xe9, 0x72, 0xd1, 0x3d, 0x18, 0x31, 0xb9, 0x87, 0x12, 0x33, 0x12, 0xbd, 0xef, 0x81, 0x26, 0xed, - 0xef, 0xc4, 0x9a, 0x3c, 0x87, 0xe0, 0x90, 0x21, 0xfa, 0x8a, 0x06, 0x15, 0x33, 0x74, 0x52, 0x22, - 0xe3, 0xd3, 0x37, 0xfb, 0x0c, 0xa7, 0xc7, 0x17, 0xda, 0x25, 0x04, 0x47, 0x4c, 0xe7, 0x7e, 0x3a, - 0x04, 0xa3, 0xaa, 0x7f, 0xfa, 0x82, 0xa2, 0x65, 0xbc, 0x3d, 0x7e, 0x55, 0xb1, 0x5d, 0xb9, 0xf7, - 0x2b, 0x12, 0x82, 0x62, 0x53, 0x6b, 0xbe, 0xbd, 0x45, 0x43, 0x1b, 0xda, 0x39, 0x91, 0x9f, 0x8a, - 0xca, 0x14, 0xc5, 0x69, 0x43, 0xc1, 0x6f, 0x13, 0x53, 0x7c, 0xee, 0x7a, 0x7e, 0x6a, 0xa3, 0xb7, - 0x89, 0x19, 0x39, 0x74, 0xfa, 0x0b, 0x33, 0x4e, 0xe8, 0x2e, 0x94, 0xfc, 0xc0, 0x08, 0x3a, 0xbe, - 0xc8, 0x06, 0xe5, 0xa8, 0xaa, 0x3a, 0xa3, 0x1b, 0x79, 0x71, 0xfe, 0x1b, 0x0b, 0x7e, 0x73, 0x37, - 0x60, 0x3a, 0xa5, 0xd7, 0xd4, 0xb5, 0x93, 0xbb, 0x6d, 0x8f, 0xf8, 0x34, 0x3a, 0x4a, 0x86, 0x8b, - 0xd7, 0x25, 0x04, 0x2b, 0x58, 0x73, 0x3f, 0xd3, 0x60, 0x52, 0xa1, 0xb4, 0x6a, 0xf9, 0x01, 0xfa, - 0x7c, 0xaa, 0xab, 0xe6, 0x8f, 0xd7, 0x55, 0xb4, 0x36, 0xeb, 0x28, 0x69, 0xdf, 0x61, 0x89, 0xd2, - 0x4d, 0x2e, 0x14, 0xad, 0x80, 0xb4, 0x7c, 0x91, 0xd1, 0x7b, 0x25, 0xbf, 0x36, 0x8b, 0x32, 0x0f, - 0x2b, 0x94, 0x01, 0xe6, 0x7c, 0xe6, 0xfe, 0x6e, 0x39, 0xf6, 0x89, 0xb4, 0xff, 0xd8, 0xae, 0x36, - 0x5a, 0xb4, 0xd0, 0xf1, 0x95, 0x75, 0xc6, 0x68, 0x57, 0x9b, 0x02, 0xc3, 0x31, 0x4c, 0xb4, 0x07, - 0xe5, 0x80, 0xb4, 0xda, 0xb6, 0x11, 0x84, 0x4b, 0xe1, 0x37, 0xfa, 0xfc, 0x82, 0x4d, 0x41, 0x8e, - 0x8f, 0x52, 0xe1, 0x2f, 0x2c, 0xd9, 0xa0, 0x16, 0x8c, 0xf8, 0x7c, 0x4d, 0x41, 0xe8, 0xd9, 0x72, - 0x9f, 0x1c, 0xc3, 0x15, 0x0a, 0xe6, 0x3c, 0xc4, 0x0f, 0x1c, 0xf2, 0x40, 0x5f, 0x82, 0x62, 0xcb, - 0x72, 0x2c, 0x57, 0x24, 0x11, 0xde, 0xc8, 0xd7, 0x90, 0xe6, 0xd7, 0x28, 0x6d, 0x3e, 0x0c, 0xc8, - 0xfe, 0x62, 0x65, 0x98, 0xb3, 0x65, 0xfb, 0xdf, 0x4c, 0x11, 0x54, 0x8b, 0x18, 0xfd, 0xf3, 0x39, - 0xcb, 0x20, 0x63, 0xf6, 0xf8, 0x68, 0x14, 0x16, 0x63, 0xc9, 0x1f, 0xdd, 0x83, 0xc2, 0xb6, 0x65, - 0x13, 0xb1, 0xbc, 0xfa, 0x7a, 0xce, 0x72, 0x2c, 0x5b, 0x36, 0xe1, 0x32, 0x44, 0x1b, 0x30, 0x2c, - 0x9b, 0x60, 0xc6, 0x93, 0x35, 0x84, 0x47, 0x38, 0x0d, 0xb1, 0x40, 0x95, 0x77, 0x43, 0x60, 0x41, - 0x3e, 0xd1, 0x10, 0x61, 0x31, 0x96, 0xfc, 0xd1, 0x6f, 0x6b, 0x51, 0x86, 0x8d, 0x6f, 0x4a, 0x7c, - 0x33, 0x67, 0x59, 0x44, 0xba, 0x85, 0x8b, 0x22, 0xc3, 0xf6, 0x54, 0xce, 0xed, 0x1e, 0x14, 0x8c, - 0xd6, 0x5e, 0x5b, 0x84, 0x2a, 0x79, 0xf7, 0x48, 0xad, 0xb5, 0xd7, 0x4e, 0xf4, 0x48, 0x6d, 0x6d, - 0xa3, 0x8e, 0x19, 0x4f, 0x6a, 0x1a, 0xbb, 0xc6, 0xf6, 0x6e, 0x98, 0x4c, 0xc9, 0xdb, 0x34, 0x6e, - 0x51, 0xda, 0x09, 0xd3, 0x60, 0x65, 0x98, 0xb3, 0xa5, 0xdf, 0xde, 0xda, 0x0b, 0x82, 0xea, 0xe8, - 0x40, 0xbe, 0x7d, 0x6d, 0x2f, 0x08, 0x12, 0xdf, 0xbe, 0xb6, 0xb1, 0xb9, 0x89, 0x19, 0x4f, 0xca, - 0xdb, 0x31, 0x02, 0xbf, 0x3a, 0x36, 0x10, 0xde, 0xeb, 0x46, 0xe0, 0x27, 0x78, 0xaf, 0xd7, 0x36, - 0x75, 0xcc, 0x78, 0xa2, 0x7d, 0x18, 0xf6, 0x1d, 0xbf, 0x3a, 0xce, 0x58, 0xbf, 0x96, 0x33, 0x6b, - 0xdd, 0x11, 0x9c, 0xe5, 0x0e, 0x0b, 0x7d, 0x5d, 0xc7, 0x94, 0x21, 0xe3, 0xbb, 0xe7, 0x57, 0x27, - 0x06, 0xc3, 0x77, 0x2f, 0xc5, 0x77, 0x83, 0xf2, 0xdd, 0xf3, 0xd1, 0x57, 0x35, 0x28, 0xb5, 0x3b, - 0x5b, 0x7a, 0x67, 0xab, 0x3a, 0xc9, 0x78, 0x7f, 0x2e, 0x67, 0xde, 0x75, 0x46, 0x9c, 0xb3, 0x97, - 0x31, 0x06, 0x2f, 0xc4, 0x82, 0x33, 0x13, 0x82, 0x73, 0xad, 0x4e, 0x0d, 0x44, 0x88, 0x1b, 0x8c, - 0x5a, 0x42, 0x08, 0x5e, 0x88, 0x05, 0xe7, 0x50, 0x08, 0xdb, 0xd8, 0xaa, 0x4e, 0x0f, 0x4a, 0x08, - 0xdb, 0xc8, 0x10, 0xc2, 0x36, 0xb8, 0x10, 0xb6, 0xb1, 0x45, 0x55, 0x7f, 0xa7, 0xb1, 0xed, 0x57, - 0xd1, 0x40, 0x54, 0xff, 0x66, 0x63, 0x3b, 0xa9, 0xfa, 0x37, 0x97, 0x96, 0x75, 0xcc, 0x78, 0x52, - 0x97, 0xe3, 0xdb, 0x86, 0xb9, 0x5b, 0x3d, 0x37, 0x10, 0x97, 0xa3, 0x53, 0xda, 0x09, 0x97, 0xc3, - 0xca, 0x30, 0x67, 0x8b, 0xfe, 0x40, 0x83, 0x51, 0xb1, 0xc5, 0xea, 0x86, 0x67, 0x35, 0xaa, 0xe7, - 0xf3, 0x99, 0x21, 0x26, 0xc5, 0x88, 0x38, 0x70, 0x61, 0x64, 0x76, 0x41, 0x81, 0x60, 0x55, 0x10, - 0xf4, 0xa7, 0x1a, 0x4c, 0x18, 0xb1, 0xcd, 0x74, 0xd5, 0xc7, 0x99, 0x6c, 0x5b, 0x79, 0x0f, 0x09, - 0xf1, 0x1d, 0x7b, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x03, 0x71, 0x42, 0x22, 0xa6, 0xbe, 0x7e, 0xe0, - 0x59, 0x6d, 0x52, 0xbd, 0x30, 0x10, 0xf5, 0xd5, 0x19, 0xf1, 0x84, 0xfa, 0xf2, 0x42, 0x2c, 0x38, - 0xb3, 0xa1, 0x9b, 0xf0, 0x29, 0x79, 0xf5, 0x89, 0x81, 0x0c, 0xdd, 0xe1, 0x84, 0x3f, 0x3e, 0x74, - 0x8b, 0x52, 0x1c, 0x32, 0xa7, 0xba, 0xec, 0x91, 0x86, 0xe5, 0x57, 0xab, 0x03, 0xd1, 0x65, 0x4c, - 0x69, 0x27, 0x74, 0x99, 0x95, 0x61, 0xce, 0x96, 0xba, 0x73, 0xc7, 0xdf, 0xab, 0x3e, 0x39, 0x10, - 0x77, 0xbe, 0xee, 0xef, 0x25, 0xdc, 0xf9, 0xba, 0xbe, 0x81, 0x29, 0x43, 0xe1, 0xce, 0x6d, 0xdf, - 0xf0, 0xaa, 0x33, 0x03, 0x72, 0xe7, 0x94, 0x78, 0xca, 0x9d, 0xd3, 0x42, 0x2c, 0x38, 0x33, 0x2d, - 0x60, 0xa7, 0xa8, 0x2c, 0xb3, 0xfa, 0xb1, 0x81, 0x68, 0xc1, 0x0d, 0x4e, 0x3d, 0xa1, 0x05, 0xa2, - 0x14, 0x87, 0xcc, 0xd1, 0x15, 0x1a, 0xd5, 0xb6, 0x6d, 0xcb, 0x34, 0xfc, 0xea, 0x53, 0x97, 0xb4, - 0x2b, 0x45, 0x3e, 0xf1, 0xc1, 0xa2, 0x0c, 0x4b, 0x28, 0xfa, 0xbe, 0x06, 0x93, 0x89, 0x65, 0xb2, - 0xea, 0xd3, 0x4c, 0x74, 0x33, 0x67, 0xd1, 0x17, 0xe2, 0x5c, 0xf8, 0x27, 0xc8, 0x8d, 0x0d, 0xc9, - 0x15, 0x9a, 0xa4, 0x50, 0xe8, 0x9b, 0x1a, 0x54, 0x64, 0x59, 0xf5, 0x22, 0x13, 0xf1, 0xad, 0x41, - 0x89, 0xc8, 0x85, 0x93, 0xdb, 0xf4, 0xa2, 0x15, 0xf9, 0x48, 0x04, 0xe6, 0xb5, 0x99, 0xce, 0xeb, - 0x81, 0x47, 0x8c, 0x56, 0x75, 0x76, 0x20, 0x5e, 0x1b, 0x47, 0x1c, 0x12, 0x5e, 0x5b, 0x81, 0x60, - 0x55, 0x10, 0xd6, 0xa5, 0x46, 0x7c, 0x97, 0x5c, 0xf5, 0xd2, 0x40, 0xba, 0x34, 0xb9, 0x17, 0x2f, - 0xde, 0xa5, 0x09, 0x28, 0x4e, 0x0a, 0x85, 0xfe, 0x4a, 0x83, 0x69, 0x23, 0xb9, 0x1b, 0xb6, 0xfa, - 0xff, 0x98, 0xa8, 0x64, 0x10, 0xa2, 0xc6, 0x76, 0xdd, 0x32, 0x61, 0x9f, 0x14, 0xc2, 0x4e, 0xa7, - 0xe0, 0x38, 0x2d, 0x1a, 0x0d, 0x52, 0xfc, 0xed, 0xa0, 0x5d, 0x9d, 0x1b, 0x48, 0x90, 0xa2, 0x6f, - 0x07, 0xc9, 0x79, 0x91, 0xbe, 0xbc, 0x59, 0xc7, 0x8c, 0x27, 0x8f, 0xd2, 0x88, 0xe7, 0x59, 0x41, - 0xf5, 0x99, 0xc1, 0x44, 0x69, 0x8c, 0x78, 0x32, 0x4a, 0x63, 0x85, 0x58, 0x70, 0x9e, 0xe9, 0x00, - 0x44, 0xb9, 0x85, 0x8c, 0xfc, 0xed, 0x86, 0x9a, 0xbf, 0x1d, 0xbd, 0xf6, 0x52, 0xcf, 0x19, 0x74, - 0xfd, 0xd7, 0x6a, 0x5e, 0x60, 0x6d, 0x1b, 0x66, 0xa0, 0x24, 0x7f, 0x67, 0xbe, 0xa5, 0xc1, 0x78, - 0x2c, 0x9f, 0x90, 0xc1, 0x7a, 0x27, 0xce, 0x1a, 0xe7, 0xbf, 0xe4, 0xa8, 0x4a, 0xf4, 0x3b, 0x1a, - 0x54, 0x64, 0x66, 0x21, 0x43, 0x9a, 0x46, 0x5c, 0x9a, 0x7e, 0x33, 0xa5, 0x8c, 0x55, 0xb6, 0x24, - 0xb4, 0x6d, 0x62, 0x29, 0x86, 0xc1, 0xb7, 0x8d, 0x64, 0x97, 0x2d, 0xd1, 0x87, 0x1a, 0x8c, 0xa9, - 0x89, 0x86, 0x0c, 0x81, 0x9a, 0x71, 0x81, 0x36, 0xf2, 0xd9, 0x48, 0x74, 0x44, 0x5f, 0xc9, 0x9c, - 0xc3, 0xe0, 0xfb, 0x2a, 0x71, 0x10, 0x54, 0x95, 0xe4, 0x1b, 0x1a, 0x40, 0x94, 0x80, 0xc8, 0x10, - 0x85, 0xc4, 0x45, 0xe9, 0x77, 0x8d, 0x9a, 0xf3, 0xea, 0xde, 0x2a, 0x32, 0x1b, 0x31, 0xf8, 0x56, - 0x59, 0xdb, 0xd8, 0xdc, 0xec, 0x22, 0xc9, 0xd7, 0x35, 0xa8, 0xc8, 0xdc, 0xc4, 0xe0, 0x1b, 0x65, - 0xbd, 0xb6, 0xa9, 0xf3, 0xd9, 0x43, 0x5a, 0x94, 0xaf, 0x69, 0x50, 0x0e, 0x73, 0x15, 0x19, 0x92, - 0x98, 0x71, 0x49, 0xfa, 0xdd, 0xff, 0xa6, 0xaf, 0xeb, 0x5d, 0x9a, 0x84, 0xc9, 0xb1, 0x77, 0x6a, - 0x72, 0x6c, 0x74, 0x93, 0xe3, 0x7d, 0x0d, 0x46, 0x95, 0x3c, 0x46, 0x86, 0x28, 0xdb, 0x71, 0x51, - 0xfa, 0x5d, 0x9e, 0x11, 0xcc, 0xba, 0x4b, 0xa3, 0x24, 0x34, 0x06, 0x2f, 0x8d, 0x60, 0x76, 0xa4, - 0x34, 0x61, 0x66, 0xe3, 0x54, 0xa4, 0xa1, 0xcc, 0xba, 0x9b, 0xb3, 0xcc, 0x72, 0x0c, 0xde, 0x9c, - 0x6f, 0x2e, 0x2d, 0xeb, 0x47, 0x38, 0xb9, 0x28, 0xe5, 0x31, 0x78, 0x7b, 0xe6, 0xbc, 0xb2, 0x65, - 0xf9, 0x8e, 0x06, 0x53, 0xc9, 0xbc, 0x47, 0x86, 0x44, 0xbb, 0x71, 0x89, 0xfa, 0x3d, 0xdf, 0xae, - 0x72, 0xcc, 0x96, 0xeb, 0x4f, 0x34, 0x38, 0x97, 0x91, 0xf3, 0xc8, 0x10, 0xcd, 0x89, 0x8b, 0xf6, - 0xfa, 0xa0, 0x8e, 0x46, 0x26, 0x35, 0x5b, 0x49, 0x7a, 0x0c, 0x5e, 0xb3, 0x05, 0xb3, 0xee, 0xe1, - 0x84, 0x9a, 0xfc, 0x18, 0x7c, 0x38, 0x91, 0xde, 0x5b, 0x91, 0xd4, 0xef, 0x28, 0x0d, 0x32, 0x78, - 0xfd, 0xe6, 0xbc, 0xba, 0x8f, 0x13, 0x61, 0x52, 0x64, 0xf0, 0xe3, 0xc4, 0xba, 0xbe, 0x71, 0xe4, - 0x38, 0x21, 0x13, 0x24, 0xa7, 0x31, 0x4e, 0x30, 0x66, 0xdd, 0x35, 0x46, 0x4d, 0x94, 0x0c, 0x5e, - 0x63, 0x42, 0x6e, 0xd9, 0xf2, 0x7c, 0x57, 0x53, 0x4e, 0xf2, 0x28, 0xd9, 0x8f, 0x0c, 0xb9, 0xdc, - 0xb8, 0x5c, 0x6f, 0x0c, 0x6c, 0x2b, 0xb1, 0x2a, 0xdf, 0x47, 0x1a, 0x4c, 0xc4, 0x53, 0x1f, 0x19, - 0x92, 0x59, 0x71, 0xc9, 0xf4, 0x01, 0x9c, 0x12, 0x4a, 0x7a, 0xee, 0x64, 0xee, 0x63, 0xf0, 0x9e, - 0x5b, 0xe5, 0xd8, 0xbd, 0x2f, 0xb3, 0xd2, 0x1e, 0x83, 0xef, 0xcb, 0xee, 0x07, 0x1f, 0x55, 0xf9, - 0xbe, 0xa7, 0xc1, 0x85, 0xec, 0x5c, 0x47, 0x86, 0x84, 0x7b, 0x71, 0x09, 0xdf, 0x1c, 0xe0, 0xc9, - 0xe6, 0x64, 0xac, 0x22, 0x93, 0x1d, 0x83, 0x8f, 0x55, 0xf4, 0xe5, 0xcd, 0xfa, 0x51, 0x31, 0x5c, - 0x94, 0xf7, 0x38, 0x85, 0x18, 0x8e, 0x33, 0xcb, 0x94, 0x66, 0x2e, 0x88, 0xed, 0x38, 0xe2, 0xdb, - 0x91, 0xd0, 0x3b, 0x72, 0x03, 0x14, 0xdf, 0x27, 0xf4, 0xa9, 0xde, 0x73, 0x2a, 0x47, 0xef, 0x73, - 0xfa, 0xdb, 0x02, 0x4c, 0x26, 0xf2, 0x0b, 0xec, 0x86, 0x0d, 0xfa, 0x93, 0x5d, 0x47, 0xa5, 0xc5, - 0xcf, 0x2c, 0x5f, 0x0f, 0x01, 0x38, 0xc2, 0x41, 0x1f, 0x69, 0x30, 0xf9, 0xae, 0x11, 0x98, 0x3b, - 0x75, 0x23, 0xd8, 0xe1, 0x9b, 0xd5, 0x72, 0xea, 0xbd, 0xd7, 0xe2, 0x54, 0xa3, 0xf4, 0x62, 0x02, - 0x80, 0x93, 0xfc, 0xd1, 0xb3, 0x30, 0xd2, 0x76, 0x6d, 0xdb, 0x72, 0x9a, 0xe2, 0x5e, 0x11, 0x99, - 0x2f, 0xaf, 0xf3, 0x62, 0x1c, 0xc2, 0xe3, 0xf7, 0x41, 0x15, 0x72, 0xd9, 0x06, 0x92, 0x68, 0xd2, - 0x13, 0xed, 0xce, 0x2c, 0x3e, 0x2a, 0xbb, 0x33, 0xff, 0xb9, 0x00, 0x28, 0x3d, 0x06, 0x3e, 0xe8, - 0xc6, 0xb4, 0xcb, 0x50, 0x32, 0x23, 0x55, 0x51, 0xf6, 0x53, 0x8b, 0x1e, 0x15, 0x50, 0x7e, 0xd2, - 0xc1, 0x27, 0x66, 0xc7, 0x23, 0xe9, 0x0b, 0x72, 0x78, 0x39, 0x96, 0x18, 0x3d, 0xde, 0xff, 0xf0, - 0x61, 0xfa, 0xb4, 0xc2, 0x3b, 0xb9, 0x07, 0x03, 0x3d, 0x74, 0xfe, 0x1d, 0x76, 0x1f, 0xce, 0x8e, - 0x38, 0x50, 0x55, 0xea, 0xf9, 0x14, 0x74, 0x4d, 0x56, 0xc6, 0x0a, 0xa1, 0xb3, 0xb9, 0x2d, 0xa2, - 0xcf, 0xeb, 0x4c, 0x4a, 0x30, 0x9d, 0x72, 0x97, 0x67, 0x74, 0x08, 0xf1, 0x39, 0x28, 0xd3, 0xbf, - 0xca, 0x9d, 0x0f, 0xb2, 0x0f, 0x6f, 0x8a, 0x72, 0x2c, 0x31, 0x94, 0x53, 0x79, 0xc3, 0x47, 0x9c, - 0xca, 0x53, 0x0f, 0x1c, 0xe7, 0x79, 0xa5, 0xd7, 0x4b, 0x30, 0xce, 0xb3, 0xf5, 0xe1, 0x61, 0xb9, - 0x22, 0x13, 0x58, 0x5e, 0xd1, 0x71, 0x43, 0x05, 0xe2, 0x38, 0x6e, 0x97, 0xa3, 0x71, 0xa5, 0x13, - 0x1d, 0x8d, 0xfb, 0x20, 0x7d, 0xf9, 0xc3, 0xdb, 0x79, 0x0f, 0x9f, 0x3d, 0x58, 0xd6, 0x15, 0x28, - 0x8b, 0x33, 0x5c, 0x3e, 0xdb, 0x5d, 0x57, 0x11, 0x47, 0x16, 0x44, 0x19, 0x96, 0x50, 0x3a, 0xfa, - 0xf9, 0xbe, 0xfd, 0x2a, 0xf1, 0xac, 0xed, 0x03, 0x71, 0x2c, 0x50, 0x8e, 0x7e, 0x7a, 0x08, 0xc0, - 0x11, 0xce, 0xa3, 0xb8, 0x9f, 0xfe, 0x9f, 0x34, 0x98, 0xe0, 0xe9, 0xad, 0x5a, 0xbb, 0xbd, 0xe8, - 0x91, 0x86, 0x4f, 0x5d, 0x4f, 0xdb, 0xb3, 0xf6, 0x8d, 0x80, 0x84, 0x47, 0xe1, 0x7a, 0x73, 0x3d, - 0x75, 0x59, 0x19, 0x2b, 0x84, 0xd0, 0x33, 0x50, 0x34, 0xda, 0xed, 0x95, 0x25, 0x26, 0xc3, 0x70, - 0xb4, 0x6d, 0xa0, 0x46, 0x0b, 0x31, 0x87, 0xa1, 0x97, 0x61, 0xc2, 0x72, 0xfc, 0xc0, 0xb0, 0x6d, - 0xb6, 0xe7, 0x7e, 0x65, 0x89, 0x39, 0xfa, 0xe1, 0x68, 0x13, 0xc8, 0x4a, 0x0c, 0x8a, 0x13, 0xd8, - 0x73, 0x7f, 0x3f, 0x0a, 0xd3, 0xa9, 0x6c, 0x1d, 0x9a, 0x81, 0x21, 0x8b, 0x1f, 0x52, 0x1a, 0x5e, - 0x00, 0x41, 0x69, 0x68, 0x65, 0x09, 0x0f, 0x59, 0x0d, 0xd5, 0x91, 0x0c, 0x9d, 0x9e, 0x23, 0x91, - 0xe7, 0xfa, 0x87, 0x8f, 0x7b, 0xae, 0x3f, 0x3a, 0x3b, 0x28, 0xce, 0xde, 0x65, 0x1c, 0x7e, 0x8e, - 0xce, 0x1b, 0x62, 0x05, 0xff, 0x58, 0xa7, 0x83, 0x6f, 0x43, 0xd9, 0x68, 0x5b, 0x27, 0x38, 0x1a, - 0xcc, 0x8c, 0xa7, 0x56, 0x5f, 0xe1, 0xe7, 0x82, 0x25, 0x91, 0x81, 0x1f, 0x0a, 0x56, 0x83, 0x81, - 0xf2, 0x03, 0x83, 0x81, 0xcb, 0x50, 0x32, 0xcc, 0xc0, 0xda, 0x27, 0xc2, 0x8e, 0x65, 0x88, 0x51, - 0x63, 0xa5, 0x58, 0x40, 0xc5, 0xad, 0xb6, 0x41, 0x18, 0xf2, 0x42, 0xea, 0x56, 0xdb, 0x10, 0x84, - 0x55, 0x3c, 0xe6, 0x6b, 0x99, 0xd2, 0x84, 0xbe, 0x76, 0x34, 0xe1, 0x6b, 0x55, 0x20, 0x8e, 0xe3, - 0xa2, 0x1a, 0x4c, 0xf2, 0x82, 0x3b, 0x6d, 0xdb, 0x35, 0x1a, 0xb4, 0xfa, 0x58, 0x5c, 0x2b, 0x6e, - 0xc4, 0xc1, 0x38, 0x89, 0xdf, 0xc5, 0x5d, 0x8f, 0xf7, 0xef, 0xae, 0x27, 0xf2, 0x71, 0xd7, 0x49, - 0x8b, 0xec, 0xc1, 0x5d, 0xbf, 0x97, 0x3c, 0x6f, 0xcf, 0x77, 0x69, 0xf6, 0xeb, 0x5a, 0xa9, 0x79, - 0x35, 0xd4, 0x13, 0xf5, 0xc7, 0x3a, 0x67, 0xff, 0x29, 0x18, 0x77, 0xbd, 0xa6, 0xe1, 0x58, 0xf7, - 0x98, 0xc3, 0xf1, 0xd9, 0x6e, 0xcd, 0x0a, 0xd7, 0xd6, 0xdb, 0x2a, 0x00, 0xc7, 0xf1, 0xd0, 0x3d, - 0xa8, 0x34, 0x43, 0x2f, 0x5b, 0x9d, 0xce, 0xc5, 0xcf, 0xc4, 0xbd, 0x36, 0x3f, 0x1e, 0x24, 0xcb, - 0x70, 0xc4, 0x4e, 0x19, 0x95, 0xd0, 0xa3, 0x32, 0x2a, 0xbd, 0x57, 0x66, 0x6e, 0x3c, 0xbe, 0xcc, - 0x71, 0x46, 0x31, 0xdf, 0xa7, 0xa1, 0x22, 0x22, 0x02, 0x31, 0x76, 0x55, 0x16, 0x3e, 0x26, 0x54, - 0xe5, 0x5c, 0xea, 0xde, 0x89, 0x95, 0x25, 0x1c, 0x61, 0x1f, 0x33, 0x00, 0x8c, 0x5d, 0xcb, 0x50, - 0xc8, 0xef, 0x5a, 0x06, 0x1d, 0x1e, 0xe7, 0xe7, 0x6f, 0x75, 0x7d, 0x95, 0x05, 0x28, 0x96, 0xc9, - 0x8f, 0xdf, 0xf2, 0x4b, 0xee, 0x9e, 0x16, 0x1f, 0xf1, 0xf8, 0xf5, 0x2c, 0x24, 0x9c, 0x5d, 0x57, - 0x78, 0x3a, 0xdb, 0x90, 0x9e, 0xae, 0x94, 0xf2, 0x74, 0x11, 0x10, 0xc7, 0x71, 0xbb, 0xb8, 0xa9, - 0x72, 0xff, 0x6e, 0xaa, 0x92, 0x97, 0x9b, 0x8a, 0x6b, 0xdc, 0x09, 0xa3, 0x4a, 0x38, 0x32, 0xaa, - 0x7c, 0x1d, 0x46, 0x7d, 0xd6, 0x93, 0xbc, 0xc3, 0x47, 0x7b, 0xee, 0x70, 0x3d, 0xaa, 0x8d, 0x55, - 0x52, 0x8a, 0xa1, 0x8f, 0x9d, 0xe2, 0x5d, 0x0f, 0x73, 0x50, 0x6a, 0x7a, 0x6e, 0xa7, 0xcd, 0xcf, - 0x0c, 0x08, 0x25, 0xbf, 0xc1, 0x4a, 0xb0, 0x80, 0xf4, 0xe7, 0x0c, 0xbe, 0x5b, 0x81, 0xc9, 0xc4, - 0x3a, 0x63, 0x66, 0x9e, 0x49, 0x3b, 0xe3, 0x3c, 0xd3, 0x25, 0x28, 0x04, 0x34, 0x68, 0x18, 0x8a, - 0x9f, 0x4a, 0x67, 0xd1, 0x02, 0x83, 0x50, 0xe3, 0x31, 0x77, 0x88, 0xb9, 0x1b, 0xde, 0xcb, 0x20, - 0xa2, 0x3f, 0x69, 0x3c, 0x8b, 0x2a, 0x10, 0xc7, 0x71, 0xd1, 0xaf, 0x40, 0xc5, 0x68, 0x34, 0x3c, - 0xe2, 0xfb, 0xe2, 0xd2, 0x99, 0x0a, 0xf7, 0xf9, 0xb5, 0xb0, 0x10, 0x47, 0x70, 0x36, 0x51, 0x6d, - 0x6c, 0xfb, 0x77, 0x7c, 0x91, 0x3d, 0x52, 0x27, 0xaa, 0x4b, 0xcb, 0x3a, 0x2d, 0xc7, 0x12, 0x03, - 0x35, 0x60, 0x72, 0xd7, 0xdb, 0x5a, 0x5c, 0x34, 0xcc, 0x1d, 0x72, 0x92, 0x8c, 0x03, 0xbb, 0x0c, - 0xf6, 0x56, 0x9c, 0x02, 0x4e, 0x92, 0x14, 0x5c, 0x6e, 0x91, 0x83, 0xc0, 0xd8, 0x3a, 0x49, 0x4c, - 0x18, 0x72, 0x51, 0x29, 0xe0, 0x24, 0x49, 0x1a, 0xc1, 0xed, 0x7a, 0x5b, 0xe1, 0x89, 0x76, 0x71, - 0x43, 0x8c, 0x8c, 0xe0, 0x6e, 0x45, 0x20, 0xac, 0xe2, 0xd1, 0x06, 0xdb, 0xf5, 0xb6, 0x30, 0x31, - 0xec, 0x96, 0xb8, 0x84, 0x4f, 0x36, 0xd8, 0x2d, 0x51, 0x8e, 0x25, 0x06, 0x6a, 0x03, 0xa2, 0x5f, - 0xc7, 0xfa, 0x5d, 0x1e, 0xc9, 0x15, 0x93, 0xbe, 0x2b, 0x59, 0x5f, 0x23, 0x91, 0xd4, 0x0f, 0xba, - 0x40, 0xdd, 0xdd, 0xad, 0x14, 0x1d, 0x9c, 0x41, 0x1b, 0xbd, 0x01, 0x4f, 0xec, 0x7a, 0x5b, 0x22, - 0xed, 0x5f, 0xf7, 0x2c, 0xc7, 0xb4, 0xda, 0x06, 0xbf, 0x23, 0x60, 0x34, 0x7e, 0x67, 0xe0, 0xad, - 0x6c, 0x34, 0xdc, 0xad, 0x7e, 0x3c, 0xe9, 0x39, 0x96, 0x4b, 0xd2, 0x33, 0x61, 0xae, 0x27, 0x4a, - 0x7a, 0x8e, 0x3f, 0x2a, 0xc1, 0xca, 0x0f, 0x34, 0x40, 0x6c, 0x87, 0x55, 0xf8, 0xe8, 0x05, 0x73, - 0x7e, 0xe8, 0x2a, 0x54, 0x98, 0xf7, 0x53, 0x0e, 0xbd, 0xca, 0xec, 0xc1, 0x8d, 0x10, 0x80, 0x23, - 0x1c, 0x3a, 0x47, 0x71, 0xed, 0x06, 0x91, 0x37, 0x55, 0xc8, 0x39, 0xca, 0x6d, 0x56, 0x8a, 0x05, - 0x14, 0xdd, 0x80, 0x69, 0x8f, 0x6c, 0x19, 0xb6, 0xe1, 0x98, 0x44, 0x0f, 0x3c, 0x23, 0x20, 0xcd, - 0x03, 0xe1, 0x49, 0xe4, 0x36, 0x56, 0x9c, 0x44, 0xc0, 0xe9, 0x3a, 0x73, 0xff, 0x56, 0x86, 0xa9, - 0xe4, 0xd6, 0xb0, 0x07, 0xe5, 0x6a, 0xaf, 0x42, 0xa5, 0x6d, 0x78, 0x81, 0xa5, 0xdc, 0xe3, 0x21, - 0xbf, 0xaa, 0x1e, 0x02, 0x70, 0x84, 0x43, 0xa7, 0xfd, 0xec, 0x4a, 0x53, 0x21, 0xa1, 0x9c, 0xf6, - 0xb3, 0x2b, 0x4f, 0x31, 0x87, 0x65, 0x5f, 0x0e, 0x51, 0x38, 0xb5, 0xcb, 0x21, 0x1e, 0x8a, 0x3b, - 0x52, 0xdf, 0x4f, 0xa7, 0xc9, 0xde, 0xca, 0x79, 0xdf, 0x5f, 0x6f, 0xd3, 0xae, 0x71, 0x53, 0xd5, - 0x67, 0x71, 0x19, 0xc6, 0x46, 0x1e, 0x22, 0xc5, 0x0c, 0x85, 0xcf, 0x9e, 0x62, 0x45, 0x38, 0xce, - 0x1a, 0xd5, 0xe1, 0xbc, 0x6d, 0xb5, 0x44, 0xc2, 0xcf, 0xaf, 0x13, 0x4f, 0x27, 0xa6, 0xeb, 0x34, - 0x98, 0xa3, 0x1e, 0x8e, 0x12, 0x21, 0xab, 0x19, 0x38, 0x38, 0xb3, 0x26, 0x7a, 0x16, 0x46, 0xf6, - 0x89, 0xc7, 0x0e, 0xef, 0x43, 0xfc, 0x62, 0xf2, 0x57, 0x79, 0x31, 0x0e, 0xe1, 0xe8, 0x0d, 0x28, - 0xf8, 0x86, 0x6f, 0x8b, 0x40, 0xed, 0x04, 0x5b, 0x99, 0x6b, 0xfa, 0xaa, 0x50, 0x0f, 0x96, 0xa2, - 0xa5, 0xbf, 0x31, 0x23, 0x79, 0x46, 0x01, 0x5b, 0xb4, 0xdc, 0x32, 0x7e, 0xd4, 0x72, 0x4b, 0x7f, - 0x4e, 0xf1, 0x7b, 0x25, 0x98, 0x4c, 0xec, 0xf5, 0x7c, 0x90, 0x6b, 0x91, 0x9e, 0x62, 0xe8, 0x08, - 0x4f, 0xf1, 0x1c, 0x94, 0x4d, 0xdb, 0x22, 0x4e, 0xb0, 0xd2, 0x10, 0x1e, 0x25, 0x3a, 0x52, 0xce, - 0xcb, 0x97, 0xb0, 0xc4, 0x38, 0x6b, 0xbf, 0xa2, 0x3a, 0x80, 0xe2, 0x71, 0x2f, 0x9d, 0x29, 0x0d, - 0xf2, 0x8d, 0x9b, 0x7c, 0x8e, 0xb6, 0x27, 0x3a, 0xf6, 0xa1, 0xbf, 0x70, 0x39, 0x5c, 0x64, 0xa9, - 0xe4, 0xbd, 0xc8, 0xd2, 0x9f, 0x8d, 0xfc, 0xe3, 0x10, 0x94, 0xd7, 0x6b, 0x9b, 0x3a, 0xbb, 0x88, - 0xf8, 0xcd, 0xf8, 0x55, 0xcb, 0xfd, 0x08, 0x99, 0xbe, 0x53, 0x79, 0x99, 0x9a, 0x56, 0xcf, 0xd7, - 0x29, 0x57, 0xb8, 0xf5, 0xd1, 0x79, 0x26, 0xaf, 0x8e, 0x16, 0xa1, 0xe0, 0xec, 0xf6, 0xfa, 0x54, - 0x04, 0x6b, 0xb3, 0xf5, 0x5b, 0xe4, 0x00, 0xb3, 0xca, 0xe8, 0x0e, 0x80, 0xe9, 0x91, 0x06, 0x71, - 0x02, 0x4b, 0xbc, 0xd4, 0xd5, 0xdb, 0xfa, 0xc2, 0xa2, 0xac, 0x8c, 0x15, 0x42, 0x73, 0x5f, 0x2f, - 0xc1, 0x54, 0x72, 0x4f, 0xf7, 0x83, 0x5c, 0xce, 0xb3, 0x30, 0xe2, 0x77, 0xd8, 0x05, 0x37, 0xc2, - 0xe9, 0xc8, 0x61, 0x40, 0xe7, 0xc5, 0x38, 0x84, 0x67, 0xbb, 0x92, 0xe1, 0x33, 0x71, 0x25, 0x85, - 0xe3, 0xba, 0x92, 0xbc, 0x03, 0x9a, 0xf7, 0xd3, 0xaf, 0x20, 0xbc, 0x95, 0xf3, 0x2e, 0xfc, 0x1e, - 0x7c, 0x09, 0x11, 0x56, 0x3d, 0x92, 0xcb, 0xd5, 0x30, 0xa1, 0x21, 0xa6, 0xd6, 0x51, 0x1f, 0xc1, - 0x1b, 0xfb, 0x7e, 0x52, 0x84, 0x89, 0xf8, 0x26, 0x4d, 0x3a, 0x2d, 0xde, 0x71, 0xfd, 0x40, 0x24, - 0x0b, 0x92, 0xcf, 0xf5, 0xdd, 0x8c, 0x40, 0x58, 0xc5, 0x3b, 0xde, 0x98, 0xfc, 0x2c, 0x8c, 0x88, - 0xbb, 0xe8, 0xc4, 0x90, 0x2c, 0xad, 0x48, 0xdc, 0x57, 0x87, 0x43, 0xf8, 0xff, 0x0d, 0xc8, 0xb6, - 0x8f, 0xbe, 0x91, 0x1e, 0x90, 0xdf, 0xcc, 0x75, 0x47, 0xee, 0xc3, 0x3e, 0x1e, 0xf7, 0xa7, 0xdc, - 0x6f, 0xc0, 0x74, 0x6a, 0xf1, 0xe6, 0x78, 0xf7, 0x62, 0xcf, 0x42, 0xd1, 0x31, 0x5a, 0x84, 0x5f, - 0x87, 0x55, 0xe1, 0xc3, 0x1b, 0x7b, 0x3a, 0x01, 0xf3, 0xf2, 0xb9, 0xef, 0x97, 0x60, 0x3a, 0x75, - 0xf2, 0x84, 0x4d, 0x79, 0xe5, 0x02, 0x40, 0x62, 0x22, 0x9f, 0x99, 0xf6, 0x7f, 0x19, 0x26, 0x98, - 0x61, 0xd4, 0x13, 0xcb, 0x06, 0x72, 0x11, 0x7b, 0x33, 0x06, 0xc5, 0x09, 0xec, 0xe3, 0x4d, 0x99, - 0x5f, 0x86, 0x09, 0xf5, 0xad, 0x8f, 0x95, 0x25, 0xb1, 0x2c, 0x2c, 0x99, 0xe8, 0x31, 0x28, 0x4e, - 0x60, 0xb3, 0x87, 0x52, 0xe4, 0xe0, 0x29, 0xd2, 0x71, 0xc5, 0xde, 0x1f, 0x4a, 0x49, 0x90, 0xc0, - 0x29, 0xa2, 0x68, 0x0b, 0x66, 0x78, 0xfa, 0x5e, 0x15, 0x28, 0xb1, 0xa5, 0x64, 0x4e, 0x08, 0x3d, - 0xb3, 0xd4, 0x15, 0x13, 0x1f, 0x41, 0xa5, 0xc7, 0xdb, 0x1d, 0x3f, 0x48, 0xbf, 0xfa, 0xf8, 0x76, - 0xde, 0xe7, 0x95, 0x4e, 0x64, 0x83, 0x95, 0x47, 0xc5, 0x06, 0xbf, 0x3f, 0x4a, 0x0d, 0x25, 0xb1, - 0xf5, 0x1e, 0xcd, 0x41, 0x89, 0xe9, 0x26, 0x1d, 0x5e, 0xe4, 0x4a, 0x00, 0x53, 0x5a, 0x1f, 0x0b, - 0xc8, 0x31, 0x92, 0xe4, 0x22, 0x64, 0x1b, 0xee, 0x12, 0xb2, 0xb5, 0xe1, 0x5c, 0x60, 0xfb, 0x9b, - 0x5e, 0xc7, 0x0f, 0x16, 0x89, 0x17, 0xf8, 0x42, 0x75, 0x0b, 0x3d, 0x3f, 0x95, 0xb6, 0xb9, 0xaa, - 0x27, 0xa9, 0xe0, 0x2c, 0xd2, 0x54, 0x81, 0x03, 0xdb, 0xaf, 0xd9, 0xb6, 0xfb, 0x6e, 0xb8, 0xb3, - 0x20, 0x1a, 0x6c, 0xc4, 0x30, 0x22, 0x15, 0x78, 0x73, 0x55, 0xef, 0x82, 0x89, 0x8f, 0xa0, 0x82, - 0xd6, 0xd8, 0x57, 0xbd, 0x6a, 0xd8, 0x56, 0xc3, 0x08, 0x08, 0x1d, 0x8e, 0x59, 0xf6, 0x9a, 0x5b, - 0x87, 0x5c, 0x6e, 0xdc, 0x5c, 0xd5, 0x93, 0x28, 0x38, 0xab, 0xde, 0xa0, 0x9e, 0x4b, 0xcd, 0x1c, - 0xbd, 0xcb, 0x67, 0x32, 0x7a, 0x57, 0x7a, 0xb3, 0x72, 0xc8, 0xc9, 0xca, 0x13, 0x2a, 0xdf, 0x83, - 0x95, 0x37, 0x60, 0x52, 0x3e, 0x46, 0x23, 0x74, 0x76, 0xb4, 0xe7, 0xd5, 0x8f, 0x5a, 0x9c, 0x02, - 0x4e, 0x92, 0x3c, 0xa3, 0x8c, 0xd2, 0x5f, 0x6a, 0x30, 0x45, 0x25, 0xa9, 0x05, 0x3b, 0xc4, 0xb9, - 0x57, 0x37, 0x3c, 0xa3, 0x15, 0xde, 0x20, 0xb6, 0x9d, 0x7b, 0x93, 0xd7, 0x12, 0x8c, 0x78, 0xd3, - 0xcb, 0x6b, 0x9d, 0x93, 0x60, 0x9c, 0x92, 0x8c, 0x0e, 0x7d, 0x51, 0xd9, 0x49, 0xde, 0x3c, 0x3d, - 0x1f, 0x67, 0x14, 0x0e, 0x7d, 0x49, 0xa2, 0x7d, 0xf9, 0xd8, 0x99, 0x45, 0x78, 0x3c, 0xf3, 0x53, - 0x7b, 0x72, 0xd4, 0x5f, 0x2b, 0x89, 0xe3, 0x33, 0x39, 0xcc, 0x05, 0xf2, 0x7e, 0xd9, 0x88, 0x06, - 0x56, 0x8e, 0x7c, 0xf9, 0x2a, 0xf1, 0x22, 0x5a, 0xf4, 0xd6, 0x55, 0x84, 0x83, 0x66, 0x60, 0xa8, - 0xb1, 0xc5, 0x5c, 0x7d, 0x31, 0xda, 0xc7, 0xb7, 0xb4, 0x80, 0x87, 0x1a, 0x5b, 0xe8, 0x0a, 0x94, - 0xc5, 0x24, 0x23, 0xdc, 0xe6, 0xc6, 0xd8, 0x8a, 0x19, 0x88, 0x8f, 0x25, 0x74, 0x50, 0x61, 0xfd, - 0x00, 0xf2, 0xf7, 0xc9, 0x9e, 0x7b, 0xe8, 0x13, 0x6d, 0xbd, 0x79, 0xe8, 0xe7, 0x94, 0x4b, 0xcb, - 0x21, 0x9e, 0xcb, 0x4d, 0xdf, 0x48, 0xde, 0x5f, 0xc0, 0xf2, 0x37, 0x25, 0xb8, 0x90, 0x7d, 0xa8, - 0xeb, 0xa1, 0xb1, 0x06, 0xae, 0xdc, 0xc3, 0x99, 0xca, 0xfd, 0x71, 0x18, 0xf1, 0x99, 0xe0, 0xe1, - 0xca, 0x3f, 0xbf, 0x4e, 0x96, 0x17, 0xe1, 0x10, 0x86, 0x5e, 0x01, 0xd4, 0x32, 0xee, 0xae, 0xf9, - 0xcd, 0x45, 0xb7, 0xc3, 0x6e, 0xc8, 0xc6, 0xc4, 0xe0, 0xd7, 0xb7, 0x17, 0xa3, 0xfd, 0x35, 0x6b, - 0x29, 0x0c, 0x9c, 0x51, 0x8b, 0xed, 0x55, 0x88, 0xad, 0xff, 0x24, 0x36, 0xfa, 0x1c, 0xb9, 0x60, - 0x33, 0xa0, 0xf8, 0xe3, 0xa3, 0x74, 0xe0, 0x6e, 0x0e, 0xe4, 0xa4, 0xdf, 0xc3, 0x1e, 0xbd, 0x9f, - 0xa6, 0xe9, 0xfc, 0xb4, 0x00, 0xe7, 0x32, 0x6e, 0x7a, 0x89, 0x7b, 0x6f, 0xed, 0x18, 0xde, 0x7b, - 0x4f, 0xb6, 0x54, 0x3e, 0x1b, 0xad, 0x43, 0xa1, 0x8e, 0x68, 0xa6, 0x0f, 0x34, 0x38, 0xcf, 0x16, - 0xd8, 0xc3, 0x55, 0xbd, 0xf0, 0x8a, 0xdf, 0x61, 0xa1, 0x99, 0xc7, 0xba, 0x6b, 0xfb, 0x46, 0x06, - 0x85, 0x68, 0xd5, 0x31, 0x0b, 0x8a, 0x33, 0xb9, 0xa2, 0x45, 0x00, 0x79, 0x54, 0x2e, 0xb4, 0xe4, - 0x67, 0xd8, 0x8d, 0xe1, 0xb2, 0xf4, 0x7f, 0xd8, 0xe2, 0xbd, 0xd2, 0xda, 0x6c, 0x66, 0xa4, 0x54, - 0x1b, 0xc4, 0xbb, 0x2a, 0x19, 0xdd, 0x7b, 0x7c, 0x0b, 0xe8, 0x4f, 0xbb, 0xfe, 0x62, 0x18, 0x26, - 0xe2, 0x1d, 0x89, 0x2e, 0x43, 0xa9, 0xed, 0x91, 0x6d, 0xeb, 0x6e, 0xf2, 0x79, 0x8d, 0x3a, 0x2b, - 0xc5, 0x02, 0x8a, 0x5c, 0x28, 0xd9, 0xc6, 0x16, 0x1d, 0xef, 0xf9, 0xf5, 0xe6, 0x37, 0xfa, 0xbe, - 0xaa, 0x3b, 0x5c, 0x65, 0x08, 0x19, 0xae, 0x32, 0xf2, 0x58, 0xb0, 0xa1, 0x0c, 0xb7, 0x2d, 0x62, - 0x37, 0xf8, 0x76, 0xce, 0x41, 0x30, 0x5c, 0x66, 0xe4, 0xb1, 0x60, 0x83, 0xde, 0x84, 0x0a, 0x7f, - 0x93, 0xa4, 0xb1, 0x70, 0x20, 0x66, 0xb8, 0xff, 0xff, 0x78, 0x2a, 0xbb, 0x69, 0xb5, 0x48, 0x64, - 0x8e, 0x8b, 0x21, 0x11, 0x1c, 0xd1, 0x63, 0x2f, 0xae, 0x6f, 0x07, 0xc4, 0xd3, 0x03, 0xc3, 0x0b, - 0x1f, 0x44, 0x8f, 0x5e, 0x5c, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xfd, 0xf5, 0x08, 0x4c, 0x26, 0x8e, - 0xd1, 0xfe, 0x72, 0x9c, 0x11, 0x55, 0xdf, 0x4f, 0x19, 0xce, 0xfb, 0xfd, 0x94, 0x42, 0x1e, 0xe1, - 0xc1, 0x9b, 0x30, 0xe6, 0xfb, 0x3b, 0x0c, 0xb3, 0xf7, 0x5c, 0xdd, 0xd4, 0xe1, 0xfd, 0xd9, 0x31, - 0x5d, 0xbf, 0x29, 0xab, 0xe3, 0x18, 0x31, 0xb4, 0x0a, 0x23, 0x62, 0xef, 0x60, 0x6f, 0x1b, 0xff, - 0x58, 0x18, 0x12, 0x86, 0x47, 0x21, 0x89, 0x41, 0xac, 0x38, 0x27, 0x94, 0xee, 0xa1, 0x0f, 0x84, - 0xeb, 0x70, 0xbe, 0xed, 0xda, 0x76, 0xb8, 0x79, 0x53, 0xbe, 0x7c, 0x54, 0x89, 0x1f, 0xdd, 0xa9, - 0x67, 0xe0, 0xe0, 0xcc, 0x9a, 0xfd, 0x79, 0xd9, 0xff, 0x28, 0xc1, 0x44, 0xfc, 0x96, 0xa9, 0xb3, - 0x3b, 0x40, 0xc9, 0x12, 0x81, 0x35, 0xcf, 0x49, 0x1e, 0xa0, 0xdc, 0x14, 0xe5, 0x58, 0x62, 0x20, - 0x0c, 0x15, 0xbe, 0xa1, 0xfd, 0x56, 0xaf, 0x6b, 0xce, 0x7c, 0x67, 0x6c, 0x58, 0x17, 0x47, 0x64, - 0x28, 0x4d, 0x3f, 0x44, 0xef, 0xcd, 0x32, 0x19, 0x4d, 0x59, 0x8c, 0x23, 0x32, 0x74, 0xc4, 0xf2, - 0x48, 0x33, 0xcc, 0x06, 0x2a, 0x23, 0x16, 0x66, 0xa5, 0x58, 0x40, 0xd1, 0xb3, 0x30, 0xe2, 0xb9, - 0x36, 0xa9, 0xe1, 0x75, 0x11, 0x4d, 0xcb, 0x85, 0x32, 0xcc, 0x8b, 0x71, 0x08, 0x1f, 0xc4, 0x22, - 0x51, 0x5c, 0x01, 0x7a, 0x30, 0xa1, 0x1b, 0x30, 0xbd, 0x2f, 0x32, 0x8c, 0xba, 0xd5, 0x74, 0x8c, - 0x20, 0x3a, 0x73, 0x25, 0x37, 0x1c, 0xbe, 0x9a, 0x44, 0xc0, 0xe9, 0x3a, 0x67, 0x17, 0x2b, 0x13, - 0xa7, 0xd1, 0x76, 0x2d, 0x27, 0x48, 0xc6, 0xca, 0xd7, 0x45, 0x39, 0x96, 0x18, 0xfd, 0xd9, 0xd9, - 0x3f, 0x8c, 0xc0, 0x44, 0xfc, 0x16, 0xb5, 0xb8, 0x0e, 0x6b, 0x03, 0xd0, 0xe1, 0xa1, 0xbc, 0x75, - 0x78, 0xf8, 0x48, 0x1d, 0x7e, 0x06, 0x8a, 0xec, 0x4d, 0x7b, 0xb1, 0xdc, 0x24, 0x17, 0xa7, 0xd8, - 0x7d, 0x1f, 0x98, 0xc3, 0x50, 0x8d, 0x8e, 0xf0, 0x56, 0x40, 0xa3, 0x10, 0xbe, 0xe1, 0x8e, 0xef, - 0x45, 0x18, 0x56, 0x47, 0xe4, 0x18, 0x18, 0x27, 0xf1, 0x7b, 0xb1, 0x95, 0xde, 0x56, 0x7f, 0x5e, - 0x86, 0x09, 0x26, 0x64, 0xcd, 0x34, 0xe9, 0x7c, 0x77, 0xa5, 0x21, 0xf6, 0x88, 0xcb, 0x85, 0xb3, - 0x0d, 0x15, 0xba, 0x84, 0x13, 0xd8, 0x71, 0xcb, 0xac, 0xe4, 0x63, 0x99, 0x1b, 0x27, 0xb4, 0xcc, - 0xa7, 0x61, 0xb8, 0x61, 0xef, 0x31, 0xad, 0x2e, 0x47, 0x6b, 0x25, 0x4b, 0xab, 0x1b, 0x98, 0x96, - 0x9f, 0xd1, 0xe3, 0x9f, 0xaa, 0xbd, 0x8d, 0x3d, 0xc8, 0xde, 0x58, 0x5c, 0xc3, 0x1f, 0x48, 0xe2, - 0xe7, 0x61, 0xc6, 0x7b, 0x8f, 0x6b, 0x94, 0xea, 0x38, 0x46, 0xac, 0x3f, 0x63, 0xfe, 0x32, 0x94, - 0x43, 0x46, 0xb4, 0xa1, 0x65, 0xbd, 0xa8, 0xa1, 0xa9, 0x09, 0x31, 0x22, 0x57, 0xa1, 0xe2, 0xb6, - 0x49, 0xec, 0x75, 0x43, 0x19, 0x03, 0xdf, 0x0e, 0x01, 0x38, 0xc2, 0xa1, 0x56, 0xc4, 0xb9, 0x26, - 0x96, 0x78, 0x5f, 0xa5, 0x85, 0x42, 0x88, 0xb9, 0xaf, 0x68, 0x10, 0x3e, 0x19, 0x84, 0x96, 0xa0, - 0xd8, 0x76, 0xbd, 0x80, 0x2f, 0xad, 0x8d, 0x5e, 0x9b, 0xcd, 0x6e, 0x1f, 0xbe, 0xbb, 0xdf, 0xf5, - 0x82, 0x88, 0x22, 0xfd, 0xe5, 0x63, 0x5e, 0x99, 0xca, 0x69, 0xda, 0x1d, 0x3f, 0x20, 0xde, 0x4a, - 0x3d, 0x29, 0xe7, 0x62, 0x08, 0xc0, 0x11, 0xce, 0xdc, 0x7f, 0x15, 0x60, 0x2a, 0x79, 0xb1, 0x1e, - 0x7a, 0x1b, 0xc6, 0x7d, 0xab, 0xe9, 0x58, 0x4e, 0x53, 0xc4, 0xa2, 0x5a, 0xcf, 0x47, 0x7b, 0x75, - 0xb5, 0x3e, 0x8e, 0x93, 0xcb, 0x6d, 0xb7, 0xda, 0xd9, 0x3c, 0x21, 0xff, 0x7e, 0xfa, 0x0e, 0x99, - 0xb7, 0x72, 0xbe, 0xda, 0xf0, 0x97, 0xfb, 0x12, 0x99, 0x5f, 0x14, 0xe1, 0x42, 0xf6, 0xd5, 0x89, - 0x67, 0x14, 0xb4, 0x46, 0xc7, 0x38, 0x87, 0xba, 0x1e, 0xe3, 0x8c, 0xda, 0x79, 0x38, 0xa7, 0xab, - 0x10, 0x65, 0x03, 0x1c, 0xed, 0x6a, 0x65, 0x38, 0x5d, 0x78, 0x60, 0x38, 0x7d, 0x19, 0x4a, 0xe2, - 0xda, 0xfc, 0x44, 0x98, 0xba, 0xc0, 0x2f, 0xb5, 0x17, 0x50, 0x25, 0x14, 0x28, 0x1d, 0x19, 0x0a, - 0xd0, 0xd0, 0x26, 0x5c, 0x7f, 0xec, 0xed, 0x28, 0x17, 0x0f, 0x6d, 0xc2, 0xba, 0x38, 0x22, 0xc3, - 0x0e, 0xea, 0xb7, 0xad, 0xe8, 0x6d, 0xef, 0xe8, 0xa0, 0x7e, 0x7d, 0xe5, 0x0e, 0x5e, 0xc5, 0x02, - 0x1a, 0x4f, 0x05, 0x57, 0x72, 0x49, 0x05, 0x67, 0xeb, 0xdc, 0x69, 0x25, 0xc2, 0x4c, 0x98, 0x4e, - 0xf5, 0xf9, 0xb1, 0x53, 0x61, 0x97, 0xa1, 0xe4, 0x77, 0xb6, 0x29, 0x5e, 0xe2, 0x06, 0x25, 0x9d, - 0x95, 0x62, 0x01, 0x9d, 0xfb, 0x76, 0x81, 0x72, 0x49, 0x5c, 0xb2, 0x79, 0x46, 0x56, 0xf5, 0x12, - 0x8c, 0xf3, 0x64, 0xd4, 0x6b, 0xca, 0xf5, 0x1b, 0x65, 0x65, 0x81, 0x41, 0x05, 0xe2, 0x38, 0x2e, - 0x5a, 0x61, 0x6a, 0xd2, 0xf3, 0xb4, 0x10, 0x84, 0x26, 0xd1, 0x81, 0x5b, 0x10, 0x40, 0xcf, 0xc3, - 0x28, 0xfb, 0x08, 0xde, 0xe4, 0x22, 0x2b, 0xcb, 0x0e, 0xda, 0x5e, 0x8f, 0x8a, 0xb1, 0x8a, 0x13, - 0xdf, 0x5a, 0x50, 0xcc, 0x65, 0x6b, 0x41, 0xaa, 0x57, 0x4e, 0x4b, 0xef, 0xbe, 0x59, 0x06, 0xf9, - 0x10, 0x22, 0x32, 0x53, 0xcf, 0x51, 0x7e, 0xba, 0xe7, 0xc5, 0x9b, 0x50, 0x14, 0x9e, 0xc9, 0xca, - 0x18, 0x92, 0x5e, 0x01, 0x24, 0xde, 0x3f, 0x14, 0x41, 0xb5, 0x72, 0x9d, 0x92, 0x5c, 0xa5, 0xd2, - 0x53, 0x18, 0x38, 0xa3, 0x16, 0x7a, 0x85, 0x3d, 0xbe, 0x1a, 0x18, 0x96, 0x23, 0x3d, 0xef, 0xd3, - 0x5d, 0xce, 0x5f, 0x72, 0x24, 0xf9, 0x8c, 0x2a, 0xff, 0x89, 0xa3, 0xea, 0xe8, 0x3a, 0x8c, 0xec, - 0xbb, 0x76, 0xa7, 0x25, 0x52, 0xf3, 0xa3, 0xd7, 0x66, 0xb2, 0x28, 0xbd, 0xca, 0x50, 0x94, 0xf3, - 0x42, 0xbc, 0x0a, 0x0e, 0xeb, 0x22, 0x02, 0x93, 0x6c, 0x7b, 0x8f, 0x15, 0x1c, 0x08, 0x03, 0x10, - 0x43, 0xef, 0xe5, 0x2c, 0x72, 0x75, 0xb7, 0xa1, 0xc7, 0xb1, 0xf9, 0x4e, 0x8f, 0x44, 0x21, 0x4e, - 0xd2, 0x44, 0xcb, 0x50, 0x36, 0xb6, 0xb7, 0x2d, 0xc7, 0x0a, 0x0e, 0x44, 0xce, 0xee, 0xa9, 0x2c, - 0xfa, 0x35, 0x81, 0x23, 0xee, 0x69, 0x11, 0xbf, 0xb0, 0xac, 0x8b, 0xee, 0xc0, 0x68, 0xe0, 0xda, - 0x22, 0x2e, 0xf5, 0x45, 0xaa, 0xe1, 0x62, 0x16, 0xa9, 0x4d, 0x89, 0x16, 0x2d, 0x8f, 0x46, 0x65, - 0x3e, 0x56, 0xe9, 0xa0, 0xdf, 0xd3, 0x60, 0xcc, 0x71, 0x1b, 0x24, 0x34, 0x3d, 0xb1, 0x5c, 0xf7, - 0x46, 0x4e, 0x0f, 0x78, 0xce, 0xaf, 0x2b, 0xb4, 0xb9, 0x85, 0xc8, 0xfb, 0x3b, 0x54, 0x10, 0x8e, - 0x09, 0x81, 0x1c, 0x98, 0xb2, 0x5a, 0x46, 0x93, 0xd4, 0x3b, 0xb6, 0xd8, 0x9e, 0xe8, 0x8b, 0xc1, - 0x23, 0xf3, 0xd4, 0xee, 0xaa, 0x6b, 0x1a, 0x36, 0x7f, 0x00, 0x17, 0x93, 0x6d, 0xe2, 0xb1, 0x77, - 0x78, 0xe5, 0x4e, 0x93, 0x95, 0x04, 0x25, 0x9c, 0xa2, 0x8d, 0x6e, 0xc0, 0x74, 0xdb, 0xb3, 0x5c, - 0xd6, 0x6f, 0xb6, 0xe1, 0xf3, 0x07, 0x50, 0x21, 0x7e, 0x54, 0xb3, 0x9e, 0x44, 0xc0, 0xe9, 0x3a, - 0xfc, 0x7a, 0x01, 0x5e, 0xc8, 0xe6, 0x72, 0xc5, 0xf0, 0x7a, 0x01, 0x5e, 0x86, 0x25, 0x74, 0xe6, - 0xb3, 0x30, 0x9d, 0x6a, 0x9b, 0x9e, 0x1c, 0xc2, 0x1f, 0x69, 0x90, 0xcc, 0x97, 0xd3, 0x79, 0x43, - 0xc3, 0xf2, 0x18, 0xc1, 0x83, 0x64, 0x8e, 0x7f, 0x29, 0x04, 0xe0, 0x08, 0x07, 0x5d, 0x82, 0x42, - 0xdb, 0x08, 0x76, 0x92, 0xdb, 0xfc, 0x28, 0x49, 0xcc, 0x20, 0xe8, 0x1a, 0x00, 0xfd, 0x8b, 0x49, - 0x93, 0xdc, 0x6d, 0x8b, 0x69, 0x90, 0x5c, 0x7e, 0xa8, 0x4b, 0x08, 0x56, 0xb0, 0xe6, 0xfe, 0xa5, - 0x08, 0x13, 0xf1, 0xb1, 0x25, 0x36, 0xd9, 0xd4, 0x1e, 0x38, 0xd9, 0xbc, 0x0c, 0xa5, 0x16, 0x09, - 0x76, 0xdc, 0x46, 0x72, 0x9c, 0x5c, 0x63, 0xa5, 0x58, 0x40, 0x99, 0xf8, 0xae, 0x17, 0x08, 0xb1, - 0x22, 0xf1, 0x5d, 0x2f, 0xc0, 0x0c, 0x12, 0xee, 0x52, 0x2c, 0x74, 0xd9, 0xa5, 0xd8, 0x84, 0x29, - 0x7e, 0xc1, 0xef, 0x22, 0xf1, 0x82, 0x13, 0xef, 0xae, 0xd5, 0x13, 0x24, 0x70, 0x8a, 0x28, 0x6a, - 0x50, 0x6f, 0x43, 0xcb, 0xa2, 0x95, 0x81, 0xde, 0x8f, 0xee, 0xeb, 0x71, 0x0a, 0x38, 0x49, 0x72, - 0x10, 0xd9, 0xc8, 0x78, 0x3f, 0x9e, 0xf8, 0x66, 0xc4, 0x72, 0x5e, 0x37, 0x23, 0xbe, 0x08, 0x13, - 0x2d, 0xe3, 0x6e, 0xdd, 0x38, 0xb0, 0x5d, 0xa3, 0xa1, 0x5b, 0xf7, 0x88, 0x38, 0x5d, 0x8a, 0x0e, - 0xef, 0xcf, 0x4e, 0xac, 0xc5, 0x20, 0x38, 0x81, 0xd9, 0xdf, 0x00, 0xfc, 0xc7, 0x43, 0x80, 0xd2, - 0x0f, 0x97, 0xa0, 0x0f, 0x35, 0x98, 0x78, 0x37, 0xd6, 0x46, 0x83, 0x09, 0xce, 0x64, 0xda, 0x2b, - 0x5e, 0x8e, 0x13, 0xcc, 0x95, 0x09, 0xce, 0xd0, 0xe9, 0x4d, 0x24, 0x17, 0xe6, 0x7f, 0xf8, 0xf3, - 0x8b, 0x8f, 0xfd, 0xe8, 0xe7, 0x17, 0x1f, 0xfb, 0xf1, 0xcf, 0x2f, 0x3e, 0xf6, 0x95, 0xc3, 0x8b, - 0xda, 0x0f, 0x0f, 0x2f, 0x6a, 0x3f, 0x3a, 0xbc, 0xa8, 0xfd, 0xf8, 0xf0, 0xa2, 0xf6, 0xb3, 0xc3, - 0x8b, 0xda, 0xb7, 0xff, 0xfd, 0xe2, 0x63, 0x9f, 0x2b, 0x87, 0x54, 0xff, 0x37, 0x00, 0x00, 0xff, - 0xff, 0x0c, 0x53, 0xd7, 0xfe, 0x6d, 0xa4, 0x00, 0x00, + 0x3c, 0x28, 0x91, 0x0a, 0x70, 0x83, 0x17, 0xe3, 0x10, 0x8e, 0x7e, 0x57, 0x1d, 0x8a, 0x47, 0xd8, + 0x50, 0xbc, 0xdd, 0xaf, 0x5b, 0xed, 0xd6, 0x23, 0x3d, 0x0c, 0xca, 0x91, 0x13, 0x2b, 0x3e, 0x2a, + 0x4e, 0xec, 0x8f, 0x8b, 0xf0, 0x14, 0xfb, 0x74, 0x66, 0xb3, 0x7a, 0xe0, 0x7a, 0x46, 0x93, 0xa8, + 0xfa, 0xf8, 0x2a, 0x20, 0x9f, 0x97, 0x56, 0x4d, 0xd3, 0xed, 0x38, 0xc1, 0x7a, 0x64, 0xc6, 0xb3, + 0xa2, 0x2d, 0x90, 0x9e, 0xc2, 0xc0, 0x19, 0xb5, 0x50, 0x13, 0xa6, 0xa3, 0xd8, 0x4e, 0x0f, 0x3c, + 0xcb, 0x69, 0xf6, 0xa6, 0xb6, 0xe7, 0x0f, 0xef, 0xcf, 0x4d, 0x2f, 0x26, 0x48, 0xe0, 0x14, 0x51, + 0x6a, 0x93, 0x6c, 0x04, 0x66, 0xb2, 0x0e, 0xc7, 0x6d, 0x72, 0x23, 0x04, 0xe0, 0x08, 0x27, 0x16, + 0x60, 0x16, 0x1e, 0x18, 0x60, 0x3e, 0x0d, 0xc3, 0x0d, 0x7b, 0x4f, 0xf8, 0x05, 0x19, 0xd4, 0x2f, + 0xad, 0x6e, 0x60, 0x5a, 0x4e, 0x63, 0xb3, 0x48, 0x3b, 0x8b, 0x4c, 0x3b, 0xad, 0x3c, 0xb4, 0xb3, + 0x4b, 0x17, 0x9d, 0x48, 0x41, 0x47, 0x4f, 0x4f, 0x41, 0xd1, 0xcb, 0x30, 0xd1, 0x20, 0xa6, 0xdb, + 0x20, 0x6b, 0xc4, 0xf7, 0x8d, 0x26, 0xa9, 0x94, 0x58, 0xc3, 0x3d, 0x2e, 0x04, 0x9d, 0x58, 0x52, + 0x81, 0x38, 0x8e, 0x8b, 0x16, 0x61, 0xe6, 0x8e, 0x61, 0x05, 0x9b, 0x56, 0x8b, 0xac, 0x38, 0x3a, + 0x31, 0x5d, 0xa7, 0xe1, 0xb3, 0x48, 0x77, 0x84, 0xcf, 0x1f, 0x5e, 0x4f, 0x02, 0x71, 0x1a, 0xbf, + 0x3f, 0x13, 0xf9, 0x71, 0x11, 0x66, 0x59, 0xfb, 0xeb, 0xc4, 0xdb, 0xb7, 0x4c, 0x52, 0xeb, 0xf8, + 0xaa, 0x81, 0x64, 0x29, 0xb5, 0x36, 0x70, 0xa5, 0x1e, 0x3a, 0x86, 0x52, 0x5f, 0x81, 0x72, 0xe0, + 0xb6, 0x2d, 0x33, 0xcb, 0x0a, 0x36, 0x43, 0x00, 0x8e, 0x70, 0xd0, 0x12, 0x4c, 0xfb, 0x9d, 0x2d, + 0xdf, 0xf4, 0xac, 0x36, 0xe5, 0xab, 0xb8, 0xe2, 0x8a, 0xa8, 0x37, 0xad, 0x27, 0xe0, 0x38, 0x55, + 0x23, 0x9c, 0x7e, 0x8d, 0xe4, 0x3c, 0xfd, 0xea, 0x6d, 0x0e, 0xf8, 0x1d, 0xd5, 0x06, 0x47, 0x99, + 0x0d, 0x36, 0xf3, 0xb0, 0xc1, 0x4c, 0x1d, 0x38, 0x91, 0x05, 0x96, 0x4e, 0xd1, 0x02, 0xdf, 0x84, + 0x27, 0xb6, 0x3b, 0xb6, 0x7d, 0xb0, 0xd1, 0x31, 0x6c, 0x6b, 0xdb, 0x22, 0x0d, 0xda, 0x51, 0x7e, + 0xdb, 0x30, 0xf9, 0xa4, 0xb1, 0x5c, 0x9b, 0x13, 0x22, 0x3f, 0xb1, 0x9c, 0x8d, 0x86, 0xbb, 0xd5, + 0xef, 0xcf, 0xb4, 0x7e, 0xa2, 0xc1, 0x44, 0xcd, 0x0a, 0xb6, 0x3a, 0xe6, 0x2e, 0x09, 0xe8, 0x0c, + 0x03, 0x79, 0x30, 0xb2, 0x45, 0x27, 0x1e, 0xc2, 0x84, 0x36, 0xfa, 0x6c, 0x1e, 0x49, 0x3c, 0x9a, + 0xcd, 0x94, 0x0f, 0xef, 0xcf, 0x8d, 0xb0, 0x9f, 0x98, 0xb3, 0x42, 0xb7, 0x01, 0x5c, 0x3a, 0xb1, + 0xd9, 0x74, 0x77, 0x89, 0xd3, 0xdb, 0x80, 0x34, 0x49, 0x23, 0xce, 0x5b, 0xd5, 0xb0, 0x32, 0x56, + 0x08, 0xcd, 0xff, 0x40, 0x03, 0x94, 0xe6, 0x8f, 0x6e, 0x41, 0xa9, 0xe3, 0xd3, 0xb0, 0x5c, 0x0c, + 0xa3, 0xc7, 0xe6, 0x35, 0x4e, 0x55, 0xea, 0xb6, 0xa8, 0x8a, 0x25, 0x11, 0x4a, 0xb0, 0x6d, 0xf8, + 0xfe, 0x1d, 0xd7, 0x6b, 0xf4, 0x26, 0x3c, 0x23, 0x58, 0x17, 0x55, 0xb1, 0x24, 0x32, 0xff, 0x8b, + 0x51, 0x38, 0x2f, 0x05, 0x4f, 0xc4, 0x02, 0x0d, 0x16, 0x4d, 0xdf, 0x70, 0xdd, 0xdd, 0x5b, 0xce, + 0xb2, 0xe5, 0x58, 0xfe, 0x8e, 0x98, 0x13, 0xc8, 0x58, 0x60, 0x29, 0x85, 0x81, 0x33, 0x6a, 0xa1, + 0x6f, 0xa9, 0x06, 0x3a, 0xc4, 0x0c, 0xd4, 0xc8, 0xab, 0xb3, 0x4f, 0x6a, 0x9a, 0xa3, 0x77, 0xc8, + 0xd6, 0x8e, 0xeb, 0xee, 0x8a, 0xe8, 0x76, 0xad, 0x4f, 0x79, 0x5e, 0xe7, 0xd4, 0x16, 0x5d, 0x27, + 0x20, 0x77, 0x03, 0x3e, 0x4d, 0x17, 0x65, 0x38, 0x64, 0x85, 0xbe, 0x28, 0xa6, 0xe9, 0x05, 0xc6, + 0x72, 0x35, 0xaf, 0x26, 0xc8, 0x9c, 0xb8, 0xcf, 0x43, 0x91, 0xd7, 0x62, 0x31, 0x73, 0x99, 0xbb, + 0x0a, 0x1e, 0xf3, 0x62, 0x01, 0x41, 0x9f, 0x80, 0x11, 0xf7, 0x8e, 0x23, 0x42, 0xd8, 0x72, 0xed, + 0x09, 0xd1, 0x60, 0x53, 0x4b, 0xa4, 0xed, 0x11, 0xd3, 0x08, 0x48, 0xe3, 0x16, 0x05, 0x63, 0x8e, + 0x85, 0x7e, 0x1d, 0x80, 0x8a, 0x48, 0x4c, 0xaa, 0x59, 0x2c, 0xaa, 0x28, 0xd7, 0x9e, 0x12, 0x75, + 0xce, 0x47, 0x75, 0xea, 0x12, 0x07, 0x2b, 0xf8, 0xe8, 0x06, 0x4c, 0x7a, 0xa4, 0xed, 0xfa, 0x56, + 0xe0, 0x7a, 0x07, 0xba, 0xdd, 0x69, 0x32, 0xaf, 0x58, 0xae, 0x5d, 0x12, 0x14, 0x2a, 0x11, 0x05, + 0x1c, 0xc3, 0xc3, 0x89, 0x7a, 0xe8, 0x03, 0x0d, 0xc6, 0x65, 0x91, 0x45, 0x68, 0x88, 0x30, 0x9c, + 0x43, 0xae, 0x47, 0xb6, 0x67, 0xc4, 0x3e, 0xca, 0xb1, 0x62, 0x85, 0x1f, 0x8e, 0x71, 0x57, 0xdc, + 0x3c, 0x3c, 0x2a, 0x33, 0x81, 0x7b, 0x70, 0x2e, 0xe3, 0x6b, 0xd1, 0x33, 0xa1, 0x3e, 0xf0, 0x90, + 0x7f, 0x42, 0x7c, 0xfc, 0x48, 0x4c, 0x0b, 0x5e, 0x49, 0xf5, 0x23, 0x8f, 0x4f, 0x2e, 0x08, 0xec, + 0xc9, 0xa3, 0x7b, 0x6f, 0xfe, 0x5f, 0xca, 0x30, 0x2b, 0x99, 0xd3, 0x21, 0x96, 0x78, 0xaa, 0xdf, + 0x51, 0x2c, 0x53, 0x3b, 0x3d, 0xcb, 0x8c, 0xab, 0xf6, 0x50, 0xdf, 0xaa, 0x3d, 0x7c, 0x42, 0xd5, + 0xfe, 0xed, 0xa4, 0x6a, 0x17, 0x98, 0x6a, 0xbf, 0x91, 0x97, 0x6a, 0xf3, 0xf6, 0xee, 0x51, 0xc1, + 0x8f, 0xe3, 0x4a, 0xde, 0x80, 0x31, 0x83, 0xcd, 0xee, 0xf9, 0xc0, 0x5a, 0xec, 0x65, 0x6c, 0x9a, + 0x3a, 0xbc, 0x3f, 0x37, 0x56, 0x8d, 0x6a, 0x63, 0x95, 0x14, 0x7a, 0x07, 0x26, 0x44, 0x2f, 0x89, + 0x2c, 0xe4, 0x68, 0x2f, 0xb4, 0x67, 0xe8, 0xa4, 0xe3, 0x75, 0xb5, 0x3e, 0x8e, 0x93, 0x43, 0xaf, + 0xc1, 0x85, 0xad, 0xb0, 0x79, 0x7c, 0xd6, 0x3c, 0x35, 0xc3, 0x27, 0xb7, 0xf1, 0xaa, 0xf0, 0x4f, + 0x17, 0x45, 0x0b, 0x5d, 0x48, 0x34, 0xa2, 0xc0, 0xc2, 0x5d, 0x6a, 0x77, 0x19, 0x40, 0xcb, 0x27, + 0x1a, 0x40, 0x63, 0x11, 0x2e, 0xe4, 0x12, 0xe1, 0x76, 0x37, 0xc1, 0x13, 0x45, 0xb8, 0x63, 0xa7, + 0x18, 0xe1, 0x8a, 0x49, 0xc7, 0x78, 0xbe, 0x93, 0x8e, 0xfe, 0x3c, 0xea, 0xb7, 0x34, 0x78, 0xb2, + 0xab, 0x95, 0xa1, 0xab, 0x31, 0xf7, 0xa2, 0xc5, 0x97, 0xe1, 0xba, 0x38, 0x95, 0x7e, 0xfd, 0xec, + 0x9f, 0x8d, 0xc0, 0xb9, 0x45, 0xc3, 0x26, 0x4e, 0xc3, 0x88, 0x39, 0xd8, 0xe7, 0xa1, 0xe4, 0x9b, + 0x3b, 0xa4, 0xd1, 0xb1, 0xc3, 0xd4, 0x8e, 0xec, 0x61, 0x5d, 0x94, 0x63, 0x89, 0x21, 0x73, 0xcf, + 0xfb, 0x86, 0x2d, 0xf8, 0xc7, 0x73, 0xcf, 0xfb, 0x32, 0xf7, 0xbc, 0x6f, 0xd8, 0xe8, 0x25, 0x98, + 0x14, 0x49, 0x55, 0xd7, 0x59, 0x32, 0x02, 0xe2, 0x57, 0x86, 0x99, 0xc7, 0x40, 0x54, 0xde, 0x6b, + 0x31, 0x08, 0x4e, 0x60, 0x52, 0x4e, 0x81, 0xd5, 0x22, 0xf7, 0x5c, 0x27, 0x9c, 0x88, 0x4a, 0x4e, + 0x9b, 0xa2, 0x1c, 0x4b, 0x0c, 0xf4, 0xcd, 0x74, 0x56, 0xf0, 0x0b, 0x7d, 0x2a, 0x5f, 0x46, 0x63, + 0xf5, 0x60, 0x0a, 0x5f, 0xd5, 0x60, 0xac, 0x4d, 0x3c, 0xdf, 0xf2, 0x03, 0xe2, 0x98, 0x44, 0x78, + 0xc0, 0x5b, 0x79, 0x18, 0x44, 0x3d, 0x22, 0xcb, 0x7d, 0xa5, 0x52, 0x80, 0x55, 0xa6, 0x67, 0x33, + 0xe3, 0xec, 0xcf, 0x70, 0xee, 0xc2, 0xf9, 0x45, 0x23, 0x30, 0x77, 0x3a, 0x6d, 0x6e, 0x94, 0x1d, + 0xcf, 0x08, 0x2c, 0xd7, 0x41, 0xcf, 0xc1, 0x28, 0x71, 0x8c, 0x2d, 0x9b, 0x34, 0x92, 0x6b, 0x2a, + 0xd7, 0x78, 0x31, 0x0e, 0xe1, 0xe8, 0x93, 0x30, 0xd6, 0x32, 0xee, 0x2e, 0x89, 0x9a, 0x42, 0x4d, + 0xe5, 0x8e, 0x83, 0xb5, 0x08, 0x84, 0x55, 0xbc, 0xf9, 0x2f, 0xc1, 0x79, 0xce, 0x72, 0xcd, 0x68, + 0x2b, 0x2d, 0x7a, 0x8c, 0xe5, 0x8b, 0x25, 0x98, 0x36, 0x3d, 0x62, 0x04, 0x64, 0x65, 0x7b, 0xdd, + 0x0d, 0xae, 0xdd, 0xb5, 0xfc, 0x40, 0xac, 0x63, 0xc8, 0xdc, 0xc9, 0x62, 0x02, 0x8e, 0x53, 0x35, + 0xe6, 0xbf, 0x3d, 0x0a, 0xe8, 0x5a, 0xcb, 0x0a, 0x82, 0x78, 0x00, 0x74, 0x19, 0x8a, 0x5b, 0x9e, + 0xbb, 0x2b, 0xa3, 0x30, 0xb9, 0x16, 0x51, 0x63, 0xa5, 0x58, 0x40, 0xa9, 0x4f, 0x31, 0x77, 0x0c, + 0xc7, 0x21, 0x76, 0x14, 0xb2, 0x48, 0x9f, 0xb2, 0x28, 0x21, 0x58, 0xc1, 0x62, 0x7b, 0x33, 0xf8, + 0x2f, 0x25, 0x4f, 0x14, 0xed, 0xcd, 0x88, 0x40, 0x58, 0xc5, 0x8b, 0x4d, 0x63, 0x0b, 0x79, 0x4f, + 0x63, 0x47, 0x72, 0x98, 0xc6, 0x66, 0xef, 0x59, 0x28, 0x9e, 0xc9, 0x9e, 0x85, 0xd1, 0xe3, 0xee, + 0x59, 0x28, 0xe5, 0x9c, 0x34, 0xfb, 0x50, 0x75, 0x89, 0x7c, 0x4a, 0xf4, 0x6e, 0xbf, 0xf6, 0x9f, + 0x52, 0xcf, 0x13, 0x05, 0x07, 0x8f, 0xcc, 0xbc, 0xe8, 0xa3, 0x21, 0x98, 0x4e, 0xba, 0x5c, 0x74, + 0x0f, 0x46, 0x4d, 0xee, 0xa1, 0xc4, 0x8c, 0x44, 0xef, 0x7b, 0xa0, 0x49, 0xfb, 0x3b, 0xb1, 0xb0, + 0xcf, 0x21, 0x38, 0x64, 0x88, 0xbe, 0xa2, 0x41, 0xd9, 0x0c, 0x9d, 0x94, 0xc8, 0xf8, 0xf4, 0xcd, + 0x3e, 0xc3, 0xe9, 0xf1, 0xd5, 0x7a, 0x09, 0xc1, 0x11, 0xd3, 0xf9, 0x9f, 0x0e, 0xc1, 0x98, 0xea, + 0x9f, 0xbe, 0xa0, 0x68, 0x19, 0x6f, 0x8f, 0xff, 0xaf, 0xd8, 0xae, 0xdc, 0x40, 0x16, 0x09, 0x41, + 0xb1, 0xa9, 0x35, 0xdf, 0xda, 0xa2, 0xa1, 0x0d, 0xed, 0x9c, 0xc8, 0x4f, 0x45, 0x65, 0x8a, 0xe2, + 0xb4, 0xa1, 0xe0, 0xb7, 0x89, 0x29, 0x3e, 0x77, 0x3d, 0x3f, 0xb5, 0xd1, 0xdb, 0xc4, 0x8c, 0x1c, + 0x3a, 0xfd, 0x85, 0x19, 0x27, 0x74, 0x17, 0x8a, 0x7e, 0x60, 0x04, 0x1d, 0x5f, 0x64, 0x83, 0x72, + 0x54, 0x55, 0x9d, 0xd1, 0x8d, 0xbc, 0x38, 0xff, 0x8d, 0x05, 0xbf, 0xf9, 0xeb, 0x30, 0x93, 0xd2, + 0x6b, 0xea, 0xda, 0xc9, 0xdd, 0xb6, 0x47, 0x7c, 0x1a, 0x1d, 0x25, 0xc3, 0xc5, 0x6b, 0x12, 0x82, + 0x15, 0xac, 0xf9, 0x9f, 0x69, 0x30, 0xa5, 0x50, 0x5a, 0xb5, 0xfc, 0x00, 0x7d, 0x3e, 0xd5, 0x55, + 0x0b, 0xc7, 0xeb, 0x2a, 0x5a, 0x9b, 0x75, 0x94, 0xb4, 0xef, 0xb0, 0x44, 0xe9, 0x26, 0x17, 0x46, + 0xac, 0x80, 0xb4, 0x7c, 0x91, 0xd1, 0x7b, 0x35, 0xbf, 0x36, 0x8b, 0x32, 0x0f, 0x2b, 0x94, 0x01, + 0xe6, 0x7c, 0xe6, 0xff, 0x76, 0x39, 0xf6, 0x89, 0xb4, 0xff, 0xd8, 0xd6, 0x38, 0x5a, 0x54, 0xeb, + 0xf8, 0xca, 0x62, 0x65, 0xb4, 0x35, 0x4e, 0x81, 0xe1, 0x18, 0x26, 0xda, 0x83, 0x52, 0x40, 0x5a, + 0x6d, 0xdb, 0x08, 0xc2, 0xf5, 0xf4, 0xeb, 0x7d, 0x7e, 0xc1, 0xa6, 0x20, 0xc7, 0x47, 0xa9, 0xf0, + 0x17, 0x96, 0x6c, 0x50, 0x0b, 0x46, 0x7d, 0xbe, 0xa6, 0x20, 0xf4, 0x6c, 0xb9, 0x4f, 0x8e, 0xe1, + 0x0a, 0x05, 0x73, 0x1e, 0xe2, 0x07, 0x0e, 0x79, 0xa0, 0x2f, 0xc1, 0x48, 0xcb, 0x72, 0x2c, 0x57, + 0x24, 0x11, 0xde, 0xcc, 0xd7, 0x90, 0x16, 0xd6, 0x28, 0x6d, 0x3e, 0x0c, 0xc8, 0xfe, 0x62, 0x65, + 0x98, 0xb3, 0x65, 0x9b, 0xe8, 0x4c, 0x11, 0x54, 0x8b, 0x18, 0xfd, 0xf3, 0x39, 0xcb, 0x20, 0x63, + 0xf6, 0xf8, 0x68, 0x14, 0x16, 0x63, 0xc9, 0x1f, 0xdd, 0x83, 0xc2, 0xb6, 0x65, 0x13, 0xb1, 0x46, + 0xfb, 0x46, 0xce, 0x72, 0x2c, 0x5b, 0x36, 0xe1, 0x32, 0x44, 0xbb, 0x38, 0x2c, 0x9b, 0x60, 0xc6, + 0x93, 0x35, 0x84, 0x47, 0x38, 0x0d, 0xb1, 0x40, 0x95, 0x77, 0x43, 0x60, 0x41, 0x3e, 0xd1, 0x10, + 0x61, 0x31, 0x96, 0xfc, 0xd1, 0x6f, 0x6a, 0x51, 0x86, 0x8d, 0xef, 0x6c, 0x7c, 0x2b, 0x67, 0x59, + 0x44, 0xba, 0x85, 0x8b, 0x22, 0xc3, 0xf6, 0x54, 0xce, 0xed, 0x1e, 0x14, 0x8c, 0xd6, 0x5e, 0x5b, + 0x84, 0x2a, 0x79, 0xf7, 0x48, 0xb5, 0xb5, 0xd7, 0x4e, 0xf4, 0x48, 0x75, 0x6d, 0xa3, 0x8e, 0x19, + 0x4f, 0x6a, 0x1a, 0xbb, 0xc6, 0xf6, 0x6e, 0x98, 0x4c, 0xc9, 0xdb, 0x34, 0x6e, 0x52, 0xda, 0x09, + 0xd3, 0x60, 0x65, 0x98, 0xb3, 0xa5, 0xdf, 0xde, 0xda, 0x0b, 0x82, 0xca, 0xd8, 0x40, 0xbe, 0x7d, + 0x6d, 0x2f, 0x08, 0x12, 0xdf, 0xbe, 0xb6, 0xb1, 0xb9, 0x89, 0x19, 0x4f, 0xca, 0xdb, 0x31, 0x02, + 0xbf, 0x32, 0x3e, 0x10, 0xde, 0xeb, 0x46, 0xe0, 0x27, 0x78, 0xaf, 0x57, 0x37, 0x75, 0xcc, 0x78, + 0xa2, 0x7d, 0x18, 0xf6, 0x1d, 0xbf, 0x32, 0xc1, 0x58, 0xbf, 0x9e, 0x33, 0x6b, 0xdd, 0x11, 0x9c, + 0xe5, 0x36, 0x0d, 0x7d, 0x5d, 0xc7, 0x94, 0x21, 0xe3, 0xbb, 0xe7, 0x57, 0x26, 0x07, 0xc3, 0x77, + 0x2f, 0xc5, 0x77, 0x83, 0xf2, 0xdd, 0xf3, 0xd1, 0x57, 0x35, 0x28, 0xb6, 0x3b, 0x5b, 0x7a, 0x67, + 0xab, 0x32, 0xc5, 0x78, 0x7f, 0x2e, 0x67, 0xde, 0x75, 0x46, 0x9c, 0xb3, 0x97, 0x31, 0x06, 0x2f, + 0xc4, 0x82, 0x33, 0x13, 0x82, 0x73, 0xad, 0x4c, 0x0f, 0x44, 0x88, 0xeb, 0x8c, 0x5a, 0x42, 0x08, + 0x5e, 0x88, 0x05, 0xe7, 0x50, 0x08, 0xdb, 0xd8, 0xaa, 0xcc, 0x0c, 0x4a, 0x08, 0xdb, 0xc8, 0x10, + 0xc2, 0x36, 0xb8, 0x10, 0xb6, 0xb1, 0x45, 0x55, 0x7f, 0xa7, 0xb1, 0xed, 0x57, 0xd0, 0x40, 0x54, + 0xff, 0x46, 0x63, 0x3b, 0xa9, 0xfa, 0x37, 0x96, 0x96, 0x75, 0xcc, 0x78, 0x52, 0x97, 0xe3, 0xdb, + 0x86, 0xb9, 0x5b, 0x39, 0x37, 0x10, 0x97, 0xa3, 0x53, 0xda, 0x09, 0x97, 0xc3, 0xca, 0x30, 0x67, + 0x8b, 0x7e, 0x4f, 0x83, 0x31, 0xb1, 0x4f, 0xeb, 0xba, 0x67, 0x35, 0x2a, 0xe7, 0xf3, 0x99, 0x21, + 0x26, 0xc5, 0x88, 0x38, 0x70, 0x61, 0x64, 0x76, 0x41, 0x81, 0x60, 0x55, 0x10, 0xf4, 0x27, 0x1a, + 0x4c, 0x1a, 0xb1, 0x1d, 0x79, 0x95, 0xc7, 0x99, 0x6c, 0x5b, 0x79, 0x0f, 0x09, 0xf1, 0x6d, 0x7f, + 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x03, 0x71, 0x42, 0x22, 0xa6, 0xbe, 0x7e, 0xe0, 0x59, 0x6d, 0x52, + 0xb9, 0x30, 0x10, 0xf5, 0xd5, 0x19, 0xf1, 0x84, 0xfa, 0xf2, 0x42, 0x2c, 0x38, 0xb3, 0xa1, 0x9b, + 0xf0, 0x29, 0x79, 0xe5, 0x89, 0x81, 0x0c, 0xdd, 0xe1, 0x84, 0x3f, 0x3e, 0x74, 0x8b, 0x52, 0x1c, + 0x32, 0xa7, 0xba, 0xec, 0x91, 0x86, 0xe5, 0x57, 0x2a, 0x03, 0xd1, 0x65, 0x4c, 0x69, 0x27, 0x74, + 0x99, 0x95, 0x61, 0xce, 0x96, 0xba, 0x73, 0xc7, 0xdf, 0xab, 0x3c, 0x39, 0x10, 0x77, 0xbe, 0xee, + 0xef, 0x25, 0xdc, 0xf9, 0xba, 0xbe, 0x81, 0x29, 0x43, 0xe1, 0xce, 0x6d, 0xdf, 0xf0, 0x2a, 0xb3, + 0x03, 0x72, 0xe7, 0x94, 0x78, 0xca, 0x9d, 0xd3, 0x42, 0x2c, 0x38, 0x33, 0x2d, 0x60, 0x47, 0xb1, + 0x2c, 0xb3, 0xf2, 0xb1, 0x81, 0x68, 0xc1, 0x75, 0x4e, 0x3d, 0xa1, 0x05, 0xa2, 0x14, 0x87, 0xcc, + 0xd1, 0xb3, 0x34, 0xaa, 0x6d, 0xdb, 0x96, 0x69, 0xf8, 0x95, 0xa7, 0xd8, 0x2e, 0xbd, 0x71, 0x1e, + 0x73, 0xf2, 0x32, 0x2c, 0xa1, 0xe8, 0xfb, 0x1a, 0x4c, 0x25, 0x96, 0xc9, 0x2a, 0x4f, 0x33, 0xd1, + 0xcd, 0x9c, 0x45, 0xaf, 0xc5, 0xb9, 0xf0, 0x4f, 0x90, 0x1b, 0x1b, 0x92, 0x2b, 0x34, 0x49, 0xa1, + 0xd0, 0x37, 0x35, 0x28, 0xcb, 0xb2, 0xca, 0x45, 0x26, 0xe2, 0xdb, 0x83, 0x12, 0x91, 0x0b, 0x27, + 0xb7, 0xe9, 0x45, 0x2b, 0xf2, 0x91, 0x08, 0xcc, 0x6b, 0x33, 0x9d, 0xd7, 0x03, 0x8f, 0x18, 0xad, + 0xca, 0xdc, 0x40, 0xbc, 0x36, 0x8e, 0x38, 0x24, 0xbc, 0xb6, 0x02, 0xc1, 0xaa, 0x20, 0xac, 0x4b, + 0x8d, 0xf8, 0x2e, 0xb9, 0xca, 0xa5, 0x81, 0x74, 0x69, 0x72, 0x2f, 0x5e, 0xbc, 0x4b, 0x13, 0x50, + 0x9c, 0x14, 0x0a, 0xfd, 0xa5, 0x06, 0x33, 0x46, 0x72, 0x4b, 0x6d, 0xe5, 0xff, 0x30, 0x51, 0xc9, + 0x20, 0x44, 0x8d, 0x6d, 0xdd, 0x65, 0xc2, 0x3e, 0x29, 0x84, 0x9d, 0x49, 0xc1, 0x71, 0x5a, 0x34, + 0x1a, 0xa4, 0xf8, 0xdb, 0x41, 0xbb, 0x32, 0x3f, 0x90, 0x20, 0x45, 0xdf, 0x0e, 0x92, 0xf3, 0x22, + 0x7d, 0x79, 0xb3, 0x8e, 0x19, 0x4f, 0x1e, 0xa5, 0x11, 0xcf, 0xb3, 0x82, 0xca, 0x33, 0x83, 0x89, + 0xd2, 0x18, 0xf1, 0x64, 0x94, 0xc6, 0x0a, 0xb1, 0xe0, 0x3c, 0xdb, 0x01, 0x88, 0x72, 0x0b, 0x19, + 0xf9, 0xdb, 0x0d, 0x35, 0x7f, 0x3b, 0x76, 0xf5, 0xe5, 0x9e, 0x33, 0xe8, 0xfa, 0xaf, 0x54, 0xbd, + 0xc0, 0xda, 0x36, 0xcc, 0x40, 0x49, 0xfe, 0xce, 0x7e, 0x4b, 0x83, 0x89, 0x58, 0x3e, 0x21, 0x83, + 0xf5, 0x4e, 0x9c, 0x35, 0xce, 0x7f, 0xc9, 0x51, 0x95, 0xe8, 0xb7, 0x34, 0x28, 0xcb, 0xcc, 0x42, + 0x86, 0x34, 0x8d, 0xb8, 0x34, 0xfd, 0x66, 0x4a, 0x19, 0xab, 0x6c, 0x49, 0x68, 0xdb, 0xc4, 0x52, + 0x0c, 0x83, 0x6f, 0x1b, 0xc9, 0x2e, 0x5b, 0xa2, 0x0f, 0x35, 0x18, 0x57, 0x13, 0x0d, 0x19, 0x02, + 0x35, 0xe3, 0x02, 0x6d, 0xe4, 0xb3, 0x91, 0xe8, 0x88, 0xbe, 0x92, 0x39, 0x87, 0xc1, 0xf7, 0x55, + 0xe2, 0x34, 0xa9, 0x2a, 0xc9, 0x37, 0x34, 0x80, 0x28, 0x01, 0x91, 0x21, 0x0a, 0x89, 0x8b, 0xd2, + 0xef, 0x1a, 0x35, 0xe7, 0xd5, 0xbd, 0x55, 0x64, 0x36, 0x62, 0xf0, 0xad, 0xb2, 0xb6, 0xb1, 0xb9, + 0xd9, 0x45, 0x92, 0xaf, 0x6b, 0x50, 0x96, 0xb9, 0x89, 0xc1, 0x37, 0xca, 0x7a, 0x75, 0x53, 0xe7, + 0xb3, 0x87, 0xb4, 0x28, 0x5f, 0xd3, 0xa0, 0x14, 0xe6, 0x2a, 0x32, 0x24, 0x31, 0xe3, 0x92, 0xf4, + 0xbb, 0xff, 0x4d, 0x5f, 0xd7, 0xbb, 0x34, 0x09, 0x93, 0x63, 0xef, 0xd4, 0xe4, 0xd8, 0xe8, 0x26, + 0xc7, 0xfb, 0x1a, 0x8c, 0x29, 0x79, 0x8c, 0x0c, 0x51, 0xb6, 0xe3, 0xa2, 0xf4, 0xbb, 0x3c, 0x23, + 0x98, 0x75, 0x97, 0x46, 0x49, 0x68, 0x0c, 0x5e, 0x1a, 0xc1, 0xec, 0x48, 0x69, 0xc2, 0xcc, 0xc6, + 0xa9, 0x48, 0x43, 0x99, 0x75, 0x37, 0x67, 0x99, 0xe5, 0x18, 0xbc, 0x39, 0xdf, 0x58, 0x5a, 0xd6, + 0x8f, 0x70, 0x72, 0x51, 0xca, 0x63, 0xf0, 0xf6, 0xcc, 0x79, 0x65, 0xcb, 0xf2, 0x1d, 0x0d, 0xa6, + 0x93, 0x79, 0x8f, 0x0c, 0x89, 0x76, 0xe3, 0x12, 0xf5, 0x7b, 0x48, 0x5e, 0xe5, 0x98, 0x2d, 0xd7, + 0x1f, 0x69, 0x70, 0x2e, 0x23, 0xe7, 0x91, 0x21, 0x9a, 0x13, 0x17, 0xed, 0x8d, 0x41, 0x9d, 0xaf, + 0x4c, 0x6a, 0xb6, 0x92, 0xf4, 0x18, 0xbc, 0x66, 0x0b, 0x66, 0xdd, 0xc3, 0x09, 0x35, 0xf9, 0x31, + 0xf8, 0x70, 0x22, 0xbd, 0xb7, 0x22, 0xa9, 0xdf, 0x51, 0x1a, 0x64, 0xf0, 0xfa, 0xcd, 0x79, 0x75, + 0x1f, 0x27, 0xc2, 0xa4, 0xc8, 0xe0, 0xc7, 0x89, 0x75, 0x7d, 0xe3, 0xc8, 0x71, 0x42, 0x26, 0x48, + 0x4e, 0x63, 0x9c, 0x60, 0xcc, 0xba, 0x6b, 0x8c, 0x9a, 0x28, 0x19, 0xbc, 0xc6, 0x84, 0xdc, 0xb2, + 0xe5, 0xf9, 0xae, 0xa6, 0x9c, 0xe4, 0x51, 0xb2, 0x1f, 0x19, 0x72, 0xb9, 0x71, 0xb9, 0xde, 0x1c, + 0xd8, 0x56, 0x62, 0x55, 0xbe, 0x8f, 0x34, 0x98, 0x8c, 0xa7, 0x3e, 0x32, 0x24, 0xb3, 0xe2, 0x92, + 0xe9, 0x03, 0x38, 0x25, 0x94, 0xf4, 0xdc, 0xc9, 0xdc, 0xc7, 0xe0, 0x3d, 0xb7, 0xca, 0xb1, 0x7b, + 0x5f, 0x66, 0xa5, 0x3d, 0x06, 0xdf, 0x97, 0xdd, 0x0f, 0x3e, 0xaa, 0xf2, 0x7d, 0x4f, 0x83, 0x0b, + 0xd9, 0xb9, 0x8e, 0x0c, 0x09, 0xf7, 0xe2, 0x12, 0xbe, 0x35, 0xc0, 0xe3, 0xd1, 0xc9, 0x58, 0x45, + 0x26, 0x3b, 0x06, 0x1f, 0xab, 0xe8, 0xcb, 0x9b, 0xf5, 0xa3, 0x62, 0xb8, 0x28, 0xef, 0x71, 0x0a, + 0x31, 0x1c, 0x67, 0x96, 0x29, 0xcd, 0x7c, 0x10, 0xdb, 0x71, 0xc4, 0xb7, 0x23, 0xa1, 0x77, 0xe5, + 0x06, 0x28, 0xbe, 0x4f, 0xe8, 0x53, 0xbd, 0xe7, 0x54, 0x8e, 0xde, 0xe7, 0xf4, 0x37, 0x05, 0x98, + 0x4a, 0xe4, 0x17, 0xd8, 0x35, 0x1d, 0xf4, 0x27, 0xbb, 0xd3, 0x4a, 0x8b, 0x9f, 0x59, 0xbe, 0x16, + 0x02, 0x70, 0x84, 0x83, 0x3e, 0xd2, 0x60, 0xea, 0x8e, 0x11, 0x98, 0x3b, 0x75, 0x23, 0xd8, 0xe1, + 0x9b, 0xd5, 0x72, 0xea, 0xbd, 0xd7, 0xe3, 0x54, 0xa3, 0xf4, 0x62, 0x02, 0x80, 0x93, 0xfc, 0xd1, + 0x73, 0x30, 0xda, 0x76, 0x6d, 0xdb, 0x72, 0x9a, 0xe2, 0x72, 0x12, 0x99, 0x2f, 0xaf, 0xf3, 0x62, + 0x1c, 0xc2, 0xe3, 0x97, 0x4a, 0x15, 0x72, 0xd9, 0x06, 0x92, 0x68, 0xd2, 0x13, 0xed, 0xce, 0x1c, + 0x79, 0x54, 0x76, 0x67, 0xfe, 0x53, 0x01, 0x50, 0x7a, 0x0c, 0x7c, 0xd0, 0xb5, 0x6b, 0x97, 0xa1, + 0x68, 0x46, 0xaa, 0xa2, 0xec, 0xa7, 0x16, 0x3d, 0x2a, 0xa0, 0xfc, 0xa4, 0x83, 0x4f, 0xcc, 0x8e, + 0x47, 0xd2, 0xb7, 0xec, 0xf0, 0x72, 0x2c, 0x31, 0x7a, 0xbc, 0x44, 0xe2, 0xc3, 0xf4, 0x69, 0x85, + 0x77, 0x73, 0x0f, 0x06, 0x7a, 0xe8, 0xfc, 0xdb, 0xec, 0x52, 0x9d, 0x1d, 0x71, 0xa0, 0xaa, 0xd8, + 0xf3, 0x29, 0xe8, 0xaa, 0xac, 0x8c, 0x15, 0x42, 0x67, 0x73, 0xe5, 0x44, 0x7f, 0x3a, 0xf5, 0xd3, + 0x22, 0xcc, 0xa4, 0xdc, 0xe5, 0x19, 0x1d, 0x42, 0x7c, 0x1e, 0x4a, 0xf4, 0xaf, 0x72, 0xe7, 0x83, + 0xec, 0xc3, 0x1b, 0xa2, 0x1c, 0x4b, 0x0c, 0xe5, 0x54, 0xde, 0xf0, 0x11, 0xa7, 0xf2, 0xd4, 0x03, + 0xc7, 0x79, 0xde, 0x0b, 0xf6, 0x32, 0x4c, 0xf0, 0x6c, 0x7d, 0x78, 0x58, 0x6e, 0x84, 0x09, 0x2c, + 0xef, 0xf9, 0xb8, 0xae, 0x02, 0x71, 0x1c, 0xb7, 0xcb, 0xd1, 0xb8, 0xe2, 0x89, 0x8e, 0xc6, 0x7d, + 0x90, 0xbe, 0xfc, 0xe1, 0x9d, 0xbc, 0x87, 0xcf, 0x1e, 0x2c, 0xeb, 0x59, 0x28, 0x89, 0x33, 0x5c, + 0x3e, 0xdb, 0x5d, 0x57, 0x16, 0x47, 0x16, 0x44, 0x19, 0x96, 0x50, 0x3a, 0xfa, 0xf9, 0xbe, 0xfd, + 0x1a, 0xf1, 0xac, 0xed, 0x03, 0x71, 0x2c, 0x50, 0x8e, 0x7e, 0x7a, 0x08, 0xc0, 0x11, 0xce, 0xa3, + 0xb8, 0x9f, 0xfe, 0x1f, 0x35, 0x98, 0xe4, 0xe9, 0xad, 0x6a, 0xbb, 0xbd, 0xe8, 0x91, 0x86, 0x4f, + 0x5d, 0x4f, 0xdb, 0xb3, 0xf6, 0x8d, 0x80, 0x84, 0x47, 0xe1, 0x7a, 0x73, 0x3d, 0x75, 0x59, 0x19, + 0x2b, 0x84, 0xd0, 0x33, 0x30, 0x62, 0xb4, 0xdb, 0x2b, 0x4b, 0x4c, 0x86, 0xe1, 0x68, 0xdb, 0x40, + 0x95, 0x16, 0x62, 0x0e, 0x43, 0xaf, 0xc0, 0xa4, 0xe5, 0xf8, 0x81, 0x61, 0xdb, 0x6c, 0xcf, 0xfd, + 0xca, 0x12, 0x73, 0xf4, 0xc3, 0xd1, 0x26, 0x90, 0x95, 0x18, 0x14, 0x27, 0xb0, 0xe7, 0xff, 0x6e, + 0x0c, 0x66, 0x52, 0xd9, 0x3a, 0x34, 0x0b, 0x43, 0x16, 0x3f, 0xa4, 0x34, 0x5c, 0x03, 0x41, 0x69, + 0x68, 0x65, 0x09, 0x0f, 0x59, 0x0d, 0xd5, 0x91, 0x0c, 0x9d, 0x9e, 0x23, 0x91, 0xe7, 0xfa, 0x87, + 0x8f, 0x7b, 0xae, 0x3f, 0x3a, 0x3b, 0x28, 0xce, 0xde, 0x65, 0x1c, 0x7e, 0x8e, 0xce, 0x1b, 0x62, + 0x05, 0xff, 0x58, 0xa7, 0x83, 0x6f, 0x41, 0xc9, 0x68, 0x5b, 0x27, 0x38, 0x1a, 0xcc, 0x8c, 0xa7, + 0x5a, 0x5f, 0xe1, 0xe7, 0x82, 0x25, 0x91, 0x81, 0x1f, 0x0a, 0x56, 0x83, 0x81, 0xd2, 0x03, 0x83, + 0x81, 0xcb, 0x50, 0x34, 0xcc, 0xc0, 0xda, 0x27, 0xc2, 0x8e, 0x65, 0x88, 0x51, 0x65, 0xa5, 0x58, + 0x40, 0xc5, 0xd5, 0xb8, 0x41, 0x18, 0xf2, 0x42, 0xea, 0x6a, 0xdc, 0x10, 0x84, 0x55, 0x3c, 0xe6, + 0x6b, 0x99, 0xd2, 0x84, 0xbe, 0x76, 0x2c, 0xe1, 0x6b, 0x55, 0x20, 0x8e, 0xe3, 0xa2, 0x2a, 0x4c, + 0xf1, 0x82, 0xdb, 0x6d, 0xdb, 0x35, 0x1a, 0xb4, 0xfa, 0x78, 0x5c, 0x2b, 0xae, 0xc7, 0xc1, 0x38, + 0x89, 0xdf, 0xc5, 0x5d, 0x4f, 0xf4, 0xef, 0xae, 0x27, 0xf3, 0x71, 0xd7, 0x49, 0x8b, 0xec, 0xc1, + 0x5d, 0xbf, 0x97, 0x3c, 0x6f, 0xcf, 0x77, 0x69, 0xf6, 0xeb, 0x5a, 0xa9, 0x79, 0x35, 0xd4, 0x13, + 0xf5, 0xc7, 0x3a, 0x67, 0xff, 0x29, 0x98, 0x70, 0xbd, 0xa6, 0xe1, 0x58, 0xf7, 0x98, 0xc3, 0xf1, + 0xd9, 0x6e, 0xcd, 0x32, 0xd7, 0xd6, 0x5b, 0x2a, 0x00, 0xc7, 0xf1, 0xd0, 0x3d, 0x28, 0x37, 0x43, + 0x2f, 0x5b, 0x99, 0xc9, 0xc5, 0xcf, 0xc4, 0xbd, 0x36, 0x3f, 0x1e, 0x24, 0xcb, 0x70, 0xc4, 0x4e, + 0x19, 0x95, 0xd0, 0xa3, 0x32, 0x2a, 0xbd, 0x57, 0x62, 0x6e, 0x3c, 0xbe, 0xcc, 0x71, 0x46, 0x31, + 0xdf, 0xa7, 0xa1, 0x2c, 0x22, 0x02, 0x31, 0x76, 0x95, 0x6b, 0x1f, 0x13, 0xaa, 0x72, 0x2e, 0x75, + 0xef, 0xc4, 0xca, 0x12, 0x8e, 0xb0, 0x8f, 0x19, 0x00, 0xc6, 0xae, 0x65, 0x28, 0xe4, 0x77, 0x2d, + 0x83, 0x0e, 0x8f, 0xf3, 0xf3, 0xb7, 0xba, 0xbe, 0xca, 0x02, 0x14, 0xcb, 0xe4, 0xc7, 0x6f, 0xf9, + 0x4d, 0x79, 0x4f, 0x8b, 0x8f, 0x78, 0xfc, 0x5a, 0x16, 0x12, 0xce, 0xae, 0x2b, 0x3c, 0x9d, 0x6d, + 0x48, 0x4f, 0x57, 0x4c, 0x79, 0xba, 0x08, 0x88, 0xe3, 0xb8, 0x5d, 0xdc, 0x54, 0xa9, 0x7f, 0x37, + 0x55, 0xce, 0xcb, 0x4d, 0xc5, 0x35, 0xee, 0x84, 0x51, 0x25, 0x1c, 0x19, 0x55, 0xbe, 0x01, 0x63, + 0x3e, 0xeb, 0x49, 0xde, 0xe1, 0x63, 0x3d, 0x77, 0xb8, 0x1e, 0xd5, 0xc6, 0x2a, 0x29, 0xc5, 0xd0, + 0xc7, 0x4f, 0xf1, 0xae, 0x87, 0x79, 0x28, 0x36, 0x3d, 0xb7, 0xd3, 0xe6, 0x67, 0x06, 0x84, 0x92, + 0x5f, 0x67, 0x25, 0x58, 0x40, 0xfa, 0x73, 0x06, 0xdf, 0x2d, 0xc3, 0x54, 0x62, 0x9d, 0x31, 0x33, + 0xcf, 0xa4, 0x9d, 0x71, 0x9e, 0xe9, 0x12, 0x14, 0x02, 0x1a, 0x34, 0x0c, 0xc5, 0x4f, 0xa5, 0xb3, + 0x68, 0x81, 0x41, 0xa8, 0xf1, 0x98, 0x3b, 0xc4, 0xdc, 0x0d, 0xef, 0x65, 0x10, 0xd1, 0x9f, 0x34, + 0x9e, 0x45, 0x15, 0x88, 0xe3, 0xb8, 0xe8, 0xff, 0x41, 0xd9, 0x68, 0x34, 0x3c, 0xe2, 0xfb, 0xe2, + 0xd2, 0x99, 0x32, 0xf7, 0xf9, 0xd5, 0xb0, 0x10, 0x47, 0x70, 0x36, 0x51, 0x6d, 0x6c, 0xfb, 0xb7, + 0x7d, 0x91, 0x3d, 0x52, 0x27, 0xaa, 0x4b, 0xcb, 0x3a, 0x2d, 0xc7, 0x12, 0x03, 0x35, 0x60, 0x6a, + 0xd7, 0xdb, 0x5a, 0x5c, 0x34, 0xcc, 0x1d, 0x72, 0x92, 0x8c, 0x03, 0xbb, 0x51, 0xf6, 0x66, 0x9c, + 0x02, 0x4e, 0x92, 0x14, 0x5c, 0x6e, 0x92, 0x83, 0xc0, 0xd8, 0x3a, 0x49, 0x4c, 0x18, 0x72, 0x51, + 0x29, 0xe0, 0x24, 0x49, 0x1a, 0xc1, 0xed, 0x7a, 0x5b, 0xe1, 0x89, 0x76, 0x71, 0x43, 0x8c, 0x8c, + 0xe0, 0x6e, 0x46, 0x20, 0xac, 0xe2, 0xd1, 0x06, 0xdb, 0xf5, 0xb6, 0x30, 0x31, 0xec, 0x96, 0xb8, + 0x84, 0x4f, 0x36, 0xd8, 0x4d, 0x51, 0x8e, 0x25, 0x06, 0x6a, 0x03, 0xa2, 0x5f, 0xc7, 0xfa, 0x5d, + 0x1e, 0xc9, 0x15, 0x93, 0xbe, 0x67, 0xb3, 0xbe, 0x46, 0x22, 0xa9, 0x1f, 0x74, 0x81, 0xba, 0xbb, + 0x9b, 0x29, 0x3a, 0x38, 0x83, 0x36, 0x7a, 0x13, 0x9e, 0xd8, 0xf5, 0xb6, 0x44, 0xda, 0xbf, 0xee, + 0x59, 0x8e, 0x69, 0xb5, 0x0d, 0x7e, 0x47, 0xc0, 0x58, 0xfc, 0xce, 0xc0, 0x9b, 0xd9, 0x68, 0xb8, + 0x5b, 0xfd, 0x78, 0xd2, 0x73, 0x3c, 0x97, 0xa4, 0x67, 0xc2, 0x5c, 0x4f, 0x94, 0xf4, 0x9c, 0x78, + 0x54, 0x82, 0x95, 0x1f, 0x68, 0x80, 0xd8, 0x0e, 0xab, 0xf0, 0xe5, 0x0c, 0xe6, 0xfc, 0xd0, 0x15, + 0x28, 0x33, 0xef, 0xa7, 0x1c, 0x7a, 0x95, 0xd9, 0x83, 0xeb, 0x21, 0x00, 0x47, 0x38, 0x74, 0x8e, + 0xe2, 0xda, 0x0d, 0x22, 0x6f, 0xaa, 0x90, 0x73, 0x94, 0x5b, 0xac, 0x14, 0x0b, 0x28, 0xba, 0x0e, + 0x33, 0x1e, 0xd9, 0x32, 0x6c, 0xc3, 0x31, 0x89, 0x1e, 0x78, 0x46, 0x40, 0x9a, 0x07, 0xc2, 0x93, + 0xc8, 0x6d, 0xac, 0x38, 0x89, 0x80, 0xd3, 0x75, 0xe6, 0xff, 0xb5, 0x04, 0xd3, 0xc9, 0xad, 0x61, + 0x0f, 0xca, 0xd5, 0x5e, 0x81, 0x72, 0xdb, 0xf0, 0x02, 0x4b, 0xb9, 0xc7, 0x43, 0x7e, 0x55, 0x3d, + 0x04, 0xe0, 0x08, 0x87, 0x4e, 0xfb, 0xd9, 0x95, 0xa6, 0x42, 0x42, 0x39, 0xed, 0x67, 0x57, 0x9e, + 0x62, 0x0e, 0xcb, 0xbe, 0x1c, 0xa2, 0x70, 0x6a, 0x97, 0x43, 0x3c, 0x14, 0x77, 0xa4, 0xbe, 0x9f, + 0x4e, 0x93, 0xbd, 0x9d, 0xf3, 0xbe, 0xbf, 0xde, 0xa6, 0x5d, 0x13, 0xa6, 0xaa, 0xcf, 0xe2, 0x32, + 0x8c, 0x8d, 0x3c, 0x44, 0x8a, 0x19, 0x0a, 0x9f, 0x3d, 0xc5, 0x8a, 0x70, 0x9c, 0x35, 0xaa, 0xc3, + 0x79, 0xdb, 0x6a, 0x89, 0x84, 0x9f, 0x5f, 0x27, 0x1e, 0xbf, 0x49, 0x98, 0x39, 0xea, 0xe1, 0x28, + 0x11, 0xb2, 0x9a, 0x81, 0x83, 0x33, 0x6b, 0xa2, 0xe7, 0x60, 0x74, 0x9f, 0x78, 0xec, 0xf0, 0x3e, + 0xc4, 0x6f, 0x37, 0x7f, 0x8d, 0x17, 0xe3, 0x10, 0x8e, 0xde, 0x84, 0x82, 0x6f, 0xf8, 0xb6, 0x08, + 0xd4, 0x4e, 0xb0, 0x95, 0xb9, 0xaa, 0xaf, 0x0a, 0xf5, 0x60, 0x29, 0x5a, 0xfa, 0x1b, 0x33, 0x92, + 0x67, 0x14, 0xb0, 0x45, 0xcb, 0x2d, 0x13, 0x47, 0x2d, 0xb7, 0xf4, 0xe7, 0x14, 0xbf, 0x57, 0x84, + 0xa9, 0xc4, 0x5e, 0xcf, 0x07, 0xb9, 0x16, 0xe9, 0x29, 0x86, 0x8e, 0xf0, 0x14, 0xcf, 0x43, 0xc9, + 0xb4, 0x2d, 0xe2, 0x04, 0x2b, 0x0d, 0xe1, 0x51, 0xa2, 0x23, 0xe5, 0xbc, 0x7c, 0x09, 0x4b, 0x8c, + 0xb3, 0xf6, 0x2b, 0xaa, 0x03, 0x18, 0x39, 0xee, 0xa5, 0x33, 0xc5, 0x41, 0x3e, 0x94, 0x93, 0xcf, + 0xd1, 0xf6, 0x44, 0xc7, 0x3e, 0xf4, 0x17, 0x2e, 0x87, 0x8b, 0x2c, 0xe5, 0xbc, 0x17, 0x59, 0xfa, + 0xb3, 0x91, 0x7f, 0x18, 0x82, 0xd2, 0x7a, 0x75, 0x53, 0x67, 0x17, 0x11, 0xbf, 0x15, 0xbf, 0x6a, + 0xb9, 0x1f, 0x21, 0xd3, 0x77, 0x2a, 0x2f, 0x53, 0xd3, 0xea, 0xf9, 0x3a, 0xe5, 0x32, 0xb7, 0x3e, + 0x3a, 0xcf, 0xe4, 0xd5, 0xd1, 0x22, 0x14, 0x9c, 0xdd, 0x5e, 0xdf, 0x9b, 0x60, 0x6d, 0xb6, 0x7e, + 0x93, 0x1c, 0x60, 0x56, 0x19, 0xdd, 0x06, 0x30, 0x3d, 0xd2, 0x20, 0x4e, 0x60, 0x89, 0xe7, 0xbe, + 0x7a, 0x5b, 0x5f, 0x58, 0x94, 0x95, 0xb1, 0x42, 0x68, 0xfe, 0xeb, 0x45, 0x98, 0x4e, 0xee, 0xe9, + 0x7e, 0x90, 0xcb, 0x79, 0x0e, 0x46, 0xfd, 0x0e, 0xbb, 0xe0, 0x46, 0x38, 0x1d, 0x39, 0x0c, 0xe8, + 0xbc, 0x18, 0x87, 0xf0, 0x6c, 0x57, 0x32, 0x7c, 0x26, 0xae, 0xa4, 0x70, 0x5c, 0x57, 0x92, 0x77, + 0x40, 0xf3, 0x7e, 0xfa, 0x29, 0x85, 0xb7, 0x73, 0xde, 0x85, 0xdf, 0x83, 0x2f, 0x21, 0xc2, 0xaa, + 0x47, 0x73, 0xb9, 0x1a, 0x26, 0x34, 0xc4, 0xd4, 0x3a, 0xea, 0x23, 0x78, 0x63, 0xdf, 0x4f, 0x46, + 0x60, 0x32, 0xbe, 0x49, 0x93, 0x4e, 0x8b, 0x77, 0x5c, 0x3f, 0x10, 0xc9, 0x82, 0xe4, 0x9b, 0x7f, + 0x37, 0x22, 0x10, 0x56, 0xf1, 0x8e, 0x37, 0x26, 0x3f, 0x07, 0xa3, 0xe2, 0x2e, 0x3a, 0x31, 0x24, + 0x4b, 0x2b, 0x12, 0xf7, 0xd5, 0xe1, 0x10, 0xfe, 0xbf, 0x03, 0xb2, 0xed, 0xa3, 0x6f, 0xa4, 0x07, + 0xe4, 0xb7, 0x72, 0xdd, 0x91, 0xfb, 0xb0, 0x8f, 0xc7, 0xfd, 0x29, 0xf7, 0x9b, 0x30, 0x93, 0x5a, + 0xbc, 0x39, 0xde, 0xbd, 0xd8, 0x73, 0x30, 0xe2, 0x18, 0x2d, 0xc2, 0xaf, 0xc3, 0x2a, 0xf3, 0xe1, + 0x8d, 0x3d, 0x9d, 0x80, 0x79, 0xf9, 0xfc, 0xf7, 0x8b, 0x30, 0x93, 0x3a, 0x79, 0xc2, 0xa6, 0xbc, + 0x72, 0x01, 0x20, 0x31, 0x91, 0xcf, 0x4c, 0xfb, 0xbf, 0x02, 0x93, 0xcc, 0x30, 0xea, 0x89, 0x65, + 0x03, 0xb9, 0x88, 0xbd, 0x19, 0x83, 0xe2, 0x04, 0xf6, 0xf1, 0xa6, 0xcc, 0xaf, 0xc0, 0xa4, 0xfa, + 0xd6, 0xc7, 0xca, 0x92, 0x58, 0x16, 0x96, 0x4c, 0xf4, 0x18, 0x14, 0x27, 0xb0, 0xd9, 0x43, 0x29, + 0x72, 0xf0, 0x14, 0xe9, 0xb8, 0x91, 0xde, 0x1f, 0x4a, 0x49, 0x90, 0xc0, 0x29, 0xa2, 0x68, 0x0b, + 0x66, 0x79, 0xfa, 0x5e, 0x15, 0x28, 0xb1, 0xa5, 0x64, 0x5e, 0x08, 0x3d, 0xbb, 0xd4, 0x15, 0x13, + 0x1f, 0x41, 0xa5, 0xc7, 0xdb, 0x1d, 0x3f, 0x48, 0x3f, 0x1d, 0xf9, 0x4e, 0xde, 0xe7, 0x95, 0x4e, + 0x64, 0x83, 0xe5, 0x47, 0xc5, 0x06, 0xbf, 0x3f, 0x46, 0x0d, 0x25, 0xb1, 0xf5, 0x1e, 0xcd, 0x43, + 0x91, 0xe9, 0x26, 0x1d, 0x5e, 0xe4, 0x4a, 0x00, 0x53, 0x5a, 0x1f, 0x0b, 0xc8, 0x31, 0x92, 0xe4, + 0x22, 0x64, 0x1b, 0xee, 0x12, 0xb2, 0xb5, 0xe1, 0x5c, 0x60, 0xfb, 0x9b, 0x5e, 0xc7, 0x0f, 0x16, + 0x89, 0x17, 0xf8, 0x42, 0x75, 0x0b, 0x3d, 0xbf, 0xb7, 0xb6, 0xb9, 0xaa, 0x27, 0xa9, 0xe0, 0x2c, + 0xd2, 0x54, 0x81, 0x03, 0xdb, 0xaf, 0xda, 0xb6, 0x7b, 0x27, 0xdc, 0x59, 0x10, 0x0d, 0x36, 0x62, + 0x18, 0x91, 0x0a, 0xbc, 0xb9, 0xaa, 0x77, 0xc1, 0xc4, 0x47, 0x50, 0x41, 0x6b, 0xec, 0xab, 0x5e, + 0x33, 0x6c, 0xab, 0x61, 0x04, 0x84, 0x0e, 0xc7, 0x2c, 0x7b, 0xcd, 0xad, 0x43, 0x2e, 0x37, 0x6e, + 0xae, 0xea, 0x49, 0x14, 0x9c, 0x55, 0x6f, 0x50, 0x6f, 0xae, 0x66, 0x8e, 0xde, 0xa5, 0x33, 0x19, + 0xbd, 0xcb, 0xbd, 0x59, 0x39, 0xe4, 0x64, 0xe5, 0x09, 0x95, 0xef, 0xc1, 0xca, 0x1b, 0x30, 0x25, + 0x1f, 0xa3, 0x11, 0x3a, 0x3b, 0xd6, 0xf3, 0xea, 0x47, 0x35, 0x4e, 0x01, 0x27, 0x49, 0x9e, 0x51, + 0x46, 0xe9, 0x2f, 0x34, 0x98, 0xa6, 0x92, 0x54, 0x83, 0x1d, 0xe2, 0xdc, 0xab, 0x1b, 0x9e, 0xd1, + 0x0a, 0x6f, 0x10, 0xdb, 0xce, 0xbd, 0xc9, 0xab, 0x09, 0x46, 0xbc, 0xe9, 0xe5, 0xb5, 0xce, 0x49, + 0x30, 0x4e, 0x49, 0x46, 0x87, 0xbe, 0xa8, 0xec, 0x24, 0x0f, 0xa7, 0x9e, 0x8f, 0x33, 0x0a, 0x87, + 0xbe, 0x24, 0xd1, 0xbe, 0x7c, 0xec, 0xec, 0x22, 0x3c, 0x9e, 0xf9, 0xa9, 0x3d, 0x39, 0xea, 0xaf, + 0x15, 0xc5, 0xf1, 0x99, 0x1c, 0xe6, 0x02, 0x79, 0xbf, 0x6c, 0x44, 0x03, 0x2b, 0x47, 0xbe, 0x7c, + 0x95, 0x78, 0x11, 0x2d, 0x7a, 0xeb, 0x2a, 0xc2, 0x41, 0xb3, 0x30, 0xd4, 0xd8, 0x62, 0xae, 0x7e, + 0x24, 0xda, 0xc7, 0xb7, 0x54, 0xc3, 0x43, 0x8d, 0x2d, 0xf4, 0x2c, 0x94, 0xc4, 0x24, 0x23, 0xdc, + 0xe6, 0xc6, 0xd8, 0x8a, 0x19, 0x88, 0x8f, 0x25, 0x74, 0x50, 0x61, 0xfd, 0x00, 0xf2, 0xf7, 0xc9, + 0x9e, 0x7b, 0xe8, 0x13, 0x6d, 0xbd, 0x79, 0xe8, 0xe7, 0x95, 0x4b, 0xcb, 0x21, 0x9e, 0xcb, 0x4d, + 0xdf, 0x48, 0xde, 0x5f, 0xc0, 0xf2, 0xd7, 0x45, 0xb8, 0x90, 0x7d, 0xa8, 0xeb, 0xa1, 0xb1, 0x06, + 0xae, 0xdc, 0xc3, 0x99, 0xca, 0xfd, 0x71, 0x18, 0xf5, 0x99, 0xe0, 0xe1, 0xca, 0x3f, 0xbf, 0x4e, + 0x96, 0x17, 0xe1, 0x10, 0x86, 0x5e, 0x05, 0xd4, 0x32, 0xee, 0xae, 0xf9, 0xcd, 0x45, 0xb7, 0xc3, + 0x6e, 0xc8, 0xc6, 0xc4, 0xe0, 0xd7, 0xb7, 0x8f, 0x44, 0xfb, 0x6b, 0xd6, 0x52, 0x18, 0x38, 0xa3, + 0x16, 0xdb, 0xab, 0x10, 0x5b, 0xff, 0x49, 0x6c, 0xf4, 0x39, 0x72, 0xc1, 0x66, 0x40, 0xf1, 0xc7, + 0x47, 0xe9, 0xc0, 0xdd, 0x1c, 0xc8, 0x49, 0xbf, 0x87, 0x3d, 0x7a, 0x3f, 0x4d, 0xd3, 0xf9, 0x69, + 0x01, 0xce, 0x65, 0xdc, 0xf4, 0x12, 0xf7, 0xde, 0xda, 0x31, 0xbc, 0xf7, 0x9e, 0x6c, 0xa9, 0x7c, + 0x36, 0x5a, 0x87, 0x42, 0x1d, 0xd1, 0x4c, 0x1f, 0x68, 0x70, 0x9e, 0x2d, 0xb0, 0x87, 0xab, 0x7a, + 0xe1, 0x15, 0xbf, 0xc3, 0x42, 0x33, 0x8f, 0x75, 0xd7, 0xf6, 0xf5, 0x0c, 0x0a, 0xd1, 0xaa, 0x63, + 0x16, 0x14, 0x67, 0x72, 0x45, 0x8b, 0x00, 0xf2, 0xa8, 0x5c, 0x68, 0xc9, 0xcf, 0xb0, 0x1b, 0xc3, + 0x65, 0xe9, 0x7f, 0xb3, 0xc5, 0x7b, 0xa5, 0xb5, 0xd9, 0xcc, 0x48, 0xa9, 0x36, 0x88, 0x77, 0x55, + 0x32, 0xba, 0xf7, 0xf8, 0x16, 0xd0, 0x9f, 0x76, 0xfd, 0xf9, 0x30, 0x4c, 0xc6, 0x3b, 0x12, 0x5d, + 0x86, 0x62, 0xdb, 0x23, 0xdb, 0xd6, 0xdd, 0xe4, 0xf3, 0x1a, 0x75, 0x56, 0x8a, 0x05, 0x14, 0xb9, + 0x50, 0xb4, 0x8d, 0x2d, 0x3a, 0xde, 0xf3, 0xeb, 0xcd, 0xaf, 0xf7, 0x7d, 0x55, 0x77, 0xb8, 0xca, + 0x10, 0x32, 0x5c, 0x65, 0xe4, 0xb1, 0x60, 0x43, 0x19, 0x6e, 0x5b, 0xc4, 0x6e, 0xf0, 0xed, 0x9c, + 0x83, 0x60, 0xb8, 0xcc, 0xc8, 0x63, 0xc1, 0x06, 0xbd, 0x05, 0x65, 0xfe, 0x26, 0x49, 0xa3, 0x76, + 0x20, 0x66, 0xb8, 0xff, 0xf7, 0x78, 0x2a, 0xbb, 0x69, 0xb5, 0x48, 0x64, 0x8e, 0x8b, 0x21, 0x11, + 0x1c, 0xd1, 0x63, 0xcf, 0xb6, 0x6f, 0x07, 0xc4, 0xd3, 0x03, 0xc3, 0x0b, 0x5f, 0x55, 0x8f, 0x9e, + 0x6d, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xff, 0xd5, 0x28, 0x4c, 0x25, 0x8e, 0xd1, 0xfe, 0x72, 0x9c, + 0x11, 0x55, 0xdf, 0x4f, 0x19, 0xce, 0xfb, 0xfd, 0x94, 0x42, 0x1e, 0xe1, 0xc1, 0x5b, 0x30, 0xee, + 0xfb, 0x3b, 0x0c, 0xb3, 0xf7, 0x5c, 0xdd, 0xf4, 0xe1, 0xfd, 0xb9, 0x71, 0x5d, 0xbf, 0x21, 0xab, + 0xe3, 0x18, 0x31, 0xb4, 0x0a, 0xa3, 0x62, 0xef, 0x60, 0x6f, 0x1b, 0xff, 0x58, 0x18, 0x12, 0x86, + 0x47, 0x21, 0x89, 0x41, 0xac, 0x38, 0x27, 0x94, 0xee, 0xa1, 0x0f, 0x84, 0xeb, 0x70, 0xbe, 0xed, + 0xda, 0x76, 0xb8, 0x79, 0x53, 0xbe, 0x7c, 0x54, 0x8e, 0x1f, 0xdd, 0xa9, 0x67, 0xe0, 0xe0, 0xcc, + 0x9a, 0xfd, 0x79, 0xd9, 0x7f, 0x2f, 0xc2, 0x64, 0xfc, 0x96, 0xa9, 0xb3, 0x3b, 0x40, 0xc9, 0x12, + 0x81, 0x55, 0xcf, 0x49, 0x1e, 0xa0, 0xdc, 0x14, 0xe5, 0x58, 0x62, 0x20, 0x0c, 0x65, 0xbe, 0xa1, + 0xfd, 0x66, 0xaf, 0x6b, 0xce, 0x7c, 0x67, 0x6c, 0x58, 0x17, 0x47, 0x64, 0x28, 0x4d, 0x3f, 0x44, + 0xef, 0xcd, 0x32, 0x19, 0x4d, 0x59, 0x8c, 0x23, 0x32, 0x74, 0xc4, 0xf2, 0x48, 0x33, 0xcc, 0x06, + 0x2a, 0x23, 0x16, 0x66, 0xa5, 0x58, 0x40, 0xd1, 0x73, 0x30, 0xea, 0xb9, 0x36, 0xa9, 0xe2, 0x75, + 0x11, 0x4d, 0xcb, 0x85, 0x32, 0xcc, 0x8b, 0x71, 0x08, 0x1f, 0xc4, 0x22, 0x51, 0x5c, 0x01, 0x7a, + 0x30, 0xa1, 0xeb, 0x30, 0xb3, 0x2f, 0x32, 0x8c, 0xba, 0xd5, 0x74, 0x8c, 0x20, 0x3a, 0x73, 0x25, + 0x37, 0x1c, 0xbe, 0x96, 0x44, 0xc0, 0xe9, 0x3a, 0x67, 0x17, 0x2b, 0x13, 0xa7, 0xd1, 0x76, 0x2d, + 0x27, 0x48, 0xc6, 0xca, 0xd7, 0x44, 0x39, 0x96, 0x18, 0xfd, 0xd9, 0xd9, 0xdf, 0x8f, 0xc2, 0x64, + 0xfc, 0x16, 0xb5, 0xb8, 0x0e, 0x6b, 0x03, 0xd0, 0xe1, 0xa1, 0xbc, 0x75, 0x78, 0xf8, 0x48, 0x1d, + 0x7e, 0x06, 0x46, 0xd8, 0x9b, 0xf6, 0x62, 0xb9, 0x49, 0x2e, 0x4e, 0xb1, 0xfb, 0x3e, 0x30, 0x87, + 0xa1, 0x2a, 0x1d, 0xe1, 0xf9, 0xb3, 0xff, 0xe2, 0xd1, 0x7f, 0x66, 0x19, 0xc3, 0xea, 0x88, 0x1c, + 0x03, 0xe3, 0x24, 0x7e, 0x2f, 0xb6, 0xd2, 0xdb, 0xea, 0xcf, 0x2b, 0x30, 0xc9, 0x84, 0xac, 0x9a, + 0x26, 0x9d, 0xef, 0xae, 0x34, 0xc4, 0x1e, 0x71, 0xb9, 0x70, 0xb6, 0xa1, 0x42, 0x97, 0x70, 0x02, + 0x3b, 0x6e, 0x99, 0xe5, 0x7c, 0x2c, 0x73, 0xe3, 0x84, 0x96, 0xf9, 0x34, 0x0c, 0x37, 0xec, 0x3d, + 0xa6, 0xd5, 0xa5, 0x68, 0xad, 0x64, 0x69, 0x75, 0x03, 0xd3, 0xf2, 0x33, 0x7a, 0xfc, 0x53, 0xb5, + 0xb7, 0xf1, 0x07, 0xd9, 0x1b, 0x8b, 0x6b, 0xf8, 0x03, 0x49, 0xfc, 0x3c, 0xcc, 0x44, 0xef, 0x71, + 0x8d, 0x52, 0x1d, 0xc7, 0x88, 0xf5, 0x67, 0xcc, 0x5f, 0x86, 0x52, 0xc8, 0x88, 0x36, 0xb4, 0xac, + 0x17, 0x35, 0x34, 0x35, 0x21, 0x46, 0xe4, 0x0a, 0x94, 0xdd, 0x36, 0x89, 0xbd, 0x6e, 0x28, 0x63, + 0xe0, 0x5b, 0x21, 0x00, 0x47, 0x38, 0xd4, 0x8a, 0x38, 0xd7, 0xc4, 0x12, 0xef, 0x6b, 0xb4, 0x50, + 0x08, 0x31, 0xff, 0x15, 0x0d, 0xc2, 0x27, 0x83, 0xd0, 0x12, 0x8c, 0xb4, 0x5d, 0x2f, 0xe0, 0x4b, + 0x6b, 0x63, 0x57, 0xe7, 0xb2, 0xdb, 0x87, 0xef, 0xee, 0x77, 0xbd, 0x20, 0xa2, 0x48, 0x7f, 0xf9, + 0x98, 0x57, 0xa6, 0x72, 0x9a, 0x76, 0xc7, 0x0f, 0x88, 0xb7, 0x52, 0x4f, 0xca, 0xb9, 0x18, 0x02, + 0x70, 0x84, 0x33, 0xff, 0x9f, 0x05, 0x98, 0x4e, 0x5e, 0xac, 0x87, 0xde, 0x81, 0x09, 0xdf, 0x6a, + 0x3a, 0x96, 0xd3, 0x14, 0xb1, 0xa8, 0xd6, 0xf3, 0xd1, 0x5e, 0x5d, 0xad, 0x8f, 0xe3, 0xe4, 0x72, + 0xdb, 0xad, 0x76, 0x36, 0x4f, 0xc8, 0xbf, 0x9f, 0xbe, 0x43, 0xe6, 0xed, 0x9c, 0xaf, 0x36, 0xfc, + 0xe5, 0xbe, 0x44, 0xe6, 0x17, 0x23, 0x70, 0x21, 0xfb, 0xea, 0xc4, 0x33, 0x0a, 0x5a, 0xa3, 0x63, + 0x9c, 0x43, 0x5d, 0x8f, 0x71, 0x46, 0xed, 0x3c, 0x9c, 0xd3, 0x55, 0x88, 0xb2, 0x01, 0x8e, 0x76, + 0xb5, 0x32, 0x9c, 0x2e, 0x3c, 0x30, 0x9c, 0xbe, 0x0c, 0x45, 0x71, 0x6d, 0x7e, 0x22, 0x4c, 0xad, + 0xf1, 0x4b, 0xed, 0x05, 0x54, 0x09, 0x05, 0x8a, 0x47, 0x86, 0x02, 0x34, 0xb4, 0x09, 0xd7, 0x1f, + 0x7b, 0x3b, 0xca, 0xc5, 0x43, 0x9b, 0xb0, 0x2e, 0x8e, 0xc8, 0xb0, 0x83, 0xfa, 0x6d, 0x2b, 0x7a, + 0xdb, 0x3b, 0x3a, 0xa8, 0x5f, 0x5f, 0xb9, 0x8d, 0x57, 0xb1, 0x80, 0xc6, 0x53, 0xc1, 0xe5, 0x5c, + 0x52, 0xc1, 0xd9, 0x3a, 0x77, 0x5a, 0x89, 0x30, 0x13, 0x66, 0x52, 0x7d, 0x7e, 0xec, 0x54, 0xd8, + 0x65, 0x28, 0xfa, 0x9d, 0x6d, 0x8a, 0x97, 0xb8, 0x41, 0x49, 0x67, 0xa5, 0x58, 0x40, 0xe7, 0xbf, + 0x5d, 0xa0, 0x5c, 0x12, 0x97, 0x6c, 0x9e, 0x91, 0x55, 0xbd, 0x0c, 0x13, 0x3c, 0x19, 0xf5, 0xba, + 0x72, 0xfd, 0x46, 0x49, 0x59, 0x60, 0x50, 0x81, 0x38, 0x8e, 0x8b, 0x56, 0x98, 0x9a, 0xf4, 0x3c, + 0x2d, 0x04, 0xa1, 0x49, 0x74, 0xe0, 0x16, 0x04, 0xd0, 0x0b, 0x30, 0xc6, 0x3e, 0x82, 0x37, 0xb9, + 0xc8, 0xca, 0xb2, 0x83, 0xb6, 0xd7, 0xa2, 0x62, 0xac, 0xe2, 0xc4, 0xb7, 0x16, 0x8c, 0xe4, 0xb2, + 0xb5, 0x20, 0xd5, 0x2b, 0xa7, 0xa5, 0x77, 0xdf, 0x2c, 0x81, 0x7c, 0x08, 0x11, 0x99, 0xa9, 0xe7, + 0x28, 0x3f, 0xdd, 0xf3, 0xe2, 0x4d, 0x28, 0x0a, 0xcf, 0x64, 0x65, 0x0c, 0x49, 0xaf, 0x02, 0x12, + 0xef, 0x1f, 0x8a, 0xa0, 0x5a, 0xb9, 0x4e, 0x49, 0xae, 0x52, 0xe9, 0x29, 0x0c, 0x9c, 0x51, 0x0b, + 0xbd, 0xca, 0x1e, 0x5f, 0x0d, 0x0c, 0xcb, 0x91, 0x9e, 0xf7, 0xe9, 0x2e, 0xe7, 0x2f, 0x39, 0x92, + 0x7c, 0x46, 0x95, 0xff, 0xc4, 0x51, 0x75, 0x74, 0x0d, 0x46, 0xf7, 0x5d, 0xbb, 0xd3, 0x12, 0xa9, + 0xf9, 0xb1, 0xab, 0xb3, 0x59, 0x94, 0x5e, 0x63, 0x28, 0xca, 0x79, 0x21, 0x5e, 0x05, 0x87, 0x75, + 0x11, 0x81, 0x29, 0xb6, 0xbd, 0xc7, 0x0a, 0x0e, 0x84, 0x01, 0x88, 0xa1, 0xf7, 0x72, 0x16, 0xb9, + 0xba, 0xdb, 0xd0, 0xe3, 0xd8, 0x7c, 0xa7, 0x47, 0xa2, 0x10, 0x27, 0x69, 0xa2, 0x65, 0x28, 0x19, + 0xdb, 0xdb, 0x96, 0x63, 0x05, 0x07, 0x22, 0x67, 0xf7, 0x54, 0x16, 0xfd, 0xaa, 0xc0, 0x11, 0xf7, + 0xb4, 0x88, 0x5f, 0x58, 0xd6, 0x45, 0xb7, 0x61, 0x2c, 0x70, 0x6d, 0x11, 0x97, 0xfa, 0x22, 0xd5, + 0x70, 0x31, 0x8b, 0xd4, 0xa6, 0x44, 0x8b, 0x96, 0x47, 0xa3, 0x32, 0x1f, 0xab, 0x74, 0xd0, 0xef, + 0x68, 0x30, 0xee, 0xb8, 0x0d, 0x12, 0x9a, 0x9e, 0x58, 0xae, 0x7b, 0x33, 0xa7, 0x07, 0x3c, 0x17, + 0xd6, 0x15, 0xda, 0xdc, 0x42, 0xe4, 0xfd, 0x1d, 0x2a, 0x08, 0xc7, 0x84, 0x40, 0x0e, 0x4c, 0x5b, + 0x2d, 0xa3, 0x49, 0xea, 0x1d, 0x5b, 0x6c, 0x4f, 0xf4, 0xc5, 0xe0, 0x91, 0x79, 0x6a, 0x77, 0xd5, + 0x35, 0x0d, 0x9b, 0x3f, 0x80, 0x8b, 0xc9, 0x36, 0xf1, 0xd8, 0x3b, 0xbc, 0x72, 0xa7, 0xc9, 0x4a, + 0x82, 0x12, 0x4e, 0xd1, 0x46, 0xd7, 0x61, 0xa6, 0xed, 0x59, 0x2e, 0xeb, 0x37, 0xdb, 0xf0, 0xf9, + 0x03, 0xa8, 0x10, 0x3f, 0xaa, 0x59, 0x4f, 0x22, 0xe0, 0x74, 0x1d, 0x7e, 0xbd, 0x00, 0x2f, 0x64, + 0x73, 0xb9, 0x91, 0xf0, 0x7a, 0x01, 0x5e, 0x86, 0x25, 0x74, 0xf6, 0xb3, 0x30, 0x93, 0x6a, 0x9b, + 0x9e, 0x1c, 0xc2, 0x1f, 0x68, 0x90, 0xcc, 0x97, 0xd3, 0x79, 0x43, 0xc3, 0xf2, 0x18, 0xc1, 0x83, + 0x64, 0x8e, 0x7f, 0x29, 0x04, 0xe0, 0x08, 0x07, 0x5d, 0x82, 0x42, 0xdb, 0x08, 0x76, 0x92, 0xdb, + 0xfc, 0x28, 0x49, 0xcc, 0x20, 0xe8, 0x2a, 0x00, 0xfd, 0x8b, 0x49, 0x93, 0xdc, 0x6d, 0x8b, 0x69, + 0x90, 0x5c, 0x7e, 0xa8, 0x4b, 0x08, 0x56, 0xb0, 0xe6, 0xff, 0x79, 0x04, 0x26, 0xe3, 0x63, 0x4b, + 0x6c, 0xb2, 0xa9, 0x3d, 0x70, 0xb2, 0x79, 0x19, 0x8a, 0x2d, 0x12, 0xec, 0xb8, 0x8d, 0xe4, 0x38, + 0xb9, 0xc6, 0x4a, 0xb1, 0x80, 0x32, 0xf1, 0x5d, 0x2f, 0x10, 0x62, 0x45, 0xe2, 0xbb, 0x5e, 0x80, + 0x19, 0x24, 0xdc, 0xa5, 0x58, 0xe8, 0xb2, 0x4b, 0xb1, 0x09, 0xd3, 0xfc, 0x82, 0xdf, 0x45, 0xe2, + 0x05, 0x27, 0xde, 0x5d, 0xab, 0x27, 0x48, 0xe0, 0x14, 0x51, 0xd4, 0xa0, 0xde, 0x86, 0x96, 0x45, + 0x2b, 0x03, 0xbd, 0x1f, 0xdd, 0xd7, 0xe3, 0x14, 0x70, 0x92, 0xe4, 0x20, 0xb2, 0x91, 0xf1, 0x7e, + 0x3c, 0xf1, 0xcd, 0x88, 0xa5, 0xbc, 0x6e, 0x46, 0x7c, 0x09, 0x26, 0x5b, 0xc6, 0xdd, 0xba, 0x71, + 0x60, 0xbb, 0x46, 0x43, 0xb7, 0xee, 0x11, 0x71, 0xba, 0x14, 0x1d, 0xde, 0x9f, 0x9b, 0x5c, 0x8b, + 0x41, 0x70, 0x02, 0xb3, 0xbf, 0x01, 0xf8, 0x0f, 0x87, 0x00, 0xa5, 0x1f, 0x2e, 0x41, 0x1f, 0x6a, + 0x30, 0x79, 0x27, 0xd6, 0x46, 0x83, 0x09, 0xce, 0x64, 0xda, 0x2b, 0x5e, 0x8e, 0x13, 0xcc, 0x95, + 0x09, 0xce, 0xd0, 0xe9, 0x4d, 0x24, 0x6b, 0x0b, 0x3f, 0xfc, 0xf9, 0xc5, 0xc7, 0x7e, 0xf4, 0xf3, + 0x8b, 0x8f, 0xfd, 0xf8, 0xe7, 0x17, 0x1f, 0xfb, 0xca, 0xe1, 0x45, 0xed, 0x87, 0x87, 0x17, 0xb5, + 0x1f, 0x1d, 0x5e, 0xd4, 0x7e, 0x7c, 0x78, 0x51, 0xfb, 0xd9, 0xe1, 0x45, 0xed, 0xdb, 0xff, 0x76, + 0xf1, 0xb1, 0xcf, 0x95, 0x42, 0xaa, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0xda, 0x40, 0x35, 0x64, + 0xb2, 0xa4, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { @@ -2731,6 +2733,11 @@ func (m *AzureQueueStorageEventSource) MarshalToSizedBuffer(dAtA []byte) (int, e _ = i var l int _ = l + if m.WaitTimeInSeconds != nil { + i = encodeVarintGenerated(dAtA, i, uint64(*m.WaitTimeInSeconds)) + i-- + dAtA[i] = 0x48 + } i-- if m.DecodeMessage { dAtA[i] = 1 @@ -8346,6 +8353,9 @@ func (m *AzureQueueStorageEventSource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } n += 2 + if m.WaitTimeInSeconds != nil { + n += 1 + sovGenerated(uint64(*m.WaitTimeInSeconds)) + } return n } @@ -10337,6 +10347,7 @@ func (this *AzureQueueStorageEventSource) String() string { `Metadata:` + mapStringForMetadata + `,`, `Filter:` + strings.Replace(this.Filter.String(), "EventSourceFilter", "EventSourceFilter", 1) + `,`, `DecodeMessage:` + fmt.Sprintf("%v", this.DecodeMessage) + `,`, + `WaitTimeInSeconds:` + valueToStringGenerated(this.WaitTimeInSeconds) + `,`, `}`, }, "") return s @@ -13710,6 +13721,26 @@ func (m *AzureQueueStorageEventSource) Unmarshal(dAtA []byte) error { } } m.DecodeMessage = bool(v != 0) + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field WaitTimeInSeconds", wireType) + } + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.WaitTimeInSeconds = &v default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index c84f4d686c..12f9878907 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -245,6 +245,11 @@ message AzureQueueStorageEventSource { // If set to true the decoding is done before the evaluation of JSONBody // +optional optional bool decodeMessage = 8; + + // WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. + // The default value is 3 seconds. + // +optional + optional int32 waitTimeInSeconds = 9; } // AzureServiceBusEventSource describes the event source for azure service bus diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index 5ee9742d98..cf10771d89 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -515,6 +515,13 @@ func schema_pkg_apis_eventsource_v1alpha1_AzureQueueStorageEventSource(ref commo Format: "", }, }, + "waitTimeInSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. The default value is 3 seconds.", + Type: []string{"integer"}, + Format: "int32", + }, + }, }, Required: []string{"queueName"}, }, diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go index 354cb96287..37173e18f0 100644 --- a/pkg/apis/eventsource/v1alpha1/types.go +++ b/pkg/apis/eventsource/v1alpha1/types.go @@ -1299,6 +1299,10 @@ type AzureQueueStorageEventSource struct { // If set to true the decoding is done before the evaluation of JSONBody // +optional DecodeMessage bool `json:"decodeMessage,omitempty" protobuf:"bytes,8,opt,name=decodeMessage"` + // WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. + // The default value is 3 seconds. + // +optional + WaitTimeInSeconds *int32 `json:"waitTimeInSeconds,omitempty" protobuf:"varint,9,opt,name=waitTimeInSeconds"` } // StripeEventSource describes the event source for stripe webhook notifications diff --git a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go index 05f1ce0e71..845a6762fc 100644 --- a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go @@ -217,6 +217,11 @@ func (in *AzureQueueStorageEventSource) DeepCopyInto(out *AzureQueueStorageEvent *out = new(EventSourceFilter) **out = **in } + if in.WaitTimeInSeconds != nil { + in, out := &in.WaitTimeInSeconds, &out.WaitTimeInSeconds + *out = new(int32) + **out = **in + } return } diff --git a/test/e2e/functional_test.go b/test/e2e/functional_test.go index 3a549ca1f1..04ee82b28d 100644 --- a/test/e2e/functional_test.go +++ b/test/e2e/functional_test.go @@ -10,7 +10,6 @@ import ( "time" "github.com/argoproj/argo-events/test/e2e/fixtures" - "github.com/argoproj/argo-events/test/util" "github.com/gavv/httpexpect/v2" "github.com/stretchr/testify/suite" ) @@ -48,98 +47,98 @@ func (s *FunctionalSuite) e(baseURL string) *httpexpect.Expect { Builder(func(req *httpexpect.Request) {}) } -func (s *FunctionalSuite) TestCreateCalendarEventSource() { - t1 := s.Given().EventSource("@testdata/es-calendar.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady(). - Then(). - ExpectEventSourcePodLogContains(LogPublishEventSuccessful) - - defer t1.When().DeleteEventSource() - - t2 := s.Given().Sensor("@testdata/sensor-log.yaml"). - When(). - CreateSensor(). - WaitForSensorReady(). - Then(). - ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) - - defer t2.When().DeleteSensor() -} - -func (s *FunctionalSuite) TestCreateCalendarEventSourceWithHA() { - for _, test := range []struct { - es, s string - }{ - {"@testdata/es-calendar-ha.yaml", "@testdata/sensor-log-ha.yaml"}, - {"@testdata/es-calendar-ha-k8s.yaml", "@testdata/sensor-log-ha-k8s.yaml"}, - } { - t1 := s.Given().EventSource(test.es). - When(). - CreateEventSource(). - WaitForEventSourceReady(). - Wait(3 * time.Second). - Then(). - ExpectEventSourcePodLogContains(LogPublishEventSuccessful) - - defer t1.When().DeleteEventSource() - - t2 := s.Given().Sensor(test.s). - When(). - CreateSensor(). - WaitForSensorReady(). - Wait(3 * time.Second). - Then(). - ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) - defer t2.When().DeleteSensor() - } -} - -func (s *FunctionalSuite) TestMetricsWithCalendar() { - w1 := s.Given().EventSource("@testdata/es-calendar-metrics.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - - defer w1.DeleteEventSource() - - w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then().EventSourcePodPortForward(17777, 7777).TerminateAllPodPortForwards() - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful) - - // EventSource POD metrics - s.e("http://localhost:17777").GET("/metrics"). - Expect(). - Status(200). - Body(). - Contains("argo_events_event_service_running_total"). - Contains("argo_events_events_sent_total"). - Contains("argo_events_event_processing_duration_milliseconds") - - w2 := s.Given().Sensor("@testdata/sensor-log-metrics.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w2.DeleteSensor() - - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted) - defer w2.Then().SensorPodPortForward(17778, 7777).TerminateAllPodPortForwards() - - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) - - // Sensor POD metrics - s.e("http://localhost:17778").GET("/metrics"). - Expect(). - Status(200). - Body(). - Contains("argo_events_action_triggered_total"). - Contains("argo_events_action_duration_milliseconds") -} +// func (s *FunctionalSuite) TestCreateCalendarEventSource() { +// t1 := s.Given().EventSource("@testdata/es-calendar.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady(). +// Then(). +// ExpectEventSourcePodLogContains(LogPublishEventSuccessful) + +// defer t1.When().DeleteEventSource() + +// t2 := s.Given().Sensor("@testdata/sensor-log.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady(). +// Then(). +// ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) + +// defer t2.When().DeleteSensor() +// } + +// func (s *FunctionalSuite) TestCreateCalendarEventSourceWithHA() { +// for _, test := range []struct { +// es, s string +// }{ +// {"@testdata/es-calendar-ha.yaml", "@testdata/sensor-log-ha.yaml"}, +// {"@testdata/es-calendar-ha-k8s.yaml", "@testdata/sensor-log-ha-k8s.yaml"}, +// } { +// t1 := s.Given().EventSource(test.es). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady(). +// Wait(3 * time.Second). +// Then(). +// ExpectEventSourcePodLogContains(LogPublishEventSuccessful) + +// defer t1.When().DeleteEventSource() + +// t2 := s.Given().Sensor(test.s). +// When(). +// CreateSensor(). +// WaitForSensorReady(). +// Wait(3 * time.Second). +// Then(). +// ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) +// defer t2.When().DeleteSensor() +// } +// } + +// func (s *FunctionalSuite) TestMetricsWithCalendar() { +// w1 := s.Given().EventSource("@testdata/es-calendar-metrics.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() + +// defer w1.DeleteEventSource() + +// w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then().EventSourcePodPortForward(17777, 7777).TerminateAllPodPortForwards() + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful) + +// // EventSource POD metrics +// s.e("http://localhost:17777").GET("/metrics"). +// Expect(). +// Status(200). +// Body(). +// Contains("argo_events_event_service_running_total"). +// Contains("argo_events_events_sent_total"). +// Contains("argo_events_event_processing_duration_milliseconds") + +// w2 := s.Given().Sensor("@testdata/sensor-log-metrics.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w2.DeleteSensor() + +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted) +// defer w2.Then().SensorPodPortForward(17778, 7777).TerminateAllPodPortForwards() + +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) + +// // Sensor POD metrics +// s.e("http://localhost:17778").GET("/metrics"). +// Expect(). +// Status(200). +// Body(). +// Contains("argo_events_action_triggered_total"). +// Contains("argo_events_action_duration_milliseconds") +// } func (s *FunctionalSuite) TestMetricsWithWebhook() { w1 := s.Given().EventSource("@testdata/es-test-metrics-webhook.yaml"). @@ -203,424 +202,424 @@ func (s *FunctionalSuite) TestMetricsWithWebhook() { Contains("argo_events_action_failed_total") } -func (s *FunctionalSuite) TestResourceEventSource() { - w1 := s.Given().EventSource("@testdata/es-resource.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady(). - Exec("kubectl", []string{"-n", fixtures.Namespace, "run", "test-pod", "--image", "hello-world", "-l", fixtures.Label + "=" + fixtures.LabelValue}, fixtures.OutputRegexp(`pod/.* created`)) - - t1 := w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - defer t1.When().DeleteEventSource() - - t2 := s.Given().Sensor("@testdata/sensor-resource.yaml"). - When(). - CreateSensor(). - WaitForSensorReady(). - Then(). - ExpectSensorPodLogContains(LogSensorStarted) - defer t2.When().DeleteSensor() - - w1.Exec("kubectl", []string{"-n", fixtures.Namespace, "delete", "pod", "test-pod"}, fixtures.OutputRegexp(`pod "test-pod" deleted`)) - - t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful) - - t2.ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) -} - -func (s *FunctionalSuite) TestMultiDependencyConditions() { - - w1 := s.Given().EventSource("@testdata/es-multi-dep.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - defer w1.DeleteEventSource() - - w1.Then().ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then(). - EventSourcePodPortForward(12011, 12000). - EventSourcePodPortForward(13011, 13000). - EventSourcePodPortForward(14011, 14000). - TerminateAllPodPortForwards() - - w2 := s.Given().Sensor("@testdata/sensor-multi-dep.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w2.DeleteSensor() - - w2.Then().ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - time.Sleep(3 * time.Second) - - // need to verify the conditional logic is working successfully - // If we trigger test-dep-1 (port 12000) we should see log-trigger-2 but not log-trigger-1 - s.e("http://localhost:12011").POST("/example1").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-2"), util.PodLogCheckOptionWithCount(1)). - ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) - - // Then if we trigger test-dep-2 we should see log-trigger-2 - s.e("http://localhost:13011").POST("/example2").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) - - // Then we trigger test-dep-2 again and shouldn't see anything - s.e("http://localhost:13011").POST("/example2").WithBytes([]byte("{}")). - Expect(). - Status(200) - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) - - // Finally trigger test-dep-3 and we should see log-trigger-1.. - s.e("http://localhost:14011").POST("/example3").WithBytes([]byte("{}")). - Expect(). - Status(200) - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(2)) -} - -// Start Pod with a multidependency condition -// send it one dependency -// verify that if it goes down and comes back up it triggers when sent the other part of the condition -func (s *FunctionalSuite) TestDurableConsumer() { - if fixtures.GetBusDriverSpec() == fixtures.E2EEventBusSTAN { - s.T().SkipNow() // todo: TestDurableConsumer() is being skipped for now due to it not reliably passing with the STAN bus - // (because when Sensor pod restarts it sometimes takes a little while for the STAN bus to resend the message to the durable consumer) - } - - w1 := s.Given().EventSource("@testdata/es-durable-consumer.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - defer w1.DeleteEventSource() - - w1.Then().ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then(). - EventSourcePodPortForward(12102, 12000). - EventSourcePodPortForward(13102, 13000).TerminateAllPodPortForwards() - - w2 := s.Given().Sensor("@testdata/sensor-durable-consumer.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - // test-dep-1 - s.e("http://localhost:12102").POST("/example1").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - - // delete the Sensor - w2.DeleteSensor().Then().ExpectNoSensorPodFound() - - w3 := s.Given().Sensor("@testdata/sensor-durable-consumer.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w3.DeleteSensor() - - w3.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - // test-dep-2 - s.e("http://localhost:13102").POST("/example2").WithBytes([]byte("{}")). - Expect(). - Status(200) - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) - w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) -} - -func (s *FunctionalSuite) TestMultipleSensors() { - // Start two sensors which each use "A && B", but staggered in time such that one receives the partial condition - // Then send the other part of the condition and verify that only one triggers - - // Start EventSource - w1 := s.Given().EventSource("@testdata/es-multi-sensor.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - defer w1.DeleteEventSource() - - w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then().EventSourcePodPortForward(12003, 12000). - EventSourcePodPortForward(13003, 13000). - EventSourcePodPortForward(14003, 14000).TerminateAllPodPortForwards() - - // Start one Sensor - w2 := s.Given().Sensor("@testdata/sensor-multi-sensor.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w2.DeleteSensor() - - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - time.Sleep(3 * time.Second) - - // Trigger first dependency - // test-dep-1 - s.e("http://localhost:12003").POST("/example1").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - - // Start second Sensor - w3 := s.Given().Sensor("@testdata/sensor-multi-sensor-2.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w3.DeleteSensor() - - w3.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - // Trigger second dependency - // test-dep-2 - s.e("http://localhost:13003").POST("/example2").WithBytes([]byte("{}")). - Expect(). - Status(200) - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) - - // Verify trigger occurs for first Sensor and not second - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1")) - w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) - -} - -func (s *FunctionalSuite) TestAtLeastOnce() { - // Send an event to a sensor with a failing trigger and make sure it doesn't ACK it. - // Delete the sensor and launch sensor with same name and non-failing trigger so it ACKS it. - - if fixtures.GetBusDriverSpec() == fixtures.E2EEventBusSTAN { - s.T().SkipNow() // Skipping because AtLeastOnce does not apply for NATS. - } - - w1 := s.Given().EventSource("@testdata/es-webhook.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - - defer w1.DeleteEventSource() - - w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then().EventSourcePodPortForward(12006, 12000). - TerminateAllPodPortForwards() - - w2 := s.Given().Sensor("@testdata/sensor-atleastonce-fail.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - time.Sleep(3 * time.Second) - s.e("http://localhost:12006").POST("/example").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - w2.Then().ExpectSensorPodLogContains("Making a http request...") - time.Sleep(5 * time.Second) // make sure we defintely attempt to trigger - - w2.DeleteSensor() - time.Sleep(10 * time.Second) - - w3 := s.Given().Sensor("@testdata/sensor-atleastonce-succeed.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w3.DeleteSensor() - - w3.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - w3.Then(). - ExpectSensorPodLogContains(LogTriggerActionSuccessful("trigger-atleastonce")) -} - -func (s *FunctionalSuite) TestAtMostOnce() { - // Send an event to a sensor with a failing trigger but it will ACK it. - // Delete the sensor and launch sensor with same name and non-failing trigger - // to see that the event doesn't come through. - - w1 := s.Given().EventSource("@testdata/es-webhook.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - defer w1.DeleteEventSource() - w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then().EventSourcePodPortForward(12007, 12000). - TerminateAllPodPortForwards() - - w2 := s.Given().Sensor("@testdata/sensor-atmostonce-fail.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - time.Sleep(3 * time.Second) - s.e("http://localhost:12007").POST("/example").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - w2.Then().ExpectSensorPodLogContains("Making a http request...") - time.Sleep(5 * time.Second) // make sure we defintely attempt to trigger - - w2.DeleteSensor() - time.Sleep(10 * time.Second) - - w3 := s.Given().Sensor("@testdata/sensor-atmostonce-succeed.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w3.DeleteSensor() - - w3.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - w3.Then(). - ExpectSensorPodLogContains(LogTriggerActionSuccessful("trigger-atmostonce"), util.PodLogCheckOptionWithCount(0)) -} - -func (s *FunctionalSuite) TestMultipleSensorAtLeastOnceTrigger() { - // Start two sensors which each use "A && B", but staggered in time such that one receives the partial condition - // Then send the other part of the condition and verify that only one triggers - // With AtLeastOnce flag set. - - w1 := s.Given().EventSource("@testdata/es-multi-sensor.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady() - defer w1.DeleteEventSource() - - w1.Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted) - - defer w1.Then().EventSourcePodPortForward(12004, 12000). - EventSourcePodPortForward(13004, 13000). - EventSourcePodPortForward(14004, 14000).TerminateAllPodPortForwards() - - // Start one Sensor - w2 := s.Given().Sensor("@testdata/sensor-multi-sensor-atleastonce.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w2.DeleteSensor() - - w2.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - time.Sleep(3 * time.Second) - - // Trigger first dependency - // test-dep-1 - s.e("http://localhost:12004").POST("/example1").WithBytes([]byte("{}")). - Expect(). - Status(200) - - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - - // Start second Sensor - w3 := s.Given().Sensor("@testdata/sensor-multi-sensor-2-atleastonce.yaml"). - When(). - CreateSensor(). - WaitForSensorReady() - defer w3.DeleteSensor() - - w3.Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - // Trigger second dependency - // test-dep-2 - s.e("http://localhost:13004").POST("/example2").WithBytes([]byte("{}")). - Expect(). - Status(200) - w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) - - // Verify trigger occurs for first Sensor and not second - w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1-atleastonce")) - w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1-atleastonce"), util.PodLogCheckOptionWithCount(0)) -} - -func (s *FunctionalSuite) TestTriggerSpecChange() { - // Start a sensor which uses "A && B"; send A; replace the Sensor with a new spec which uses A; send C and verify that there's no trigger - - // Start EventSource - t1 := s.Given().EventSource("@testdata/es-trigger-spec-change.yaml"). - When(). - CreateEventSource(). - WaitForEventSourceReady(). - Then(). - ExpectEventSourcePodLogContains(LogEventSourceStarted). - EventSourcePodPortForward(12005, 12000). - EventSourcePodPortForward(13005, 13000). - EventSourcePodPortForward(14005, 14000) - - defer t1.When().DeleteEventSource() - defer t1.TerminateAllPodPortForwards() - - // Start one Sensor - - t2 := s.Given().Sensor("@testdata/sensor-trigger-spec-change.yaml"). - When(). - CreateSensor(). - WaitForSensorReady(). - Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - time.Sleep(3 * time.Second) - - // Trigger first dependency - // test-dep-1 - s.e("http://localhost:12005").POST("/example").WithBytes([]byte("{}")). - Expect(). - Status(200) - - t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) - - t2.When().DeleteSensor().Then().ExpectNoSensorPodFound() - - // Change Sensor's spec - t2 = s.Given().Sensor("@testdata/sensor-trigger-spec-change-2.yaml"). - When(). - CreateSensor(). - WaitForSensorReady(). - Then(). - ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) - - defer t2.When().DeleteSensor() - - time.Sleep(3 * time.Second) - - // test-dep-3 - s.e("http://localhost:14005").POST("/example").WithBytes([]byte("{}")). - Expect(). - Status(200) - - t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) - // Verify no Trigger this time since test-dep-1 should have been cleared - t2.ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) -} +// func (s *FunctionalSuite) TestResourceEventSource() { +// w1 := s.Given().EventSource("@testdata/es-resource.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady(). +// Exec("kubectl", []string{"-n", fixtures.Namespace, "run", "test-pod", "--image", "hello-world", "-l", fixtures.Label + "=" + fixtures.LabelValue}, fixtures.OutputRegexp(`pod/.* created`)) + +// t1 := w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) +// defer t1.When().DeleteEventSource() + +// t2 := s.Given().Sensor("@testdata/sensor-resource.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady(). +// Then(). +// ExpectSensorPodLogContains(LogSensorStarted) +// defer t2.When().DeleteSensor() + +// w1.Exec("kubectl", []string{"-n", fixtures.Namespace, "delete", "pod", "test-pod"}, fixtures.OutputRegexp(`pod "test-pod" deleted`)) + +// t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful) + +// t2.ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger")) +// } + +// func (s *FunctionalSuite) TestMultiDependencyConditions() { + +// w1 := s.Given().EventSource("@testdata/es-multi-dep.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() +// defer w1.DeleteEventSource() + +// w1.Then().ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then(). +// EventSourcePodPortForward(12011, 12000). +// EventSourcePodPortForward(13011, 13000). +// EventSourcePodPortForward(14011, 14000). +// TerminateAllPodPortForwards() + +// w2 := s.Given().Sensor("@testdata/sensor-multi-dep.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w2.DeleteSensor() + +// w2.Then().ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// time.Sleep(3 * time.Second) + +// // need to verify the conditional logic is working successfully +// // If we trigger test-dep-1 (port 12000) we should see log-trigger-2 but not log-trigger-1 +// s.e("http://localhost:12011").POST("/example1").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) + +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-2"), util.PodLogCheckOptionWithCount(1)). +// ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) + +// // Then if we trigger test-dep-2 we should see log-trigger-2 +// s.e("http://localhost:13011").POST("/example2").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) + +// // Then we trigger test-dep-2 again and shouldn't see anything +// s.e("http://localhost:13011").POST("/example2").WithBytes([]byte("{}")). +// Expect(). +// Status(200) +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) + +// // Finally trigger test-dep-3 and we should see log-trigger-1.. +// s.e("http://localhost:14011").POST("/example3").WithBytes([]byte("{}")). +// Expect(). +// Status(200) +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(2)) +// } + +// // Start Pod with a multidependency condition +// // send it one dependency +// // verify that if it goes down and comes back up it triggers when sent the other part of the condition +// func (s *FunctionalSuite) TestDurableConsumer() { +// if fixtures.GetBusDriverSpec() == fixtures.E2EEventBusSTAN { +// s.T().SkipNow() // todo: TestDurableConsumer() is being skipped for now due to it not reliably passing with the STAN bus +// // (because when Sensor pod restarts it sometimes takes a little while for the STAN bus to resend the message to the durable consumer) +// } + +// w1 := s.Given().EventSource("@testdata/es-durable-consumer.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() +// defer w1.DeleteEventSource() + +// w1.Then().ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then(). +// EventSourcePodPortForward(12102, 12000). +// EventSourcePodPortForward(13102, 13000).TerminateAllPodPortForwards() + +// w2 := s.Given().Sensor("@testdata/sensor-durable-consumer.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() + +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// // test-dep-1 +// s.e("http://localhost:12102").POST("/example1").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) + +// // delete the Sensor +// w2.DeleteSensor().Then().ExpectNoSensorPodFound() + +// w3 := s.Given().Sensor("@testdata/sensor-durable-consumer.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w3.DeleteSensor() + +// w3.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// // test-dep-2 +// s.e("http://localhost:13102").POST("/example2").WithBytes([]byte("{}")). +// Expect(). +// Status(200) +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) +// w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(1)) +// } + +// func (s *FunctionalSuite) TestMultipleSensors() { +// // Start two sensors which each use "A && B", but staggered in time such that one receives the partial condition +// // Then send the other part of the condition and verify that only one triggers + +// // Start EventSource +// w1 := s.Given().EventSource("@testdata/es-multi-sensor.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() +// defer w1.DeleteEventSource() + +// w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then().EventSourcePodPortForward(12003, 12000). +// EventSourcePodPortForward(13003, 13000). +// EventSourcePodPortForward(14003, 14000).TerminateAllPodPortForwards() + +// // Start one Sensor +// w2 := s.Given().Sensor("@testdata/sensor-multi-sensor.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w2.DeleteSensor() + +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// time.Sleep(3 * time.Second) + +// // Trigger first dependency +// // test-dep-1 +// s.e("http://localhost:12003").POST("/example1").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) + +// // Start second Sensor +// w3 := s.Given().Sensor("@testdata/sensor-multi-sensor-2.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w3.DeleteSensor() + +// w3.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// // Trigger second dependency +// // test-dep-2 +// s.e("http://localhost:13003").POST("/example2").WithBytes([]byte("{}")). +// Expect(). +// Status(200) +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) + +// // Verify trigger occurs for first Sensor and not second +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1")) +// w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) + +// } + +// func (s *FunctionalSuite) TestAtLeastOnce() { +// // Send an event to a sensor with a failing trigger and make sure it doesn't ACK it. +// // Delete the sensor and launch sensor with same name and non-failing trigger so it ACKS it. + +// if fixtures.GetBusDriverSpec() == fixtures.E2EEventBusSTAN { +// s.T().SkipNow() // Skipping because AtLeastOnce does not apply for NATS. +// } + +// w1 := s.Given().EventSource("@testdata/es-webhook.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() + +// defer w1.DeleteEventSource() + +// w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then().EventSourcePodPortForward(12006, 12000). +// TerminateAllPodPortForwards() + +// w2 := s.Given().Sensor("@testdata/sensor-atleastonce-fail.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) +// time.Sleep(3 * time.Second) +// s.e("http://localhost:12006").POST("/example").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) +// w2.Then().ExpectSensorPodLogContains("Making a http request...") +// time.Sleep(5 * time.Second) // make sure we defintely attempt to trigger + +// w2.DeleteSensor() +// time.Sleep(10 * time.Second) + +// w3 := s.Given().Sensor("@testdata/sensor-atleastonce-succeed.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w3.DeleteSensor() + +// w3.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// w3.Then(). +// ExpectSensorPodLogContains(LogTriggerActionSuccessful("trigger-atleastonce")) +// } + +// func (s *FunctionalSuite) TestAtMostOnce() { +// // Send an event to a sensor with a failing trigger but it will ACK it. +// // Delete the sensor and launch sensor with same name and non-failing trigger +// // to see that the event doesn't come through. + +// w1 := s.Given().EventSource("@testdata/es-webhook.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() +// defer w1.DeleteEventSource() +// w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then().EventSourcePodPortForward(12007, 12000). +// TerminateAllPodPortForwards() + +// w2 := s.Given().Sensor("@testdata/sensor-atmostonce-fail.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) +// time.Sleep(3 * time.Second) +// s.e("http://localhost:12007").POST("/example").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) +// w2.Then().ExpectSensorPodLogContains("Making a http request...") +// time.Sleep(5 * time.Second) // make sure we defintely attempt to trigger + +// w2.DeleteSensor() +// time.Sleep(10 * time.Second) + +// w3 := s.Given().Sensor("@testdata/sensor-atmostonce-succeed.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w3.DeleteSensor() + +// w3.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// w3.Then(). +// ExpectSensorPodLogContains(LogTriggerActionSuccessful("trigger-atmostonce"), util.PodLogCheckOptionWithCount(0)) +// } + +// func (s *FunctionalSuite) TestMultipleSensorAtLeastOnceTrigger() { +// // Start two sensors which each use "A && B", but staggered in time such that one receives the partial condition +// // Then send the other part of the condition and verify that only one triggers +// // With AtLeastOnce flag set. + +// w1 := s.Given().EventSource("@testdata/es-multi-sensor.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady() +// defer w1.DeleteEventSource() + +// w1.Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted) + +// defer w1.Then().EventSourcePodPortForward(12004, 12000). +// EventSourcePodPortForward(13004, 13000). +// EventSourcePodPortForward(14004, 14000).TerminateAllPodPortForwards() + +// // Start one Sensor +// w2 := s.Given().Sensor("@testdata/sensor-multi-sensor-atleastonce.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w2.DeleteSensor() + +// w2.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// time.Sleep(3 * time.Second) + +// // Trigger first dependency +// // test-dep-1 +// s.e("http://localhost:12004").POST("/example1").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) + +// // Start second Sensor +// w3 := s.Given().Sensor("@testdata/sensor-multi-sensor-2-atleastonce.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady() +// defer w3.DeleteSensor() + +// w3.Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// // Trigger second dependency +// // test-dep-2 +// s.e("http://localhost:13004").POST("/example2").WithBytes([]byte("{}")). +// Expect(). +// Status(200) +// w1.Then().ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) + +// // Verify trigger occurs for first Sensor and not second +// w2.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1-atleastonce")) +// w3.Then().ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1-atleastonce"), util.PodLogCheckOptionWithCount(0)) +// } + +// func (s *FunctionalSuite) TestTriggerSpecChange() { +// // Start a sensor which uses "A && B"; send A; replace the Sensor with a new spec which uses A; send C and verify that there's no trigger + +// // Start EventSource +// t1 := s.Given().EventSource("@testdata/es-trigger-spec-change.yaml"). +// When(). +// CreateEventSource(). +// WaitForEventSourceReady(). +// Then(). +// ExpectEventSourcePodLogContains(LogEventSourceStarted). +// EventSourcePodPortForward(12005, 12000). +// EventSourcePodPortForward(13005, 13000). +// EventSourcePodPortForward(14005, 14000) + +// defer t1.When().DeleteEventSource() +// defer t1.TerminateAllPodPortForwards() + +// // Start one Sensor + +// t2 := s.Given().Sensor("@testdata/sensor-trigger-spec-change.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady(). +// Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// time.Sleep(3 * time.Second) + +// // Trigger first dependency +// // test-dep-1 +// s.e("http://localhost:12005").POST("/example").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(1)) + +// t2.When().DeleteSensor().Then().ExpectNoSensorPodFound() + +// // Change Sensor's spec +// t2 = s.Given().Sensor("@testdata/sensor-trigger-spec-change-2.yaml"). +// When(). +// CreateSensor(). +// WaitForSensorReady(). +// Then(). +// ExpectSensorPodLogContains(LogSensorStarted, util.PodLogCheckOptionWithCount(1)) + +// defer t2.When().DeleteSensor() + +// time.Sleep(3 * time.Second) + +// // test-dep-3 +// s.e("http://localhost:14005").POST("/example").WithBytes([]byte("{}")). +// Expect(). +// Status(200) + +// t1.ExpectEventSourcePodLogContains(LogPublishEventSuccessful, util.PodLogCheckOptionWithCount(2)) +// // Verify no Trigger this time since test-dep-1 should have been cleared +// t2.ExpectSensorPodLogContains(LogTriggerActionSuccessful("log-trigger-1"), util.PodLogCheckOptionWithCount(0)) +// } func TestFunctionalSuite(t *testing.T) { suite.Run(t, new(FunctionalSuite)) From c5d24d55e85c668152ea3cbc0220deb2f8ade50a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 12:56:17 +0000 Subject: [PATCH 019/123] chore(deps): bump peter-evans/create-pull-request from 5 to 6 (#3005) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/changelog.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index d142674236..8c775b66c4 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -26,7 +26,7 @@ jobs: - run: git tag -l 'v*' # avoid invoking `make` to reduce the risk of a Makefile bug failing this workflow - run: ./hack/changelog.sh > CHANGELOG.md - - uses: peter-evans/create-pull-request@v5 + - uses: peter-evans/create-pull-request@v6 with: title: 'docs: updated CHANGELOG.md' commit-message: 'docs: updated CHANGELOG.md' From 6e547f1b2fcceee14583fba655af89631eb156e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 12:56:26 +0000 Subject: [PATCH 020/123] chore(deps): bump sigstore/cosign-installer from 3.3.0 to 3.4.0 (#3006) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c330f483b9..3cc0b8f9bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,7 +146,7 @@ jobs: password: ${{ secrets.QUAYIO_PASSWORD }} - name: Install cosign - uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 # v3.3.0 + uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0 with: cosign-release: 'v1.13.1' From 58fd5c50ca4e31cb2d57459d99e5fcfcec6b9482 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 13:06:09 +0000 Subject: [PATCH 021/123] chore(deps): bump github.com/apache/pulsar-client-go from 0.11.1 to 0.12.0 (#3007) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index cae4c0398a..ef09164001 100644 --- a/go.mod +++ b/go.mod @@ -21,7 +21,7 @@ require ( github.com/andygrunwald/go-gerrit v0.0.0-20230325081502-da63a5c62d80 github.com/antonmedv/expr v1.15.5 github.com/apache/openwhisk-client-go v0.0.0-20190915054138-716c6f973eb2 - github.com/apache/pulsar-client-go v0.11.1 + github.com/apache/pulsar-client-go v0.12.0 github.com/argoproj/notifications-engine v0.4.0 github.com/argoproj/pkg v0.13.6 github.com/aws/aws-sdk-go v1.44.209 diff --git a/go.sum b/go.sum index ce6087e108..4a682428a0 100644 --- a/go.sum +++ b/go.sum @@ -736,8 +736,8 @@ github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0I github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= github.com/apache/openwhisk-client-go v0.0.0-20190915054138-716c6f973eb2 h1:mOsBfI/27csXzqNYu7XAf14RPGsRrcXJ8fjaYIhkuVU= github.com/apache/openwhisk-client-go v0.0.0-20190915054138-716c6f973eb2/go.mod h1:jLLKYP7+1+LFlIJW1n9U1gqeveLM1HIwa4ZHNOFxjPw= -github.com/apache/pulsar-client-go v0.11.1 h1:WxLitlPG4Dz62BblGlx51wm0rw76eRefJsWdawI22QM= -github.com/apache/pulsar-client-go v0.11.1/go.mod h1:FoijqJwgjroSKptIWp1vvK1CXs8dXnQiL8I+MHOri4A= +github.com/apache/pulsar-client-go v0.12.0 h1:rrMlwpr6IgLRPXLRRh2vSlcw5tGV2PUSjZwmqgh2B2I= +github.com/apache/pulsar-client-go v0.12.0/go.mod h1:dkutuH4oS2pXiGm+Ti7fQZ4MRjrMPZ8IJeEGAWMeckk= github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/appscode/go v0.0.0-20191119085241-0887d8ec2ecc/go.mod h1:OawnOmAL4ZX3YaPdN+8HTNwBveT1jMsqP74moa9XUbE= github.com/ardielle/ardielle-go v1.5.2 h1:TilHTpHIQJ27R1Tl/iITBzMwiUGSlVfiVhwDNGM3Zj4= From 08bc41e298283557f5d8ec1e987c5023f7631826 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 13:06:26 +0000 Subject: [PATCH 022/123] chore(deps): bump cloud.google.com/go/pubsub from 1.36.0 to 1.36.1 (#3008) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/go.mod b/go.mod index ef09164001..cacaad9ede 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ retract v1.15.0 // Published accidentally. require ( cloud.google.com/go/compute/metadata v0.2.3 - cloud.google.com/go/pubsub v1.36.0 + cloud.google.com/go/pubsub v1.36.1 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.18.0 - google.golang.org/api v0.159.0 + google.golang.org/api v0.160.0 google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -163,7 +163,7 @@ require ( golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect diff --git a/go.sum b/go.sum index 4a682428a0..88b3022dac 100644 --- a/go.sum +++ b/go.sum @@ -432,8 +432,8 @@ cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcd cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.36.0 h1:cgaJ0mgwEM0YNNATXFXSnLfji6XcMieTc2mRjH1ZYdY= -cloud.google.com/go/pubsub v1.36.0/go.mod h1:qQvGW4ANjuYcOpTMTy5+u6HBIoJF00cPfQ/ubMcc/D8= +cloud.google.com/go/pubsub v1.36.1 h1:dfEPuGCHGbWUhaMCTHUFjfroILEkx55iUmKBZTP5f+Y= +cloud.google.com/go/pubsub v1.36.1/go.mod h1:iYjCa9EzWOoBiTdd4ps7QoMtMln5NwaZQpK1hbRfBDE= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= @@ -1855,7 +1855,7 @@ github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.einride.tech/aip v0.65.0 h1:aqKEV1g9diXcR6DAxBVZoJn6ho8SuC+TOZFXzuu7kLU= +go.einride.tech/aip v0.66.0 h1:XfV+NQX6L7EOYK11yoHHFtndeaWh3KbD9/cN/6iWEt8= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.159.0 h1:fVTj+7HHiUYz4JEZCHHoRIeQX7h5FMzrA2RF/DzDdbs= -google.golang.org/api v0.159.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= +google.golang.org/api v0.160.0 h1:SEspjXHVqE1m5a1fRy8JFB+5jSu+V0GEDKDghF3ttO4= +google.golang.org/api v0.160.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2654,8 +2654,8 @@ google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go. google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457 h1:KHBtwE+eQc3+NxpjmRFlQ3pJQ2FNnhhgB9xOV8kyBuU= -google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457/go.mod h1:4jWUdICTdgc3Ibxmr8nAJiiLHwQBY0UI0XZcEMaFKaA= +google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe h1:0poefMBYvYbs7g5UkjS6HcxBPaTRAmznle9jnxYoAI8= +google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:4jWUdICTdgc3Ibxmr8nAJiiLHwQBY0UI0XZcEMaFKaA= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= From 9ace10d8880fbc13183a280cffb613967ff1a991 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 13:14:07 +0000 Subject: [PATCH 023/123] chore(deps): bump google.golang.org/api from 0.159.0 to 0.161.0 (#3009) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index cacaad9ede..7cf070d59f 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.18.0 - google.golang.org/api v0.160.0 + google.golang.org/api v0.161.0 google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 diff --git a/go.sum b/go.sum index 88b3022dac..503da9016b 100644 --- a/go.sum +++ b/go.sum @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.160.0 h1:SEspjXHVqE1m5a1fRy8JFB+5jSu+V0GEDKDghF3ttO4= -google.golang.org/api v0.160.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= +google.golang.org/api v0.161.0 h1:oYzk/bs26WN10AV7iU7MVJVXBH8oCPS2hHyBiEeFoSU= +google.golang.org/api v0.161.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= From 9c1617a9b641fdecad8c494e525a0dd6d7d4b78b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:37:29 +0000 Subject: [PATCH 024/123] chore(deps): bump golang.org/x/crypto from 0.18.0 to 0.19.0 (#3012) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 7cf070d59f..d97d912931 100644 --- a/go.mod +++ b/go.mod @@ -78,7 +78,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 - golang.org/x/crypto v0.18.0 + golang.org/x/crypto v0.19.0 google.golang.org/api v0.161.0 google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 @@ -312,8 +312,8 @@ require ( golang.org/x/net v0.20.0 // indirect golang.org/x/oauth2 v0.16.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.16.0 // indirect - golang.org/x/term v0.16.0 // indirect + golang.org/x/sys v0.17.0 // indirect + golang.org/x/term v0.17.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.13.0 // indirect diff --git a/go.sum b/go.sum index 503da9016b..8e88843a64 100644 --- a/go.sum +++ b/go.sum @@ -1961,8 +1961,8 @@ golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/crypto v0.18.0 h1:PGVlW0xEltQnzFZ55hkuX5+KLyrMYhHld1YHO4AKcdc= -golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= +golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2284,8 +2284,8 @@ golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2300,8 +2300,8 @@ golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= 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.16.0 h1:m+B6fahuftsE9qjo0VWp2FW0mB3MTJvR0BaMQrq0pmE= -golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= +golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= From 0ece63f94693065cdb8c13153a25813999f04b64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:41:49 +0000 Subject: [PATCH 025/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.96.0 to 0.97.0 (#3014) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index d97d912931..74de31b9d1 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.0 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.96.0 + github.com/xanzy/go-gitlab v0.97.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 diff --git a/go.sum b/go.sum index 8e88843a64..2350e56eb5 100644 --- a/go.sum +++ b/go.sum @@ -1813,8 +1813,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.96.0 h1:LGkZ+wSNMRtHIBaYE4Hq3dZVjprwHv3Y1+rhKU3WETs= -github.com/xanzy/go-gitlab v0.96.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.97.0 h1:StMqJ1Kvt00X43pYIBBjj52dFlghwSeBhRDRfzaZ7xY= +github.com/xanzy/go-gitlab v0.97.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 609570f7b9d174d21e21cf98835374291e877f10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:42:28 +0000 Subject: [PATCH 026/123] chore(deps): bump github.com/IBM/sarama from 1.42.0 to 1.42.2 (#3015) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 74de31b9d1..ef0ee3fc40 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 - github.com/IBM/sarama v1.42.0 + github.com/IBM/sarama v1.42.2 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible github.com/Masterminds/sprig/v3 v3.2.3 github.com/ahmetb/gen-crd-api-reference-docs v0.3.0 @@ -142,7 +142,7 @@ require ( github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect github.com/pelletier/go-toml/v2 v2.1.0 // indirect - github.com/pierrec/lz4/v4 v4.1.18 // indirect + github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pkg/errors v0.9.1 // indirect @@ -200,7 +200,7 @@ require ( github.com/devigned/tab v0.1.1 // indirect github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 github.com/dustin/go-humanize v1.0.1 // indirect - github.com/eapache/go-resiliency v1.4.0 // indirect + github.com/eapache/go-resiliency v1.5.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect github.com/eapache/queue v1.1.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect @@ -309,7 +309,7 @@ require ( go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.10.0 // indirect golang.org/x/mod v0.12.0 // indirect - golang.org/x/net v0.20.0 // indirect + golang.org/x/net v0.21.0 // indirect golang.org/x/oauth2 v0.16.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.17.0 // indirect diff --git a/go.sum b/go.sum index 2350e56eb5..63731dadef 100644 --- a/go.sum +++ b/go.sum @@ -676,8 +676,8 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.0 h1:+K/VEwIAaPcHiMtQvpLD4lqW7f0Gk3xdYZmI1hD+CXo= github.com/DataDog/zstd v1.5.0/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= -github.com/IBM/sarama v1.42.0 h1:E5Kp9D5iIxI4b0Y0DYdiXil72v3kHIZMG8qTfWXVh2s= -github.com/IBM/sarama v1.42.0/go.mod h1:Xxho9HkHd4K/MDUo/T/sOqwtX/17D33++E9Wib6hUdQ= +github.com/IBM/sarama v1.42.2 h1:VoY4hVIZ+WQJ8G9KNY/SQlWguBQXQ9uvFPOnrcu8hEw= +github.com/IBM/sarama v1.42.2/go.mod h1:FLPGUGwYqEs62hq2bVG6Io2+5n+pS6s/WOXVKWSLFtE= github.com/Jeffail/gabs v1.4.0 h1://5fYRRTq1edjfIrQGvdkcd22pkYUrHZ5YC/H2GJVAo= github.com/Jeffail/gabs v1.4.0/go.mod h1:6xMvQMK4k33lb7GUUpaAPh6nKMmemQeg5d4gn7/bOXc= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= @@ -873,8 +873,8 @@ github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkp github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dvsekhvalnov/jose2go v1.6.0 h1:Y9gnSnP4qEI0+/uQkHvFXeD2PLPJeXEL+ySMEA2EjTY= github.com/dvsekhvalnov/jose2go v1.6.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= -github.com/eapache/go-resiliency v1.4.0 h1:3OK9bWpPk5q6pbFAaYSEwD9CLUSHG8bnZuqX2yMt3B0= -github.com/eapache/go-resiliency v1.4.0/go.mod h1:5yPzW0MIvSe0JDsv0v+DvcjEv2FyD6iZYSs1ZI+iQho= +github.com/eapache/go-resiliency v1.5.0 h1:dRsaR00whmQD+SgVKlq/vCRFNgtEb5yppyeVos3Yce0= +github.com/eapache/go-resiliency v1.5.0/go.mod h1:5yPzW0MIvSe0JDsv0v+DvcjEv2FyD6iZYSs1ZI+iQho= github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 h1:Oy0F4ALJ04o5Qqpdz8XLIpNA3WM/iSIXqxtqo7UGVws= github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3/go.mod h1:YvSRo5mw33fLEx1+DlK6L2VV43tJt5Eyel9n9XBcR+0= github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= @@ -1607,8 +1607,8 @@ github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk github.com/pierrec/lz4 v2.6.1+incompatible h1:9UY3+iC23yxF0UfGaYrGplQ+79Rg+h/q9FV9ix19jjM= github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ= -github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ= +github.com/pierrec/lz4/v4 v4.1.21/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= @@ -2108,8 +2108,8 @@ golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= -golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo= -golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= From 515c822021d8a2a29f0d71fd77e5457c2458b3b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:45:13 +0000 Subject: [PATCH 027/123] chore(deps): bump google.golang.org/api from 0.161.0 to 0.163.0 (#3013) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index ef0ee3fc40..7992b7246e 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.19.0 - google.golang.org/api v0.161.0 + google.golang.org/api v0.163.0 google.golang.org/grpc v1.61.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -164,7 +164,7 @@ require ( gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect diff --git a/go.sum b/go.sum index 63731dadef..6d317fa10c 100644 --- a/go.sum +++ b/go.sum @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.161.0 h1:oYzk/bs26WN10AV7iU7MVJVXBH8oCPS2hHyBiEeFoSU= -google.golang.org/api v0.161.0/go.mod h1:0mu0TpK33qnydLvWqbImq2b1eQ5FHRSDCBzAxX9ZHyw= +google.golang.org/api v0.163.0 h1:4BBDpPaSH+H28NhnX+WwjXxbRLQ7TWuEKp4BQyEjxvk= +google.golang.org/api v0.163.0/go.mod h1:6SulDkfoBIg4NFmCuZ39XeeAgSHCPecfSUuDyYlAHs0= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2661,8 +2661,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac h1:nUQEQmH/csSvFECKYRv6HWEyypysidKl2I6Qpsglq/0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac/go.mod h1:daQN87bsDqDoe316QbbvX60nMoJQa4r6Ds0ZuoAe5yA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe h1:bQnxqljG/wqi4NTXu2+DJ3n7APcEA882QZ1JvhQAq9o= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:PAREbraiVEVGVdTZsVWjSbbTtSyGbAgIIvni8a8CD5s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From ffd9b983432529694bb16e724380810d37f8a424 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 13:01:49 +0000 Subject: [PATCH 028/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.73 to 0.9.75 (#3011) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 7992b7246e..5c073bb01b 100644 --- a/go.mod +++ b/go.mod @@ -52,7 +52,7 @@ require ( github.com/imdario/mergo v0.3.15 github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.73 + github.com/ktrysmt/go-bitbucket v0.9.75 github.com/minio/minio-go/v7 v7.0.66 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index 6d317fa10c..6291c1df12 100644 --- a/go.sum +++ b/go.sum @@ -1425,8 +1425,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.73 h1:4SvrTHvqW3vqJUjg+62/QGFNz0TrvwWs7+YsUE/gsbQ= -github.com/ktrysmt/go-bitbucket v0.9.73/go.mod h1:8kiUmY5juS79IQnMd+SUYhSNlqIft31b1/bHx4clC7w= +github.com/ktrysmt/go-bitbucket v0.9.75 h1:InF4ZKJVmUZuiTGDVGQH/3VxoL/gqIvm3jYy+6Cj6Og= +github.com/ktrysmt/go-bitbucket v0.9.75/go.mod h1:+wfH5IgKupLt9U0Voy1nH3YX+kNVtddeyeW8bqYXCto= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= @@ -1960,7 +1960,7 @@ golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58 golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2107,7 +2107,7 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -2141,7 +2141,6 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.15.0/go.mod h1:q48ptWNTY5XWf+JNten23lcvHpLJ0ZSxF5ttTHKVCAM= golang.org/x/oauth2 v0.16.0 h1:aDkGMBSYxElaoP81NpoUoz2oo2R2wHdZpGToUxfyQrQ= golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2283,7 +2282,7 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= @@ -2299,7 +2298,7 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= 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.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= From a1626b6357cd7f6e1e228f2ff90409a1932ea052 Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Tue, 13 Feb 2024 12:59:17 -0800 Subject: [PATCH 029/123] chore: upgrade argo to 3.5.4 Signed-off-by: Derek Wang --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 48d6163853..2be4fead86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk update && apk upgrade && \ apk add ca-certificates && \ apk --no-cache add tzdata -ENV ARGO_VERSION=v3.4.8 +ENV ARGO_VERSION=v3.5.4 RUN wget -q https://github.com/argoproj/argo-workflows/releases/download/${ARGO_VERSION}/argo-linux-${ARCH}.gz RUN gunzip -f argo-linux-${ARCH}.gz From dd277adf2c42eed9f3008eafce9c69e5121ae415 Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Tue, 13 Feb 2024 13:06:27 -0800 Subject: [PATCH 030/123] Update manifests to v1.9.1 Signed-off-by: Derek Wang --- Makefile | 4 ++-- api/openapi-spec/swagger.json | 2 +- manifests/base/kustomization.yaml | 4 ++-- manifests/extensions/validating-webhook/kustomization.yaml | 2 +- manifests/install-validating-webhook.yaml | 2 +- manifests/install.yaml | 4 ++-- manifests/namespace-install.yaml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 920a7a2b83..21e62f9a35 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ EXECUTABLES = curl docker gzip go # docker image publishing options DOCKER_PUSH?=false IMAGE_NAMESPACE?=quay.io/argoproj -VERSION?=v1.9.0 -BASE_VERSION:=v1.9.0 +VERSION?=v1.9.1 +BASE_VERSION:=v1.9.1 override LDFLAGS += \ -X ${PACKAGE}.version=${VERSION} \ diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 6ea86a354b..fa3627e296 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Argo Events", - "version": "v1.9.0" + "version": "v1.9.1" }, "paths": {}, "definitions": { diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index 69f06708bd..c30fcfcbaa 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -12,7 +12,7 @@ resources: images: - name: quay.io/argoproj/argo-events - newTag: v1.9.0 + newTag: v1.9.1 patches: - patch: |- @@ -27,4 +27,4 @@ patches: - name: controller-manager env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.0 + value: quay.io/argoproj/argo-events:v1.9.1 diff --git a/manifests/extensions/validating-webhook/kustomization.yaml b/manifests/extensions/validating-webhook/kustomization.yaml index 5fee834b12..97a885c4b0 100644 --- a/manifests/extensions/validating-webhook/kustomization.yaml +++ b/manifests/extensions/validating-webhook/kustomization.yaml @@ -11,4 +11,4 @@ namespace: argo-events images: - name: quay.io/argoproj/argo-events - newTag: v1.9.0 + newTag: v1.9.1 diff --git a/manifests/install-validating-webhook.yaml b/manifests/install-validating-webhook.yaml index cd0cde424c..ecf5776e52 100644 --- a/manifests/install-validating-webhook.yaml +++ b/manifests/install-validating-webhook.yaml @@ -116,7 +116,7 @@ spec: fieldPath: metadata.namespace - name: PORT value: "443" - image: quay.io/argoproj/argo-events:v1.9.0 + image: quay.io/argoproj/argo-events:v1.9.1 imagePullPolicy: Always name: webhook serviceAccountName: argo-events-webhook-sa diff --git a/manifests/install.yaml b/manifests/install.yaml index 86216e322b..23c6050fa1 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -396,12 +396,12 @@ spec: - controller env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.0 + value: quay.io/argoproj/argo-events:v1.9.1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/argoproj/argo-events:v1.9.0 + image: quay.io/argoproj/argo-events:v1.9.1 imagePullPolicy: Always livenessProbe: httpGet: diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index 5a0b5bc824..f0045fd9b5 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -317,12 +317,12 @@ spec: - --namespaced env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.0 + value: quay.io/argoproj/argo-events:v1.9.1 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/argoproj/argo-events:v1.9.0 + image: quay.io/argoproj/argo-events:v1.9.1 imagePullPolicy: Always livenessProbe: httpGet: From 2d1d9a1420c9e804c2fe45365c2882235cac3aac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:03:32 +0000 Subject: [PATCH 031/123] chore(deps): bump google.golang.org/grpc from 1.61.0 to 1.61.1 (#3022) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 5c073bb01b..38b034559b 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.26.0 golang.org/x/crypto v0.19.0 google.golang.org/api v0.163.0 - google.golang.org/grpc v1.61.0 + google.golang.org/grpc v1.61.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 k8s.io/apimachinery v0.24.3 diff --git a/go.sum b/go.sum index 6291c1df12..d9efe97585 100644 --- a/go.sum +++ b/go.sum @@ -2703,8 +2703,8 @@ google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5v google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.61.0 h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0= -google.golang.org/grpc v1.61.0/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs= +google.golang.org/grpc v1.61.1 h1:kLAiWrZs7YeDM6MumDe7m3y4aM6wacLzM1Y/wiLP9XY= +google.golang.org/grpc v1.61.1/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= From 1c3a484480fa121ac230d5b97a011c20f23a046e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:03:48 +0000 Subject: [PATCH 032/123] chore(deps): bump github.com/tidwall/gjson from 1.17.0 to 1.17.1 (#3023) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 38b034559b..33b7ea82af 100644 --- a/go.mod +++ b/go.mod @@ -72,7 +72,7 @@ require ( github.com/spf13/viper v1.18.2 github.com/stretchr/testify v1.8.4 github.com/stripe/stripe-go v70.15.0+incompatible - github.com/tidwall/gjson v1.17.0 + github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 github.com/xanzy/go-gitlab v0.97.0 github.com/yuin/gopher-lua v1.1.1 diff --git a/go.sum b/go.sum index d9efe97585..c55f5219e2 100644 --- a/go.sum +++ b/go.sum @@ -1791,8 +1791,8 @@ github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8 github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/tailscale/depaware v0.0.0-20210622194025-720c4b409502/go.mod h1:p9lPsd+cx33L3H9nNoecRRxPssFKUwwI50I3pZ0yT+8= github.com/tidwall/gjson v1.12.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= -github.com/tidwall/gjson v1.17.0 h1:/Jocvlh98kcTfpN2+JzGQWQcqrPQwDrVEMApx/M5ZwM= -github.com/tidwall/gjson v1.17.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= +github.com/tidwall/gjson v1.17.1 h1:wlYEnwqAHgzmhNUFfw7Xalt2JzQvsMx2Se4PcoFCT/U= +github.com/tidwall/gjson v1.17.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= From 6d4823a87adf2c2eeb38e834c2863de7f8defcc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:04:02 +0000 Subject: [PATCH 033/123] chore(deps): bump github.com/slack-go/slack from 0.12.2 to 0.12.4 (#3024) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 33b7ea82af..a32fb5c2cd 100644 --- a/go.mod +++ b/go.mod @@ -66,7 +66,7 @@ require ( github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 github.com/robfig/cron/v3 v3.0.1 - github.com/slack-go/slack v0.12.2 + github.com/slack-go/slack v0.12.4 github.com/smartystreets/goconvey v1.7.2 github.com/spf13/cobra v1.8.0 github.com/spf13/viper v1.18.2 diff --git a/go.sum b/go.sum index c55f5219e2..8b5617d51a 100644 --- a/go.sum +++ b/go.sum @@ -1718,8 +1718,8 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= -github.com/slack-go/slack v0.12.2 h1:x3OppyMyGIbbiyFhsBmpf9pwkUzMhthJMRNmNlA4LaQ= -github.com/slack-go/slack v0.12.2/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= +github.com/slack-go/slack v0.12.4 h1:4iLT2opw+/QptmQxBNA7S8pNfSIvtn0NDGu7Jq0emi4= +github.com/slack-go/slack v0.12.4/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= From c9914a9e59d5e2bf793bc1e02e9f07cc5603e20c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:07:38 +0000 Subject: [PATCH 034/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.75 to 0.9.76 (#3025) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a32fb5c2cd..733e7cdc62 100644 --- a/go.mod +++ b/go.mod @@ -52,7 +52,7 @@ require ( github.com/imdario/mergo v0.3.15 github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.75 + github.com/ktrysmt/go-bitbucket v0.9.76 github.com/minio/minio-go/v7 v7.0.66 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index 8b5617d51a..30beb96832 100644 --- a/go.sum +++ b/go.sum @@ -1425,8 +1425,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.75 h1:InF4ZKJVmUZuiTGDVGQH/3VxoL/gqIvm3jYy+6Cj6Og= -github.com/ktrysmt/go-bitbucket v0.9.75/go.mod h1:+wfH5IgKupLt9U0Voy1nH3YX+kNVtddeyeW8bqYXCto= +github.com/ktrysmt/go-bitbucket v0.9.76 h1:/oXA8TXtpAtNDPqOpwixg6J7xXpoUvnoduhOCJ7/fWo= +github.com/ktrysmt/go-bitbucket v0.9.76/go.mod h1:+wfH5IgKupLt9U0Voy1nH3YX+kNVtddeyeW8bqYXCto= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= From 47ea50ff60c2501c92927d35ff708d0051979598 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:08:32 +0000 Subject: [PATCH 035/123] chore(deps): bump github.com/nats-io/nats.go from 1.32.0 to 1.33.1 (#3026) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 733e7cdc62..0d830afad0 100644 --- a/go.mod +++ b/go.mod @@ -57,7 +57,7 @@ require ( github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f - github.com/nats-io/nats.go v1.32.0 + github.com/nats-io/nats.go v1.33.1 github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 diff --git a/go.sum b/go.sum index 30beb96832..9e32bc6f6c 100644 --- a/go.sum +++ b/go.sum @@ -1548,8 +1548,8 @@ github.com/nats-io/nats.go v1.13.0/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/ github.com/nats-io/nats.go v1.13.1-0.20220121202836-972a071d373d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.22.1/go.mod h1:tLqubohF7t4z3du1QDPYJIQQyhb4wl6DhjxEajSI7UA= -github.com/nats-io/nats.go v1.32.0 h1:Bx9BZS+aXYlxW08k8Gd3yR2s73pV5XSoAQUyp1Kwvp0= -github.com/nats-io/nats.go v1.32.0/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= +github.com/nats-io/nats.go v1.33.1 h1:8TxLZZ/seeEfR97qV0/Bl939tpDnt2Z2fK3HkPypj70= +github.com/nats-io/nats.go v1.33.1/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV6A5y4= github.com/nats-io/nkeys v0.4.7 h1:RwNJbbIdYCoClSDNY7QVKZlyb/wfT6ugvFCiKy6vDvI= github.com/nats-io/nkeys v0.4.7/go.mod h1:kqXRgRDPlGy7nGaEDMuYzmiJCIAAWDK0IMBtDmGD0nc= From ca185a5f2f74b678b036e2176232f6dcd74745a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:12:38 +0000 Subject: [PATCH 036/123] chore(deps): bump google.golang.org/api from 0.163.0 to 0.165.0 (#3028) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 14 +++++++------- go.sum | 27 ++++++++++++++------------- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/go.mod b/go.mod index 0d830afad0..034829c39c 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.19.0 - google.golang.org/api v0.163.0 + google.golang.org/api v0.165.0 google.golang.org/grpc v1.61.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -157,14 +157,14 @@ require ( github.com/xdg-go/stringprep v1.0.4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect - go.opentelemetry.io/otel v1.22.0 // indirect - go.opentelemetry.io/otel/metric v1.22.0 // indirect - go.opentelemetry.io/otel/trace v1.22.0 // indirect + go.opentelemetry.io/otel v1.23.0 // indirect + go.opentelemetry.io/otel/metric v1.23.0 // indirect + go.opentelemetry.io/otel/trace v1.23.0 // indirect golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -310,7 +310,7 @@ require ( go.uber.org/multierr v1.10.0 // indirect golang.org/x/mod v0.12.0 // indirect golang.org/x/net v0.21.0 // indirect - golang.org/x/oauth2 v0.16.0 // indirect + golang.org/x/oauth2 v0.17.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.17.0 // indirect golang.org/x/term v0.17.0 // indirect @@ -319,7 +319,7 @@ require ( golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect + google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe // indirect google.golang.org/protobuf v1.32.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 9e32bc6f6c..495e9e6841 100644 --- a/go.sum +++ b/go.sum @@ -1888,20 +1888,20 @@ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 h1:sv9kVfal0MK0wBMCOGr+HeJm9v803BkJxGrk2au7j08= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0/go.mod h1:SK2UL73Zy1quvRPonmOmRDiWk1KBV3LyIeeIxcEApWw= go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= -go.opentelemetry.io/otel v1.22.0 h1:xS7Ku+7yTFvDfDraDIJVpw7XPyuHlB9MCiqqX5mcJ6Y= -go.opentelemetry.io/otel v1.22.0/go.mod h1:eoV4iAi3Ea8LkAEI9+GFT44O6T/D0GWAVFyZVCC6pMI= +go.opentelemetry.io/otel v1.23.0 h1:Df0pqjqExIywbMCMTxkAwzjLZtRf+bBKLbUcpxO2C9E= +go.opentelemetry.io/otel v1.23.0/go.mod h1:YCycw9ZeKhcJFrb34iVSkyT0iczq/zYDtZYFufObyB0= go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= -go.opentelemetry.io/otel/metric v1.22.0 h1:lypMQnGyJYeuYPhOM/bgjbFM6WE44W1/T45er4d8Hhg= -go.opentelemetry.io/otel/metric v1.22.0/go.mod h1:evJGjVpZv0mQ5QBRJoBF64yMuOf4xCWdXjK8pzFvliY= +go.opentelemetry.io/otel/metric v1.23.0 h1:pazkx7ss4LFVVYSxYew7L5I6qvLXHA0Ap2pwV+9Cnpo= +go.opentelemetry.io/otel/metric v1.23.0/go.mod h1:MqUW2X2a6Q8RN96E2/nqNoT+z9BSms20Jb7Bbp+HiTo= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= -go.opentelemetry.io/otel/trace v1.22.0 h1:Hg6pPujv0XG9QaVbGOBVHunyuLcCC3jN7WEhPx83XD0= -go.opentelemetry.io/otel/trace v1.22.0/go.mod h1:RbbHXVqKES9QhzZq/fE5UnOSILqRt40a21sPw2He1xo= +go.opentelemetry.io/otel/trace v1.23.0 h1:37Ik5Ib7xfYVb4V1UtnT97T1jI+AoIYkJyPkuL4iJgI= +go.opentelemetry.io/otel/trace v1.23.0/go.mod h1:GSGTbIClEsuZrGIzoEHqsVfxgn5UkggkflQwDScNUsk= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= @@ -2141,8 +2141,9 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.16.0 h1:aDkGMBSYxElaoP81NpoUoz2oo2R2wHdZpGToUxfyQrQ= golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= +golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ= +golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2498,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.163.0 h1:4BBDpPaSH+H28NhnX+WwjXxbRLQ7TWuEKp4BQyEjxvk= -google.golang.org/api v0.163.0/go.mod h1:6SulDkfoBIg4NFmCuZ39XeeAgSHCPecfSUuDyYlAHs0= +google.golang.org/api v0.165.0 h1:zd5d4JIIIaYYsfVy1HzoXYZ9rWCSBxxAglbczzo7Bgc= +google.golang.org/api v0.165.0/go.mod h1:2OatzO7ZDQsoS7IFf3rvsE17/TldiU3F/zxFHeqUB5o= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2647,8 +2648,8 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac h1:ZL/Teoy/ZGnzyrqK/Optxxp2pmVh+fmJ97slxSRyzUg= -google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac/go.mod h1:+Rvu7ElI+aLzyDQhpHMFMMltsD6m7nqpuWDd2CwJw3k= +google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe h1:USL2DhxfgRchafRvt/wYyyQNzwgL7ZiURcozOE/Pkvo= +google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:cc8bqMqtv9gMOr0zHg2Vzff5ULhhL2IXP4sbcn32Dro= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= @@ -2660,8 +2661,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe h1:bQnxqljG/wqi4NTXu2+DJ3n7APcEA882QZ1JvhQAq9o= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:PAREbraiVEVGVdTZsVWjSbbTtSyGbAgIIvni8a8CD5s= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 h1:FSL3lRCkhaPFxqi0s9o+V4UI2WTzAVOvkgbd4kVV4Wg= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014/go.mod h1:SaPjaZGWb0lPqs6Ittu0spdfrOArqji4ZdeP5IC/9N4= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From b343bcad6b9e91b90f1e8b9899421b4875315775 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:16:50 +0000 Subject: [PATCH 037/123] chore(deps): bump github.com/minio/minio-go/v7 from 7.0.66 to 7.0.67 (#3027) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 034829c39c..35f04e0fec 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.76 - github.com/minio/minio-go/v7 v7.0.66 + github.com/minio/minio-go/v7 v7.0.67 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f diff --git a/go.sum b/go.sum index 495e9e6841..adaffb1798 100644 --- a/go.sum +++ b/go.sum @@ -1484,8 +1484,8 @@ github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77Z github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go/v7 v7.0.29/go.mod h1:x81+AX5gHSfCSqw7jxRKHvxUXMlE5uKX0Vb75Xk5yYg= -github.com/minio/minio-go/v7 v7.0.66 h1:bnTOXOHjOqv/gcMuiVbN9o2ngRItvqE774dG9nq0Dzw= -github.com/minio/minio-go/v7 v7.0.66/go.mod h1:DHAgmyQEGdW3Cif0UooKOyrT3Vxs82zNdV6tkKhRtbs= +github.com/minio/minio-go/v7 v7.0.67 h1:BeBvZWAS+kRJm1vGTMJYVjKUNoo0FoEt/wUWdUtfmh8= +github.com/minio/minio-go/v7 v7.0.67/go.mod h1:+UXocnUeZ3wHvVh5s95gcrA4YjMIbccT6ubB+1m054A= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= From 50fddbe72a4ea9a4e0d23de3abd83b2295812442 Mon Sep 17 00:00:00 2001 From: Bryant Hagadorn <4451303+blhagadorn@users.noreply.github.com> Date: Sun, 18 Feb 2024 23:46:28 -0700 Subject: [PATCH 038/123] Update quickstart with link to Argo Workflows versions, set as ENV VAR (#3029) Signed-off-by: Bryant Hagadorn --- docs/quick_start.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/quick_start.md b/docs/quick_start.md index 9e87eeac9e..7b6739275c 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -5,10 +5,11 @@ We are going to set up a sensor and event-source for webhook. The goal is to tri Note: You will need to have [Argo Workflows](https://argoproj.github.io/argo-workflows/) installed to make this work. The Argo Workflow controller will need to be configured to listen for Workflow objects created in `argo-events` namespace. (See [this](https://github.com/argoproj/argo-workflows/blob/master/docs/managed-namespace.md) link.) - The Workflow Controller will need to be installed either in a cluster-scope configuration (i.e. no "--namespaced" argument) so that it has visiblity to all namespaces, or with "--managed-namespace" set to define "argo-events" as a namespace it has visibility to. To deploy Argo Workflows with a cluster-scope configuration you can use this installation yaml file: + The Workflow Controller will need to be installed either in a cluster-scope configuration (i.e. no "--namespaced" argument) so that it has visiblity to all namespaces, or with "--managed-namespace" set to define "argo-events" as a namespace it has visibility to. To deploy Argo Workflows with a cluster-scope configuration you can use this installation yaml file, setting `ARGO_WORKFLOWS_VERSION` with your desired version. A list of versions can be found by viewing [these](https://github.com/argoproj/argo-workflows/tags) project tags in the Argo Workflow GitHub repository. + export ARGO_WORKFLOWS_VERSION=3.5.4 kubectl create namespace argo - kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v<>/install.yaml + kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v$ARGO_WORKFLOWS_VERSION/install.yaml 1. Install Argo Events From a8333d8fec9df6741ad09d0a9e80caf2622b7e39 Mon Sep 17 00:00:00 2001 From: Yulin Li Date: Mon, 19 Feb 2024 14:48:29 +0800 Subject: [PATCH 039/123] fix: do not overwrite the entrypoint of nats-server-config-reloader (#3004) Signed-off-by: Yulin Li Co-authored-by: Yulin Li --- Makefile | 2 +- controllers/eventbus/installer/jetstream.go | 2 +- .../base/controller-manager/controller-config.yaml | 11 ++++++++--- manifests/install.yaml | 11 ++++++++--- manifests/namespace-install.yaml | 11 ++++++++--- 5 files changed, 26 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 21e62f9a35..af5fcd023c 100644 --- a/Makefile +++ b/Makefile @@ -151,7 +151,7 @@ docs/assets/diagram.png: go-diagrams/diagram.dot .PHONY: start start: image kubectl apply -f test/manifests/argo-events-ns.yaml - kubectl kustomize test/manifests | sed 's@quay.io/argoproj/@$(IMAGE_NAMESPACE)/@' | sed 's/:$(BASE_VERSION)/:$(VERSION)/' | kubectl -n argo-events apply -l app.kubernetes.io/part-of=argo-events --prune=false --force -f - + kubectl kustomize test/manifests | sed 's@quay.io/argoproj/@$(IMAGE_NAMESPACE)/@' | sed 's/argo-events:$(BASE_VERSION)/argo-events:$(VERSION)/' | kubectl -n argo-events apply -l app.kubernetes.io/part-of=argo-events --prune=false --force -f - kubectl -n argo-events wait --for=condition=Ready --timeout 60s pod --all $(GOPATH)/bin/golangci-lint: diff --git a/controllers/eventbus/installer/jetstream.go b/controllers/eventbus/installer/jetstream.go index 034c9c0d62..5df15d528e 100644 --- a/controllers/eventbus/installer/jetstream.go +++ b/controllers/eventbus/installer/jetstream.go @@ -401,7 +401,7 @@ func (r *jetStreamInstaller) buildStatefulSetSpec(jsVersion *controllers.JetStre Image: jsVersion.ConfigReloaderImage, ImagePullPolicy: reloaderContainerPullPolicy, SecurityContext: reloaderContainerSecurityContext, - Command: []string{"nats-server-config-reloader", "-pid", "/var/run/nats/nats.pid", "-config", "/etc/nats-config/nats-js.conf"}, + Args: []string{"-pid", "/var/run/nats/nats.pid", "-config", "/etc/nats-config/nats-js.conf"}, VolumeMounts: []corev1.VolumeMount{ {Name: "config-volume", MountPath: "/etc/nats-config"}, {Name: "pid", MountPath: "/var/run/nats"}, diff --git a/manifests/base/controller-manager/controller-config.yaml b/manifests/base/controller-manager/controller-config.yaml index 0074375142..119648be15 100644 --- a/manifests/base/controller-manager/controller-config.yaml +++ b/manifests/base/controller-manager/controller-config.yaml @@ -28,9 +28,9 @@ data: duplicates: 300s versions: - version: latest - natsImage: nats:2.9.16 - metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 - configReloaderImage: natsio/nats-server-config-reloader:0.7.0 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 startCommand: /nats-server - version: 2.8.1 natsImage: nats:2.8.1 @@ -67,3 +67,8 @@ data: metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 configReloaderImage: natsio/nats-server-config-reloader:0.7.0 startCommand: /nats-server + - version: 2.10.10 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 + startCommand: /nats-server diff --git a/manifests/install.yaml b/manifests/install.yaml index 23c6050fa1..e190eeef79 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -332,9 +332,9 @@ data: duplicates: 300s versions: - version: latest - natsImage: nats:2.9.16 - metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 - configReloaderImage: natsio/nats-server-config-reloader:0.7.0 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 startCommand: /nats-server - version: 2.8.1 natsImage: nats:2.8.1 @@ -371,6 +371,11 @@ data: metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 configReloaderImage: natsio/nats-server-config-reloader:0.7.0 startCommand: /nats-server + - version: 2.10.10 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 + startCommand: /nats-server kind: ConfigMap metadata: name: argo-events-controller-config diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index f0045fd9b5..b1bacbdfe9 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -252,9 +252,9 @@ data: duplicates: 300s versions: - version: latest - natsImage: nats:2.9.16 - metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 - configReloaderImage: natsio/nats-server-config-reloader:0.7.0 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 startCommand: /nats-server - version: 2.8.1 natsImage: nats:2.8.1 @@ -291,6 +291,11 @@ data: metricsExporterImage: natsio/prometheus-nats-exporter:0.9.1 configReloaderImage: natsio/nats-server-config-reloader:0.7.0 startCommand: /nats-server + - version: 2.10.10 + natsImage: nats:2.10.10 + metricsExporterImage: natsio/prometheus-nats-exporter:0.14.0 + configReloaderImage: natsio/nats-server-config-reloader:0.14.0 + startCommand: /nats-server kind: ConfigMap metadata: name: argo-events-controller-config From e5abffff897cc07c0b2d367c2b2be803fd3f70b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:46:47 +0000 Subject: [PATCH 040/123] chore(deps): bump google.golang.org/grpc from 1.61.1 to 1.62.0 (#3034) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 35f04e0fec..ed3b755b0a 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.26.0 golang.org/x/crypto v0.19.0 google.golang.org/api v0.165.0 - google.golang.org/grpc v1.61.1 + google.golang.org/grpc v1.62.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 k8s.io/apimachinery v0.24.3 @@ -221,7 +221,7 @@ require ( github.com/go-openapi/validate v0.22.0 // indirect github.com/gobuffalo/flect v0.2.3 // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect - github.com/golang/glog v1.1.2 // indirect + github.com/golang/glog v1.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/go-querystring v1.1.0 // indirect diff --git a/go.sum b/go.sum index adaffb1798..d9c6f1e989 100644 --- a/go.sum +++ b/go.sum @@ -822,7 +822,7 @@ github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWH github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20231109132714-523115ebc101 h1:7To3pQ+pZo0i3dsWEbinPNFs5gPSBOsJtx3wTT94VBY= +github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa h1:jQCWAUqqlij9Pgj2i/PB79y4KOPYVyFYdROxgaCwdTQ= github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= @@ -908,7 +908,7 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7 github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v1.0.2 h1:QkIBuU5k+x7/QXPvPPnWXWlCdaBFApVqftFV6k087DA= +github.com/envoyproxy/protoc-gen-validate v1.0.4 h1:gVPz/FMfvh57HdSJQyvBtF00j8JU4zdyUgIUNhlgg0A= github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= @@ -1092,8 +1092,8 @@ github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGw github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/glog v1.1.2 h1:DVjP2PbBOzHyzA+dn3WhHIq4NdVu3Q+pvivFICf/7fo= -github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= +github.com/golang/glog v1.2.0 h1:uCdmnmatrKCgMBlM4rMuJZWOkPDqdbZPnrMXDY4gI68= +github.com/golang/glog v1.2.0/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -2704,8 +2704,8 @@ google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5v google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.61.1 h1:kLAiWrZs7YeDM6MumDe7m3y4aM6wacLzM1Y/wiLP9XY= -google.golang.org/grpc v1.61.1/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs= +google.golang.org/grpc v1.62.0 h1:HQKZ/fa1bXkX1oFOvSjmZEUL8wLSaZTjCcLAlmZRtdk= +google.golang.org/grpc v1.62.0/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= From e4f09029f214847a72120f36adf1a0453e048a01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:49:25 +0000 Subject: [PATCH 041/123] chore(deps): bump github.com/cloudevents/sdk-go/v2 from 2.15.0 to 2.15.1 (#3035) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ed3b755b0a..7c7898d018 100644 --- a/go.mod +++ b/go.mod @@ -27,7 +27,7 @@ require ( github.com/aws/aws-sdk-go v1.44.209 github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 - github.com/cloudevents/sdk-go/v2 v2.15.0 + github.com/cloudevents/sdk-go/v2 v2.15.1 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 github.com/eclipse/paho.mqtt.golang v1.4.3 github.com/emitter-io/go/v2 v2.0.9 diff --git a/go.sum b/go.sum index d9c6f1e989..850edf3b4e 100644 --- a/go.sum +++ b/go.sum @@ -802,8 +802,8 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudevents/sdk-go/v2 v2.15.0 h1:aKnhLQhyoJXqEECQdOIZnbZ9VupqlidE6hedugDGr+I= -github.com/cloudevents/sdk-go/v2 v2.15.0/go.mod h1:lL7kSWAE/V8VI4Wh0jbL2v/jvqsm6tjmaQBSvxcv4uE= +github.com/cloudevents/sdk-go/v2 v2.15.1 h1:EZxXQFkzk8TSsxDBx8v18+KGwTYsGRyHNwtzZiHUk4E= +github.com/cloudevents/sdk-go/v2 v2.15.1/go.mod h1:lL7kSWAE/V8VI4Wh0jbL2v/jvqsm6tjmaQBSvxcv4uE= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= From c3287473786151bcf621d936eb24ed8c52d03c40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:56:44 +0000 Subject: [PATCH 042/123] chore(deps): bump github.com/IBM/sarama from 1.42.2 to 1.43.0 (#3037) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 7c7898d018..a082b8cad9 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 - github.com/IBM/sarama v1.42.2 + github.com/IBM/sarama v1.43.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible github.com/Masterminds/sprig/v3 v3.2.3 github.com/ahmetb/gen-crd-api-reference-docs v0.3.0 @@ -200,7 +200,7 @@ require ( github.com/devigned/tab v0.1.1 // indirect github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 github.com/dustin/go-humanize v1.0.1 // indirect - github.com/eapache/go-resiliency v1.5.0 // indirect + github.com/eapache/go-resiliency v1.6.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect github.com/eapache/queue v1.1.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect @@ -252,7 +252,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/jtolds/gls v4.20.0+incompatible // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect - github.com/klauspost/compress v1.17.4 // indirect + github.com/klauspost/compress v1.17.7 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/magiconair/properties v1.8.7 // indirect diff --git a/go.sum b/go.sum index 850edf3b4e..1db71bf725 100644 --- a/go.sum +++ b/go.sum @@ -676,8 +676,8 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.0 h1:+K/VEwIAaPcHiMtQvpLD4lqW7f0Gk3xdYZmI1hD+CXo= github.com/DataDog/zstd v1.5.0/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= -github.com/IBM/sarama v1.42.2 h1:VoY4hVIZ+WQJ8G9KNY/SQlWguBQXQ9uvFPOnrcu8hEw= -github.com/IBM/sarama v1.42.2/go.mod h1:FLPGUGwYqEs62hq2bVG6Io2+5n+pS6s/WOXVKWSLFtE= +github.com/IBM/sarama v1.43.0 h1:YFFDn8mMI2QL0wOrG0J2sFoVIAFl7hS9JQi2YZsXtJc= +github.com/IBM/sarama v1.43.0/go.mod h1:zlE6HEbC/SMQ9mhEYaF7nNLYOUyrs0obySKCckWP9BM= github.com/Jeffail/gabs v1.4.0 h1://5fYRRTq1edjfIrQGvdkcd22pkYUrHZ5YC/H2GJVAo= github.com/Jeffail/gabs v1.4.0/go.mod h1:6xMvQMK4k33lb7GUUpaAPh6nKMmemQeg5d4gn7/bOXc= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= @@ -873,8 +873,8 @@ github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkp github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dvsekhvalnov/jose2go v1.6.0 h1:Y9gnSnP4qEI0+/uQkHvFXeD2PLPJeXEL+ySMEA2EjTY= github.com/dvsekhvalnov/jose2go v1.6.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= -github.com/eapache/go-resiliency v1.5.0 h1:dRsaR00whmQD+SgVKlq/vCRFNgtEb5yppyeVos3Yce0= -github.com/eapache/go-resiliency v1.5.0/go.mod h1:5yPzW0MIvSe0JDsv0v+DvcjEv2FyD6iZYSs1ZI+iQho= +github.com/eapache/go-resiliency v1.6.0 h1:CqGDTLtpwuWKn6Nj3uNUdflaq+/kIPsg0gfNzHton30= +github.com/eapache/go-resiliency v1.6.0/go.mod h1:5yPzW0MIvSe0JDsv0v+DvcjEv2FyD6iZYSs1ZI+iQho= github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 h1:Oy0F4ALJ04o5Qqpdz8XLIpNA3WM/iSIXqxtqo7UGVws= github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3/go.mod h1:YvSRo5mw33fLEx1+DlK6L2VV43tJt5Eyel9n9XBcR+0= github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= @@ -1401,8 +1401,8 @@ github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47e github.com/klauspost/compress v1.14.4/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= -github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= +github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= +github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4= github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= From c3765a64276eb6b354f9139f8bad11e23f82953d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 13:19:47 +0000 Subject: [PATCH 043/123] chore(deps): bump google.golang.org/api from 0.165.0 to 0.167.0 (#3036) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 18 +++++++++--------- go.sum | 38 +++++++++++++++++++------------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/go.mod b/go.mod index a082b8cad9..9cda935723 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.26.0 golang.org/x/crypto v0.19.0 - google.golang.org/api v0.165.0 + google.golang.org/api v0.167.0 google.golang.org/grpc v1.62.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -94,7 +94,7 @@ require ( ) require ( - cloud.google.com/go/compute v1.23.3 // indirect + cloud.google.com/go/compute v1.23.4 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect @@ -155,16 +155,16 @@ require ( github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect go.opentelemetry.io/otel v1.23.0 // indirect go.opentelemetry.io/otel/metric v1.23.0 // indirect go.opentelemetry.io/otel/trace v1.23.0 // indirect golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -173,7 +173,7 @@ require ( require ( cloud.google.com/go v0.112.0 // indirect - cloud.google.com/go/iam v1.1.5 // indirect + cloud.google.com/go/iam v1.1.6 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/go-amqp v1.0.4 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect @@ -226,7 +226,7 @@ require ( github.com/golang/snappy v0.0.4 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/googleapis/gax-go/v2 v2.12.0 // indirect + github.com/googleapis/gax-go/v2 v2.12.1 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -319,7 +319,7 @@ require ( golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe // indirect + google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 // indirect google.golang.org/protobuf v1.32.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 1db71bf725..f53f0bf501 100644 --- a/go.sum +++ b/go.sum @@ -176,8 +176,8 @@ cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOV cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.3 h1:6sVlXXBmbd7jNX0Ipq0trII3e4n1/MsADLK6a+aiVlk= -cloud.google.com/go/compute v1.23.3/go.mod h1:VCgBUoMnIVIR0CscqQiPJLAG25E3ZRZMzcFZeQ+h8CI= +cloud.google.com/go/compute v1.23.4 h1:EBT9Nw4q3zyE7G45Wvv3MzolIrCJEuHys5muLY0wvAw= +cloud.google.com/go/compute v1.23.4/go.mod h1:/EJMj55asU6kAFnuZET8zqgwgJ9FvXWXOkkfQZa4ioI= cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= @@ -317,8 +317,8 @@ cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGE cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.1.5 h1:1jTsCu4bcsNsE4iiqNT5SHwrDRCfRmIaaaVFhRveTJI= -cloud.google.com/go/iam v1.1.5/go.mod h1:rB6P/Ic3mykPbFio+vo7403drjlgvoWfYpJhMXEbzv8= +cloud.google.com/go/iam v1.1.6 h1:bEa06k05IO4f4uJonbB5iAgKTPpABy1ayxaIZV/GHVc= +cloud.google.com/go/iam v1.1.6/go.mod h1:O0zxdPeGBoFdWW3HWmBxJsk0pfvNM/p/qa82rWOGTwI= cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= @@ -338,7 +338,7 @@ cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4 cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.15.5 h1:pj1sRfut2eRbD9pFRjNnPNg/CzJPuQAzUujMIM1vVeM= +cloud.google.com/go/kms v1.15.6 h1:ktpEMQmsOAYj3VZwH020FcQlm23BVYg8T8O1woG2GcE= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= @@ -1225,8 +1225,8 @@ github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38 github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas= -github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= +github.com/googleapis/gax-go/v2 v2.12.1 h1:9F8GV9r9ztXyAi00gsMQHNoF51xPZm8uj1dpYt2ZETM= +github.com/googleapis/gax-go/v2 v2.12.1/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= @@ -1882,11 +1882,11 @@ go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 h1:UNQQKPfTDe1J81ViolILjTKPr9WetKW6uei2hFgJmFs= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0/go.mod h1:r9vWsPS/3AQItv3OSlEJ/E4mbrhUbbw18meOjArPtKQ= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 h1:P+/g8GpuJGYbOp2tAdKrIPUX9JO02q8Q0YNlHolpibA= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0/go.mod h1:tIKj3DbO8N9Y2xo52og3irLsPI4GW02DSMtrVgNMgxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 h1:sv9kVfal0MK0wBMCOGr+HeJm9v803BkJxGrk2au7j08= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0/go.mod h1:SK2UL73Zy1quvRPonmOmRDiWk1KBV3LyIeeIxcEApWw= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 h1:doUP+ExOpH3spVTLS0FcWGLnQrPct/hD/bCPbDRUEAU= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0/go.mod h1:rdENBZMT2OE6Ne/KLwpiXudnAsbdrdBaqBvTN8M8BgA= go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= go.opentelemetry.io/otel v1.23.0 h1:Df0pqjqExIywbMCMTxkAwzjLZtRf+bBKLbUcpxO2C9E= go.opentelemetry.io/otel v1.23.0/go.mod h1:YCycw9ZeKhcJFrb34iVSkyT0iczq/zYDtZYFufObyB0= @@ -2499,8 +2499,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.165.0 h1:zd5d4JIIIaYYsfVy1HzoXYZ9rWCSBxxAglbczzo7Bgc= -google.golang.org/api v0.165.0/go.mod h1:2OatzO7ZDQsoS7IFf3rvsE17/TldiU3F/zxFHeqUB5o= +google.golang.org/api v0.167.0 h1:CKHrQD1BLRii6xdkatBDXyKzM0mkawt2QP+H3LtPmSE= +google.golang.org/api v0.167.0/go.mod h1:4FcBc686KFi7QI/U51/2GKKevfZMpM17sCdibqe/bSA= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2648,21 +2648,21 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe h1:USL2DhxfgRchafRvt/wYyyQNzwgL7ZiURcozOE/Pkvo= -google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:cc8bqMqtv9gMOr0zHg2Vzff5ULhhL2IXP4sbcn32Dro= +google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 h1:g/4bk7P6TPMkAUbUhquq98xey1slwvuVJPosdBqYJlU= +google.golang.org/genproto v0.0.0-20240205150955-31a09d347014/go.mod h1:xEgQu1e4stdSSsxPDK8Azkrk/ECl5HvdPf6nbZrTS5M= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe h1:0poefMBYvYbs7g5UkjS6HcxBPaTRAmznle9jnxYoAI8= -google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe/go.mod h1:4jWUdICTdgc3Ibxmr8nAJiiLHwQBY0UI0XZcEMaFKaA= +google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 h1:x9PwdEgd11LgK+orcck69WVRo7DezSO4VUMPI4xpc8A= +google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014/go.mod h1:rbHMSEDyoYX62nRVLOCc4Qt1HbsdytAYoVwgjiOhF3I= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 h1:FSL3lRCkhaPFxqi0s9o+V4UI2WTzAVOvkgbd4kVV4Wg= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014/go.mod h1:SaPjaZGWb0lPqs6Ittu0spdfrOArqji4ZdeP5IC/9N4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 h1:hZB7eLIaYlW9qXRfCq/qDaPdbeY3757uARz5Vvfv+cY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:YUWgXUFRPfoYK1IHMuxH5K6nPEXSCzIMljnQ59lLRCk= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From fc4f2605f99b261bd26d162581203d4240a05ee1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 13:27:32 +0000 Subject: [PATCH 044/123] chore(deps): bump go.uber.org/zap from 1.26.0 to 1.27.0 (#3038) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 9cda935723..8aa4d07a62 100644 --- a/go.mod +++ b/go.mod @@ -77,7 +77,7 @@ require ( github.com/xanzy/go-gitlab v0.97.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 - go.uber.org/zap v1.26.0 + go.uber.org/zap v1.27.0 golang.org/x/crypto v0.19.0 google.golang.org/api v0.167.0 google.golang.org/grpc v1.62.0 diff --git a/go.sum b/go.sum index f53f0bf501..e186852ca4 100644 --- a/go.sum +++ b/go.sum @@ -1910,8 +1910,8 @@ go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= +go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= @@ -1921,8 +1921,8 @@ go.uber.org/ratelimit v0.2.0/go.mod h1:YYBV4e4naJvhpitQrWJu1vCpgB7CboMe0qhltKt6m go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= -go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= -go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= +go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= +go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= From 39cd54f8d364fba3d2a3612318dfce5306ae86e5 Mon Sep 17 00:00:00 2001 From: Ryan Currah Date: Sun, 25 Feb 2024 12:44:42 -0500 Subject: [PATCH 045/123] feat(bitbucketserver): multiple improvements to bitbucketserver event source (#2921) Signed-off-by: Derek Wang --- api/event-source.html | 60 +- api/event-source.md | 62 +- api/jsonschema/schema.json | 34 +- api/openapi-spec/swagger.json | 34 +- eventsources/sources/bitbucketserver/start.go | 429 +++++-- eventsources/sources/bitbucketserver/types.go | 7 + .../sources/bitbucketserver/validate.go | 10 +- .../sources/bitbucketserver/validate_test.go | 2 +- go.mod | 2 +- pkg/apis/eventsource/v1alpha1/generated.pb.go | 1062 +++++++++-------- pkg/apis/eventsource/v1alpha1/generated.proto | 54 +- .../eventsource/v1alpha1/openapi_generated.go | 50 +- pkg/apis/eventsource/v1alpha1/types.go | 53 +- .../v1alpha1/zz_generated.deepcopy.go | 5 + 14 files changed, 1214 insertions(+), 650 deletions(-) diff --git a/api/event-source.html b/api/event-source.html index f3fa7490e4..b85496ceb1 100644 --- a/api/event-source.html +++ b/api/event-source.html @@ -1169,7 +1169,7 @@

BitbucketServerEventSou -

Webhook holds configuration to run a http server

+

Webhook holds configuration to run a http server.

@@ -1181,8 +1181,8 @@

BitbucketServerEventSou (Optional) -

DeprecatedProjectKey is the key of project for which integration needs to set up -Deprecated: use Repositories instead. Will be unsupported in v1.8

+

DeprecatedProjectKey is the key of project for which integration needs to set up. +Deprecated: use Repositories instead. Will be unsupported in v1.8.

@@ -1194,8 +1194,20 @@

BitbucketServerEventSou (Optional) -

DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up -Deprecated: use Repositories instead. Will be unsupported in v1.8

+

DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. +Deprecated: use Repositories instead. Will be unsupported in v1.8.

+ + + + +projects
+ +[]string + + + +(Optional) +

Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project.

@@ -1209,7 +1221,7 @@

BitbucketServerEventSou (Optional) -

Repositories holds a list of repositories for which integration needs to set up

+

Repositories holds a list of repositories for which integration needs to set up.

@@ -1220,12 +1232,26 @@

BitbucketServerEventSou +(Optional)

Events are bitbucket event to listen to. Refer https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html

+skipBranchRefsChangedOnOpenPR
+ +bool + + + +(Optional) +

SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there’s an associated open pull request. +This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review.

+ + + + accessToken
@@ -1234,7 +1260,7 @@

BitbucketServerEventSou -

AccessToken is reference to K8s secret which holds the bitbucket api access information

+

AccessToken is reference to K8s secret which holds the bitbucket api access information.

@@ -1247,7 +1273,7 @@

BitbucketServerEventSou -

WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation)

+

WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation).

@@ -1258,7 +1284,7 @@

BitbucketServerEventSou -

BitbucketServerBaseURL is the base URL for API requests to a custom endpoint

+

BitbucketServerBaseURL is the base URL for API requests to a custom endpoint.

@@ -1311,6 +1337,18 @@

BitbucketServerEventSou

TLS configuration for the bitbucketserver client.

+ + +checkInterval
+ +string + + + +(Optional) +

CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h… (defaults to 1m)

+ +

BitbucketServerRepository @@ -1337,7 +1375,7 @@

BitbucketServerRepositor -

ProjectKey is the key of project for which integration needs to set up

+

ProjectKey is the key of project for which integration needs to set up.

@@ -1348,7 +1386,7 @@

BitbucketServerRepositor -

RepositorySlug is the slug of the repository for which integration needs to set up

+

RepositorySlug is the slug of the repository for which integration needs to set up.

diff --git a/api/event-source.md b/api/event-source.md index 1a4a743cd6..e2af9a372d 100644 --- a/api/event-source.md +++ b/api/event-source.md @@ -1233,7 +1233,7 @@ Description

-Webhook holds configuration to run a http server +Webhook holds configuration to run a http server.

@@ -1245,8 +1245,8 @@ Webhook holds configuration to run a http server (Optional)

DeprecatedProjectKey is the key of project for which integration needs -to set up Deprecated: use Repositories instead. Will be unsupported in -v1.8 +to set up. Deprecated: use Repositories instead. Will be unsupported in +v1.8.

@@ -1258,8 +1258,20 @@ v1.8 (Optional)

DeprecatedRepositorySlug is the slug of the repository for which -integration needs to set up Deprecated: use Repositories instead. Will -be unsupported in v1.8 +integration needs to set up. Deprecated: use Repositories instead. Will +be unsupported in v1.8. +

+ + + + +projects
\[\]string + + +(Optional) +

+Projects holds a list of projects for which integration needs to set up, +this will add the webhook to all repositories in the project.

@@ -1273,7 +1285,7 @@ be unsupported in v1.8 (Optional)

Repositories holds a list of repositories for which integration needs to -set up +set up.

@@ -1282,6 +1294,7 @@ set up events
\[\]string +(Optional)

Events are bitbucket event to listen to. Refer https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html @@ -1290,6 +1303,21 @@ Events are bitbucket event to listen to. Refer +skipBranchRefsChangedOnOpenPR
bool + + +(Optional) +

+SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for +branches whenever there’s an associated open pull request. This helps in +optimizing the event handling process by avoiding unnecessary triggers +for branch reference changes that are already part of a pull request +under review. +

+ + + + accessToken
Kubernetes core/v1.SecretKeySelector @@ -1297,7 +1325,7 @@ Kubernetes core/v1.SecretKeySelector

AccessToken is reference to K8s secret which holds the bitbucket api -access information +access information.

@@ -1310,7 +1338,7 @@ Kubernetes core/v1.SecretKeySelector

WebhookSecret is reference to K8s secret which holds the bitbucket -webhook secret (for HMAC validation) +webhook secret (for HMAC validation).

@@ -1321,7 +1349,7 @@ webhook secret (for HMAC validation)

BitbucketServerBaseURL is the base URL for API requests to a custom -endpoint +endpoint.

@@ -1374,6 +1402,18 @@ TLS configuration for the bitbucketserver client.

+ + +checkInterval
string + + +(Optional) +

+CheckInterval is a duration in which to wait before checking that the +webhooks exist, e.g. 1s, 30m, 2h… (defaults to 1m) +

+ +

@@ -1403,7 +1443,7 @@ Description

-ProjectKey is the key of project for which integration needs to set up +ProjectKey is the key of project for which integration needs to set up.

@@ -1414,7 +1454,7 @@ ProjectKey is the key of project for which integration needs to set up

RepositorySlug is the slug of the repository for which integration needs -to set up +to set up.

diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index 11422f7237..43d112fa99 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -1154,10 +1154,14 @@ "properties": { "accessToken": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", - "description": "AccessToken is reference to K8s secret which holds the bitbucket api access information" + "description": "AccessToken is reference to K8s secret which holds the bitbucket api access information." }, "bitbucketserverBaseURL": { - "description": "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint", + "description": "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint.", + "type": "string" + }, + "checkInterval": { + "description": "CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m)", "type": "string" }, "deleteHookOnFinish": { @@ -1183,35 +1187,45 @@ "type": "object" }, "projectKey": { - "description": "DeprecatedProjectKey is the key of project for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + "description": "DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" }, + "projects": { + "description": "Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project.", + "items": { + "type": "string" + }, + "type": "array" + }, "repositories": { - "description": "Repositories holds a list of repositories for which integration needs to set up", + "description": "Repositories holds a list of repositories for which integration needs to set up.", "items": { "$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.BitbucketServerRepository" }, "type": "array" }, "repositorySlug": { - "description": "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + "description": "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" }, + "skipBranchRefsChangedOnOpenPR": { + "description": "SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there's an associated open pull request. This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review.", + "type": "boolean" + }, "tls": { "$ref": "#/definitions/io.argoproj.common.TLSConfig", "description": "TLS configuration for the bitbucketserver client." }, "webhook": { "$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.WebhookContext", - "description": "Webhook holds configuration to run a http server" + "description": "Webhook holds configuration to run a http server." }, "webhookSecret": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", - "description": "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation)" + "description": "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation)." } }, "required": [ - "events", "bitbucketserverBaseURL" ], "type": "object" @@ -1219,11 +1233,11 @@ "io.argoproj.eventsource.v1alpha1.BitbucketServerRepository": { "properties": { "projectKey": { - "description": "ProjectKey is the key of project for which integration needs to set up", + "description": "ProjectKey is the key of project for which integration needs to set up.", "type": "string" }, "repositorySlug": { - "description": "RepositorySlug is the slug of the repository for which integration needs to set up", + "description": "RepositorySlug is the slug of the repository for which integration needs to set up.", "type": "string" } }, diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index fa3627e296..2379acad8c 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -1145,16 +1145,19 @@ "description": "BitbucketServerEventSource refers to event-source related to Bitbucket Server events", "type": "object", "required": [ - "events", "bitbucketserverBaseURL" ], "properties": { "accessToken": { - "description": "AccessToken is reference to K8s secret which holds the bitbucket api access information", + "description": "AccessToken is reference to K8s secret which holds the bitbucket api access information.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" }, "bitbucketserverBaseURL": { - "description": "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint", + "description": "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint.", + "type": "string" + }, + "checkInterval": { + "description": "CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m)", "type": "string" }, "deleteHookOnFinish": { @@ -1180,30 +1183,41 @@ } }, "projectKey": { - "description": "DeprecatedProjectKey is the key of project for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + "description": "DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" }, + "projects": { + "description": "Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project.", + "type": "array", + "items": { + "type": "string" + } + }, "repositories": { - "description": "Repositories holds a list of repositories for which integration needs to set up", + "description": "Repositories holds a list of repositories for which integration needs to set up.", "type": "array", "items": { "$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.BitbucketServerRepository" } }, "repositorySlug": { - "description": "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + "description": "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", "type": "string" }, + "skipBranchRefsChangedOnOpenPR": { + "description": "SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there's an associated open pull request. This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review.", + "type": "boolean" + }, "tls": { "description": "TLS configuration for the bitbucketserver client.", "$ref": "#/definitions/io.argoproj.common.TLSConfig" }, "webhook": { - "description": "Webhook holds configuration to run a http server", + "description": "Webhook holds configuration to run a http server.", "$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.WebhookContext" }, "webhookSecret": { - "description": "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation)", + "description": "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation).", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" } } @@ -1216,11 +1230,11 @@ ], "properties": { "projectKey": { - "description": "ProjectKey is the key of project for which integration needs to set up", + "description": "ProjectKey is the key of project for which integration needs to set up.", "type": "string" }, "repositorySlug": { - "description": "RepositorySlug is the slug of the repository for which integration needs to set up", + "description": "RepositorySlug is the slug of the repository for which integration needs to set up.", "type": "string" } } diff --git a/eventsources/sources/bitbucketserver/start.go b/eventsources/sources/bitbucketserver/start.go index d5afc6eb3d..39a659e030 100644 --- a/eventsources/sources/bitbucketserver/start.go +++ b/eventsources/sources/bitbucketserver/start.go @@ -26,10 +26,14 @@ import ( "io" "math/big" "net/http" + "net/url" + "strconv" + "strings" "time" bitbucketv1 "github.com/gfleury/go-bitbucket-v1" "github.com/mitchellh/mapstructure" + "golang.org/x/exp/slices" "github.com/argoproj/argo-events/common" "github.com/argoproj/argo-events/common/logging" @@ -64,6 +68,7 @@ func (router *Router) GetRoute() *webhook.Route { // HandleRoute handles incoming requests on the route func (router *Router) HandleRoute(writer http.ResponseWriter, request *http.Request) { + bitbucketserverEventSource := router.bitbucketserverEventSource route := router.GetRoute() logger := route.Logger.With( @@ -93,6 +98,40 @@ func (router *Router) HandleRoute(writer http.ResponseWriter, request *http.Requ return } + // When SkipBranchRefsChangedOnOpenPR is enabled and webhook event type is repo:refs_changed, + // check if a Pull Request is opened for the commit, if one is opened the event will be skipped. + if bitbucketserverEventSource.SkipBranchRefsChangedOnOpenPR && slices.Contains(bitbucketserverEventSource.Events, "repo:refs_changed") { + refsChanged := refsChangedWebhookEvent{} + err := json.Unmarshal(body, &refsChanged) + if err != nil { + logger.Errorf("reading webhook body", zap.Error(err)) + common.SendErrorResponse(writer, err.Error()) + route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) + return + } + + if refsChanged.EventKey == "repo:refs_changed" && + len(refsChanged.Changes) > 0 && // Note refsChanged.Changes never has more or less than one change, not sure why Atlassian made it a list. + strings.EqualFold(refsChanged.Changes[0].Ref.Type, "BRANCH") && + !strings.EqualFold(refsChanged.Changes[0].Type, "DELETE") { + // Check if commit is associated to an open PR. + hasOpenPR, err := router.refsChangedHasOpenPullRequest(refsChanged.Repository.Project.Key, refsChanged.Repository.Slug, refsChanged.Changes[0].ToHash) + if err != nil { + logger.Errorf("checking if changed branch ref has an open pull request", zap.Error(err)) + common.SendErrorResponse(writer, err.Error()) + route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) + return + } + + // Do not publish this Branch repo:refs_changed event if a related Pull Request is already opened for the commit. + if hasOpenPR { + logger.Info("skipping publishing event, commit has an open pull request") + common.SendSuccessResponse(writer, "success") + return + } + } + } + event := &events.BitbucketServerEventData{ Headers: request.Header, Body: (*json.RawMessage)(&body), @@ -101,7 +140,7 @@ func (router *Router) HandleRoute(writer http.ResponseWriter, request *http.Requ eventBody, err := json.Marshal(event) if err != nil { - logger.Info("failed to marshal event") + logger.Errorw("failed to parse event", zap.Error(err)) common.SendErrorResponse(writer, "invalid event") route.Metrics.EventProcessingFailed(route.EventSourceName, route.EventName) return @@ -125,53 +164,42 @@ func (router *Router) PostInactivate() error { route := router.route logger := route.Logger - if bitbucketserverEventSource.DeleteHookOnFinish && len(router.hookIDs) > 0 { - logger.Info("deleting webhooks from bitbucket") + if !bitbucketserverEventSource.DeleteHookOnFinish { + logger.Info("not configured to delete webhooks, skipping") + return nil + } - bitbucketToken, err := common.GetSecretFromVolume(bitbucketserverEventSource.AccessToken) - if err != nil { - return fmt.Errorf("failed to get bitbucketserver token. err: %w", err) - } + if len(router.hookIDs) == 0 { + logger.Info("no need to delete webhooks, skipping") + return nil + } - bitbucketConfig := bitbucketv1.NewConfiguration(bitbucketserverEventSource.BitbucketServerBaseURL) - bitbucketConfig.AddDefaultHeader("x-atlassian-token", "no-check") - bitbucketConfig.AddDefaultHeader("x-requested-with", "XMLHttpRequest") + logger.Info("deleting webhooks from bitbucket") - if bitbucketserverEventSource.TLS != nil { - tlsConfig, err := common.GetTLSConfig(router.bitbucketserverEventSource.TLS) - if err != nil { - return fmt.Errorf("failed to get the tls configuration, %w", err) - } + bitbucketRepositories := bitbucketserverEventSource.GetBitbucketServerRepositories() - bitbucketConfig.HTTPClient = &http.Client{ - Transport: &http.Transport{ - TLSClientConfig: tlsConfig, - }, - } + if len(bitbucketserverEventSource.Projects) > 0 { + bitbucketProjectRepositories, err := getProjectRepositories(router.deleteClient, bitbucketserverEventSource.Projects) + if err != nil { + return err } - for _, repo := range bitbucketserverEventSource.GetBitbucketServerRepositories() { - id, ok := router.hookIDs[repo.ProjectKey+","+repo.RepositorySlug] - if !ok { - return fmt.Errorf("can not find hook ID for project-key: %s, repository-slug: %s", repo.ProjectKey, repo.RepositorySlug) - } - - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) - defer cancel() - - ctx = context.WithValue(ctx, bitbucketv1.ContextAccessToken, bitbucketToken) - bitbucketClient := bitbucketv1.NewAPIClient(ctx, bitbucketConfig) + bitbucketRepositories = append(bitbucketRepositories, bitbucketProjectRepositories...) + } - _, err = bitbucketClient.DefaultApi.DeleteWebhook(repo.ProjectKey, repo.RepositorySlug, int32(id)) - if err != nil { - return fmt.Errorf("failed to delete bitbucketserver webhook. err: %w", err) - } + for _, repo := range bitbucketRepositories { + id, ok := router.hookIDs[repo.ProjectKey+","+repo.RepositorySlug] + if !ok { + return fmt.Errorf("can not find hook ID for project-key: %s, repository-slug: %s", repo.ProjectKey, repo.RepositorySlug) + } - logger.Infow("bitbucket server webhook deleted", - zap.String("project-key", repo.ProjectKey), zap.String("repository-slug", repo.RepositorySlug)) + _, err := router.deleteClient.DefaultApi.DeleteWebhook(repo.ProjectKey, repo.RepositorySlug, int32(id)) + if err != nil { + return fmt.Errorf("failed to delete bitbucketserver webhook. err: %w", err) } - } else { - logger.Info("no need to delete webhooks, skipping.") + + logger.Infow("bitbucket server webhook deleted", + zap.String("project-key", repo.ProjectKey), zap.String("repository-slug", repo.RepositorySlug)) } return nil @@ -191,9 +219,40 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt logger.Info("started processing the Bitbucket Server event source...") + logger.Info("retrieving the access token credentials...") + bitbucketToken, err := common.GetSecretFromVolume(bitbucketserverEventSource.AccessToken) + if err != nil { + return fmt.Errorf("getting bitbucketserver token. err: %w", err) + } + + logger.Info("setting up the client to connect to Bitbucket Server...") + bitbucketConfig, err := newBitbucketServerClientCfg(bitbucketserverEventSource) + if err != nil { + return fmt.Errorf("initializing bitbucketserver client config. err: %w", err) + } + + bitbucketURL, err := url.Parse(bitbucketserverEventSource.BitbucketServerBaseURL) + if err != nil { + return fmt.Errorf("parsing bitbucketserver url. err: %w", err) + } + + ctx, cancel := context.WithCancel(ctx) + defer cancel() + + bitbucketClient := newBitbucketServerClient(ctx, bitbucketConfig, bitbucketToken) + bitbucketDeleteClient := newBitbucketServerClient(context.Background(), bitbucketConfig, bitbucketToken) + route := webhook.NewRoute(bitbucketserverEventSource.Webhook, logger, el.GetEventSourceName(), el.GetEventName(), el.Metrics) router := &Router{ - route: route, + route: route, + client: bitbucketClient, + customClient: &customBitbucketClient{ + client: bitbucketConfig.HTTPClient, + ctx: ctx, + token: bitbucketToken, + url: bitbucketURL, + }, + deleteClient: bitbucketDeleteClient, bitbucketserverEventSource: bitbucketserverEventSource, hookIDs: make(map[string]int), } @@ -203,48 +262,30 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt return webhook.ManageRoute(ctx, router, controller, dispatch) } - logger.Info("retrieving the access token credentials...") - bitbucketToken, err := common.GetSecretFromVolume(bitbucketserverEventSource.AccessToken) - if err != nil { - return fmt.Errorf("failed to get bitbucketserver token. err: %w", err) - } - if bitbucketserverEventSource.WebhookSecret != nil { logger.Info("retrieving the webhook secret...") webhookSecret, err := common.GetSecretFromVolume(bitbucketserverEventSource.WebhookSecret) if err != nil { - return fmt.Errorf("failed to get bitbucketserver webhook secret. err: %w", err) + return fmt.Errorf("getting bitbucketserver webhook secret. err: %w", err) } router.hookSecret = webhookSecret } - logger.Info("setting up the client to connect to Bitbucket Server...") - bitbucketConfig := bitbucketv1.NewConfiguration(bitbucketserverEventSource.BitbucketServerBaseURL) - bitbucketConfig.AddDefaultHeader("x-atlassian-token", "no-check") - bitbucketConfig.AddDefaultHeader("x-requested-with", "XMLHttpRequest") + applyWebhooks := func() { + bitbucketRepositories := bitbucketserverEventSource.GetBitbucketServerRepositories() - if bitbucketserverEventSource.TLS != nil { - tlsConfig, err := common.GetTLSConfig(router.bitbucketserverEventSource.TLS) - if err != nil { - return fmt.Errorf("failed to get the tls configuration, %w", err) - } + if len(bitbucketserverEventSource.Projects) > 0 { + bitbucketProjectRepositories, err := getProjectRepositories(router.client, bitbucketserverEventSource.Projects) + if err != nil { + logger.Errorw("failed to apply Bitbucket webhook", zap.Error(err)) + } - bitbucketConfig.HTTPClient = &http.Client{ - Transport: &http.Transport{ - TLSClientConfig: tlsConfig, - }, + bitbucketRepositories = append(bitbucketRepositories, bitbucketProjectRepositories...) } - } - - ctx, cancel := context.WithCancel(ctx) - defer cancel() - - ctx = context.WithValue(ctx, bitbucketv1.ContextAccessToken, bitbucketToken) - applyWebhooks := func() { - for _, repo := range bitbucketserverEventSource.GetBitbucketServerRepositories() { - if err = router.applyBitbucketServerWebhook(ctx, bitbucketConfig, repo); err != nil { + for _, repo := range bitbucketRepositories { + if err = router.applyBitbucketServerWebhook(repo); err != nil { logger.Errorw("failed to apply Bitbucket webhook", zap.String("project-key", repo.ProjectKey), zap.String("repository-slug", repo.RepositorySlug), zap.Error(err)) continue @@ -254,18 +295,29 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt } } - // When running multiple replicas of the eventsource, they will all try to create the webhook. - // Randomly sleep some time to mitigate the issue. + // When running multiple replicas of this event source, they will try to create webhooks at the same time. + // Randomly delay running the initial apply webhooks func to mitigate the issue. randomNum, _ := rand.Int(rand.Reader, big.NewInt(int64(2000))) time.Sleep(time.Duration(randomNum.Int64()) * time.Millisecond) applyWebhooks() + var checkInterval time.Duration + if bitbucketserverEventSource.CheckInterval == "" { + checkInterval = 60 * time.Second + } else { + checkInterval, err = time.ParseDuration(bitbucketserverEventSource.CheckInterval) + if err != nil { + return err + } + } + go func() { // Another kind of race conditions might happen when pods do rolling upgrade - new pod starts // and old pod terminates, if DeleteHookOnFinish is true, the hook will be deleted from Bitbucket. // This is a workaround to mitigate the race conditions. logger.Info("starting bitbucket hooks manager daemon") - ticker := time.NewTicker(60 * time.Second) + + ticker := time.NewTicker(checkInterval) defer ticker.Stop() for { select { @@ -282,7 +334,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt } // applyBitbucketServerWebhook creates or updates the configured webhook in Bitbucket -func (router *Router) applyBitbucketServerWebhook(ctx context.Context, bitbucketConfig *bitbucketv1.Configuration, repo v1alpha1.BitbucketServerRepository) error { +func (router *Router) applyBitbucketServerWebhook(repo v1alpha1.BitbucketServerRepository) error { bitbucketserverEventSource := router.bitbucketserverEventSource route := router.route @@ -295,10 +347,9 @@ func (router *Router) applyBitbucketServerWebhook(ctx context.Context, bitbucket "base-url", bitbucketserverEventSource.BitbucketServerBaseURL, ) - bitbucketClient := bitbucketv1.NewAPIClient(ctx, bitbucketConfig) formattedURL := common.FormattedURL(bitbucketserverEventSource.Webhook.URL, bitbucketserverEventSource.Webhook.Endpoint) - hooks, err := router.listWebhooks(bitbucketClient, repo) + hooks, err := router.listWebhooks(repo) if err != nil { return fmt.Errorf("failed to list existing hooks to check for duplicates for repository %s/%s, %w", repo.ProjectKey, repo.RepositorySlug, err) } @@ -333,7 +384,7 @@ func (router *Router) applyBitbucketServerWebhook(ctx context.Context, bitbucket logger.Info("webhook already exists") if router.shouldUpdateWebhook(existingHook, newHook) { logger.Info("webhook requires an update") - err = router.updateWebhook(bitbucketClient, existingHook.ID, requestBody, repo) + err = router.updateWebhook(existingHook.ID, requestBody, repo) if err != nil { return fmt.Errorf("failed to update webhook. err: %w", err) } @@ -345,7 +396,7 @@ func (router *Router) applyBitbucketServerWebhook(ctx context.Context, bitbucket } // Create the webhook when it doesn't exist yet - createdHook, err := router.createWebhook(bitbucketClient, requestBody, repo) + createdHook, err := router.createWebhook(requestBody, repo) if err != nil { return fmt.Errorf("failed to create webhook. err: %w", err) } @@ -357,8 +408,8 @@ func (router *Router) applyBitbucketServerWebhook(ctx context.Context, bitbucket return nil } -func (router *Router) listWebhooks(bitbucketClient *bitbucketv1.APIClient, repo v1alpha1.BitbucketServerRepository) ([]bitbucketv1.Webhook, error) { - apiResponse, err := bitbucketClient.DefaultApi.FindWebhooks(repo.ProjectKey, repo.RepositorySlug, nil) +func (router *Router) listWebhooks(repo v1alpha1.BitbucketServerRepository) ([]bitbucketv1.Webhook, error) { + apiResponse, err := router.client.DefaultApi.FindWebhooks(repo.ProjectKey, repo.RepositorySlug, nil) if err != nil { return nil, fmt.Errorf("failed to list existing hooks to check for duplicates for repository %s/%s, %w", repo.ProjectKey, repo.RepositorySlug, err) } @@ -371,8 +422,8 @@ func (router *Router) listWebhooks(bitbucketClient *bitbucketv1.APIClient, repo return hooks, nil } -func (router *Router) createWebhook(bitbucketClient *bitbucketv1.APIClient, requestBody []byte, repo v1alpha1.BitbucketServerRepository) (*bitbucketv1.Webhook, error) { - apiResponse, err := bitbucketClient.DefaultApi.CreateWebhook(repo.ProjectKey, repo.RepositorySlug, requestBody, []string{"application/json"}) +func (router *Router) createWebhook(requestBody []byte, repo v1alpha1.BitbucketServerRepository) (*bitbucketv1.Webhook, error) { + apiResponse, err := router.client.DefaultApi.CreateWebhook(repo.ProjectKey, repo.RepositorySlug, requestBody, []string{"application/json"}) if err != nil { return nil, fmt.Errorf("failed to add webhook. err: %w", err) } @@ -386,8 +437,8 @@ func (router *Router) createWebhook(bitbucketClient *bitbucketv1.APIClient, requ return createdHook, nil } -func (router *Router) updateWebhook(bitbucketClient *bitbucketv1.APIClient, hookID int, requestBody []byte, repo v1alpha1.BitbucketServerRepository) error { - _, err := bitbucketClient.DefaultApi.UpdateWebhook(repo.ProjectKey, repo.RepositorySlug, int32(hookID), requestBody, []string{"application/json"}) +func (router *Router) updateWebhook(hookID int, requestBody []byte, repo v1alpha1.BitbucketServerRepository) error { + _, err := router.client.DefaultApi.UpdateWebhook(repo.ProjectKey, repo.RepositorySlug, int32(hookID), requestBody, []string{"application/json"}) return err } @@ -446,3 +497,215 @@ func (router *Router) parseAndValidateBitbucketServerRequest(request *http.Reque return body, nil } + +// refsChangedHasOpenPullRequest returns true if the changed commit has an open pull request +func (router *Router) refsChangedHasOpenPullRequest(project, repository, commit string) (bool, error) { + bitbucketPullRequests, err := router.customClient.GetCommitPullRequests(project, repository, commit) + if err != nil { + return false, fmt.Errorf("getting commit pull requests for project %s, repository %s and commit %s: %w", + project, repository, commit, err) + } + + for _, bitbucketPullRequest := range bitbucketPullRequests { + if strings.EqualFold(bitbucketPullRequest.State, "OPEN") { + return true, nil + } + } + + return false, nil +} + +type bitbucketServerReposPager struct { + Size int `json:"size"` + Limit int `json:"limit"` + Start int `json:"start"` + NextPageStart int `json:"nextPageStart"` + IsLastPage bool `json:"isLastPage"` + Values []bitbucketv1.Repository `json:"values"` +} + +// getProjectRepositories returns all the Bitbucket Server repositories in the provided projects +func getProjectRepositories(client *bitbucketv1.APIClient, projects []string) ([]v1alpha1.BitbucketServerRepository, error) { + var bitbucketRepos []bitbucketv1.Repository + for _, project := range projects { + paginationOptions := map[string]interface{}{"start": 0, "limit": 500} + for { + response, err := client.DefaultApi.GetRepositoriesWithOptions(project, paginationOptions) + if err != nil { + return nil, fmt.Errorf("unable to list repositories for project %s: %w", project, err) + } + + var reposPager bitbucketServerReposPager + err = mapstructure.Decode(response.Values, &reposPager) + if err != nil { + return nil, fmt.Errorf("unable to decode repositories for project %s: %w", project, err) + } + + bitbucketRepos = append(bitbucketRepos, reposPager.Values...) + + if reposPager.IsLastPage { + break + } + + paginationOptions["start"] = reposPager.NextPageStart + } + } + + var repositories []v1alpha1.BitbucketServerRepository + for n := range bitbucketRepos { + repositories = append(repositories, v1alpha1.BitbucketServerRepository{ + ProjectKey: bitbucketRepos[n].Project.Key, + RepositorySlug: bitbucketRepos[n].Slug, + }) + } + + return repositories, nil +} + +func newBitbucketServerClientCfg(bitbucketserverEventSource *v1alpha1.BitbucketServerEventSource) (*bitbucketv1.Configuration, error) { + bitbucketCfg := bitbucketv1.NewConfiguration(bitbucketserverEventSource.BitbucketServerBaseURL) + bitbucketCfg.AddDefaultHeader("x-atlassian-token", "no-check") + bitbucketCfg.AddDefaultHeader("x-requested-with", "XMLHttpRequest") + bitbucketCfg.HTTPClient = &http.Client{} + + if bitbucketserverEventSource.TLS != nil { + tlsConfig, err := common.GetTLSConfig(bitbucketserverEventSource.TLS) + if err != nil { + return nil, fmt.Errorf("failed to get the tls configuration. err: %w", err) + } + + bitbucketCfg.HTTPClient.Transport = &http.Transport{ + TLSClientConfig: tlsConfig, + } + } + + return bitbucketCfg, nil +} + +func newBitbucketServerClient(ctx context.Context, bitbucketConfig *bitbucketv1.Configuration, bitbucketToken string) *bitbucketv1.APIClient { + ctx = context.WithValue(ctx, bitbucketv1.ContextAccessToken, bitbucketToken) + return bitbucketv1.NewAPIClient(ctx, bitbucketConfig) +} + +type refsChangedWebhookEvent struct { + EventKey string `json:"eventKey"` + Repository struct { + Slug string `json:"slug"` + Project struct { + Key string `json:"key"` + } `json:"project"` + } `json:"repository"` + Changes []struct { + Ref struct { + Type string `json:"type"` + } `json:"ref"` + ToHash string `json:"toHash"` + Type string `json:"type"` + } `json:"changes"` +} + +// customBitbucketClient returns a Bitbucket HTTP client that implements methods that gfleury/go-bitbucket-v1 does not. +// Specifically getting Pull Requests associated to a commit is not supported by gfleury/go-bitbucket-v1. +type customBitbucketClient struct { + client *http.Client + ctx context.Context + token string + url *url.URL +} + +type pagination struct { + Start int + Limit int +} + +func (p *pagination) StartStr() string { + return strconv.Itoa(p.Start) +} + +func (p *pagination) LimitStr() string { + return strconv.Itoa(p.Limit) +} + +func (c *customBitbucketClient) authHeader(req *http.Request) { + req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.token)) +} + +func (c *customBitbucketClient) get(u string) ([]byte, error) { + req, err := http.NewRequestWithContext(c.ctx, http.MethodGet, u, nil) + if err != nil { + return nil, err + } + + c.authHeader(req) + + res, err := c.client.Do(req) + if err != nil { + return nil, err + } + defer func() { + _ = res.Body.Close() + }() + + if res.StatusCode > 299 { + resBody, readErr := io.ReadAll(res.Body) + if readErr != nil { + return nil, readErr + } + + return nil, fmt.Errorf("calling endpoint '%s' failed: status %d: response body: %s", u, res.StatusCode, resBody) + } + + return io.ReadAll(res.Body) +} + +// pullRequestRes is a struct containing information about the Pull Request. +type pullRequestRes struct { + ID int `json:"id"` + State string `json:"state"` +} + +// pagedPullRequestsRes is a paged response with values of pullRequestRes. +type pagedPullRequestsRes struct { + Size int `json:"size"` + Limit int `json:"limit"` + IsLastPage bool `json:"isLastPage"` + Values []pullRequestRes `json:"values"` + Start int `json:"start"` + NextPageStart int `json:"nextPageStart"` +} + +// GetCommitPullRequests returns all the Pull Requests associated to the commit id. +func (c *customBitbucketClient) GetCommitPullRequests(project, repository, commit string) ([]pullRequestRes, error) { + p := pagination{Start: 0, Limit: 500} + + commitsURL := c.url.JoinPath(fmt.Sprintf("api/1.0/projects/%s/repos/%s/commits/%s/pull-requests", project, repository, commit)) + query := commitsURL.Query() + query.Set("limit", p.LimitStr()) + + var pullRequests []pullRequestRes + for { + query.Set("start", p.StartStr()) + commitsURL.RawQuery = query.Encode() + + body, err := c.get(commitsURL.String()) + if err != nil { + return nil, err + } + + var pagedPullRequests pagedPullRequestsRes + err = json.Unmarshal(body, &pagedPullRequests) + if err != nil { + return nil, err + } + + pullRequests = append(pullRequests, pagedPullRequests.Values...) + + if pagedPullRequests.IsLastPage { + break + } + + p.Start = pagedPullRequests.NextPageStart + } + + return pullRequests, nil +} diff --git a/eventsources/sources/bitbucketserver/types.go b/eventsources/sources/bitbucketserver/types.go index 5e34d72794..45ad1d8af3 100644 --- a/eventsources/sources/bitbucketserver/types.go +++ b/eventsources/sources/bitbucketserver/types.go @@ -20,6 +20,7 @@ import ( metrics "github.com/argoproj/argo-events/metrics" apicommon "github.com/argoproj/argo-events/pkg/apis/common" "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1" + bitbucketv1 "github.com/gfleury/go-bitbucket-v1" ) // EventListener implements ConfigExecutor @@ -49,6 +50,12 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType { type Router struct { // route contains information about a API endpoint route *webhook.Route + // client is the bitbucket server client + client *bitbucketv1.APIClient + // customClient is a custom bitbucket server client which implements a method the gfleury/go-bitbucket-v1 client is missing + customClient *customBitbucketClient + // deleteClient is used to delete webhooks. This client does not contain the cancelable context of the default client + deleteClient *bitbucketv1.APIClient // hookIDs is a map of webhook IDs // (projectKey + "," + repoSlug) -> hook ID // Bitbucket Server API docs: diff --git a/eventsources/sources/bitbucketserver/validate.go b/eventsources/sources/bitbucketserver/validate.go index a5546231b6..2e1187a131 100644 --- a/eventsources/sources/bitbucketserver/validate.go +++ b/eventsources/sources/bitbucketserver/validate.go @@ -18,6 +18,7 @@ package bitbucketserver import ( "context" "fmt" + "time" "github.com/argoproj/argo-events/common" "github.com/argoproj/argo-events/eventsources/common/webhook" @@ -33,8 +34,8 @@ func validate(eventSource *v1alpha1.BitbucketServerEventSource) error { if eventSource == nil { return common.ErrNilEventSource } - if eventSource.GetBitbucketServerRepositories() == nil { - return fmt.Errorf("at least one repository is required") + if eventSource.GetBitbucketServerRepositories() == nil && len(eventSource.Projects) == 0 { + return fmt.Errorf("at least one project or repository configuration is required") } if eventSource.ShouldCreateWebhooks() && len(eventSource.Events) == 0 { return fmt.Errorf("events must be defined to create a bitbucket server webhook") @@ -42,5 +43,10 @@ func validate(eventSource *v1alpha1.BitbucketServerEventSource) error { if eventSource.BitbucketServerBaseURL == "" { return fmt.Errorf("bitbucket server base url can't be empty") } + if eventSource.CheckInterval != "" { + if _, err := time.ParseDuration(eventSource.CheckInterval); err != nil { + return fmt.Errorf("failed to parse webhook check interval duration: %w", err) + } + } return webhook.ValidateWebhookContext(eventSource.Webhook) } diff --git a/eventsources/sources/bitbucketserver/validate_test.go b/eventsources/sources/bitbucketserver/validate_test.go index 18837cde44..e767d6685d 100644 --- a/eventsources/sources/bitbucketserver/validate_test.go +++ b/eventsources/sources/bitbucketserver/validate_test.go @@ -33,7 +33,7 @@ func TestValidateEventSource(t *testing.T) { err := listener.ValidateEventSource(context.Background()) assert.Error(t, err) - assert.Equal(t, "at least one repository is required", err.Error()) + assert.Equal(t, "at least one project or repository configuration is required", err.Error()) content, err := os.ReadFile(fmt.Sprintf("%s/%s", sources.EventSourceDir, "bitbucketserver.yaml")) assert.Nil(t, err) diff --git a/go.mod b/go.mod index 8aa4d07a62..7cccfff9dd 100644 --- a/go.mod +++ b/go.mod @@ -79,6 +79,7 @@ require ( go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.27.0 golang.org/x/crypto v0.19.0 + golang.org/x/exp v0.0.0-20230905200255-921286631fa9 google.golang.org/api v0.167.0 google.golang.org/grpc v1.62.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 @@ -160,7 +161,6 @@ require ( go.opentelemetry.io/otel v1.23.0 // indirect go.opentelemetry.io/otel/metric v1.23.0 // indirect go.opentelemetry.io/otel/trace v1.23.0 // indirect - golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 // indirect diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index 5cc8718f14..aeace11892 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1770,460 +1770,464 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7236 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x4d, 0x6c, 0x24, 0xc7, - 0x75, 0xb0, 0x9a, 0x1c, 0x0e, 0x67, 0x1e, 0xff, 0x6b, 0x57, 0xab, 0x11, 0x2d, 0x2d, 0xf7, 0xa3, - 0xe0, 0x85, 0xf4, 0x7d, 0x32, 0xf7, 0xd3, 0x26, 0x8e, 0x65, 0x29, 0x96, 0x31, 0x43, 0x2e, 0x77, - 0xa9, 0x25, 0xb9, 0xc3, 0x6a, 0xae, 0x7e, 0x2c, 0x4b, 0x72, 0xb3, 0xa7, 0x38, 0x6c, 0xb3, 0xa7, - 0x7b, 0xd8, 0xdd, 0xc3, 0x5d, 0x2e, 0x10, 0xdb, 0x30, 0xe0, 0xc4, 0xd6, 0x8f, 0x6d, 0x25, 0x71, - 0x12, 0x24, 0x30, 0x10, 0x27, 0x81, 0x2f, 0x09, 0x72, 0x8b, 0x91, 0x6b, 0x90, 0x1c, 0x8c, 0x24, - 0x07, 0x27, 0xb9, 0x38, 0x36, 0xb0, 0xb0, 0x19, 0xe4, 0x96, 0x4b, 0xe0, 0x53, 0x72, 0x0a, 0xea, - 0xa7, 0xab, 0xab, 0x7f, 0x86, 0xcb, 0xe1, 0xf4, 0x90, 0xbb, 0x46, 0x4e, 0xe4, 0xd4, 0x7b, 0xf5, - 0xde, 0xeb, 0xaa, 0xf7, 0x5e, 0xbd, 0x7a, 0xf5, 0x07, 0x6b, 0x4d, 0x2b, 0xd8, 0xe9, 0x6c, 0x2d, - 0x98, 0x6e, 0xeb, 0x8a, 0xe1, 0x35, 0xdd, 0xb6, 0xe7, 0x7e, 0x91, 0xfd, 0xf3, 0x09, 0xb2, 0x4f, - 0x9c, 0xc0, 0xbf, 0xd2, 0xde, 0x6d, 0x5e, 0x31, 0xda, 0x96, 0x7f, 0x85, 0xff, 0x76, 0x3b, 0x9e, - 0x49, 0xae, 0xec, 0xbf, 0x60, 0xd8, 0xed, 0x1d, 0xe3, 0x85, 0x2b, 0x4d, 0xe2, 0x10, 0xcf, 0x08, - 0x48, 0x63, 0xa1, 0xed, 0xb9, 0x81, 0x8b, 0x3e, 0x13, 0x91, 0x5b, 0x08, 0xc9, 0xb1, 0x7f, 0xde, - 0xe5, 0xd5, 0x17, 0xda, 0xbb, 0xcd, 0x05, 0x4a, 0x6e, 0x41, 0x21, 0xb7, 0x10, 0x92, 0x9b, 0xfd, - 0xec, 0xb1, 0xa5, 0x31, 0xdd, 0x56, 0xcb, 0x75, 0x92, 0xfc, 0x67, 0x3f, 0xa1, 0x10, 0x68, 0xba, - 0x4d, 0xf7, 0x0a, 0x2b, 0xde, 0xea, 0x6c, 0xb3, 0x5f, 0xec, 0x07, 0xfb, 0x4f, 0xa0, 0xcf, 0xef, - 0xbe, 0xe8, 0x2f, 0x58, 0x2e, 0x25, 0x79, 0xc5, 0x74, 0x3d, 0xfa, 0x61, 0x29, 0x92, 0xbf, 0x1a, - 0xe1, 0xb4, 0x0c, 0x73, 0xc7, 0x72, 0x88, 0x77, 0x10, 0xc9, 0xd1, 0x22, 0x81, 0x91, 0x55, 0xeb, - 0x4a, 0xb7, 0x5a, 0x5e, 0xc7, 0x09, 0xac, 0x16, 0x49, 0x55, 0xf8, 0xb5, 0x07, 0x55, 0xf0, 0xcd, - 0x1d, 0xd2, 0x32, 0x92, 0xf5, 0xe6, 0xff, 0x4b, 0x83, 0x99, 0xea, 0xda, 0x46, 0x7d, 0xd1, 0x75, - 0xfc, 0x4e, 0x8b, 0x2c, 0xba, 0xce, 0xb6, 0xd5, 0x44, 0x9f, 0x84, 0x31, 0x93, 0x17, 0x78, 0x9b, - 0x46, 0xb3, 0xa2, 0x5d, 0xd2, 0x9e, 0x2d, 0xd7, 0xce, 0xfd, 0xf0, 0xfe, 0xdc, 0x63, 0x87, 0xf7, - 0xe7, 0xc6, 0x16, 0x23, 0x10, 0x56, 0xf1, 0xd0, 0x73, 0x30, 0x6a, 0x74, 0x02, 0xb7, 0x6a, 0xee, - 0x56, 0x86, 0x2e, 0x69, 0xcf, 0x96, 0x6a, 0x53, 0xa2, 0xca, 0x68, 0x95, 0x17, 0xe3, 0x10, 0x8e, - 0xae, 0x40, 0x99, 0xdc, 0x35, 0xed, 0x8e, 0x6f, 0xed, 0x93, 0xca, 0x30, 0x43, 0x9e, 0x11, 0xc8, - 0xe5, 0x6b, 0x21, 0x00, 0x47, 0x38, 0x94, 0xb6, 0xe3, 0xae, 0xba, 0xa6, 0x61, 0x57, 0x0a, 0x71, - 0xda, 0xeb, 0xbc, 0x18, 0x87, 0x70, 0x74, 0x19, 0x8a, 0x8e, 0xfb, 0xba, 0x61, 0x05, 0x95, 0x11, - 0x86, 0x39, 0x29, 0x30, 0x8b, 0xeb, 0xac, 0x14, 0x0b, 0xe8, 0xfc, 0x7f, 0x8c, 0xc1, 0x14, 0xfd, - 0xf6, 0x6b, 0x54, 0x39, 0x74, 0xa6, 0x4b, 0xe8, 0x69, 0x18, 0xee, 0x78, 0xb6, 0xf8, 0xe2, 0x31, - 0x51, 0x71, 0xf8, 0x36, 0x5e, 0xc5, 0xb4, 0x1c, 0xbd, 0x08, 0xe3, 0xe4, 0xae, 0xb9, 0x63, 0x38, - 0x4d, 0xb2, 0x6e, 0xb4, 0x08, 0xfb, 0xcc, 0x72, 0xed, 0xbc, 0xc0, 0x1b, 0xbf, 0xa6, 0xc0, 0x70, - 0x0c, 0x53, 0xad, 0xb9, 0x79, 0xd0, 0xe6, 0xdf, 0x9c, 0x51, 0x93, 0xc2, 0x70, 0x0c, 0x13, 0x5d, - 0x05, 0xf0, 0xdc, 0x4e, 0x60, 0x39, 0xcd, 0x9b, 0xe4, 0x80, 0x7d, 0x7c, 0xb9, 0x86, 0x44, 0x3d, - 0xc0, 0x12, 0x82, 0x15, 0x2c, 0xf4, 0x1b, 0x30, 0x63, 0xba, 0x8e, 0x43, 0xcc, 0xc0, 0x72, 0x9d, - 0x9a, 0x61, 0xee, 0xba, 0xdb, 0xdb, 0xac, 0x35, 0xc6, 0xae, 0xbe, 0xb8, 0x70, 0x6c, 0x23, 0xe3, - 0x56, 0xb2, 0x20, 0xea, 0xd7, 0x1e, 0x3f, 0xbc, 0x3f, 0x37, 0xb3, 0x98, 0x24, 0x8b, 0xd3, 0x9c, - 0xd0, 0xf3, 0x50, 0xfa, 0xa2, 0xef, 0x3a, 0x35, 0xb7, 0x71, 0x50, 0x29, 0xb2, 0x3e, 0x98, 0x16, - 0x02, 0x97, 0x5e, 0xd5, 0x6f, 0xad, 0xd3, 0x72, 0x2c, 0x31, 0xd0, 0x6d, 0x18, 0x0e, 0x6c, 0xbf, - 0x32, 0xca, 0xc4, 0x7b, 0xa9, 0x67, 0xf1, 0x36, 0x57, 0x75, 0xae, 0xb6, 0xb5, 0x51, 0xda, 0x57, - 0x9b, 0xab, 0x3a, 0xa6, 0xf4, 0xd0, 0x7b, 0x1a, 0x94, 0xa8, 0x7d, 0x35, 0x8c, 0xc0, 0xa8, 0x94, - 0x2e, 0x0d, 0x3f, 0x3b, 0x76, 0xf5, 0xf3, 0x0b, 0x7d, 0x39, 0x98, 0x85, 0x84, 0xb6, 0x2c, 0xac, - 0x09, 0xf2, 0xd7, 0x9c, 0xc0, 0x3b, 0x88, 0xbe, 0x31, 0x2c, 0xc6, 0x92, 0x3f, 0xfa, 0x7d, 0x0d, - 0xa6, 0xc2, 0x5e, 0x5d, 0x22, 0xa6, 0x6d, 0x78, 0xa4, 0x52, 0x66, 0x1f, 0xfc, 0x46, 0x1e, 0x32, - 0xc5, 0x29, 0x8b, 0xe6, 0x38, 0x77, 0x78, 0x7f, 0x6e, 0x2a, 0x01, 0xc2, 0x49, 0x29, 0xd0, 0xfb, - 0x1a, 0x8c, 0xef, 0x75, 0x48, 0x47, 0x8a, 0x05, 0x4c, 0xac, 0xdb, 0x39, 0x88, 0xb5, 0xa1, 0x90, - 0x15, 0x32, 0x4d, 0x53, 0x65, 0x57, 0xcb, 0x71, 0x8c, 0x39, 0xfa, 0x32, 0x94, 0xd9, 0xef, 0x9a, - 0xe5, 0x34, 0x2a, 0x63, 0x4c, 0x12, 0x9c, 0x97, 0x24, 0x94, 0xa6, 0x10, 0x63, 0x82, 0xfa, 0x19, - 0x59, 0x88, 0x23, 0x9e, 0xe8, 0x0e, 0x8c, 0x0a, 0x97, 0x56, 0x19, 0x67, 0xec, 0xeb, 0x39, 0xb0, - 0x8f, 0x79, 0xd7, 0xda, 0x18, 0xf5, 0x5a, 0xa2, 0x08, 0x87, 0xdc, 0xd0, 0x1b, 0x50, 0x30, 0x3a, - 0xc1, 0x4e, 0x65, 0xe2, 0x84, 0x66, 0x50, 0x33, 0x7c, 0xcb, 0xac, 0x76, 0x82, 0x9d, 0x5a, 0xe9, - 0xf0, 0xfe, 0x5c, 0x81, 0xfe, 0x87, 0x19, 0x45, 0x84, 0xa1, 0xdc, 0xf1, 0x6c, 0x9d, 0x98, 0x1e, - 0x09, 0x2a, 0x93, 0x8c, 0xfc, 0xc7, 0x17, 0xf8, 0x78, 0x41, 0x29, 0x2c, 0xd0, 0xa1, 0x6b, 0x61, - 0xff, 0x85, 0x05, 0x8e, 0x71, 0x93, 0x1c, 0xe8, 0xc4, 0x26, 0x66, 0xe0, 0x7a, 0xbc, 0x99, 0x6e, - 0xe3, 0x55, 0x0e, 0xc1, 0x11, 0x19, 0x14, 0x40, 0x71, 0xdb, 0xb2, 0x03, 0xe2, 0x55, 0xa6, 0x72, - 0x69, 0x25, 0xc5, 0xaa, 0x96, 0x19, 0xdd, 0x1a, 0x50, 0x8f, 0xcd, 0xff, 0xc7, 0x82, 0xd7, 0xec, - 0xcb, 0x30, 0x11, 0x33, 0x39, 0x34, 0x0d, 0xc3, 0xbb, 0xe4, 0x80, 0xbb, 0x6b, 0x4c, 0xff, 0x45, - 0xe7, 0x61, 0x64, 0xdf, 0xb0, 0x3b, 0xc2, 0x35, 0x63, 0xfe, 0xe3, 0xa5, 0xa1, 0x17, 0xb5, 0xf9, - 0x1f, 0x69, 0xf0, 0x64, 0x57, 0x63, 0xa1, 0xe3, 0x4b, 0xa3, 0xe3, 0x19, 0x5b, 0x36, 0x61, 0xd4, - 0x94, 0xf1, 0x65, 0x89, 0x17, 0xe3, 0x10, 0x4e, 0x1d, 0x32, 0x1d, 0xc6, 0x96, 0x88, 0x4d, 0x02, - 0x22, 0x46, 0x3a, 0xe9, 0x90, 0xab, 0x12, 0x82, 0x15, 0x2c, 0xea, 0x11, 0x2d, 0x27, 0x20, 0x9e, - 0x63, 0xd8, 0x62, 0xb8, 0x93, 0xde, 0x62, 0x45, 0x94, 0x63, 0x89, 0xa1, 0x8c, 0x60, 0x85, 0x23, - 0x47, 0xb0, 0xcf, 0xc0, 0xb9, 0x0c, 0xed, 0x56, 0xaa, 0x6b, 0x47, 0x56, 0xff, 0xd3, 0x21, 0xb8, - 0x90, 0x6d, 0xa7, 0xe8, 0x12, 0x14, 0x1c, 0x3a, 0xc0, 0xf1, 0x81, 0x70, 0x5c, 0x10, 0x28, 0xb0, - 0x81, 0x8d, 0x41, 0xd4, 0x06, 0x1b, 0xea, 0xa9, 0xc1, 0x86, 0x8f, 0xd5, 0x60, 0xb1, 0x00, 0xa1, - 0x70, 0x8c, 0x00, 0xe1, 0x98, 0xa3, 0x3e, 0x25, 0x6c, 0x78, 0xcd, 0x4e, 0x8b, 0x2a, 0x21, 0x1b, - 0x9c, 0xca, 0x11, 0xe1, 0x6a, 0x08, 0xc0, 0x11, 0xce, 0xfc, 0x7b, 0x23, 0xf0, 0x64, 0xf5, 0x5e, - 0xc7, 0x23, 0x4c, 0x47, 0xfd, 0x1b, 0x9d, 0x2d, 0x35, 0x60, 0xb8, 0x04, 0x85, 0xed, 0xbd, 0x86, - 0x93, 0x6c, 0xa8, 0xe5, 0x8d, 0xa5, 0x75, 0xcc, 0x20, 0xa8, 0x0d, 0xe7, 0xfc, 0x1d, 0xc3, 0x23, - 0x8d, 0xaa, 0x69, 0x12, 0xdf, 0xbf, 0x49, 0x0e, 0x64, 0xe8, 0x70, 0x6c, 0x43, 0x7c, 0xe2, 0xf0, - 0xfe, 0xdc, 0x39, 0x3d, 0x4d, 0x05, 0x67, 0x91, 0x46, 0x0d, 0x98, 0x4a, 0x14, 0xb3, 0x46, 0x3f, - 0x36, 0x37, 0x36, 0x70, 0x24, 0xb8, 0xe1, 0x24, 0x49, 0xaa, 0x00, 0x3b, 0x9d, 0x2d, 0xf6, 0x2d, - 0x3c, 0x28, 0x91, 0x0a, 0x70, 0x83, 0x17, 0xe3, 0x10, 0x8e, 0x7e, 0x57, 0x1d, 0x8a, 0x47, 0xd8, - 0x50, 0xbc, 0xdd, 0xaf, 0x5b, 0xed, 0xd6, 0x23, 0x3d, 0x0c, 0xca, 0x91, 0x13, 0x2b, 0x3e, 0x2a, - 0x4e, 0xec, 0x8f, 0x8b, 0xf0, 0x14, 0xfb, 0x74, 0x66, 0xb3, 0x7a, 0xe0, 0x7a, 0x46, 0x93, 0xa8, - 0xfa, 0xf8, 0x2a, 0x20, 0x9f, 0x97, 0x56, 0x4d, 0xd3, 0xed, 0x38, 0xc1, 0x7a, 0x64, 0xc6, 0xb3, - 0xa2, 0x2d, 0x90, 0x9e, 0xc2, 0xc0, 0x19, 0xb5, 0x50, 0x13, 0xa6, 0xa3, 0xd8, 0x4e, 0x0f, 0x3c, - 0xcb, 0x69, 0xf6, 0xa6, 0xb6, 0xe7, 0x0f, 0xef, 0xcf, 0x4d, 0x2f, 0x26, 0x48, 0xe0, 0x14, 0x51, - 0x6a, 0x93, 0x6c, 0x04, 0x66, 0xb2, 0x0e, 0xc7, 0x6d, 0x72, 0x23, 0x04, 0xe0, 0x08, 0x27, 0x16, - 0x60, 0x16, 0x1e, 0x18, 0x60, 0x3e, 0x0d, 0xc3, 0x0d, 0x7b, 0x4f, 0xf8, 0x05, 0x19, 0xd4, 0x2f, - 0xad, 0x6e, 0x60, 0x5a, 0x4e, 0x63, 0xb3, 0x48, 0x3b, 0x8b, 0x4c, 0x3b, 0xad, 0x3c, 0xb4, 0xb3, - 0x4b, 0x17, 0x9d, 0x48, 0x41, 0x47, 0x4f, 0x4f, 0x41, 0xd1, 0xcb, 0x30, 0xd1, 0x20, 0xa6, 0xdb, - 0x20, 0x6b, 0xc4, 0xf7, 0x8d, 0x26, 0xa9, 0x94, 0x58, 0xc3, 0x3d, 0x2e, 0x04, 0x9d, 0x58, 0x52, - 0x81, 0x38, 0x8e, 0x8b, 0x16, 0x61, 0xe6, 0x8e, 0x61, 0x05, 0x9b, 0x56, 0x8b, 0xac, 0x38, 0x3a, - 0x31, 0x5d, 0xa7, 0xe1, 0xb3, 0x48, 0x77, 0x84, 0xcf, 0x1f, 0x5e, 0x4f, 0x02, 0x71, 0x1a, 0xbf, - 0x3f, 0x13, 0xf9, 0x71, 0x11, 0x66, 0x59, 0xfb, 0xeb, 0xc4, 0xdb, 0xb7, 0x4c, 0x52, 0xeb, 0xf8, - 0xaa, 0x81, 0x64, 0x29, 0xb5, 0x36, 0x70, 0xa5, 0x1e, 0x3a, 0x86, 0x52, 0x5f, 0x81, 0x72, 0xe0, - 0xb6, 0x2d, 0x33, 0xcb, 0x0a, 0x36, 0x43, 0x00, 0x8e, 0x70, 0xd0, 0x12, 0x4c, 0xfb, 0x9d, 0x2d, - 0xdf, 0xf4, 0xac, 0x36, 0xe5, 0xab, 0xb8, 0xe2, 0x8a, 0xa8, 0x37, 0xad, 0x27, 0xe0, 0x38, 0x55, - 0x23, 0x9c, 0x7e, 0x8d, 0xe4, 0x3c, 0xfd, 0xea, 0x6d, 0x0e, 0xf8, 0x1d, 0xd5, 0x06, 0x47, 0x99, - 0x0d, 0x36, 0xf3, 0xb0, 0xc1, 0x4c, 0x1d, 0x38, 0x91, 0x05, 0x96, 0x4e, 0xd1, 0x02, 0xdf, 0x84, - 0x27, 0xb6, 0x3b, 0xb6, 0x7d, 0xb0, 0xd1, 0x31, 0x6c, 0x6b, 0xdb, 0x22, 0x0d, 0xda, 0x51, 0x7e, - 0xdb, 0x30, 0xf9, 0xa4, 0xb1, 0x5c, 0x9b, 0x13, 0x22, 0x3f, 0xb1, 0x9c, 0x8d, 0x86, 0xbb, 0xd5, - 0xef, 0xcf, 0xb4, 0x7e, 0xa2, 0xc1, 0x44, 0xcd, 0x0a, 0xb6, 0x3a, 0xe6, 0x2e, 0x09, 0xe8, 0x0c, - 0x03, 0x79, 0x30, 0xb2, 0x45, 0x27, 0x1e, 0xc2, 0x84, 0x36, 0xfa, 0x6c, 0x1e, 0x49, 0x3c, 0x9a, - 0xcd, 0x94, 0x0f, 0xef, 0xcf, 0x8d, 0xb0, 0x9f, 0x98, 0xb3, 0x42, 0xb7, 0x01, 0x5c, 0x3a, 0xb1, - 0xd9, 0x74, 0x77, 0x89, 0xd3, 0xdb, 0x80, 0x34, 0x49, 0x23, 0xce, 0x5b, 0xd5, 0xb0, 0x32, 0x56, - 0x08, 0xcd, 0xff, 0x40, 0x03, 0x94, 0xe6, 0x8f, 0x6e, 0x41, 0xa9, 0xe3, 0xd3, 0xb0, 0x5c, 0x0c, - 0xa3, 0xc7, 0xe6, 0x35, 0x4e, 0x55, 0xea, 0xb6, 0xa8, 0x8a, 0x25, 0x11, 0x4a, 0xb0, 0x6d, 0xf8, - 0xfe, 0x1d, 0xd7, 0x6b, 0xf4, 0x26, 0x3c, 0x23, 0x58, 0x17, 0x55, 0xb1, 0x24, 0x32, 0xff, 0x8b, - 0x51, 0x38, 0x2f, 0x05, 0x4f, 0xc4, 0x02, 0x0d, 0x16, 0x4d, 0xdf, 0x70, 0xdd, 0xdd, 0x5b, 0xce, - 0xb2, 0xe5, 0x58, 0xfe, 0x8e, 0x98, 0x13, 0xc8, 0x58, 0x60, 0x29, 0x85, 0x81, 0x33, 0x6a, 0xa1, - 0x6f, 0xa9, 0x06, 0x3a, 0xc4, 0x0c, 0xd4, 0xc8, 0xab, 0xb3, 0x4f, 0x6a, 0x9a, 0xa3, 0x77, 0xc8, - 0xd6, 0x8e, 0xeb, 0xee, 0x8a, 0xe8, 0x76, 0xad, 0x4f, 0x79, 0x5e, 0xe7, 0xd4, 0x16, 0x5d, 0x27, - 0x20, 0x77, 0x03, 0x3e, 0x4d, 0x17, 0x65, 0x38, 0x64, 0x85, 0xbe, 0x28, 0xa6, 0xe9, 0x05, 0xc6, - 0x72, 0x35, 0xaf, 0x26, 0xc8, 0x9c, 0xb8, 0xcf, 0x43, 0x91, 0xd7, 0x62, 0x31, 0x73, 0x99, 0xbb, - 0x0a, 0x1e, 0xf3, 0x62, 0x01, 0x41, 0x9f, 0x80, 0x11, 0xf7, 0x8e, 0x23, 0x42, 0xd8, 0x72, 0xed, - 0x09, 0xd1, 0x60, 0x53, 0x4b, 0xa4, 0xed, 0x11, 0xd3, 0x08, 0x48, 0xe3, 0x16, 0x05, 0x63, 0x8e, - 0x85, 0x7e, 0x1d, 0x80, 0x8a, 0x48, 0x4c, 0xaa, 0x59, 0x2c, 0xaa, 0x28, 0xd7, 0x9e, 0x12, 0x75, - 0xce, 0x47, 0x75, 0xea, 0x12, 0x07, 0x2b, 0xf8, 0xe8, 0x06, 0x4c, 0x7a, 0xa4, 0xed, 0xfa, 0x56, - 0xe0, 0x7a, 0x07, 0xba, 0xdd, 0x69, 0x32, 0xaf, 0x58, 0xae, 0x5d, 0x12, 0x14, 0x2a, 0x11, 0x05, - 0x1c, 0xc3, 0xc3, 0x89, 0x7a, 0xe8, 0x03, 0x0d, 0xc6, 0x65, 0x91, 0x45, 0x68, 0x88, 0x30, 0x9c, - 0x43, 0xae, 0x47, 0xb6, 0x67, 0xc4, 0x3e, 0xca, 0xb1, 0x62, 0x85, 0x1f, 0x8e, 0x71, 0x57, 0xdc, - 0x3c, 0x3c, 0x2a, 0x33, 0x81, 0x7b, 0x70, 0x2e, 0xe3, 0x6b, 0xd1, 0x33, 0xa1, 0x3e, 0xf0, 0x90, - 0x7f, 0x42, 0x7c, 0xfc, 0x48, 0x4c, 0x0b, 0x5e, 0x49, 0xf5, 0x23, 0x8f, 0x4f, 0x2e, 0x08, 0xec, - 0xc9, 0xa3, 0x7b, 0x6f, 0xfe, 0x5f, 0xca, 0x30, 0x2b, 0x99, 0xd3, 0x21, 0x96, 0x78, 0xaa, 0xdf, - 0x51, 0x2c, 0x53, 0x3b, 0x3d, 0xcb, 0x8c, 0xab, 0xf6, 0x50, 0xdf, 0xaa, 0x3d, 0x7c, 0x42, 0xd5, - 0xfe, 0xed, 0xa4, 0x6a, 0x17, 0x98, 0x6a, 0xbf, 0x91, 0x97, 0x6a, 0xf3, 0xf6, 0xee, 0x51, 0xc1, - 0x8f, 0xe3, 0x4a, 0xde, 0x80, 0x31, 0x83, 0xcd, 0xee, 0xf9, 0xc0, 0x5a, 0xec, 0x65, 0x6c, 0x9a, - 0x3a, 0xbc, 0x3f, 0x37, 0x56, 0x8d, 0x6a, 0x63, 0x95, 0x14, 0x7a, 0x07, 0x26, 0x44, 0x2f, 0x89, - 0x2c, 0xe4, 0x68, 0x2f, 0xb4, 0x67, 0xe8, 0xa4, 0xe3, 0x75, 0xb5, 0x3e, 0x8e, 0x93, 0x43, 0xaf, - 0xc1, 0x85, 0xad, 0xb0, 0x79, 0x7c, 0xd6, 0x3c, 0x35, 0xc3, 0x27, 0xb7, 0xf1, 0xaa, 0xf0, 0x4f, - 0x17, 0x45, 0x0b, 0x5d, 0x48, 0x34, 0xa2, 0xc0, 0xc2, 0x5d, 0x6a, 0x77, 0x19, 0x40, 0xcb, 0x27, - 0x1a, 0x40, 0x63, 0x11, 0x2e, 0xe4, 0x12, 0xe1, 0x76, 0x37, 0xc1, 0x13, 0x45, 0xb8, 0x63, 0xa7, - 0x18, 0xe1, 0x8a, 0x49, 0xc7, 0x78, 0xbe, 0x93, 0x8e, 0xfe, 0x3c, 0xea, 0xb7, 0x34, 0x78, 0xb2, - 0xab, 0x95, 0xa1, 0xab, 0x31, 0xf7, 0xa2, 0xc5, 0x97, 0xe1, 0xba, 0x38, 0x95, 0x7e, 0xfd, 0xec, - 0x9f, 0x8d, 0xc0, 0xb9, 0x45, 0xc3, 0x26, 0x4e, 0xc3, 0x88, 0x39, 0xd8, 0xe7, 0xa1, 0xe4, 0x9b, - 0x3b, 0xa4, 0xd1, 0xb1, 0xc3, 0xd4, 0x8e, 0xec, 0x61, 0x5d, 0x94, 0x63, 0x89, 0x21, 0x73, 0xcf, - 0xfb, 0x86, 0x2d, 0xf8, 0xc7, 0x73, 0xcf, 0xfb, 0x32, 0xf7, 0xbc, 0x6f, 0xd8, 0xe8, 0x25, 0x98, - 0x14, 0x49, 0x55, 0xd7, 0x59, 0x32, 0x02, 0xe2, 0x57, 0x86, 0x99, 0xc7, 0x40, 0x54, 0xde, 0x6b, - 0x31, 0x08, 0x4e, 0x60, 0x52, 0x4e, 0x81, 0xd5, 0x22, 0xf7, 0x5c, 0x27, 0x9c, 0x88, 0x4a, 0x4e, - 0x9b, 0xa2, 0x1c, 0x4b, 0x0c, 0xf4, 0xcd, 0x74, 0x56, 0xf0, 0x0b, 0x7d, 0x2a, 0x5f, 0x46, 0x63, - 0xf5, 0x60, 0x0a, 0x5f, 0xd5, 0x60, 0xac, 0x4d, 0x3c, 0xdf, 0xf2, 0x03, 0xe2, 0x98, 0x44, 0x78, - 0xc0, 0x5b, 0x79, 0x18, 0x44, 0x3d, 0x22, 0xcb, 0x7d, 0xa5, 0x52, 0x80, 0x55, 0xa6, 0x67, 0x33, - 0xe3, 0xec, 0xcf, 0x70, 0xee, 0xc2, 0xf9, 0x45, 0x23, 0x30, 0x77, 0x3a, 0x6d, 0x6e, 0x94, 0x1d, - 0xcf, 0x08, 0x2c, 0xd7, 0x41, 0xcf, 0xc1, 0x28, 0x71, 0x8c, 0x2d, 0x9b, 0x34, 0x92, 0x6b, 0x2a, - 0xd7, 0x78, 0x31, 0x0e, 0xe1, 0xe8, 0x93, 0x30, 0xd6, 0x32, 0xee, 0x2e, 0x89, 0x9a, 0x42, 0x4d, - 0xe5, 0x8e, 0x83, 0xb5, 0x08, 0x84, 0x55, 0xbc, 0xf9, 0x2f, 0xc1, 0x79, 0xce, 0x72, 0xcd, 0x68, - 0x2b, 0x2d, 0x7a, 0x8c, 0xe5, 0x8b, 0x25, 0x98, 0x36, 0x3d, 0x62, 0x04, 0x64, 0x65, 0x7b, 0xdd, - 0x0d, 0xae, 0xdd, 0xb5, 0xfc, 0x40, 0xac, 0x63, 0xc8, 0xdc, 0xc9, 0x62, 0x02, 0x8e, 0x53, 0x35, - 0xe6, 0xbf, 0x3d, 0x0a, 0xe8, 0x5a, 0xcb, 0x0a, 0x82, 0x78, 0x00, 0x74, 0x19, 0x8a, 0x5b, 0x9e, - 0xbb, 0x2b, 0xa3, 0x30, 0xb9, 0x16, 0x51, 0x63, 0xa5, 0x58, 0x40, 0xa9, 0x4f, 0x31, 0x77, 0x0c, - 0xc7, 0x21, 0x76, 0x14, 0xb2, 0x48, 0x9f, 0xb2, 0x28, 0x21, 0x58, 0xc1, 0x62, 0x7b, 0x33, 0xf8, - 0x2f, 0x25, 0x4f, 0x14, 0xed, 0xcd, 0x88, 0x40, 0x58, 0xc5, 0x8b, 0x4d, 0x63, 0x0b, 0x79, 0x4f, - 0x63, 0x47, 0x72, 0x98, 0xc6, 0x66, 0xef, 0x59, 0x28, 0x9e, 0xc9, 0x9e, 0x85, 0xd1, 0xe3, 0xee, - 0x59, 0x28, 0xe5, 0x9c, 0x34, 0xfb, 0x50, 0x75, 0x89, 0x7c, 0x4a, 0xf4, 0x6e, 0xbf, 0xf6, 0x9f, - 0x52, 0xcf, 0x13, 0x05, 0x07, 0x8f, 0xcc, 0xbc, 0xe8, 0xa3, 0x21, 0x98, 0x4e, 0xba, 0x5c, 0x74, - 0x0f, 0x46, 0x4d, 0xee, 0xa1, 0xc4, 0x8c, 0x44, 0xef, 0x7b, 0xa0, 0x49, 0xfb, 0x3b, 0xb1, 0xb0, - 0xcf, 0x21, 0x38, 0x64, 0x88, 0xbe, 0xa2, 0x41, 0xd9, 0x0c, 0x9d, 0x94, 0xc8, 0xf8, 0xf4, 0xcd, - 0x3e, 0xc3, 0xe9, 0xf1, 0xd5, 0x7a, 0x09, 0xc1, 0x11, 0xd3, 0xf9, 0x9f, 0x0e, 0xc1, 0x98, 0xea, - 0x9f, 0xbe, 0xa0, 0x68, 0x19, 0x6f, 0x8f, 0xff, 0xaf, 0xd8, 0xae, 0xdc, 0x40, 0x16, 0x09, 0x41, - 0xb1, 0xa9, 0x35, 0xdf, 0xda, 0xa2, 0xa1, 0x0d, 0xed, 0x9c, 0xc8, 0x4f, 0x45, 0x65, 0x8a, 0xe2, - 0xb4, 0xa1, 0xe0, 0xb7, 0x89, 0x29, 0x3e, 0x77, 0x3d, 0x3f, 0xb5, 0xd1, 0xdb, 0xc4, 0x8c, 0x1c, - 0x3a, 0xfd, 0x85, 0x19, 0x27, 0x74, 0x17, 0x8a, 0x7e, 0x60, 0x04, 0x1d, 0x5f, 0x64, 0x83, 0x72, - 0x54, 0x55, 0x9d, 0xd1, 0x8d, 0xbc, 0x38, 0xff, 0x8d, 0x05, 0xbf, 0xf9, 0xeb, 0x30, 0x93, 0xd2, - 0x6b, 0xea, 0xda, 0xc9, 0xdd, 0xb6, 0x47, 0x7c, 0x1a, 0x1d, 0x25, 0xc3, 0xc5, 0x6b, 0x12, 0x82, - 0x15, 0xac, 0xf9, 0x9f, 0x69, 0x30, 0xa5, 0x50, 0x5a, 0xb5, 0xfc, 0x00, 0x7d, 0x3e, 0xd5, 0x55, - 0x0b, 0xc7, 0xeb, 0x2a, 0x5a, 0x9b, 0x75, 0x94, 0xb4, 0xef, 0xb0, 0x44, 0xe9, 0x26, 0x17, 0x46, - 0xac, 0x80, 0xb4, 0x7c, 0x91, 0xd1, 0x7b, 0x35, 0xbf, 0x36, 0x8b, 0x32, 0x0f, 0x2b, 0x94, 0x01, - 0xe6, 0x7c, 0xe6, 0xff, 0x76, 0x39, 0xf6, 0x89, 0xb4, 0xff, 0xd8, 0xd6, 0x38, 0x5a, 0x54, 0xeb, - 0xf8, 0xca, 0x62, 0x65, 0xb4, 0x35, 0x4e, 0x81, 0xe1, 0x18, 0x26, 0xda, 0x83, 0x52, 0x40, 0x5a, - 0x6d, 0xdb, 0x08, 0xc2, 0xf5, 0xf4, 0xeb, 0x7d, 0x7e, 0xc1, 0xa6, 0x20, 0xc7, 0x47, 0xa9, 0xf0, - 0x17, 0x96, 0x6c, 0x50, 0x0b, 0x46, 0x7d, 0xbe, 0xa6, 0x20, 0xf4, 0x6c, 0xb9, 0x4f, 0x8e, 0xe1, - 0x0a, 0x05, 0x73, 0x1e, 0xe2, 0x07, 0x0e, 0x79, 0xa0, 0x2f, 0xc1, 0x48, 0xcb, 0x72, 0x2c, 0x57, - 0x24, 0x11, 0xde, 0xcc, 0xd7, 0x90, 0x16, 0xd6, 0x28, 0x6d, 0x3e, 0x0c, 0xc8, 0xfe, 0x62, 0x65, - 0x98, 0xb3, 0x65, 0x9b, 0xe8, 0x4c, 0x11, 0x54, 0x8b, 0x18, 0xfd, 0xf3, 0x39, 0xcb, 0x20, 0x63, - 0xf6, 0xf8, 0x68, 0x14, 0x16, 0x63, 0xc9, 0x1f, 0xdd, 0x83, 0xc2, 0xb6, 0x65, 0x13, 0xb1, 0x46, - 0xfb, 0x46, 0xce, 0x72, 0x2c, 0x5b, 0x36, 0xe1, 0x32, 0x44, 0xbb, 0x38, 0x2c, 0x9b, 0x60, 0xc6, - 0x93, 0x35, 0x84, 0x47, 0x38, 0x0d, 0xb1, 0x40, 0x95, 0x77, 0x43, 0x60, 0x41, 0x3e, 0xd1, 0x10, - 0x61, 0x31, 0x96, 0xfc, 0xd1, 0x6f, 0x6a, 0x51, 0x86, 0x8d, 0xef, 0x6c, 0x7c, 0x2b, 0x67, 0x59, - 0x44, 0xba, 0x85, 0x8b, 0x22, 0xc3, 0xf6, 0x54, 0xce, 0xed, 0x1e, 0x14, 0x8c, 0xd6, 0x5e, 0x5b, - 0x84, 0x2a, 0x79, 0xf7, 0x48, 0xb5, 0xb5, 0xd7, 0x4e, 0xf4, 0x48, 0x75, 0x6d, 0xa3, 0x8e, 0x19, - 0x4f, 0x6a, 0x1a, 0xbb, 0xc6, 0xf6, 0x6e, 0x98, 0x4c, 0xc9, 0xdb, 0x34, 0x6e, 0x52, 0xda, 0x09, - 0xd3, 0x60, 0x65, 0x98, 0xb3, 0xa5, 0xdf, 0xde, 0xda, 0x0b, 0x82, 0xca, 0xd8, 0x40, 0xbe, 0x7d, - 0x6d, 0x2f, 0x08, 0x12, 0xdf, 0xbe, 0xb6, 0xb1, 0xb9, 0x89, 0x19, 0x4f, 0xca, 0xdb, 0x31, 0x02, - 0xbf, 0x32, 0x3e, 0x10, 0xde, 0xeb, 0x46, 0xe0, 0x27, 0x78, 0xaf, 0x57, 0x37, 0x75, 0xcc, 0x78, - 0xa2, 0x7d, 0x18, 0xf6, 0x1d, 0xbf, 0x32, 0xc1, 0x58, 0xbf, 0x9e, 0x33, 0x6b, 0xdd, 0x11, 0x9c, - 0xe5, 0x36, 0x0d, 0x7d, 0x5d, 0xc7, 0x94, 0x21, 0xe3, 0xbb, 0xe7, 0x57, 0x26, 0x07, 0xc3, 0x77, - 0x2f, 0xc5, 0x77, 0x83, 0xf2, 0xdd, 0xf3, 0xd1, 0x57, 0x35, 0x28, 0xb6, 0x3b, 0x5b, 0x7a, 0x67, - 0xab, 0x32, 0xc5, 0x78, 0x7f, 0x2e, 0x67, 0xde, 0x75, 0x46, 0x9c, 0xb3, 0x97, 0x31, 0x06, 0x2f, - 0xc4, 0x82, 0x33, 0x13, 0x82, 0x73, 0xad, 0x4c, 0x0f, 0x44, 0x88, 0xeb, 0x8c, 0x5a, 0x42, 0x08, - 0x5e, 0x88, 0x05, 0xe7, 0x50, 0x08, 0xdb, 0xd8, 0xaa, 0xcc, 0x0c, 0x4a, 0x08, 0xdb, 0xc8, 0x10, - 0xc2, 0x36, 0xb8, 0x10, 0xb6, 0xb1, 0x45, 0x55, 0x7f, 0xa7, 0xb1, 0xed, 0x57, 0xd0, 0x40, 0x54, - 0xff, 0x46, 0x63, 0x3b, 0xa9, 0xfa, 0x37, 0x96, 0x96, 0x75, 0xcc, 0x78, 0x52, 0x97, 0xe3, 0xdb, - 0x86, 0xb9, 0x5b, 0x39, 0x37, 0x10, 0x97, 0xa3, 0x53, 0xda, 0x09, 0x97, 0xc3, 0xca, 0x30, 0x67, - 0x8b, 0x7e, 0x4f, 0x83, 0x31, 0xb1, 0x4f, 0xeb, 0xba, 0x67, 0x35, 0x2a, 0xe7, 0xf3, 0x99, 0x21, - 0x26, 0xc5, 0x88, 0x38, 0x70, 0x61, 0x64, 0x76, 0x41, 0x81, 0x60, 0x55, 0x10, 0xf4, 0x27, 0x1a, - 0x4c, 0x1a, 0xb1, 0x1d, 0x79, 0x95, 0xc7, 0x99, 0x6c, 0x5b, 0x79, 0x0f, 0x09, 0xf1, 0x6d, 0x7f, - 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x03, 0x71, 0x42, 0x22, 0xa6, 0xbe, 0x7e, 0xe0, 0x59, 0x6d, 0x52, - 0xb9, 0x30, 0x10, 0xf5, 0xd5, 0x19, 0xf1, 0x84, 0xfa, 0xf2, 0x42, 0x2c, 0x38, 0xb3, 0xa1, 0x9b, - 0xf0, 0x29, 0x79, 0xe5, 0x89, 0x81, 0x0c, 0xdd, 0xe1, 0x84, 0x3f, 0x3e, 0x74, 0x8b, 0x52, 0x1c, - 0x32, 0xa7, 0xba, 0xec, 0x91, 0x86, 0xe5, 0x57, 0x2a, 0x03, 0xd1, 0x65, 0x4c, 0x69, 0x27, 0x74, - 0x99, 0x95, 0x61, 0xce, 0x96, 0xba, 0x73, 0xc7, 0xdf, 0xab, 0x3c, 0x39, 0x10, 0x77, 0xbe, 0xee, - 0xef, 0x25, 0xdc, 0xf9, 0xba, 0xbe, 0x81, 0x29, 0x43, 0xe1, 0xce, 0x6d, 0xdf, 0xf0, 0x2a, 0xb3, - 0x03, 0x72, 0xe7, 0x94, 0x78, 0xca, 0x9d, 0xd3, 0x42, 0x2c, 0x38, 0x33, 0x2d, 0x60, 0x47, 0xb1, - 0x2c, 0xb3, 0xf2, 0xb1, 0x81, 0x68, 0xc1, 0x75, 0x4e, 0x3d, 0xa1, 0x05, 0xa2, 0x14, 0x87, 0xcc, - 0xd1, 0xb3, 0x34, 0xaa, 0x6d, 0xdb, 0x96, 0x69, 0xf8, 0x95, 0xa7, 0xd8, 0x2e, 0xbd, 0x71, 0x1e, - 0x73, 0xf2, 0x32, 0x2c, 0xa1, 0xe8, 0xfb, 0x1a, 0x4c, 0x25, 0x96, 0xc9, 0x2a, 0x4f, 0x33, 0xd1, - 0xcd, 0x9c, 0x45, 0xaf, 0xc5, 0xb9, 0xf0, 0x4f, 0x90, 0x1b, 0x1b, 0x92, 0x2b, 0x34, 0x49, 0xa1, - 0xd0, 0x37, 0x35, 0x28, 0xcb, 0xb2, 0xca, 0x45, 0x26, 0xe2, 0xdb, 0x83, 0x12, 0x91, 0x0b, 0x27, - 0xb7, 0xe9, 0x45, 0x2b, 0xf2, 0x91, 0x08, 0xcc, 0x6b, 0x33, 0x9d, 0xd7, 0x03, 0x8f, 0x18, 0xad, - 0xca, 0xdc, 0x40, 0xbc, 0x36, 0x8e, 0x38, 0x24, 0xbc, 0xb6, 0x02, 0xc1, 0xaa, 0x20, 0xac, 0x4b, - 0x8d, 0xf8, 0x2e, 0xb9, 0xca, 0xa5, 0x81, 0x74, 0x69, 0x72, 0x2f, 0x5e, 0xbc, 0x4b, 0x13, 0x50, - 0x9c, 0x14, 0x0a, 0xfd, 0xa5, 0x06, 0x33, 0x46, 0x72, 0x4b, 0x6d, 0xe5, 0xff, 0x30, 0x51, 0xc9, - 0x20, 0x44, 0x8d, 0x6d, 0xdd, 0x65, 0xc2, 0x3e, 0x29, 0x84, 0x9d, 0x49, 0xc1, 0x71, 0x5a, 0x34, - 0x1a, 0xa4, 0xf8, 0xdb, 0x41, 0xbb, 0x32, 0x3f, 0x90, 0x20, 0x45, 0xdf, 0x0e, 0x92, 0xf3, 0x22, - 0x7d, 0x79, 0xb3, 0x8e, 0x19, 0x4f, 0x1e, 0xa5, 0x11, 0xcf, 0xb3, 0x82, 0xca, 0x33, 0x83, 0x89, - 0xd2, 0x18, 0xf1, 0x64, 0x94, 0xc6, 0x0a, 0xb1, 0xe0, 0x3c, 0xdb, 0x01, 0x88, 0x72, 0x0b, 0x19, - 0xf9, 0xdb, 0x0d, 0x35, 0x7f, 0x3b, 0x76, 0xf5, 0xe5, 0x9e, 0x33, 0xe8, 0xfa, 0xaf, 0x54, 0xbd, - 0xc0, 0xda, 0x36, 0xcc, 0x40, 0x49, 0xfe, 0xce, 0x7e, 0x4b, 0x83, 0x89, 0x58, 0x3e, 0x21, 0x83, - 0xf5, 0x4e, 0x9c, 0x35, 0xce, 0x7f, 0xc9, 0x51, 0x95, 0xe8, 0xb7, 0x34, 0x28, 0xcb, 0xcc, 0x42, - 0x86, 0x34, 0x8d, 0xb8, 0x34, 0xfd, 0x66, 0x4a, 0x19, 0xab, 0x6c, 0x49, 0x68, 0xdb, 0xc4, 0x52, - 0x0c, 0x83, 0x6f, 0x1b, 0xc9, 0x2e, 0x5b, 0xa2, 0x0f, 0x35, 0x18, 0x57, 0x13, 0x0d, 0x19, 0x02, - 0x35, 0xe3, 0x02, 0x6d, 0xe4, 0xb3, 0x91, 0xe8, 0x88, 0xbe, 0x92, 0x39, 0x87, 0xc1, 0xf7, 0x55, - 0xe2, 0x34, 0xa9, 0x2a, 0xc9, 0x37, 0x34, 0x80, 0x28, 0x01, 0x91, 0x21, 0x0a, 0x89, 0x8b, 0xd2, - 0xef, 0x1a, 0x35, 0xe7, 0xd5, 0xbd, 0x55, 0x64, 0x36, 0x62, 0xf0, 0xad, 0xb2, 0xb6, 0xb1, 0xb9, - 0xd9, 0x45, 0x92, 0xaf, 0x6b, 0x50, 0x96, 0xb9, 0x89, 0xc1, 0x37, 0xca, 0x7a, 0x75, 0x53, 0xe7, - 0xb3, 0x87, 0xb4, 0x28, 0x5f, 0xd3, 0xa0, 0x14, 0xe6, 0x2a, 0x32, 0x24, 0x31, 0xe3, 0x92, 0xf4, - 0xbb, 0xff, 0x4d, 0x5f, 0xd7, 0xbb, 0x34, 0x09, 0x93, 0x63, 0xef, 0xd4, 0xe4, 0xd8, 0xe8, 0x26, - 0xc7, 0xfb, 0x1a, 0x8c, 0x29, 0x79, 0x8c, 0x0c, 0x51, 0xb6, 0xe3, 0xa2, 0xf4, 0xbb, 0x3c, 0x23, - 0x98, 0x75, 0x97, 0x46, 0x49, 0x68, 0x0c, 0x5e, 0x1a, 0xc1, 0xec, 0x48, 0x69, 0xc2, 0xcc, 0xc6, - 0xa9, 0x48, 0x43, 0x99, 0x75, 0x37, 0x67, 0x99, 0xe5, 0x18, 0xbc, 0x39, 0xdf, 0x58, 0x5a, 0xd6, - 0x8f, 0x70, 0x72, 0x51, 0xca, 0x63, 0xf0, 0xf6, 0xcc, 0x79, 0x65, 0xcb, 0xf2, 0x1d, 0x0d, 0xa6, - 0x93, 0x79, 0x8f, 0x0c, 0x89, 0x76, 0xe3, 0x12, 0xf5, 0x7b, 0x48, 0x5e, 0xe5, 0x98, 0x2d, 0xd7, - 0x1f, 0x69, 0x70, 0x2e, 0x23, 0xe7, 0x91, 0x21, 0x9a, 0x13, 0x17, 0xed, 0x8d, 0x41, 0x9d, 0xaf, - 0x4c, 0x6a, 0xb6, 0x92, 0xf4, 0x18, 0xbc, 0x66, 0x0b, 0x66, 0xdd, 0xc3, 0x09, 0x35, 0xf9, 0x31, - 0xf8, 0x70, 0x22, 0xbd, 0xb7, 0x22, 0xa9, 0xdf, 0x51, 0x1a, 0x64, 0xf0, 0xfa, 0xcd, 0x79, 0x75, - 0x1f, 0x27, 0xc2, 0xa4, 0xc8, 0xe0, 0xc7, 0x89, 0x75, 0x7d, 0xe3, 0xc8, 0x71, 0x42, 0x26, 0x48, - 0x4e, 0x63, 0x9c, 0x60, 0xcc, 0xba, 0x6b, 0x8c, 0x9a, 0x28, 0x19, 0xbc, 0xc6, 0x84, 0xdc, 0xb2, - 0xe5, 0xf9, 0xae, 0xa6, 0x9c, 0xe4, 0x51, 0xb2, 0x1f, 0x19, 0x72, 0xb9, 0x71, 0xb9, 0xde, 0x1c, - 0xd8, 0x56, 0x62, 0x55, 0xbe, 0x8f, 0x34, 0x98, 0x8c, 0xa7, 0x3e, 0x32, 0x24, 0xb3, 0xe2, 0x92, - 0xe9, 0x03, 0x38, 0x25, 0x94, 0xf4, 0xdc, 0xc9, 0xdc, 0xc7, 0xe0, 0x3d, 0xb7, 0xca, 0xb1, 0x7b, - 0x5f, 0x66, 0xa5, 0x3d, 0x06, 0xdf, 0x97, 0xdd, 0x0f, 0x3e, 0xaa, 0xf2, 0x7d, 0x4f, 0x83, 0x0b, - 0xd9, 0xb9, 0x8e, 0x0c, 0x09, 0xf7, 0xe2, 0x12, 0xbe, 0x35, 0xc0, 0xe3, 0xd1, 0xc9, 0x58, 0x45, - 0x26, 0x3b, 0x06, 0x1f, 0xab, 0xe8, 0xcb, 0x9b, 0xf5, 0xa3, 0x62, 0xb8, 0x28, 0xef, 0x71, 0x0a, - 0x31, 0x1c, 0x67, 0x96, 0x29, 0xcd, 0x7c, 0x10, 0xdb, 0x71, 0xc4, 0xb7, 0x23, 0xa1, 0x77, 0xe5, - 0x06, 0x28, 0xbe, 0x4f, 0xe8, 0x53, 0xbd, 0xe7, 0x54, 0x8e, 0xde, 0xe7, 0xf4, 0x37, 0x05, 0x98, - 0x4a, 0xe4, 0x17, 0xd8, 0x35, 0x1d, 0xf4, 0x27, 0xbb, 0xd3, 0x4a, 0x8b, 0x9f, 0x59, 0xbe, 0x16, - 0x02, 0x70, 0x84, 0x83, 0x3e, 0xd2, 0x60, 0xea, 0x8e, 0x11, 0x98, 0x3b, 0x75, 0x23, 0xd8, 0xe1, - 0x9b, 0xd5, 0x72, 0xea, 0xbd, 0xd7, 0xe3, 0x54, 0xa3, 0xf4, 0x62, 0x02, 0x80, 0x93, 0xfc, 0xd1, - 0x73, 0x30, 0xda, 0x76, 0x6d, 0xdb, 0x72, 0x9a, 0xe2, 0x72, 0x12, 0x99, 0x2f, 0xaf, 0xf3, 0x62, - 0x1c, 0xc2, 0xe3, 0x97, 0x4a, 0x15, 0x72, 0xd9, 0x06, 0x92, 0x68, 0xd2, 0x13, 0xed, 0xce, 0x1c, - 0x79, 0x54, 0x76, 0x67, 0xfe, 0x53, 0x01, 0x50, 0x7a, 0x0c, 0x7c, 0xd0, 0xb5, 0x6b, 0x97, 0xa1, - 0x68, 0x46, 0xaa, 0xa2, 0xec, 0xa7, 0x16, 0x3d, 0x2a, 0xa0, 0xfc, 0xa4, 0x83, 0x4f, 0xcc, 0x8e, - 0x47, 0xd2, 0xb7, 0xec, 0xf0, 0x72, 0x2c, 0x31, 0x7a, 0xbc, 0x44, 0xe2, 0xc3, 0xf4, 0x69, 0x85, - 0x77, 0x73, 0x0f, 0x06, 0x7a, 0xe8, 0xfc, 0xdb, 0xec, 0x52, 0x9d, 0x1d, 0x71, 0xa0, 0xaa, 0xd8, - 0xf3, 0x29, 0xe8, 0xaa, 0xac, 0x8c, 0x15, 0x42, 0x67, 0x73, 0xe5, 0x44, 0x7f, 0x3a, 0xf5, 0xd3, - 0x22, 0xcc, 0xa4, 0xdc, 0xe5, 0x19, 0x1d, 0x42, 0x7c, 0x1e, 0x4a, 0xf4, 0xaf, 0x72, 0xe7, 0x83, - 0xec, 0xc3, 0x1b, 0xa2, 0x1c, 0x4b, 0x0c, 0xe5, 0x54, 0xde, 0xf0, 0x11, 0xa7, 0xf2, 0xd4, 0x03, - 0xc7, 0x79, 0xde, 0x0b, 0xf6, 0x32, 0x4c, 0xf0, 0x6c, 0x7d, 0x78, 0x58, 0x6e, 0x84, 0x09, 0x2c, - 0xef, 0xf9, 0xb8, 0xae, 0x02, 0x71, 0x1c, 0xb7, 0xcb, 0xd1, 0xb8, 0xe2, 0x89, 0x8e, 0xc6, 0x7d, - 0x90, 0xbe, 0xfc, 0xe1, 0x9d, 0xbc, 0x87, 0xcf, 0x1e, 0x2c, 0xeb, 0x59, 0x28, 0x89, 0x33, 0x5c, - 0x3e, 0xdb, 0x5d, 0x57, 0x16, 0x47, 0x16, 0x44, 0x19, 0x96, 0x50, 0x3a, 0xfa, 0xf9, 0xbe, 0xfd, - 0x1a, 0xf1, 0xac, 0xed, 0x03, 0x71, 0x2c, 0x50, 0x8e, 0x7e, 0x7a, 0x08, 0xc0, 0x11, 0xce, 0xa3, - 0xb8, 0x9f, 0xfe, 0x1f, 0x35, 0x98, 0xe4, 0xe9, 0xad, 0x6a, 0xbb, 0xbd, 0xe8, 0x91, 0x86, 0x4f, - 0x5d, 0x4f, 0xdb, 0xb3, 0xf6, 0x8d, 0x80, 0x84, 0x47, 0xe1, 0x7a, 0x73, 0x3d, 0x75, 0x59, 0x19, - 0x2b, 0x84, 0xd0, 0x33, 0x30, 0x62, 0xb4, 0xdb, 0x2b, 0x4b, 0x4c, 0x86, 0xe1, 0x68, 0xdb, 0x40, - 0x95, 0x16, 0x62, 0x0e, 0x43, 0xaf, 0xc0, 0xa4, 0xe5, 0xf8, 0x81, 0x61, 0xdb, 0x6c, 0xcf, 0xfd, - 0xca, 0x12, 0x73, 0xf4, 0xc3, 0xd1, 0x26, 0x90, 0x95, 0x18, 0x14, 0x27, 0xb0, 0xe7, 0xff, 0x6e, - 0x0c, 0x66, 0x52, 0xd9, 0x3a, 0x34, 0x0b, 0x43, 0x16, 0x3f, 0xa4, 0x34, 0x5c, 0x03, 0x41, 0x69, - 0x68, 0x65, 0x09, 0x0f, 0x59, 0x0d, 0xd5, 0x91, 0x0c, 0x9d, 0x9e, 0x23, 0x91, 0xe7, 0xfa, 0x87, - 0x8f, 0x7b, 0xae, 0x3f, 0x3a, 0x3b, 0x28, 0xce, 0xde, 0x65, 0x1c, 0x7e, 0x8e, 0xce, 0x1b, 0x62, - 0x05, 0xff, 0x58, 0xa7, 0x83, 0x6f, 0x41, 0xc9, 0x68, 0x5b, 0x27, 0x38, 0x1a, 0xcc, 0x8c, 0xa7, - 0x5a, 0x5f, 0xe1, 0xe7, 0x82, 0x25, 0x91, 0x81, 0x1f, 0x0a, 0x56, 0x83, 0x81, 0xd2, 0x03, 0x83, - 0x81, 0xcb, 0x50, 0x34, 0xcc, 0xc0, 0xda, 0x27, 0xc2, 0x8e, 0x65, 0x88, 0x51, 0x65, 0xa5, 0x58, - 0x40, 0xc5, 0xd5, 0xb8, 0x41, 0x18, 0xf2, 0x42, 0xea, 0x6a, 0xdc, 0x10, 0x84, 0x55, 0x3c, 0xe6, - 0x6b, 0x99, 0xd2, 0x84, 0xbe, 0x76, 0x2c, 0xe1, 0x6b, 0x55, 0x20, 0x8e, 0xe3, 0xa2, 0x2a, 0x4c, - 0xf1, 0x82, 0xdb, 0x6d, 0xdb, 0x35, 0x1a, 0xb4, 0xfa, 0x78, 0x5c, 0x2b, 0xae, 0xc7, 0xc1, 0x38, - 0x89, 0xdf, 0xc5, 0x5d, 0x4f, 0xf4, 0xef, 0xae, 0x27, 0xf3, 0x71, 0xd7, 0x49, 0x8b, 0xec, 0xc1, - 0x5d, 0xbf, 0x97, 0x3c, 0x6f, 0xcf, 0x77, 0x69, 0xf6, 0xeb, 0x5a, 0xa9, 0x79, 0x35, 0xd4, 0x13, - 0xf5, 0xc7, 0x3a, 0x67, 0xff, 0x29, 0x98, 0x70, 0xbd, 0xa6, 0xe1, 0x58, 0xf7, 0x98, 0xc3, 0xf1, - 0xd9, 0x6e, 0xcd, 0x32, 0xd7, 0xd6, 0x5b, 0x2a, 0x00, 0xc7, 0xf1, 0xd0, 0x3d, 0x28, 0x37, 0x43, - 0x2f, 0x5b, 0x99, 0xc9, 0xc5, 0xcf, 0xc4, 0xbd, 0x36, 0x3f, 0x1e, 0x24, 0xcb, 0x70, 0xc4, 0x4e, - 0x19, 0x95, 0xd0, 0xa3, 0x32, 0x2a, 0xbd, 0x57, 0x62, 0x6e, 0x3c, 0xbe, 0xcc, 0x71, 0x46, 0x31, - 0xdf, 0xa7, 0xa1, 0x2c, 0x22, 0x02, 0x31, 0x76, 0x95, 0x6b, 0x1f, 0x13, 0xaa, 0x72, 0x2e, 0x75, - 0xef, 0xc4, 0xca, 0x12, 0x8e, 0xb0, 0x8f, 0x19, 0x00, 0xc6, 0xae, 0x65, 0x28, 0xe4, 0x77, 0x2d, - 0x83, 0x0e, 0x8f, 0xf3, 0xf3, 0xb7, 0xba, 0xbe, 0xca, 0x02, 0x14, 0xcb, 0xe4, 0xc7, 0x6f, 0xf9, - 0x4d, 0x79, 0x4f, 0x8b, 0x8f, 0x78, 0xfc, 0x5a, 0x16, 0x12, 0xce, 0xae, 0x2b, 0x3c, 0x9d, 0x6d, - 0x48, 0x4f, 0x57, 0x4c, 0x79, 0xba, 0x08, 0x88, 0xe3, 0xb8, 0x5d, 0xdc, 0x54, 0xa9, 0x7f, 0x37, - 0x55, 0xce, 0xcb, 0x4d, 0xc5, 0x35, 0xee, 0x84, 0x51, 0x25, 0x1c, 0x19, 0x55, 0xbe, 0x01, 0x63, - 0x3e, 0xeb, 0x49, 0xde, 0xe1, 0x63, 0x3d, 0x77, 0xb8, 0x1e, 0xd5, 0xc6, 0x2a, 0x29, 0xc5, 0xd0, - 0xc7, 0x4f, 0xf1, 0xae, 0x87, 0x79, 0x28, 0x36, 0x3d, 0xb7, 0xd3, 0xe6, 0x67, 0x06, 0x84, 0x92, - 0x5f, 0x67, 0x25, 0x58, 0x40, 0xfa, 0x73, 0x06, 0xdf, 0x2d, 0xc3, 0x54, 0x62, 0x9d, 0x31, 0x33, - 0xcf, 0xa4, 0x9d, 0x71, 0x9e, 0xe9, 0x12, 0x14, 0x02, 0x1a, 0x34, 0x0c, 0xc5, 0x4f, 0xa5, 0xb3, - 0x68, 0x81, 0x41, 0xa8, 0xf1, 0x98, 0x3b, 0xc4, 0xdc, 0x0d, 0xef, 0x65, 0x10, 0xd1, 0x9f, 0x34, - 0x9e, 0x45, 0x15, 0x88, 0xe3, 0xb8, 0xe8, 0xff, 0x41, 0xd9, 0x68, 0x34, 0x3c, 0xe2, 0xfb, 0xe2, - 0xd2, 0x99, 0x32, 0xf7, 0xf9, 0xd5, 0xb0, 0x10, 0x47, 0x70, 0x36, 0x51, 0x6d, 0x6c, 0xfb, 0xb7, - 0x7d, 0x91, 0x3d, 0x52, 0x27, 0xaa, 0x4b, 0xcb, 0x3a, 0x2d, 0xc7, 0x12, 0x03, 0x35, 0x60, 0x6a, - 0xd7, 0xdb, 0x5a, 0x5c, 0x34, 0xcc, 0x1d, 0x72, 0x92, 0x8c, 0x03, 0xbb, 0x51, 0xf6, 0x66, 0x9c, - 0x02, 0x4e, 0x92, 0x14, 0x5c, 0x6e, 0x92, 0x83, 0xc0, 0xd8, 0x3a, 0x49, 0x4c, 0x18, 0x72, 0x51, - 0x29, 0xe0, 0x24, 0x49, 0x1a, 0xc1, 0xed, 0x7a, 0x5b, 0xe1, 0x89, 0x76, 0x71, 0x43, 0x8c, 0x8c, - 0xe0, 0x6e, 0x46, 0x20, 0xac, 0xe2, 0xd1, 0x06, 0xdb, 0xf5, 0xb6, 0x30, 0x31, 0xec, 0x96, 0xb8, - 0x84, 0x4f, 0x36, 0xd8, 0x4d, 0x51, 0x8e, 0x25, 0x06, 0x6a, 0x03, 0xa2, 0x5f, 0xc7, 0xfa, 0x5d, - 0x1e, 0xc9, 0x15, 0x93, 0xbe, 0x67, 0xb3, 0xbe, 0x46, 0x22, 0xa9, 0x1f, 0x74, 0x81, 0xba, 0xbb, - 0x9b, 0x29, 0x3a, 0x38, 0x83, 0x36, 0x7a, 0x13, 0x9e, 0xd8, 0xf5, 0xb6, 0x44, 0xda, 0xbf, 0xee, - 0x59, 0x8e, 0x69, 0xb5, 0x0d, 0x7e, 0x47, 0xc0, 0x58, 0xfc, 0xce, 0xc0, 0x9b, 0xd9, 0x68, 0xb8, - 0x5b, 0xfd, 0x78, 0xd2, 0x73, 0x3c, 0x97, 0xa4, 0x67, 0xc2, 0x5c, 0x4f, 0x94, 0xf4, 0x9c, 0x78, - 0x54, 0x82, 0x95, 0x1f, 0x68, 0x80, 0xd8, 0x0e, 0xab, 0xf0, 0xe5, 0x0c, 0xe6, 0xfc, 0xd0, 0x15, - 0x28, 0x33, 0xef, 0xa7, 0x1c, 0x7a, 0x95, 0xd9, 0x83, 0xeb, 0x21, 0x00, 0x47, 0x38, 0x74, 0x8e, - 0xe2, 0xda, 0x0d, 0x22, 0x6f, 0xaa, 0x90, 0x73, 0x94, 0x5b, 0xac, 0x14, 0x0b, 0x28, 0xba, 0x0e, - 0x33, 0x1e, 0xd9, 0x32, 0x6c, 0xc3, 0x31, 0x89, 0x1e, 0x78, 0x46, 0x40, 0x9a, 0x07, 0xc2, 0x93, - 0xc8, 0x6d, 0xac, 0x38, 0x89, 0x80, 0xd3, 0x75, 0xe6, 0xff, 0xb5, 0x04, 0xd3, 0xc9, 0xad, 0x61, - 0x0f, 0xca, 0xd5, 0x5e, 0x81, 0x72, 0xdb, 0xf0, 0x02, 0x4b, 0xb9, 0xc7, 0x43, 0x7e, 0x55, 0x3d, - 0x04, 0xe0, 0x08, 0x87, 0x4e, 0xfb, 0xd9, 0x95, 0xa6, 0x42, 0x42, 0x39, 0xed, 0x67, 0x57, 0x9e, - 0x62, 0x0e, 0xcb, 0xbe, 0x1c, 0xa2, 0x70, 0x6a, 0x97, 0x43, 0x3c, 0x14, 0x77, 0xa4, 0xbe, 0x9f, - 0x4e, 0x93, 0xbd, 0x9d, 0xf3, 0xbe, 0xbf, 0xde, 0xa6, 0x5d, 0x13, 0xa6, 0xaa, 0xcf, 0xe2, 0x32, - 0x8c, 0x8d, 0x3c, 0x44, 0x8a, 0x19, 0x0a, 0x9f, 0x3d, 0xc5, 0x8a, 0x70, 0x9c, 0x35, 0xaa, 0xc3, - 0x79, 0xdb, 0x6a, 0x89, 0x84, 0x9f, 0x5f, 0x27, 0x1e, 0xbf, 0x49, 0x98, 0x39, 0xea, 0xe1, 0x28, - 0x11, 0xb2, 0x9a, 0x81, 0x83, 0x33, 0x6b, 0xa2, 0xe7, 0x60, 0x74, 0x9f, 0x78, 0xec, 0xf0, 0x3e, - 0xc4, 0x6f, 0x37, 0x7f, 0x8d, 0x17, 0xe3, 0x10, 0x8e, 0xde, 0x84, 0x82, 0x6f, 0xf8, 0xb6, 0x08, - 0xd4, 0x4e, 0xb0, 0x95, 0xb9, 0xaa, 0xaf, 0x0a, 0xf5, 0x60, 0x29, 0x5a, 0xfa, 0x1b, 0x33, 0x92, - 0x67, 0x14, 0xb0, 0x45, 0xcb, 0x2d, 0x13, 0x47, 0x2d, 0xb7, 0xf4, 0xe7, 0x14, 0xbf, 0x57, 0x84, - 0xa9, 0xc4, 0x5e, 0xcf, 0x07, 0xb9, 0x16, 0xe9, 0x29, 0x86, 0x8e, 0xf0, 0x14, 0xcf, 0x43, 0xc9, - 0xb4, 0x2d, 0xe2, 0x04, 0x2b, 0x0d, 0xe1, 0x51, 0xa2, 0x23, 0xe5, 0xbc, 0x7c, 0x09, 0x4b, 0x8c, - 0xb3, 0xf6, 0x2b, 0xaa, 0x03, 0x18, 0x39, 0xee, 0xa5, 0x33, 0xc5, 0x41, 0x3e, 0x94, 0x93, 0xcf, - 0xd1, 0xf6, 0x44, 0xc7, 0x3e, 0xf4, 0x17, 0x2e, 0x87, 0x8b, 0x2c, 0xe5, 0xbc, 0x17, 0x59, 0xfa, - 0xb3, 0x91, 0x7f, 0x18, 0x82, 0xd2, 0x7a, 0x75, 0x53, 0x67, 0x17, 0x11, 0xbf, 0x15, 0xbf, 0x6a, - 0xb9, 0x1f, 0x21, 0xd3, 0x77, 0x2a, 0x2f, 0x53, 0xd3, 0xea, 0xf9, 0x3a, 0xe5, 0x32, 0xb7, 0x3e, - 0x3a, 0xcf, 0xe4, 0xd5, 0xd1, 0x22, 0x14, 0x9c, 0xdd, 0x5e, 0xdf, 0x9b, 0x60, 0x6d, 0xb6, 0x7e, - 0x93, 0x1c, 0x60, 0x56, 0x19, 0xdd, 0x06, 0x30, 0x3d, 0xd2, 0x20, 0x4e, 0x60, 0x89, 0xe7, 0xbe, - 0x7a, 0x5b, 0x5f, 0x58, 0x94, 0x95, 0xb1, 0x42, 0x68, 0xfe, 0xeb, 0x45, 0x98, 0x4e, 0xee, 0xe9, - 0x7e, 0x90, 0xcb, 0x79, 0x0e, 0x46, 0xfd, 0x0e, 0xbb, 0xe0, 0x46, 0x38, 0x1d, 0x39, 0x0c, 0xe8, - 0xbc, 0x18, 0x87, 0xf0, 0x6c, 0x57, 0x32, 0x7c, 0x26, 0xae, 0xa4, 0x70, 0x5c, 0x57, 0x92, 0x77, - 0x40, 0xf3, 0x7e, 0xfa, 0x29, 0x85, 0xb7, 0x73, 0xde, 0x85, 0xdf, 0x83, 0x2f, 0x21, 0xc2, 0xaa, - 0x47, 0x73, 0xb9, 0x1a, 0x26, 0x34, 0xc4, 0xd4, 0x3a, 0xea, 0x23, 0x78, 0x63, 0xdf, 0x4f, 0x46, - 0x60, 0x32, 0xbe, 0x49, 0x93, 0x4e, 0x8b, 0x77, 0x5c, 0x3f, 0x10, 0xc9, 0x82, 0xe4, 0x9b, 0x7f, - 0x37, 0x22, 0x10, 0x56, 0xf1, 0x8e, 0x37, 0x26, 0x3f, 0x07, 0xa3, 0xe2, 0x2e, 0x3a, 0x31, 0x24, - 0x4b, 0x2b, 0x12, 0xf7, 0xd5, 0xe1, 0x10, 0xfe, 0xbf, 0x03, 0xb2, 0xed, 0xa3, 0x6f, 0xa4, 0x07, - 0xe4, 0xb7, 0x72, 0xdd, 0x91, 0xfb, 0xb0, 0x8f, 0xc7, 0xfd, 0x29, 0xf7, 0x9b, 0x30, 0x93, 0x5a, - 0xbc, 0x39, 0xde, 0xbd, 0xd8, 0x73, 0x30, 0xe2, 0x18, 0x2d, 0xc2, 0xaf, 0xc3, 0x2a, 0xf3, 0xe1, - 0x8d, 0x3d, 0x9d, 0x80, 0x79, 0xf9, 0xfc, 0xf7, 0x8b, 0x30, 0x93, 0x3a, 0x79, 0xc2, 0xa6, 0xbc, - 0x72, 0x01, 0x20, 0x31, 0x91, 0xcf, 0x4c, 0xfb, 0xbf, 0x02, 0x93, 0xcc, 0x30, 0xea, 0x89, 0x65, - 0x03, 0xb9, 0x88, 0xbd, 0x19, 0x83, 0xe2, 0x04, 0xf6, 0xf1, 0xa6, 0xcc, 0xaf, 0xc0, 0xa4, 0xfa, - 0xd6, 0xc7, 0xca, 0x92, 0x58, 0x16, 0x96, 0x4c, 0xf4, 0x18, 0x14, 0x27, 0xb0, 0xd9, 0x43, 0x29, - 0x72, 0xf0, 0x14, 0xe9, 0xb8, 0x91, 0xde, 0x1f, 0x4a, 0x49, 0x90, 0xc0, 0x29, 0xa2, 0x68, 0x0b, - 0x66, 0x79, 0xfa, 0x5e, 0x15, 0x28, 0xb1, 0xa5, 0x64, 0x5e, 0x08, 0x3d, 0xbb, 0xd4, 0x15, 0x13, - 0x1f, 0x41, 0xa5, 0xc7, 0xdb, 0x1d, 0x3f, 0x48, 0x3f, 0x1d, 0xf9, 0x4e, 0xde, 0xe7, 0x95, 0x4e, - 0x64, 0x83, 0xe5, 0x47, 0xc5, 0x06, 0xbf, 0x3f, 0x46, 0x0d, 0x25, 0xb1, 0xf5, 0x1e, 0xcd, 0x43, - 0x91, 0xe9, 0x26, 0x1d, 0x5e, 0xe4, 0x4a, 0x00, 0x53, 0x5a, 0x1f, 0x0b, 0xc8, 0x31, 0x92, 0xe4, - 0x22, 0x64, 0x1b, 0xee, 0x12, 0xb2, 0xb5, 0xe1, 0x5c, 0x60, 0xfb, 0x9b, 0x5e, 0xc7, 0x0f, 0x16, - 0x89, 0x17, 0xf8, 0x42, 0x75, 0x0b, 0x3d, 0xbf, 0xb7, 0xb6, 0xb9, 0xaa, 0x27, 0xa9, 0xe0, 0x2c, - 0xd2, 0x54, 0x81, 0x03, 0xdb, 0xaf, 0xda, 0xb6, 0x7b, 0x27, 0xdc, 0x59, 0x10, 0x0d, 0x36, 0x62, - 0x18, 0x91, 0x0a, 0xbc, 0xb9, 0xaa, 0x77, 0xc1, 0xc4, 0x47, 0x50, 0x41, 0x6b, 0xec, 0xab, 0x5e, - 0x33, 0x6c, 0xab, 0x61, 0x04, 0x84, 0x0e, 0xc7, 0x2c, 0x7b, 0xcd, 0xad, 0x43, 0x2e, 0x37, 0x6e, - 0xae, 0xea, 0x49, 0x14, 0x9c, 0x55, 0x6f, 0x50, 0x6f, 0xae, 0x66, 0x8e, 0xde, 0xa5, 0x33, 0x19, - 0xbd, 0xcb, 0xbd, 0x59, 0x39, 0xe4, 0x64, 0xe5, 0x09, 0x95, 0xef, 0xc1, 0xca, 0x1b, 0x30, 0x25, - 0x1f, 0xa3, 0x11, 0x3a, 0x3b, 0xd6, 0xf3, 0xea, 0x47, 0x35, 0x4e, 0x01, 0x27, 0x49, 0x9e, 0x51, - 0x46, 0xe9, 0x2f, 0x34, 0x98, 0xa6, 0x92, 0x54, 0x83, 0x1d, 0xe2, 0xdc, 0xab, 0x1b, 0x9e, 0xd1, - 0x0a, 0x6f, 0x10, 0xdb, 0xce, 0xbd, 0xc9, 0xab, 0x09, 0x46, 0xbc, 0xe9, 0xe5, 0xb5, 0xce, 0x49, - 0x30, 0x4e, 0x49, 0x46, 0x87, 0xbe, 0xa8, 0xec, 0x24, 0x0f, 0xa7, 0x9e, 0x8f, 0x33, 0x0a, 0x87, - 0xbe, 0x24, 0xd1, 0xbe, 0x7c, 0xec, 0xec, 0x22, 0x3c, 0x9e, 0xf9, 0xa9, 0x3d, 0x39, 0xea, 0xaf, - 0x15, 0xc5, 0xf1, 0x99, 0x1c, 0xe6, 0x02, 0x79, 0xbf, 0x6c, 0x44, 0x03, 0x2b, 0x47, 0xbe, 0x7c, - 0x95, 0x78, 0x11, 0x2d, 0x7a, 0xeb, 0x2a, 0xc2, 0x41, 0xb3, 0x30, 0xd4, 0xd8, 0x62, 0xae, 0x7e, - 0x24, 0xda, 0xc7, 0xb7, 0x54, 0xc3, 0x43, 0x8d, 0x2d, 0xf4, 0x2c, 0x94, 0xc4, 0x24, 0x23, 0xdc, - 0xe6, 0xc6, 0xd8, 0x8a, 0x19, 0x88, 0x8f, 0x25, 0x74, 0x50, 0x61, 0xfd, 0x00, 0xf2, 0xf7, 0xc9, - 0x9e, 0x7b, 0xe8, 0x13, 0x6d, 0xbd, 0x79, 0xe8, 0xe7, 0x95, 0x4b, 0xcb, 0x21, 0x9e, 0xcb, 0x4d, - 0xdf, 0x48, 0xde, 0x5f, 0xc0, 0xf2, 0xd7, 0x45, 0xb8, 0x90, 0x7d, 0xa8, 0xeb, 0xa1, 0xb1, 0x06, - 0xae, 0xdc, 0xc3, 0x99, 0xca, 0xfd, 0x71, 0x18, 0xf5, 0x99, 0xe0, 0xe1, 0xca, 0x3f, 0xbf, 0x4e, - 0x96, 0x17, 0xe1, 0x10, 0x86, 0x5e, 0x05, 0xd4, 0x32, 0xee, 0xae, 0xf9, 0xcd, 0x45, 0xb7, 0xc3, - 0x6e, 0xc8, 0xc6, 0xc4, 0xe0, 0xd7, 0xb7, 0x8f, 0x44, 0xfb, 0x6b, 0xd6, 0x52, 0x18, 0x38, 0xa3, - 0x16, 0xdb, 0xab, 0x10, 0x5b, 0xff, 0x49, 0x6c, 0xf4, 0x39, 0x72, 0xc1, 0x66, 0x40, 0xf1, 0xc7, - 0x47, 0xe9, 0xc0, 0xdd, 0x1c, 0xc8, 0x49, 0xbf, 0x87, 0x3d, 0x7a, 0x3f, 0x4d, 0xd3, 0xf9, 0x69, - 0x01, 0xce, 0x65, 0xdc, 0xf4, 0x12, 0xf7, 0xde, 0xda, 0x31, 0xbc, 0xf7, 0x9e, 0x6c, 0xa9, 0x7c, - 0x36, 0x5a, 0x87, 0x42, 0x1d, 0xd1, 0x4c, 0x1f, 0x68, 0x70, 0x9e, 0x2d, 0xb0, 0x87, 0xab, 0x7a, - 0xe1, 0x15, 0xbf, 0xc3, 0x42, 0x33, 0x8f, 0x75, 0xd7, 0xf6, 0xf5, 0x0c, 0x0a, 0xd1, 0xaa, 0x63, - 0x16, 0x14, 0x67, 0x72, 0x45, 0x8b, 0x00, 0xf2, 0xa8, 0x5c, 0x68, 0xc9, 0xcf, 0xb0, 0x1b, 0xc3, - 0x65, 0xe9, 0x7f, 0xb3, 0xc5, 0x7b, 0xa5, 0xb5, 0xd9, 0xcc, 0x48, 0xa9, 0x36, 0x88, 0x77, 0x55, - 0x32, 0xba, 0xf7, 0xf8, 0x16, 0xd0, 0x9f, 0x76, 0xfd, 0xf9, 0x30, 0x4c, 0xc6, 0x3b, 0x12, 0x5d, - 0x86, 0x62, 0xdb, 0x23, 0xdb, 0xd6, 0xdd, 0xe4, 0xf3, 0x1a, 0x75, 0x56, 0x8a, 0x05, 0x14, 0xb9, - 0x50, 0xb4, 0x8d, 0x2d, 0x3a, 0xde, 0xf3, 0xeb, 0xcd, 0xaf, 0xf7, 0x7d, 0x55, 0x77, 0xb8, 0xca, - 0x10, 0x32, 0x5c, 0x65, 0xe4, 0xb1, 0x60, 0x43, 0x19, 0x6e, 0x5b, 0xc4, 0x6e, 0xf0, 0xed, 0x9c, - 0x83, 0x60, 0xb8, 0xcc, 0xc8, 0x63, 0xc1, 0x06, 0xbd, 0x05, 0x65, 0xfe, 0x26, 0x49, 0xa3, 0x76, - 0x20, 0x66, 0xb8, 0xff, 0xf7, 0x78, 0x2a, 0xbb, 0x69, 0xb5, 0x48, 0x64, 0x8e, 0x8b, 0x21, 0x11, - 0x1c, 0xd1, 0x63, 0xcf, 0xb6, 0x6f, 0x07, 0xc4, 0xd3, 0x03, 0xc3, 0x0b, 0x5f, 0x55, 0x8f, 0x9e, - 0x6d, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xff, 0xd5, 0x28, 0x4c, 0x25, 0x8e, 0xd1, 0xfe, 0x72, 0x9c, - 0x11, 0x55, 0xdf, 0x4f, 0x19, 0xce, 0xfb, 0xfd, 0x94, 0x42, 0x1e, 0xe1, 0xc1, 0x5b, 0x30, 0xee, - 0xfb, 0x3b, 0x0c, 0xb3, 0xf7, 0x5c, 0xdd, 0xf4, 0xe1, 0xfd, 0xb9, 0x71, 0x5d, 0xbf, 0x21, 0xab, - 0xe3, 0x18, 0x31, 0xb4, 0x0a, 0xa3, 0x62, 0xef, 0x60, 0x6f, 0x1b, 0xff, 0x58, 0x18, 0x12, 0x86, - 0x47, 0x21, 0x89, 0x41, 0xac, 0x38, 0x27, 0x94, 0xee, 0xa1, 0x0f, 0x84, 0xeb, 0x70, 0xbe, 0xed, - 0xda, 0x76, 0xb8, 0x79, 0x53, 0xbe, 0x7c, 0x54, 0x8e, 0x1f, 0xdd, 0xa9, 0x67, 0xe0, 0xe0, 0xcc, - 0x9a, 0xfd, 0x79, 0xd9, 0x7f, 0x2f, 0xc2, 0x64, 0xfc, 0x96, 0xa9, 0xb3, 0x3b, 0x40, 0xc9, 0x12, - 0x81, 0x55, 0xcf, 0x49, 0x1e, 0xa0, 0xdc, 0x14, 0xe5, 0x58, 0x62, 0x20, 0x0c, 0x65, 0xbe, 0xa1, - 0xfd, 0x66, 0xaf, 0x6b, 0xce, 0x7c, 0x67, 0x6c, 0x58, 0x17, 0x47, 0x64, 0x28, 0x4d, 0x3f, 0x44, - 0xef, 0xcd, 0x32, 0x19, 0x4d, 0x59, 0x8c, 0x23, 0x32, 0x74, 0xc4, 0xf2, 0x48, 0x33, 0xcc, 0x06, - 0x2a, 0x23, 0x16, 0x66, 0xa5, 0x58, 0x40, 0xd1, 0x73, 0x30, 0xea, 0xb9, 0x36, 0xa9, 0xe2, 0x75, - 0x11, 0x4d, 0xcb, 0x85, 0x32, 0xcc, 0x8b, 0x71, 0x08, 0x1f, 0xc4, 0x22, 0x51, 0x5c, 0x01, 0x7a, - 0x30, 0xa1, 0xeb, 0x30, 0xb3, 0x2f, 0x32, 0x8c, 0xba, 0xd5, 0x74, 0x8c, 0x20, 0x3a, 0x73, 0x25, - 0x37, 0x1c, 0xbe, 0x96, 0x44, 0xc0, 0xe9, 0x3a, 0x67, 0x17, 0x2b, 0x13, 0xa7, 0xd1, 0x76, 0x2d, - 0x27, 0x48, 0xc6, 0xca, 0xd7, 0x44, 0x39, 0x96, 0x18, 0xfd, 0xd9, 0xd9, 0xdf, 0x8f, 0xc2, 0x64, - 0xfc, 0x16, 0xb5, 0xb8, 0x0e, 0x6b, 0x03, 0xd0, 0xe1, 0xa1, 0xbc, 0x75, 0x78, 0xf8, 0x48, 0x1d, - 0x7e, 0x06, 0x46, 0xd8, 0x9b, 0xf6, 0x62, 0xb9, 0x49, 0x2e, 0x4e, 0xb1, 0xfb, 0x3e, 0x30, 0x87, - 0xa1, 0x2a, 0x1d, 0xe1, 0xf9, 0xb3, 0xff, 0xe2, 0xd1, 0x7f, 0x66, 0x19, 0xc3, 0xea, 0x88, 0x1c, - 0x03, 0xe3, 0x24, 0x7e, 0x2f, 0xb6, 0xd2, 0xdb, 0xea, 0xcf, 0x2b, 0x30, 0xc9, 0x84, 0xac, 0x9a, - 0x26, 0x9d, 0xef, 0xae, 0x34, 0xc4, 0x1e, 0x71, 0xb9, 0x70, 0xb6, 0xa1, 0x42, 0x97, 0x70, 0x02, - 0x3b, 0x6e, 0x99, 0xe5, 0x7c, 0x2c, 0x73, 0xe3, 0x84, 0x96, 0xf9, 0x34, 0x0c, 0x37, 0xec, 0x3d, - 0xa6, 0xd5, 0xa5, 0x68, 0xad, 0x64, 0x69, 0x75, 0x03, 0xd3, 0xf2, 0x33, 0x7a, 0xfc, 0x53, 0xb5, - 0xb7, 0xf1, 0x07, 0xd9, 0x1b, 0x8b, 0x6b, 0xf8, 0x03, 0x49, 0xfc, 0x3c, 0xcc, 0x44, 0xef, 0x71, - 0x8d, 0x52, 0x1d, 0xc7, 0x88, 0xf5, 0x67, 0xcc, 0x5f, 0x86, 0x52, 0xc8, 0x88, 0x36, 0xb4, 0xac, - 0x17, 0x35, 0x34, 0x35, 0x21, 0x46, 0xe4, 0x0a, 0x94, 0xdd, 0x36, 0x89, 0xbd, 0x6e, 0x28, 0x63, - 0xe0, 0x5b, 0x21, 0x00, 0x47, 0x38, 0xd4, 0x8a, 0x38, 0xd7, 0xc4, 0x12, 0xef, 0x6b, 0xb4, 0x50, - 0x08, 0x31, 0xff, 0x15, 0x0d, 0xc2, 0x27, 0x83, 0xd0, 0x12, 0x8c, 0xb4, 0x5d, 0x2f, 0xe0, 0x4b, - 0x6b, 0x63, 0x57, 0xe7, 0xb2, 0xdb, 0x87, 0xef, 0xee, 0x77, 0xbd, 0x20, 0xa2, 0x48, 0x7f, 0xf9, - 0x98, 0x57, 0xa6, 0x72, 0x9a, 0x76, 0xc7, 0x0f, 0x88, 0xb7, 0x52, 0x4f, 0xca, 0xb9, 0x18, 0x02, - 0x70, 0x84, 0x33, 0xff, 0x9f, 0x05, 0x98, 0x4e, 0x5e, 0xac, 0x87, 0xde, 0x81, 0x09, 0xdf, 0x6a, - 0x3a, 0x96, 0xd3, 0x14, 0xb1, 0xa8, 0xd6, 0xf3, 0xd1, 0x5e, 0x5d, 0xad, 0x8f, 0xe3, 0xe4, 0x72, - 0xdb, 0xad, 0x76, 0x36, 0x4f, 0xc8, 0xbf, 0x9f, 0xbe, 0x43, 0xe6, 0xed, 0x9c, 0xaf, 0x36, 0xfc, - 0xe5, 0xbe, 0x44, 0xe6, 0x17, 0x23, 0x70, 0x21, 0xfb, 0xea, 0xc4, 0x33, 0x0a, 0x5a, 0xa3, 0x63, - 0x9c, 0x43, 0x5d, 0x8f, 0x71, 0x46, 0xed, 0x3c, 0x9c, 0xd3, 0x55, 0x88, 0xb2, 0x01, 0x8e, 0x76, - 0xb5, 0x32, 0x9c, 0x2e, 0x3c, 0x30, 0x9c, 0xbe, 0x0c, 0x45, 0x71, 0x6d, 0x7e, 0x22, 0x4c, 0xad, - 0xf1, 0x4b, 0xed, 0x05, 0x54, 0x09, 0x05, 0x8a, 0x47, 0x86, 0x02, 0x34, 0xb4, 0x09, 0xd7, 0x1f, - 0x7b, 0x3b, 0xca, 0xc5, 0x43, 0x9b, 0xb0, 0x2e, 0x8e, 0xc8, 0xb0, 0x83, 0xfa, 0x6d, 0x2b, 0x7a, - 0xdb, 0x3b, 0x3a, 0xa8, 0x5f, 0x5f, 0xb9, 0x8d, 0x57, 0xb1, 0x80, 0xc6, 0x53, 0xc1, 0xe5, 0x5c, - 0x52, 0xc1, 0xd9, 0x3a, 0x77, 0x5a, 0x89, 0x30, 0x13, 0x66, 0x52, 0x7d, 0x7e, 0xec, 0x54, 0xd8, - 0x65, 0x28, 0xfa, 0x9d, 0x6d, 0x8a, 0x97, 0xb8, 0x41, 0x49, 0x67, 0xa5, 0x58, 0x40, 0xe7, 0xbf, - 0x5d, 0xa0, 0x5c, 0x12, 0x97, 0x6c, 0x9e, 0x91, 0x55, 0xbd, 0x0c, 0x13, 0x3c, 0x19, 0xf5, 0xba, - 0x72, 0xfd, 0x46, 0x49, 0x59, 0x60, 0x50, 0x81, 0x38, 0x8e, 0x8b, 0x56, 0x98, 0x9a, 0xf4, 0x3c, - 0x2d, 0x04, 0xa1, 0x49, 0x74, 0xe0, 0x16, 0x04, 0xd0, 0x0b, 0x30, 0xc6, 0x3e, 0x82, 0x37, 0xb9, - 0xc8, 0xca, 0xb2, 0x83, 0xb6, 0xd7, 0xa2, 0x62, 0xac, 0xe2, 0xc4, 0xb7, 0x16, 0x8c, 0xe4, 0xb2, - 0xb5, 0x20, 0xd5, 0x2b, 0xa7, 0xa5, 0x77, 0xdf, 0x2c, 0x81, 0x7c, 0x08, 0x11, 0x99, 0xa9, 0xe7, - 0x28, 0x3f, 0xdd, 0xf3, 0xe2, 0x4d, 0x28, 0x0a, 0xcf, 0x64, 0x65, 0x0c, 0x49, 0xaf, 0x02, 0x12, - 0xef, 0x1f, 0x8a, 0xa0, 0x5a, 0xb9, 0x4e, 0x49, 0xae, 0x52, 0xe9, 0x29, 0x0c, 0x9c, 0x51, 0x0b, - 0xbd, 0xca, 0x1e, 0x5f, 0x0d, 0x0c, 0xcb, 0x91, 0x9e, 0xf7, 0xe9, 0x2e, 0xe7, 0x2f, 0x39, 0x92, - 0x7c, 0x46, 0x95, 0xff, 0xc4, 0x51, 0x75, 0x74, 0x0d, 0x46, 0xf7, 0x5d, 0xbb, 0xd3, 0x12, 0xa9, - 0xf9, 0xb1, 0xab, 0xb3, 0x59, 0x94, 0x5e, 0x63, 0x28, 0xca, 0x79, 0x21, 0x5e, 0x05, 0x87, 0x75, - 0x11, 0x81, 0x29, 0xb6, 0xbd, 0xc7, 0x0a, 0x0e, 0x84, 0x01, 0x88, 0xa1, 0xf7, 0x72, 0x16, 0xb9, - 0xba, 0xdb, 0xd0, 0xe3, 0xd8, 0x7c, 0xa7, 0x47, 0xa2, 0x10, 0x27, 0x69, 0xa2, 0x65, 0x28, 0x19, - 0xdb, 0xdb, 0x96, 0x63, 0x05, 0x07, 0x22, 0x67, 0xf7, 0x54, 0x16, 0xfd, 0xaa, 0xc0, 0x11, 0xf7, - 0xb4, 0x88, 0x5f, 0x58, 0xd6, 0x45, 0xb7, 0x61, 0x2c, 0x70, 0x6d, 0x11, 0x97, 0xfa, 0x22, 0xd5, - 0x70, 0x31, 0x8b, 0xd4, 0xa6, 0x44, 0x8b, 0x96, 0x47, 0xa3, 0x32, 0x1f, 0xab, 0x74, 0xd0, 0xef, - 0x68, 0x30, 0xee, 0xb8, 0x0d, 0x12, 0x9a, 0x9e, 0x58, 0xae, 0x7b, 0x33, 0xa7, 0x07, 0x3c, 0x17, - 0xd6, 0x15, 0xda, 0xdc, 0x42, 0xe4, 0xfd, 0x1d, 0x2a, 0x08, 0xc7, 0x84, 0x40, 0x0e, 0x4c, 0x5b, - 0x2d, 0xa3, 0x49, 0xea, 0x1d, 0x5b, 0x6c, 0x4f, 0xf4, 0xc5, 0xe0, 0x91, 0x79, 0x6a, 0x77, 0xd5, - 0x35, 0x0d, 0x9b, 0x3f, 0x80, 0x8b, 0xc9, 0x36, 0xf1, 0xd8, 0x3b, 0xbc, 0x72, 0xa7, 0xc9, 0x4a, - 0x82, 0x12, 0x4e, 0xd1, 0x46, 0xd7, 0x61, 0xa6, 0xed, 0x59, 0x2e, 0xeb, 0x37, 0xdb, 0xf0, 0xf9, - 0x03, 0xa8, 0x10, 0x3f, 0xaa, 0x59, 0x4f, 0x22, 0xe0, 0x74, 0x1d, 0x7e, 0xbd, 0x00, 0x2f, 0x64, - 0x73, 0xb9, 0x91, 0xf0, 0x7a, 0x01, 0x5e, 0x86, 0x25, 0x74, 0xf6, 0xb3, 0x30, 0x93, 0x6a, 0x9b, - 0x9e, 0x1c, 0xc2, 0x1f, 0x68, 0x90, 0xcc, 0x97, 0xd3, 0x79, 0x43, 0xc3, 0xf2, 0x18, 0xc1, 0x83, - 0x64, 0x8e, 0x7f, 0x29, 0x04, 0xe0, 0x08, 0x07, 0x5d, 0x82, 0x42, 0xdb, 0x08, 0x76, 0x92, 0xdb, - 0xfc, 0x28, 0x49, 0xcc, 0x20, 0xe8, 0x2a, 0x00, 0xfd, 0x8b, 0x49, 0x93, 0xdc, 0x6d, 0x8b, 0x69, - 0x90, 0x5c, 0x7e, 0xa8, 0x4b, 0x08, 0x56, 0xb0, 0xe6, 0xff, 0x79, 0x04, 0x26, 0xe3, 0x63, 0x4b, - 0x6c, 0xb2, 0xa9, 0x3d, 0x70, 0xb2, 0x79, 0x19, 0x8a, 0x2d, 0x12, 0xec, 0xb8, 0x8d, 0xe4, 0x38, - 0xb9, 0xc6, 0x4a, 0xb1, 0x80, 0x32, 0xf1, 0x5d, 0x2f, 0x10, 0x62, 0x45, 0xe2, 0xbb, 0x5e, 0x80, - 0x19, 0x24, 0xdc, 0xa5, 0x58, 0xe8, 0xb2, 0x4b, 0xb1, 0x09, 0xd3, 0xfc, 0x82, 0xdf, 0x45, 0xe2, - 0x05, 0x27, 0xde, 0x5d, 0xab, 0x27, 0x48, 0xe0, 0x14, 0x51, 0xd4, 0xa0, 0xde, 0x86, 0x96, 0x45, - 0x2b, 0x03, 0xbd, 0x1f, 0xdd, 0xd7, 0xe3, 0x14, 0x70, 0x92, 0xe4, 0x20, 0xb2, 0x91, 0xf1, 0x7e, - 0x3c, 0xf1, 0xcd, 0x88, 0xa5, 0xbc, 0x6e, 0x46, 0x7c, 0x09, 0x26, 0x5b, 0xc6, 0xdd, 0xba, 0x71, - 0x60, 0xbb, 0x46, 0x43, 0xb7, 0xee, 0x11, 0x71, 0xba, 0x14, 0x1d, 0xde, 0x9f, 0x9b, 0x5c, 0x8b, - 0x41, 0x70, 0x02, 0xb3, 0xbf, 0x01, 0xf8, 0x0f, 0x87, 0x00, 0xa5, 0x1f, 0x2e, 0x41, 0x1f, 0x6a, - 0x30, 0x79, 0x27, 0xd6, 0x46, 0x83, 0x09, 0xce, 0x64, 0xda, 0x2b, 0x5e, 0x8e, 0x13, 0xcc, 0x95, - 0x09, 0xce, 0xd0, 0xe9, 0x4d, 0x24, 0x6b, 0x0b, 0x3f, 0xfc, 0xf9, 0xc5, 0xc7, 0x7e, 0xf4, 0xf3, - 0x8b, 0x8f, 0xfd, 0xf8, 0xe7, 0x17, 0x1f, 0xfb, 0xca, 0xe1, 0x45, 0xed, 0x87, 0x87, 0x17, 0xb5, - 0x1f, 0x1d, 0x5e, 0xd4, 0x7e, 0x7c, 0x78, 0x51, 0xfb, 0xd9, 0xe1, 0x45, 0xed, 0xdb, 0xff, 0x76, - 0xf1, 0xb1, 0xcf, 0x95, 0x42, 0xaa, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0xda, 0x40, 0x35, 0x64, - 0xb2, 0xa4, 0x00, 0x00, + // 7308 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0xc7, + 0x71, 0xb0, 0x96, 0xbb, 0x5c, 0xee, 0xd6, 0xf2, 0xb7, 0xef, 0x74, 0x5a, 0xd1, 0xba, 0x9f, 0x8f, + 0x82, 0x0f, 0xd2, 0xf7, 0xc9, 0xe4, 0xa7, 0x4b, 0x1c, 0xcb, 0x52, 0x2c, 0x63, 0x97, 0x3c, 0xde, + 0x51, 0x47, 0xf2, 0x96, 0x3d, 0x3c, 0xe9, 0x64, 0x59, 0x92, 0x87, 0xb3, 0xcd, 0xe5, 0x98, 0xb3, + 0x33, 0xcb, 0x99, 0xd9, 0xbb, 0xe3, 0x01, 0xb1, 0x0d, 0x03, 0x4e, 0x6c, 0xfd, 0xd8, 0x56, 0x12, + 0x27, 0x41, 0x02, 0x03, 0x71, 0x12, 0x38, 0x0f, 0x09, 0xf2, 0x16, 0x23, 0xaf, 0x41, 0xf2, 0x60, + 0x24, 0x79, 0x70, 0xf2, 0xe4, 0xd8, 0xc0, 0xc1, 0x66, 0x90, 0xb7, 0xbc, 0x04, 0x7e, 0x4a, 0x9e, + 0x82, 0xfe, 0x99, 0x9e, 0x9e, 0x9f, 0xe5, 0x71, 0xb9, 0xb3, 0xe4, 0x9d, 0x91, 0x27, 0x72, 0xbb, + 0xaa, 0xab, 0x6a, 0x7a, 0xaa, 0xaa, 0xab, 0xab, 0xbb, 0x6b, 0x60, 0xad, 0x65, 0xfa, 0x3b, 0xdd, + 0xad, 0x79, 0xc3, 0x69, 0x2f, 0xe8, 0x6e, 0xcb, 0xe9, 0xb8, 0xce, 0x17, 0xd9, 0x3f, 0x9f, 0x20, + 0x77, 0x88, 0xed, 0x7b, 0x0b, 0x9d, 0xdd, 0xd6, 0x82, 0xde, 0x31, 0xbd, 0x05, 0xfe, 0xdb, 0xe9, + 0xba, 0x06, 0x59, 0xb8, 0xf3, 0xa2, 0x6e, 0x75, 0x76, 0xf4, 0x17, 0x17, 0x5a, 0xc4, 0x26, 0xae, + 0xee, 0x93, 0xe6, 0x7c, 0xc7, 0x75, 0x7c, 0x07, 0x7d, 0x26, 0x24, 0x37, 0x1f, 0x90, 0x63, 0xff, + 0xbc, 0xcb, 0xbb, 0xcf, 0x77, 0x76, 0x5b, 0xf3, 0x94, 0xdc, 0xbc, 0x42, 0x6e, 0x3e, 0x20, 0x37, + 0xfb, 0xd9, 0x23, 0x4b, 0x63, 0x38, 0xed, 0xb6, 0x63, 0xc7, 0xf9, 0xcf, 0x7e, 0x42, 0x21, 0xd0, + 0x72, 0x5a, 0xce, 0x02, 0x6b, 0xde, 0xea, 0x6e, 0xb3, 0x5f, 0xec, 0x07, 0xfb, 0x4f, 0xa0, 0xcf, + 0xed, 0xbe, 0xe4, 0xcd, 0x9b, 0x0e, 0x25, 0xb9, 0x60, 0x38, 0x2e, 0x7d, 0xb0, 0x04, 0xc9, 0x5f, + 0x0d, 0x71, 0xda, 0xba, 0xb1, 0x63, 0xda, 0xc4, 0xdd, 0x0f, 0xe5, 0x68, 0x13, 0x5f, 0x4f, 0xeb, + 0xb5, 0xd0, 0xab, 0x97, 0xdb, 0xb5, 0x7d, 0xb3, 0x4d, 0x12, 0x1d, 0x7e, 0xed, 0x61, 0x1d, 0x3c, + 0x63, 0x87, 0xb4, 0xf5, 0x78, 0xbf, 0xb9, 0xff, 0xca, 0xc1, 0x4c, 0x6d, 0x6d, 0xa3, 0xb1, 0xe8, + 0xd8, 0x5e, 0xb7, 0x4d, 0x16, 0x1d, 0x7b, 0xdb, 0x6c, 0xa1, 0x4f, 0x42, 0xc5, 0xe0, 0x0d, 0xee, + 0xa6, 0xde, 0xaa, 0xe6, 0x2e, 0xe5, 0x9e, 0x2b, 0xd7, 0xcf, 0xfc, 0xf0, 0xc1, 0xc5, 0x27, 0x0e, + 0x1e, 0x5c, 0xac, 0x2c, 0x86, 0x20, 0xac, 0xe2, 0xa1, 0xe7, 0x61, 0x4c, 0xef, 0xfa, 0x4e, 0xcd, + 0xd8, 0xad, 0x8e, 0x5c, 0xca, 0x3d, 0x57, 0xaa, 0x4f, 0x89, 0x2e, 0x63, 0x35, 0xde, 0x8c, 0x03, + 0x38, 0x5a, 0x80, 0x32, 0xb9, 0x67, 0x58, 0x5d, 0xcf, 0xbc, 0x43, 0xaa, 0x79, 0x86, 0x3c, 0x23, + 0x90, 0xcb, 0x57, 0x03, 0x00, 0x0e, 0x71, 0x28, 0x6d, 0xdb, 0x59, 0x75, 0x0c, 0xdd, 0xaa, 0x16, + 0xa2, 0xb4, 0xd7, 0x79, 0x33, 0x0e, 0xe0, 0xe8, 0x32, 0x14, 0x6d, 0xe7, 0x0d, 0xdd, 0xf4, 0xab, + 0xa3, 0x0c, 0x73, 0x52, 0x60, 0x16, 0xd7, 0x59, 0x2b, 0x16, 0xd0, 0xb9, 0xff, 0xa8, 0xc0, 0x14, + 0x7d, 0xf6, 0xab, 0x54, 0x39, 0x34, 0xa6, 0x4b, 0xe8, 0x3c, 0xe4, 0xbb, 0xae, 0x25, 0x9e, 0xb8, + 0x22, 0x3a, 0xe6, 0x6f, 0xe1, 0x55, 0x4c, 0xdb, 0xd1, 0x4b, 0x30, 0x4e, 0xee, 0x19, 0x3b, 0xba, + 0xdd, 0x22, 0xeb, 0x7a, 0x9b, 0xb0, 0xc7, 0x2c, 0xd7, 0xcf, 0x0a, 0xbc, 0xf1, 0xab, 0x0a, 0x0c, + 0x47, 0x30, 0xd5, 0x9e, 0x9b, 0xfb, 0x1d, 0xfe, 0xcc, 0x29, 0x3d, 0x29, 0x0c, 0x47, 0x30, 0xd1, + 0x15, 0x00, 0xd7, 0xe9, 0xfa, 0xa6, 0xdd, 0xba, 0x41, 0xf6, 0xd9, 0xc3, 0x97, 0xeb, 0x48, 0xf4, + 0x03, 0x2c, 0x21, 0x58, 0xc1, 0x42, 0xbf, 0x01, 0x33, 0x86, 0x63, 0xdb, 0xc4, 0xf0, 0x4d, 0xc7, + 0xae, 0xeb, 0xc6, 0xae, 0xb3, 0xbd, 0xcd, 0x46, 0xa3, 0x72, 0xe5, 0xa5, 0xf9, 0x23, 0x1b, 0x19, + 0xb7, 0x92, 0x79, 0xd1, 0xbf, 0xfe, 0xe4, 0xc1, 0x83, 0x8b, 0x33, 0x8b, 0x71, 0xb2, 0x38, 0xc9, + 0x09, 0xbd, 0x00, 0xa5, 0x2f, 0x7a, 0x8e, 0x5d, 0x77, 0x9a, 0xfb, 0xd5, 0x22, 0x7b, 0x07, 0xd3, + 0x42, 0xe0, 0xd2, 0x6b, 0xda, 0xcd, 0x75, 0xda, 0x8e, 0x25, 0x06, 0xba, 0x05, 0x79, 0xdf, 0xf2, + 0xaa, 0x63, 0x4c, 0xbc, 0x97, 0xfb, 0x16, 0x6f, 0x73, 0x55, 0xe3, 0x6a, 0x5b, 0x1f, 0xa3, 0xef, + 0x6a, 0x73, 0x55, 0xc3, 0x94, 0x1e, 0x7a, 0x2f, 0x07, 0x25, 0x6a, 0x5f, 0x4d, 0xdd, 0xd7, 0xab, + 0xa5, 0x4b, 0xf9, 0xe7, 0x2a, 0x57, 0x3e, 0x3f, 0x3f, 0x90, 0x83, 0x99, 0x8f, 0x69, 0xcb, 0xfc, + 0x9a, 0x20, 0x7f, 0xd5, 0xf6, 0xdd, 0xfd, 0xf0, 0x19, 0x83, 0x66, 0x2c, 0xf9, 0xa3, 0xdf, 0xcf, + 0xc1, 0x54, 0xf0, 0x56, 0x97, 0x88, 0x61, 0xe9, 0x2e, 0xa9, 0x96, 0xd9, 0x03, 0xdf, 0xce, 0x42, + 0xa6, 0x28, 0x65, 0x31, 0x1c, 0x67, 0x0e, 0x1e, 0x5c, 0x9c, 0x8a, 0x81, 0x70, 0x5c, 0x0a, 0xf4, + 0x7e, 0x0e, 0xc6, 0xf7, 0xba, 0xa4, 0x2b, 0xc5, 0x02, 0x26, 0xd6, 0xad, 0x0c, 0xc4, 0xda, 0x50, + 0xc8, 0x0a, 0x99, 0xa6, 0xa9, 0xb2, 0xab, 0xed, 0x38, 0xc2, 0x1c, 0x7d, 0x19, 0xca, 0xec, 0x77, + 0xdd, 0xb4, 0x9b, 0xd5, 0x0a, 0x93, 0x04, 0x67, 0x25, 0x09, 0xa5, 0x29, 0xc4, 0x98, 0xa0, 0x7e, + 0x46, 0x36, 0xe2, 0x90, 0x27, 0xba, 0x0b, 0x63, 0xc2, 0xa5, 0x55, 0xc7, 0x19, 0xfb, 0x46, 0x06, + 0xec, 0x23, 0xde, 0xb5, 0x5e, 0xa1, 0x5e, 0x4b, 0x34, 0xe1, 0x80, 0x1b, 0xba, 0x0d, 0x05, 0xbd, + 0xeb, 0xef, 0x54, 0x27, 0x8e, 0x69, 0x06, 0x75, 0xdd, 0x33, 0x8d, 0x5a, 0xd7, 0xdf, 0xa9, 0x97, + 0x0e, 0x1e, 0x5c, 0x2c, 0xd0, 0xff, 0x30, 0xa3, 0x88, 0x30, 0x94, 0xbb, 0xae, 0xa5, 0x11, 0xc3, + 0x25, 0x7e, 0x75, 0x92, 0x91, 0xff, 0xf8, 0x3c, 0x9f, 0x2f, 0x28, 0x85, 0x79, 0x3a, 0x75, 0xcd, + 0xdf, 0x79, 0x71, 0x9e, 0x63, 0xdc, 0x20, 0xfb, 0x1a, 0xb1, 0x88, 0xe1, 0x3b, 0x2e, 0x1f, 0xa6, + 0x5b, 0x78, 0x95, 0x43, 0x70, 0x48, 0x06, 0xf9, 0x50, 0xdc, 0x36, 0x2d, 0x9f, 0xb8, 0xd5, 0xa9, + 0x4c, 0x46, 0x49, 0xb1, 0xaa, 0x65, 0x46, 0xb7, 0x0e, 0xd4, 0x63, 0xf3, 0xff, 0xb1, 0xe0, 0x35, + 0xfb, 0x0a, 0x4c, 0x44, 0x4c, 0x0e, 0x4d, 0x43, 0x7e, 0x97, 0xec, 0x73, 0x77, 0x8d, 0xe9, 0xbf, + 0xe8, 0x2c, 0x8c, 0xde, 0xd1, 0xad, 0xae, 0x70, 0xcd, 0x98, 0xff, 0x78, 0x79, 0xe4, 0xa5, 0xdc, + 0xdc, 0x8f, 0x72, 0xf0, 0x74, 0x4f, 0x63, 0xa1, 0xf3, 0x4b, 0xb3, 0xeb, 0xea, 0x5b, 0x16, 0x61, + 0xd4, 0x94, 0xf9, 0x65, 0x89, 0x37, 0xe3, 0x00, 0x4e, 0x1d, 0x32, 0x9d, 0xc6, 0x96, 0x88, 0x45, + 0x7c, 0x22, 0x66, 0x3a, 0xe9, 0x90, 0x6b, 0x12, 0x82, 0x15, 0x2c, 0xea, 0x11, 0x4d, 0xdb, 0x27, + 0xae, 0xad, 0x5b, 0x62, 0xba, 0x93, 0xde, 0x62, 0x45, 0xb4, 0x63, 0x89, 0xa1, 0xcc, 0x60, 0x85, + 0x43, 0x67, 0xb0, 0xcf, 0xc0, 0x99, 0x14, 0xed, 0x56, 0xba, 0xe7, 0x0e, 0xed, 0xfe, 0xa7, 0x23, + 0x70, 0x2e, 0xdd, 0x4e, 0xd1, 0x25, 0x28, 0xd8, 0x74, 0x82, 0xe3, 0x13, 0xe1, 0xb8, 0x20, 0x50, + 0x60, 0x13, 0x1b, 0x83, 0xa8, 0x03, 0x36, 0xd2, 0xd7, 0x80, 0xe5, 0x8f, 0x34, 0x60, 0x91, 0x00, + 0xa1, 0x70, 0x84, 0x00, 0xe1, 0x88, 0xb3, 0x3e, 0x25, 0xac, 0xbb, 0xad, 0x6e, 0x9b, 0x2a, 0x21, + 0x9b, 0x9c, 0xca, 0x21, 0xe1, 0x5a, 0x00, 0xc0, 0x21, 0xce, 0xdc, 0x7b, 0xa3, 0xf0, 0x74, 0xed, + 0x7e, 0xd7, 0x25, 0x4c, 0x47, 0xbd, 0xeb, 0xdd, 0x2d, 0x35, 0x60, 0xb8, 0x04, 0x85, 0xed, 0xbd, + 0xa6, 0x1d, 0x1f, 0xa8, 0xe5, 0x8d, 0xa5, 0x75, 0xcc, 0x20, 0xa8, 0x03, 0x67, 0xbc, 0x1d, 0xdd, + 0x25, 0xcd, 0x9a, 0x61, 0x10, 0xcf, 0xbb, 0x41, 0xf6, 0x65, 0xe8, 0x70, 0x64, 0x43, 0x7c, 0xea, + 0xe0, 0xc1, 0xc5, 0x33, 0x5a, 0x92, 0x0a, 0x4e, 0x23, 0x8d, 0x9a, 0x30, 0x15, 0x6b, 0x66, 0x83, + 0x7e, 0x64, 0x6e, 0x6c, 0xe2, 0x88, 0x71, 0xc3, 0x71, 0x92, 0x54, 0x01, 0x76, 0xba, 0x5b, 0xec, + 0x59, 0x78, 0x50, 0x22, 0x15, 0xe0, 0x3a, 0x6f, 0xc6, 0x01, 0x1c, 0xfd, 0xae, 0x3a, 0x15, 0x8f, + 0xb2, 0xa9, 0x78, 0x7b, 0x50, 0xb7, 0xda, 0xeb, 0x8d, 0xf4, 0x31, 0x29, 0x87, 0x4e, 0xac, 0xf8, + 0xb8, 0x38, 0xb1, 0x3f, 0x2e, 0xc2, 0x33, 0xec, 0xd1, 0x99, 0xcd, 0x6a, 0xbe, 0xe3, 0xea, 0x2d, + 0xa2, 0xea, 0xe3, 0x6b, 0x80, 0x3c, 0xde, 0x5a, 0x33, 0x0c, 0xa7, 0x6b, 0xfb, 0xeb, 0xa1, 0x19, + 0xcf, 0x8a, 0xb1, 0x40, 0x5a, 0x02, 0x03, 0xa7, 0xf4, 0x42, 0x2d, 0x98, 0x0e, 0x63, 0x3b, 0xcd, + 0x77, 0x4d, 0xbb, 0xd5, 0x9f, 0xda, 0x9e, 0x3d, 0x78, 0x70, 0x71, 0x7a, 0x31, 0x46, 0x02, 0x27, + 0x88, 0x52, 0x9b, 0x64, 0x33, 0x30, 0x93, 0x35, 0x1f, 0xb5, 0xc9, 0x8d, 0x00, 0x80, 0x43, 0x9c, + 0x48, 0x80, 0x59, 0x78, 0x68, 0x80, 0x79, 0x1e, 0xf2, 0x4d, 0x6b, 0x4f, 0xf8, 0x05, 0x19, 0xd4, + 0x2f, 0xad, 0x6e, 0x60, 0xda, 0x4e, 0x63, 0xb3, 0x50, 0x3b, 0x8b, 0x4c, 0x3b, 0xcd, 0x2c, 0xb4, + 0xb3, 0xc7, 0x2b, 0x3a, 0x96, 0x82, 0x8e, 0x9d, 0x9c, 0x82, 0xa2, 0x57, 0x60, 0xa2, 0x49, 0x0c, + 0xa7, 0x49, 0xd6, 0x88, 0xe7, 0xe9, 0x2d, 0x52, 0x2d, 0xb1, 0x81, 0x7b, 0x52, 0x08, 0x3a, 0xb1, + 0xa4, 0x02, 0x71, 0x14, 0x17, 0x2d, 0xc2, 0xcc, 0x5d, 0xdd, 0xf4, 0x37, 0xcd, 0x36, 0x59, 0xb1, + 0x35, 0x62, 0x38, 0x76, 0xd3, 0x63, 0x91, 0xee, 0x28, 0x5f, 0x3f, 0xbc, 0x11, 0x07, 0xe2, 0x24, + 0xfe, 0x60, 0x26, 0xf2, 0xe3, 0x22, 0xcc, 0xb2, 0xf1, 0xd7, 0x88, 0x7b, 0xc7, 0x34, 0x48, 0xbd, + 0xeb, 0xa9, 0x06, 0x92, 0xa6, 0xd4, 0xb9, 0xa1, 0x2b, 0xf5, 0xc8, 0x11, 0x94, 0x7a, 0x01, 0xca, + 0xbe, 0xd3, 0x31, 0x8d, 0x34, 0x2b, 0xd8, 0x0c, 0x00, 0x38, 0xc4, 0x41, 0x4b, 0x30, 0xed, 0x75, + 0xb7, 0x3c, 0xc3, 0x35, 0x3b, 0x94, 0xaf, 0xe2, 0x8a, 0xab, 0xa2, 0xdf, 0xb4, 0x16, 0x83, 0xe3, + 0x44, 0x8f, 0x60, 0xf9, 0x35, 0x9a, 0xf1, 0xf2, 0xab, 0xbf, 0x35, 0xe0, 0x77, 0x54, 0x1b, 0x1c, + 0x63, 0x36, 0xd8, 0xca, 0xc2, 0x06, 0x53, 0x75, 0xe0, 0x58, 0x16, 0x58, 0x3a, 0x41, 0x0b, 0x7c, + 0x13, 0x9e, 0xda, 0xee, 0x5a, 0xd6, 0xfe, 0x46, 0x57, 0xb7, 0xcc, 0x6d, 0x93, 0x34, 0xe9, 0x8b, + 0xf2, 0x3a, 0xba, 0xc1, 0x17, 0x8d, 0xe5, 0xfa, 0x45, 0x21, 0xf2, 0x53, 0xcb, 0xe9, 0x68, 0xb8, + 0x57, 0xff, 0xc1, 0x4c, 0xeb, 0x27, 0x39, 0x98, 0xa8, 0x9b, 0xfe, 0x56, 0xd7, 0xd8, 0x25, 0x3e, + 0x5d, 0x61, 0x20, 0x17, 0x46, 0xb7, 0xe8, 0xc2, 0x43, 0x98, 0xd0, 0xc6, 0x80, 0xc3, 0x23, 0x89, + 0x87, 0xab, 0x99, 0xf2, 0xc1, 0x83, 0x8b, 0xa3, 0xec, 0x27, 0xe6, 0xac, 0xd0, 0x2d, 0x00, 0x87, + 0x2e, 0x6c, 0x36, 0x9d, 0x5d, 0x62, 0xf7, 0x37, 0x21, 0x4d, 0xd2, 0x88, 0xf3, 0x66, 0x2d, 0xe8, + 0x8c, 0x15, 0x42, 0x73, 0x3f, 0xc8, 0x01, 0x4a, 0xf2, 0x47, 0x37, 0xa1, 0xd4, 0xf5, 0x68, 0x58, + 0x2e, 0xa6, 0xd1, 0x23, 0xf3, 0x1a, 0xa7, 0x2a, 0x75, 0x4b, 0x74, 0xc5, 0x92, 0x08, 0x25, 0xd8, + 0xd1, 0x3d, 0xef, 0xae, 0xe3, 0x36, 0xfb, 0x13, 0x9e, 0x11, 0x6c, 0x88, 0xae, 0x58, 0x12, 0x99, + 0xfb, 0xc5, 0x18, 0x9c, 0x95, 0x82, 0xc7, 0x62, 0x81, 0x26, 0x8b, 0xa6, 0xaf, 0x3b, 0xce, 0xee, + 0x4d, 0x7b, 0xd9, 0xb4, 0x4d, 0x6f, 0x47, 0xac, 0x09, 0x64, 0x2c, 0xb0, 0x94, 0xc0, 0xc0, 0x29, + 0xbd, 0xd0, 0xb7, 0x54, 0x03, 0x1d, 0x61, 0x06, 0xaa, 0x67, 0xf5, 0xb2, 0x8f, 0x6b, 0x9a, 0x63, + 0x77, 0xc9, 0xd6, 0x8e, 0xe3, 0xec, 0x8a, 0xe8, 0x76, 0x6d, 0x40, 0x79, 0xde, 0xe0, 0xd4, 0x16, + 0x1d, 0xdb, 0x27, 0xf7, 0x7c, 0xbe, 0x4c, 0x17, 0x6d, 0x38, 0x60, 0x85, 0xbe, 0x28, 0x96, 0xe9, + 0x05, 0xc6, 0x72, 0x35, 0xab, 0x21, 0x48, 0x5d, 0xb8, 0xcf, 0x41, 0x91, 0xf7, 0x62, 0x31, 0x73, + 0x99, 0xbb, 0x0a, 0x1e, 0xf3, 0x62, 0x01, 0x41, 0x9f, 0x80, 0x51, 0xe7, 0xae, 0x2d, 0x42, 0xd8, + 0x72, 0xfd, 0x29, 0x31, 0x60, 0x53, 0x4b, 0xa4, 0xe3, 0x12, 0x43, 0xf7, 0x49, 0xf3, 0x26, 0x05, + 0x63, 0x8e, 0x85, 0x7e, 0x1d, 0x80, 0x8a, 0x48, 0x0c, 0xaa, 0x59, 0x2c, 0xaa, 0x28, 0xd7, 0x9f, + 0x11, 0x7d, 0xce, 0x86, 0x7d, 0x1a, 0x12, 0x07, 0x2b, 0xf8, 0xe8, 0x3a, 0x4c, 0xba, 0xa4, 0xe3, + 0x78, 0xa6, 0xef, 0xb8, 0xfb, 0x9a, 0xd5, 0x6d, 0x31, 0xaf, 0x58, 0xae, 0x5f, 0x12, 0x14, 0xaa, + 0x21, 0x05, 0x1c, 0xc1, 0xc3, 0xb1, 0x7e, 0xe8, 0x83, 0x1c, 0x8c, 0xcb, 0x26, 0x93, 0xd0, 0x10, + 0x21, 0x9f, 0x41, 0xae, 0x47, 0x8e, 0x67, 0xc8, 0x3e, 0xcc, 0xb1, 0x62, 0x85, 0x1f, 0x8e, 0x70, + 0x57, 0xdc, 0x3c, 0x3c, 0x2e, 0x2b, 0x81, 0xfb, 0x70, 0x26, 0xe5, 0x69, 0xd1, 0xb3, 0x81, 0x3e, + 0xf0, 0x90, 0x7f, 0x42, 0x3c, 0xfc, 0x68, 0x44, 0x0b, 0x5e, 0x4d, 0xbc, 0x47, 0x1e, 0x9f, 0x9c, + 0x13, 0xd8, 0x93, 0x87, 0xbf, 0xbd, 0xb9, 0x3f, 0xaf, 0xc0, 0xac, 0x64, 0x4e, 0xa7, 0x58, 0xe2, + 0xaa, 0x7e, 0x47, 0xb1, 0xcc, 0xdc, 0xc9, 0x59, 0x66, 0x54, 0xb5, 0x47, 0x06, 0x56, 0xed, 0xfc, + 0x31, 0x55, 0xfb, 0x39, 0x28, 0x09, 0xba, 0x5e, 0xb5, 0xc0, 0xec, 0x96, 0x3b, 0x6e, 0xd1, 0x86, + 0x25, 0x14, 0xfd, 0x76, 0xdc, 0x08, 0xf8, 0xd2, 0xf8, 0x76, 0x56, 0x46, 0xc0, 0xdf, 0x4c, 0x9f, + 0xa6, 0x10, 0x3a, 0x9d, 0x62, 0x4f, 0xa7, 0xb3, 0x0b, 0xe7, 0xbd, 0x5d, 0xb3, 0x53, 0x77, 0x75, + 0xdb, 0xd8, 0xc1, 0x64, 0xdb, 0x5b, 0x64, 0x19, 0xb5, 0xe6, 0x4d, 0xfb, 0x66, 0x87, 0xd8, 0x0d, + 0xcc, 0x1c, 0x4b, 0xa9, 0xfe, 0x71, 0xc1, 0xee, 0xbc, 0x76, 0x18, 0x32, 0x3e, 0x9c, 0x16, 0xba, + 0x0d, 0x15, 0x9d, 0x25, 0x1d, 0xf8, 0x7c, 0x5f, 0xea, 0x67, 0xca, 0x9c, 0x3a, 0x78, 0x70, 0xb1, + 0x52, 0x0b, 0x7b, 0x63, 0x95, 0x14, 0x7a, 0x07, 0x26, 0x84, 0xf2, 0x88, 0xe4, 0x68, 0xb9, 0x1f, + 0xda, 0x33, 0x74, 0x2d, 0xf4, 0x86, 0xda, 0x1f, 0x47, 0xc9, 0xa1, 0xd7, 0xe1, 0xdc, 0x56, 0xf0, + 0x2e, 0x3c, 0xf6, 0x2e, 0xea, 0xba, 0x47, 0x6e, 0xe1, 0x55, 0xe6, 0x65, 0xca, 0xf5, 0x0b, 0x62, + 0x7c, 0xce, 0xc5, 0xde, 0x98, 0xc0, 0xc2, 0x3d, 0x7a, 0xf7, 0x98, 0xd7, 0x2b, 0xc7, 0x9a, 0xd7, + 0x23, 0x81, 0xf7, 0x78, 0x26, 0x81, 0x77, 0x6f, 0xcf, 0x70, 0xac, 0xc0, 0x7b, 0xe2, 0x04, 0x03, + 0x6f, 0xb1, 0x16, 0x9a, 0xcc, 0x78, 0x2d, 0xf4, 0x0a, 0x4c, 0x18, 0x3b, 0xc4, 0xd8, 0x65, 0xa9, + 0xde, 0x3b, 0xba, 0xc5, 0x92, 0xe6, 0xe5, 0x70, 0x45, 0xbd, 0xa8, 0x02, 0x71, 0x14, 0x77, 0xb0, + 0x59, 0xe2, 0x5b, 0x39, 0x78, 0xba, 0xa7, 0x3f, 0x40, 0x57, 0x22, 0x2e, 0x33, 0x17, 0xdd, 0x5a, + 0xec, 0xe1, 0x28, 0x07, 0x9d, 0x3b, 0xfe, 0x6c, 0x14, 0xce, 0x2c, 0xea, 0x16, 0xb1, 0x9b, 0x7a, + 0x64, 0xd2, 0x78, 0x01, 0x4a, 0x9e, 0xb1, 0x43, 0x9a, 0x5d, 0x2b, 0x48, 0x57, 0x49, 0xf5, 0xd0, + 0x44, 0x3b, 0x96, 0x18, 0x32, 0x9f, 0x4e, 0x07, 0x73, 0x24, 0x8a, 0x2d, 0xc7, 0x51, 0x62, 0xa0, + 0x97, 0x61, 0x52, 0x24, 0x8a, 0x1d, 0x7b, 0x49, 0xf7, 0x89, 0x57, 0xcd, 0x33, 0xdf, 0x86, 0xa8, + 0xbc, 0x57, 0x23, 0x10, 0x1c, 0xc3, 0xa4, 0x9c, 0x7c, 0xb3, 0x4d, 0xee, 0x3b, 0x76, 0xb0, 0xb8, + 0x96, 0x9c, 0x36, 0x45, 0x3b, 0x96, 0x18, 0xe8, 0x9b, 0xc9, 0x4c, 0xe7, 0x17, 0x06, 0xd4, 0xdc, + 0x94, 0xc1, 0xea, 0xc3, 0x8e, 0xbe, 0x9a, 0x83, 0x4a, 0x87, 0xb8, 0x9e, 0xe9, 0xf9, 0xc4, 0x36, + 0x88, 0xc8, 0x74, 0xde, 0xcc, 0xc2, 0x9a, 0x1a, 0x21, 0x59, 0xee, 0x68, 0x95, 0x06, 0xac, 0x32, + 0x3d, 0x9d, 0x55, 0xf4, 0x60, 0x86, 0x73, 0x0f, 0xce, 0x2e, 0xea, 0xbe, 0xb1, 0xd3, 0xed, 0x70, + 0x8b, 0xee, 0xba, 0xba, 0x6f, 0x3a, 0x36, 0x7a, 0x1e, 0xc6, 0x88, 0xad, 0x6f, 0x59, 0xa4, 0x19, + 0xdf, 0x27, 0xba, 0xca, 0x9b, 0x71, 0x00, 0x47, 0x9f, 0x84, 0x4a, 0x5b, 0xbf, 0xb7, 0x24, 0x7a, + 0x0a, 0x35, 0x95, 0xa7, 0x28, 0xd6, 0x42, 0x10, 0x56, 0xf1, 0xe6, 0xbe, 0x04, 0x67, 0x39, 0xcb, + 0x35, 0xbd, 0xa3, 0x8c, 0xe8, 0x11, 0xb6, 0x64, 0x96, 0x60, 0xda, 0x70, 0x89, 0xee, 0x93, 0x95, + 0xed, 0x75, 0xc7, 0xbf, 0x7a, 0xcf, 0xf4, 0x7c, 0xb1, 0x37, 0x23, 0xf3, 0x41, 0x8b, 0x31, 0x38, + 0x4e, 0xf4, 0x98, 0xfb, 0xf6, 0x18, 0xa0, 0xab, 0x6d, 0xd3, 0xf7, 0xa3, 0x41, 0xdd, 0x65, 0x28, + 0x6e, 0xb9, 0xce, 0xae, 0x8c, 0x2c, 0xe5, 0xfe, 0x4a, 0x9d, 0xb5, 0x62, 0x01, 0xa5, 0x3e, 0xc5, + 0xd8, 0xd1, 0x6d, 0x9b, 0x58, 0x61, 0x18, 0x26, 0x7d, 0xca, 0xa2, 0x84, 0x60, 0x05, 0x8b, 0x9d, + 0x37, 0xe1, 0xbf, 0x94, 0xdc, 0x57, 0x78, 0xde, 0x24, 0x04, 0x61, 0x15, 0x2f, 0xb2, 0x34, 0x2f, + 0x64, 0xbd, 0x34, 0x1f, 0xcd, 0x60, 0x69, 0x9e, 0x7e, 0x0e, 0xa3, 0x78, 0x2a, 0xe7, 0x30, 0xc6, + 0x8e, 0x7a, 0x0e, 0xa3, 0x94, 0xf1, 0xe4, 0xf7, 0xa1, 0xea, 0x12, 0xf9, 0x32, 0xef, 0xdd, 0x41, + 0xed, 0x3f, 0xa1, 0x9e, 0xc7, 0x8a, 0x2c, 0x1e, 0x9b, 0xb5, 0xde, 0x47, 0x23, 0x30, 0x1d, 0x77, + 0xb9, 0xe8, 0x3e, 0x8c, 0x19, 0xdc, 0x43, 0x89, 0x55, 0x96, 0x36, 0xf0, 0x44, 0x93, 0xf4, 0x77, + 0xe2, 0xb0, 0x02, 0x87, 0xe0, 0x80, 0x21, 0xfa, 0x4a, 0x0e, 0xca, 0x46, 0xe0, 0xa4, 0x44, 0x16, + 0x6b, 0x60, 0xf6, 0x29, 0x4e, 0x8f, 0x9f, 0x40, 0x90, 0x10, 0x1c, 0x32, 0x9d, 0xfb, 0xe9, 0x08, + 0x54, 0x54, 0xff, 0xf4, 0x05, 0x45, 0xcb, 0xf8, 0x78, 0xfc, 0x7f, 0xc5, 0x76, 0xe5, 0xa1, 0xb8, + 0x50, 0x08, 0x8a, 0x4d, 0xad, 0xf9, 0xe6, 0x16, 0x0d, 0x6d, 0xe8, 0xcb, 0x09, 0xfd, 0x54, 0xd8, + 0xa6, 0x28, 0x4e, 0x07, 0x0a, 0x5e, 0x87, 0x18, 0xe2, 0x71, 0xd7, 0xb3, 0x53, 0x1b, 0xad, 0x43, + 0x8c, 0xd0, 0xa1, 0xd3, 0x5f, 0x98, 0x71, 0x42, 0xf7, 0xa0, 0xe8, 0xf9, 0xba, 0xdf, 0xf5, 0x44, + 0x86, 0x2b, 0x43, 0x55, 0xd5, 0x18, 0xdd, 0xd0, 0x8b, 0xf3, 0xdf, 0x58, 0xf0, 0x9b, 0xbb, 0x06, + 0x33, 0x09, 0xbd, 0xa6, 0xae, 0x9d, 0xdc, 0xeb, 0xb8, 0xc4, 0xa3, 0xd1, 0x51, 0x3c, 0x5c, 0xbc, + 0x2a, 0x21, 0x58, 0xc1, 0x9a, 0xfb, 0x59, 0x0e, 0xa6, 0x14, 0x4a, 0xab, 0xa6, 0xe7, 0xa3, 0xcf, + 0x27, 0x5e, 0xd5, 0xfc, 0xd1, 0x5e, 0x15, 0xed, 0xcd, 0x5e, 0x94, 0xb4, 0xef, 0xa0, 0x45, 0x79, + 0x4d, 0x0e, 0x8c, 0x9a, 0x3e, 0x69, 0x7b, 0x22, 0x4b, 0xf9, 0x5a, 0x76, 0x63, 0x16, 0x66, 0x53, + 0x56, 0x28, 0x03, 0xcc, 0xf9, 0xcc, 0xfd, 0xdd, 0x72, 0xe4, 0x11, 0xe9, 0xfb, 0x63, 0xc7, 0xfd, + 0x68, 0x53, 0xbd, 0xeb, 0x29, 0x1b, 0xb0, 0xe1, 0x71, 0x3f, 0x05, 0x86, 0x23, 0x98, 0x68, 0x0f, + 0x4a, 0x3e, 0x69, 0x77, 0x2c, 0xdd, 0x0f, 0xce, 0x08, 0x5c, 0x1b, 0xf0, 0x09, 0x36, 0x05, 0x39, + 0x3e, 0x4b, 0x05, 0xbf, 0xb0, 0x64, 0x83, 0xda, 0x30, 0xe6, 0xf1, 0x7d, 0x12, 0xa1, 0x67, 0xcb, + 0x03, 0x72, 0x0c, 0x76, 0x5d, 0x98, 0xf3, 0x10, 0x3f, 0x70, 0xc0, 0x03, 0x7d, 0x09, 0x46, 0xdb, + 0xa6, 0x6d, 0x3a, 0x2c, 0x3b, 0x52, 0xb9, 0xf2, 0x66, 0xb6, 0x86, 0x34, 0xbf, 0x46, 0x69, 0xf3, + 0x69, 0x40, 0xbe, 0x2f, 0xd6, 0x86, 0x39, 0x5b, 0x76, 0x30, 0xd0, 0x10, 0x41, 0xb5, 0x88, 0xd1, + 0x3f, 0x9f, 0xb1, 0x0c, 0x32, 0x66, 0x8f, 0xce, 0x46, 0x41, 0x33, 0x96, 0xfc, 0xd1, 0x7d, 0x28, + 0x6c, 0x9b, 0x16, 0x11, 0xfb, 0xce, 0xb7, 0x33, 0x96, 0x63, 0xd9, 0xb4, 0x08, 0x97, 0x21, 0x3c, + 0x99, 0x62, 0x5a, 0x04, 0x33, 0x9e, 0x6c, 0x20, 0x5c, 0xc2, 0x69, 0x88, 0x4d, 0xb7, 0xac, 0x07, + 0x02, 0x0b, 0xf2, 0xb1, 0x81, 0x08, 0x9a, 0xb1, 0xe4, 0x8f, 0x7e, 0x33, 0x17, 0x66, 0x0d, 0xf9, + 0x69, 0xcd, 0xb7, 0x32, 0x96, 0x45, 0xe4, 0x6a, 0xb8, 0x28, 0x32, 0x6c, 0x4f, 0xe4, 0x11, 0xef, + 0x43, 0x41, 0x6f, 0xef, 0x75, 0x44, 0xa8, 0x92, 0xf5, 0x1b, 0xa9, 0xb5, 0xf7, 0x3a, 0xb1, 0x37, + 0x52, 0x5b, 0xdb, 0x68, 0x60, 0xc6, 0x93, 0x9a, 0xc6, 0xae, 0xbe, 0xbd, 0xab, 0x57, 0x61, 0x28, + 0xa6, 0x71, 0x83, 0xd2, 0x8e, 0x99, 0x06, 0x6b, 0xc3, 0x9c, 0x2d, 0x7d, 0xf6, 0xf6, 0x9e, 0xef, + 0x57, 0x2b, 0x43, 0x79, 0xf6, 0xb5, 0x3d, 0xdf, 0x8f, 0x3d, 0xfb, 0xda, 0xc6, 0xe6, 0x26, 0x66, + 0x3c, 0x29, 0x6f, 0x5b, 0xf7, 0x3d, 0x91, 0x84, 0xca, 0x9a, 0xf7, 0xba, 0xee, 0x7b, 0x31, 0xde, + 0xeb, 0xb5, 0x4d, 0x0d, 0x33, 0x9e, 0xe8, 0x0e, 0xe4, 0x3d, 0xdb, 0xab, 0x4e, 0x30, 0xd6, 0x6f, + 0x64, 0xcc, 0x5a, 0xb3, 0x05, 0x67, 0x79, 0xf4, 0x44, 0x5b, 0xd7, 0x30, 0x65, 0xc8, 0xf8, 0xee, + 0x79, 0xd5, 0xc9, 0xe1, 0xf0, 0xdd, 0x4b, 0xf0, 0xdd, 0xa0, 0x7c, 0xf7, 0x3c, 0xf4, 0xd5, 0x1c, + 0x14, 0x3b, 0xdd, 0x2d, 0xad, 0xbb, 0x55, 0x9d, 0x62, 0xbc, 0x3f, 0x97, 0x31, 0xef, 0x06, 0x23, + 0xce, 0xd9, 0xcb, 0x18, 0x83, 0x37, 0x62, 0xc1, 0x99, 0x09, 0xc1, 0xb9, 0x56, 0xa7, 0x87, 0x22, + 0xc4, 0x35, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0xc4, 0x82, 0x73, 0x20, 0x84, 0xa5, 0x6f, 0x55, 0x67, + 0x86, 0x25, 0x84, 0xa5, 0xa7, 0x08, 0x61, 0xe9, 0x5c, 0x08, 0x4b, 0xdf, 0xa2, 0xaa, 0xbf, 0xd3, + 0xdc, 0xf6, 0xaa, 0x68, 0x28, 0xaa, 0x7f, 0xbd, 0xb9, 0x1d, 0x57, 0xfd, 0xeb, 0x4b, 0xcb, 0x1a, + 0x66, 0x3c, 0xa9, 0xcb, 0xf1, 0x2c, 0xdd, 0xd8, 0xad, 0x9e, 0x19, 0x8a, 0xcb, 0xd1, 0x28, 0xed, + 0x98, 0xcb, 0x61, 0x6d, 0x98, 0xb3, 0x45, 0xbf, 0x97, 0x83, 0x8a, 0x38, 0x7b, 0x76, 0xcd, 0x35, + 0x9b, 0xd5, 0xb3, 0xd9, 0xac, 0x10, 0xe3, 0x62, 0x84, 0x1c, 0xb8, 0x30, 0x32, 0xbb, 0xa0, 0x40, + 0xb0, 0x2a, 0x08, 0xfa, 0x93, 0x1c, 0x4c, 0xea, 0x91, 0x53, 0x86, 0xd5, 0x27, 0x99, 0x6c, 0x5b, + 0x59, 0x4f, 0x09, 0xd1, 0xa3, 0x8c, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x02, 0x71, 0x4c, 0x22, 0xa6, + 0xbe, 0x9e, 0xef, 0x9a, 0x1d, 0x52, 0x3d, 0x37, 0x14, 0xf5, 0xd5, 0x18, 0xf1, 0x98, 0xfa, 0xf2, + 0x46, 0x2c, 0x38, 0xb3, 0xa9, 0x9b, 0xf0, 0x25, 0x79, 0xf5, 0xa9, 0xa1, 0x4c, 0xdd, 0xc1, 0x82, + 0x3f, 0x3a, 0x75, 0x8b, 0x56, 0x1c, 0x30, 0xa7, 0xba, 0xec, 0x92, 0xa6, 0xe9, 0x55, 0xab, 0x43, + 0xd1, 0x65, 0x4c, 0x69, 0xc7, 0x74, 0x99, 0xb5, 0x61, 0xce, 0x96, 0xba, 0x73, 0xdb, 0xdb, 0xab, + 0x3e, 0x3d, 0x14, 0x77, 0xbe, 0xee, 0xed, 0xc5, 0xdc, 0xf9, 0xba, 0xb6, 0x81, 0x29, 0x43, 0xe1, + 0xce, 0x2d, 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, 0xd3, 0x46, 0x2c, + 0x38, 0x33, 0x2d, 0x60, 0xd7, 0xcb, 0x4c, 0xa3, 0xfa, 0xb1, 0xa1, 0x68, 0xc1, 0x35, 0x4e, 0x3d, + 0xa6, 0x05, 0xa2, 0x15, 0x07, 0xcc, 0xd1, 0x73, 0x34, 0xaa, 0xed, 0x58, 0xa6, 0xa1, 0x7b, 0xd5, + 0x67, 0xd8, 0xc9, 0xc3, 0x71, 0x1e, 0x73, 0xf2, 0x36, 0x2c, 0xa1, 0xe8, 0xfb, 0x39, 0x98, 0x8a, + 0xed, 0xb1, 0x55, 0xcf, 0x33, 0xd1, 0x8d, 0x8c, 0x45, 0xaf, 0x47, 0xb9, 0xf0, 0x47, 0x90, 0x87, + 0x35, 0xe2, 0x3b, 0x34, 0x71, 0xa1, 0xd0, 0x37, 0x73, 0x50, 0x96, 0x6d, 0xd5, 0x0b, 0x4c, 0xc4, + 0xb7, 0x87, 0x25, 0x22, 0x17, 0x4e, 0x1e, 0x3d, 0x0c, 0x4f, 0x19, 0x84, 0x22, 0x30, 0xaf, 0xcd, + 0x74, 0x5e, 0xf3, 0x5d, 0xa2, 0xb7, 0xab, 0x17, 0x87, 0xe2, 0xb5, 0x71, 0xc8, 0x21, 0xe6, 0xb5, + 0x15, 0x08, 0x56, 0x05, 0x61, 0xaf, 0x54, 0x8f, 0x9e, 0xfc, 0xab, 0x5e, 0x1a, 0xca, 0x2b, 0x8d, + 0x9f, 0x2f, 0x8c, 0xbe, 0xd2, 0x18, 0x14, 0xc7, 0x85, 0x42, 0x7f, 0x95, 0x83, 0x19, 0x3d, 0x7e, + 0x4c, 0xb8, 0xfa, 0x7f, 0x98, 0xa8, 0x64, 0x18, 0xa2, 0x46, 0x8e, 0x23, 0x33, 0x61, 0x9f, 0x16, + 0xc2, 0xce, 0x24, 0xe0, 0x38, 0x29, 0x1a, 0x0d, 0x52, 0xbc, 0x6d, 0xbf, 0x53, 0x9d, 0x1b, 0x4a, + 0x90, 0xa2, 0x6d, 0xfb, 0xf1, 0x75, 0x91, 0xb6, 0xbc, 0xd9, 0xc0, 0x8c, 0x27, 0x8f, 0xd2, 0x88, + 0xeb, 0x9a, 0x7e, 0xf5, 0xd9, 0xe1, 0x44, 0x69, 0x8c, 0x78, 0x3c, 0x4a, 0x63, 0x8d, 0x58, 0x70, + 0x9e, 0xed, 0x02, 0x84, 0xb9, 0x85, 0x94, 0xfc, 0xed, 0x86, 0x9a, 0xbf, 0xad, 0x5c, 0x79, 0xa5, + 0xef, 0x0c, 0xba, 0xf6, 0x2b, 0x35, 0xd7, 0x37, 0xb7, 0x75, 0xc3, 0x57, 0x92, 0xbf, 0xb3, 0xdf, + 0xca, 0xc1, 0x44, 0x24, 0x9f, 0x90, 0xc2, 0x7a, 0x27, 0xca, 0x1a, 0x67, 0xbf, 0xe5, 0xa8, 0x4a, + 0xf4, 0x5b, 0x39, 0x28, 0xcb, 0xcc, 0x42, 0x8a, 0x34, 0xcd, 0xa8, 0x34, 0x83, 0x66, 0x4a, 0x19, + 0xab, 0x74, 0x49, 0xe8, 0xd8, 0x44, 0x52, 0x0c, 0xc3, 0x1f, 0x1b, 0xc9, 0x2e, 0x5d, 0xa2, 0x0f, + 0x73, 0x30, 0xae, 0x26, 0x1a, 0x52, 0x04, 0x6a, 0x45, 0x05, 0xda, 0xc8, 0xe6, 0x70, 0xd4, 0x21, + 0xef, 0x4a, 0xe6, 0x1c, 0x86, 0xff, 0xae, 0x62, 0x37, 0x64, 0x55, 0x49, 0xbe, 0x91, 0x03, 0x08, + 0x13, 0x10, 0x29, 0xa2, 0x90, 0xa8, 0x28, 0x83, 0xee, 0x51, 0x73, 0x5e, 0xbd, 0x47, 0x45, 0x66, + 0x23, 0x86, 0x3f, 0x2a, 0x6b, 0x1b, 0x9b, 0x9b, 0x3d, 0x24, 0xf9, 0x7a, 0x0e, 0xca, 0x32, 0x37, + 0x31, 0xfc, 0x41, 0x59, 0xaf, 0x6d, 0x6a, 0x7c, 0xf5, 0x90, 0x14, 0xe5, 0x6b, 0x39, 0x28, 0x05, + 0xb9, 0x8a, 0x14, 0x49, 0x8c, 0xa8, 0x24, 0x83, 0x9e, 0xe9, 0xd3, 0xd6, 0xb5, 0x1e, 0x43, 0xc2, + 0xe4, 0xd8, 0x3b, 0x31, 0x39, 0x36, 0x7a, 0xc9, 0xf1, 0x7e, 0x0e, 0x2a, 0x4a, 0x1e, 0x23, 0x45, + 0x94, 0xed, 0xa8, 0x28, 0x83, 0x6e, 0xcf, 0x08, 0x66, 0xbd, 0xa5, 0x51, 0x12, 0x1a, 0xc3, 0x97, + 0x46, 0x30, 0x3b, 0x54, 0x9a, 0x20, 0xb3, 0x71, 0x22, 0xd2, 0x50, 0x66, 0xbd, 0xcd, 0x59, 0x66, + 0x39, 0x86, 0x6f, 0xce, 0xd7, 0x97, 0x96, 0xb5, 0x43, 0x9c, 0x5c, 0x98, 0xf2, 0x18, 0xbe, 0x3d, + 0x73, 0x5e, 0xe9, 0xb2, 0x7c, 0x27, 0x07, 0xd3, 0xf1, 0xbc, 0x47, 0x8a, 0x44, 0xbb, 0x51, 0x89, + 0x06, 0xbd, 0xf8, 0xaf, 0x72, 0x4c, 0x97, 0xeb, 0x8f, 0x72, 0x70, 0x26, 0x25, 0xe7, 0x91, 0x22, + 0x9a, 0x1d, 0x15, 0xed, 0xf6, 0xb0, 0xee, 0x8c, 0xc6, 0x35, 0x5b, 0x49, 0x7a, 0x0c, 0x5f, 0xb3, + 0x05, 0xb3, 0xde, 0xe1, 0x84, 0x9a, 0xfc, 0x18, 0x7e, 0x38, 0x91, 0x3c, 0x5b, 0x11, 0xd7, 0xef, + 0x30, 0x0d, 0x32, 0x7c, 0xfd, 0xe6, 0xbc, 0x7a, 0xcf, 0x13, 0x41, 0x52, 0x64, 0xf8, 0xf3, 0xc4, + 0xba, 0xb6, 0x71, 0xe8, 0x3c, 0x21, 0x13, 0x24, 0x27, 0x31, 0x4f, 0x30, 0x66, 0xbd, 0x35, 0x46, + 0x4d, 0x94, 0x0c, 0x5f, 0x63, 0x02, 0x6e, 0xe9, 0xf2, 0x7c, 0x37, 0xa7, 0xdc, 0x4e, 0x52, 0xb2, + 0x1f, 0x29, 0x72, 0x39, 0x51, 0xb9, 0xde, 0x1c, 0xda, 0x39, 0x64, 0x55, 0xbe, 0x8f, 0x72, 0x30, + 0x19, 0x4d, 0x7d, 0xa4, 0x48, 0x66, 0x46, 0x25, 0xd3, 0x86, 0x70, 0xf3, 0x29, 0xee, 0xb9, 0xe3, + 0xb9, 0x8f, 0xe1, 0x7b, 0x6e, 0x95, 0x63, 0xef, 0x77, 0x99, 0x96, 0xf6, 0x18, 0xfe, 0xbb, 0xec, + 0x7d, 0x99, 0x53, 0x95, 0xef, 0x7b, 0x39, 0x38, 0x97, 0x9e, 0xeb, 0x48, 0x91, 0x70, 0x2f, 0x2a, + 0xe1, 0x5b, 0x43, 0xbc, 0xf2, 0x1d, 0x8f, 0x55, 0x64, 0xb2, 0x63, 0xf8, 0xb1, 0x8a, 0xb6, 0xbc, + 0xd9, 0x38, 0x2c, 0x86, 0x0b, 0xf3, 0x1e, 0x27, 0x10, 0xc3, 0x71, 0x66, 0xa9, 0xd2, 0xcc, 0xf9, + 0x91, 0x13, 0x47, 0xfc, 0x38, 0x12, 0x7a, 0x57, 0x1e, 0x80, 0xe2, 0xe7, 0x84, 0x3e, 0xd5, 0x7f, + 0x4e, 0xe5, 0xf0, 0x73, 0x4e, 0x7f, 0x5b, 0x80, 0xa9, 0x58, 0x7e, 0x81, 0x95, 0x1e, 0xa1, 0x3f, + 0x59, 0x9d, 0xae, 0x5c, 0xf4, 0x1e, 0xf6, 0xd5, 0x00, 0x80, 0x43, 0x1c, 0xf4, 0x51, 0x0e, 0xa6, + 0xee, 0xea, 0xbe, 0xb1, 0xd3, 0xd0, 0xfd, 0x1d, 0x7e, 0x58, 0x2d, 0xa3, 0xb7, 0xf7, 0x46, 0x94, + 0x6a, 0x98, 0x5e, 0x8c, 0x01, 0x70, 0x9c, 0x3f, 0x7a, 0x1e, 0xc6, 0x3a, 0x8e, 0x65, 0x99, 0x76, + 0x4b, 0x14, 0x5c, 0x91, 0xf9, 0xf2, 0x06, 0x6f, 0xc6, 0x01, 0x3c, 0x5a, 0x28, 0xab, 0x90, 0xc9, + 0x31, 0x90, 0xd8, 0x90, 0x1e, 0xeb, 0x74, 0xe6, 0xe8, 0xe3, 0x72, 0x3a, 0xf3, 0x9f, 0x0b, 0x80, + 0x92, 0x73, 0xe0, 0xc3, 0x4a, 0xc9, 0x5d, 0x86, 0xa2, 0x11, 0xaa, 0x8a, 0x72, 0x9e, 0x5a, 0xbc, + 0x51, 0x01, 0xe5, 0x37, 0x1d, 0x3c, 0x62, 0x74, 0x5d, 0x92, 0xac, 0x1c, 0xc4, 0xdb, 0xb1, 0xc4, + 0xe8, 0xb3, 0x30, 0xc6, 0x87, 0xc9, 0xdb, 0x0a, 0xef, 0x66, 0x1e, 0x0c, 0xf4, 0xf1, 0xf2, 0x6f, + 0xb1, 0x42, 0x41, 0x3b, 0xe2, 0x36, 0x56, 0xb1, 0xef, 0x9b, 0xdd, 0x35, 0xd9, 0x19, 0x2b, 0x84, + 0x4e, 0xa7, 0x8c, 0xc6, 0x60, 0x3a, 0xf5, 0xd3, 0x22, 0xcc, 0x24, 0xdc, 0xe5, 0x29, 0x5d, 0xac, + 0x7c, 0x01, 0x4a, 0xf4, 0xaf, 0x52, 0xc7, 0x42, 0xbe, 0xc3, 0xeb, 0xa2, 0x1d, 0x4b, 0x0c, 0xe5, + 0xfe, 0x60, 0xbe, 0xe7, 0xfd, 0xc1, 0xdb, 0x91, 0x4b, 0xd4, 0x59, 0xd6, 0x3a, 0x7b, 0x05, 0x26, + 0x78, 0xb6, 0x3e, 0xb8, 0x69, 0x37, 0x1a, 0xbd, 0x69, 0x75, 0x4d, 0x05, 0xe2, 0x28, 0x6e, 0x8f, + 0x7b, 0x75, 0xc5, 0x63, 0xdd, 0xab, 0xfb, 0x20, 0x59, 0xd0, 0xe2, 0x9d, 0xac, 0xa7, 0xcf, 0x3e, + 0x2c, 0x4b, 0xbd, 0x94, 0x5a, 0x3a, 0xf4, 0x52, 0xea, 0x02, 0x94, 0x3d, 0xcf, 0x7a, 0x9d, 0xb8, + 0xe6, 0xf6, 0x3e, 0xbb, 0x10, 0xa9, 0x14, 0xde, 0xd2, 0x02, 0x00, 0x0e, 0x71, 0x1e, 0xc7, 0xf3, + 0xf4, 0xff, 0x94, 0x83, 0x49, 0x9e, 0xde, 0xaa, 0x75, 0x3a, 0x8b, 0x2e, 0x69, 0x7a, 0xd4, 0xf5, + 0x74, 0x5c, 0xf3, 0x8e, 0xee, 0x93, 0xe0, 0x2a, 0x5c, 0x7f, 0xae, 0xa7, 0x21, 0x3b, 0x63, 0x85, + 0x10, 0x7a, 0x16, 0x46, 0xf5, 0x4e, 0x67, 0x65, 0x89, 0xc9, 0x90, 0x0f, 0x8f, 0x0d, 0xd4, 0x68, + 0x23, 0xe6, 0x30, 0xf4, 0x2a, 0x4c, 0x9a, 0xb6, 0xe7, 0xeb, 0x96, 0xc5, 0xce, 0xdc, 0xaf, 0x2c, + 0x31, 0x47, 0x9f, 0x0f, 0x0f, 0x81, 0xac, 0x44, 0xa0, 0x38, 0x86, 0x3d, 0xf7, 0xf7, 0x15, 0x98, + 0x49, 0x64, 0xeb, 0xd0, 0x2c, 0x8c, 0x98, 0xfc, 0x92, 0x52, 0xbe, 0x0e, 0x82, 0xd2, 0xc8, 0xca, + 0x12, 0x1e, 0x31, 0x9b, 0xaa, 0x23, 0x19, 0x39, 0x39, 0x47, 0x22, 0x6b, 0x15, 0xe4, 0x8f, 0x5a, + 0xab, 0x20, 0xbc, 0x3b, 0x28, 0xee, 0xde, 0xa5, 0x5c, 0xe8, 0x0e, 0xef, 0x1b, 0x62, 0x05, 0xff, + 0x48, 0xc5, 0x13, 0x6e, 0x42, 0x49, 0xef, 0x98, 0xfc, 0x5e, 0x71, 0xb1, 0xef, 0xfb, 0x3e, 0xb5, + 0xc6, 0x0a, 0xbf, 0x54, 0x2c, 0x89, 0x24, 0x6f, 0x14, 0x8f, 0x65, 0x7b, 0xa3, 0x58, 0x0d, 0x06, + 0x4a, 0x0f, 0x0d, 0x06, 0x2e, 0x43, 0x51, 0x37, 0x7c, 0xf3, 0x0e, 0x11, 0x76, 0x2c, 0x43, 0x8c, + 0x1a, 0x6b, 0xc5, 0x02, 0x2a, 0xca, 0xfd, 0xfa, 0x41, 0xc8, 0x0b, 0x89, 0x72, 0xbf, 0x01, 0x08, + 0xab, 0x78, 0xcc, 0xd7, 0x32, 0xa5, 0x09, 0x7c, 0x6d, 0x25, 0xe6, 0x6b, 0x55, 0x20, 0x8e, 0xe2, + 0xa2, 0x1a, 0x4c, 0xf1, 0x86, 0x5b, 0x1d, 0xcb, 0xd1, 0x9b, 0xb4, 0xfb, 0x78, 0x54, 0x2b, 0xae, + 0x45, 0xc1, 0x38, 0x8e, 0xdf, 0xc3, 0x5d, 0x4f, 0x0c, 0xee, 0xae, 0x27, 0xb3, 0x71, 0xd7, 0x71, + 0x8b, 0xec, 0xc3, 0x5d, 0xbf, 0x17, 0xaf, 0x0c, 0xc0, 0x4f, 0x69, 0x0e, 0xea, 0x5a, 0xa9, 0x79, + 0x35, 0xd5, 0xbb, 0xff, 0x47, 0xaa, 0x08, 0xf0, 0x29, 0x98, 0x70, 0xdc, 0x96, 0x6e, 0x9b, 0xf7, + 0x99, 0xc3, 0xf1, 0xd8, 0x69, 0xcd, 0x32, 0xd7, 0xd6, 0x9b, 0x2a, 0x00, 0x47, 0xf1, 0xd0, 0x7d, + 0x28, 0xb7, 0x02, 0x2f, 0x5b, 0x9d, 0xc9, 0xc4, 0xcf, 0x44, 0xbd, 0x36, 0xbf, 0x1e, 0x24, 0xdb, + 0x70, 0xc8, 0x4e, 0x99, 0x95, 0xd0, 0xe3, 0x32, 0x2b, 0xbd, 0x57, 0x62, 0x6e, 0x3c, 0xba, 0xcd, + 0x71, 0x4a, 0x31, 0xdf, 0xa7, 0xa1, 0x2c, 0x22, 0x02, 0x31, 0x77, 0x95, 0xeb, 0x1f, 0x13, 0xaa, + 0x72, 0x26, 0x51, 0x4b, 0x63, 0x65, 0x09, 0x87, 0xd8, 0x47, 0x0c, 0x00, 0x23, 0x35, 0x1d, 0x0a, + 0xd9, 0xd5, 0x74, 0xd0, 0xe0, 0x49, 0x7e, 0xff, 0x56, 0xd3, 0x56, 0x59, 0x80, 0x62, 0x1a, 0xfc, + 0xfa, 0x2d, 0xaf, 0xfe, 0x77, 0x5e, 0x3c, 0xc4, 0x93, 0x57, 0xd3, 0x90, 0x70, 0x7a, 0x5f, 0xe1, + 0xe9, 0x2c, 0x5d, 0x7a, 0xba, 0x62, 0xc2, 0xd3, 0x85, 0x40, 0x1c, 0xc5, 0xed, 0xe1, 0xa6, 0x4a, + 0x83, 0xbb, 0xa9, 0x72, 0x56, 0x6e, 0x2a, 0xaa, 0x71, 0xc7, 0x8c, 0x2a, 0xe1, 0xd0, 0xa8, 0xf2, + 0x36, 0x54, 0x3c, 0xf6, 0x26, 0xf9, 0x0b, 0xaf, 0xf4, 0xfd, 0xc2, 0xb5, 0xb0, 0x37, 0x56, 0x49, + 0x29, 0x86, 0x3e, 0x7e, 0x82, 0x85, 0x22, 0xe6, 0xa0, 0xd8, 0x72, 0x9d, 0x6e, 0x87, 0xdf, 0x19, + 0x10, 0x4a, 0x7e, 0x8d, 0xb5, 0x60, 0x01, 0x19, 0xcc, 0x19, 0x7c, 0xb7, 0x0c, 0x53, 0xb1, 0x7d, + 0xc6, 0xd4, 0x3c, 0x53, 0xee, 0x94, 0xf3, 0x4c, 0x97, 0xa0, 0xe0, 0xd3, 0xa0, 0x61, 0x24, 0x7a, + 0x2b, 0x9d, 0x45, 0x0b, 0x0c, 0x92, 0x2c, 0x7e, 0x91, 0x3f, 0x7a, 0xf1, 0x0b, 0xf4, 0xff, 0xa0, + 0xac, 0x37, 0x9b, 0x2e, 0xf1, 0x3c, 0x12, 0x54, 0xd3, 0x61, 0x3e, 0xbf, 0x16, 0x34, 0xe2, 0x10, + 0xce, 0x16, 0xaa, 0xcd, 0x6d, 0xef, 0x96, 0x27, 0xb2, 0x47, 0xea, 0x42, 0x75, 0x69, 0x59, 0xa3, + 0xed, 0x58, 0x62, 0xa0, 0x26, 0x4c, 0xed, 0xba, 0x5b, 0x8b, 0x8b, 0xba, 0xb1, 0x43, 0x8e, 0x93, + 0x71, 0x60, 0x55, 0x72, 0x6f, 0x44, 0x29, 0xe0, 0x38, 0x49, 0xc1, 0xe5, 0x06, 0xd9, 0xf7, 0xf5, + 0xad, 0xe3, 0xc4, 0x84, 0x01, 0x17, 0x95, 0x02, 0x8e, 0x93, 0xa4, 0x11, 0xdc, 0xae, 0xbb, 0x15, + 0xdc, 0x68, 0x17, 0x55, 0xb9, 0x64, 0x04, 0x77, 0x23, 0x04, 0x61, 0x15, 0x8f, 0x0e, 0xd8, 0xae, + 0xbb, 0x85, 0x89, 0x6e, 0xb5, 0x45, 0x61, 0x41, 0x39, 0x60, 0x37, 0x44, 0x3b, 0x96, 0x18, 0xa8, + 0x03, 0x88, 0x3e, 0x1d, 0x7b, 0xef, 0xf2, 0x4a, 0xae, 0x58, 0xf4, 0x3d, 0x97, 0xf6, 0x34, 0x12, + 0x49, 0x7d, 0xa0, 0x73, 0xd4, 0xdd, 0xdd, 0x48, 0xd0, 0xc1, 0x29, 0xb4, 0xd1, 0x9b, 0xf0, 0xd4, + 0xae, 0xbb, 0x25, 0xd2, 0xfe, 0x0d, 0xd7, 0xb4, 0x0d, 0xb3, 0xa3, 0xf3, 0x1a, 0x01, 0x95, 0x68, + 0x1d, 0xc4, 0x1b, 0xe9, 0x68, 0xb8, 0x57, 0xff, 0x68, 0xd2, 0x73, 0x3c, 0x93, 0xa4, 0x67, 0xcc, + 0x5c, 0x1f, 0xf5, 0x62, 0x37, 0x83, 0xf9, 0xa7, 0x1f, 0xe4, 0x00, 0xb1, 0x13, 0x56, 0xc1, 0xd7, + 0x40, 0x98, 0xf3, 0x43, 0x0b, 0x50, 0x66, 0xde, 0x4f, 0xb9, 0xf4, 0x2a, 0xb3, 0x07, 0xd7, 0x02, + 0x00, 0x0e, 0x71, 0xe8, 0x1a, 0xc5, 0xb1, 0x9a, 0x44, 0x56, 0xaa, 0x90, 0x6b, 0x94, 0x9b, 0xac, + 0x15, 0x0b, 0x28, 0xba, 0x06, 0x33, 0x2e, 0xd9, 0xd2, 0x2d, 0xdd, 0x36, 0x88, 0xe6, 0xbb, 0xba, + 0x4f, 0x5a, 0xfb, 0xc2, 0x93, 0xc8, 0x63, 0xac, 0x38, 0x8e, 0x80, 0x93, 0x7d, 0xe6, 0xfe, 0xb5, + 0x04, 0xd3, 0xf1, 0xa3, 0x61, 0x0f, 0xcb, 0xd5, 0x2e, 0x40, 0xb9, 0xa3, 0xbb, 0xbe, 0xa9, 0xd4, + 0xf1, 0x90, 0x4f, 0xd5, 0x08, 0x00, 0x38, 0xc4, 0xa1, 0xcb, 0x7e, 0x56, 0xa6, 0x55, 0x48, 0x28, + 0x97, 0xfd, 0xac, 0x8c, 0x2b, 0xe6, 0xb0, 0xf4, 0xe2, 0x10, 0x85, 0x13, 0x2b, 0x0e, 0xf1, 0x48, + 0xd4, 0x7d, 0x7d, 0x3f, 0x99, 0x26, 0x7b, 0x3b, 0xe3, 0x73, 0x7f, 0xfd, 0x2d, 0xbb, 0x26, 0x0c, + 0x55, 0x9f, 0x45, 0x31, 0x8c, 0x8d, 0x2c, 0x44, 0x8a, 0x18, 0x0a, 0x5f, 0x3d, 0x45, 0x9a, 0x70, + 0x94, 0x35, 0x6a, 0xc0, 0x59, 0xcb, 0x6c, 0x8b, 0x84, 0x9f, 0xd7, 0x20, 0x2e, 0xaf, 0x8e, 0xcc, + 0x1c, 0x75, 0x3e, 0x4c, 0x84, 0xac, 0xa6, 0xe0, 0xe0, 0xd4, 0x9e, 0xe8, 0x79, 0x18, 0xbb, 0x43, + 0x5c, 0x76, 0x79, 0x1f, 0xa2, 0x15, 0xdb, 0x5f, 0xe7, 0xcd, 0x38, 0x80, 0xa3, 0x37, 0xa1, 0xe0, + 0xe9, 0x9e, 0x25, 0x02, 0xb5, 0x63, 0x1c, 0x65, 0xae, 0x69, 0xab, 0x42, 0x3d, 0x58, 0x8a, 0x96, + 0xfe, 0xc6, 0x8c, 0xe4, 0x29, 0x05, 0x6c, 0xe1, 0x76, 0xcb, 0xc4, 0x61, 0xdb, 0x2d, 0x83, 0x39, + 0xc5, 0xef, 0x15, 0x61, 0x2a, 0x76, 0xd6, 0xf3, 0x61, 0xae, 0x45, 0x7a, 0x8a, 0x91, 0x43, 0x3c, + 0xc5, 0x0b, 0x50, 0x32, 0x2c, 0x93, 0xd8, 0xfe, 0x4a, 0x53, 0x78, 0x94, 0xf0, 0x4a, 0x39, 0x6f, + 0x5f, 0xc2, 0x12, 0xe3, 0xb4, 0xfd, 0x8a, 0xea, 0x00, 0x46, 0x8f, 0x5a, 0x74, 0xa6, 0x38, 0xcc, + 0x8f, 0xff, 0x64, 0x73, 0xb5, 0x3d, 0xf6, 0x62, 0x1f, 0xf9, 0x22, 0xd2, 0xc1, 0x26, 0x4b, 0x39, + 0xeb, 0x4d, 0x96, 0xc1, 0x6c, 0xe4, 0x1f, 0x47, 0xa0, 0xb4, 0x5e, 0xdb, 0xd4, 0x58, 0x71, 0xe5, + 0xb7, 0xa2, 0xe5, 0xa3, 0x07, 0x11, 0x32, 0x59, 0x27, 0x7a, 0x99, 0x9a, 0x56, 0xdf, 0x25, 0xa2, + 0xcb, 0xdc, 0xfa, 0xe8, 0x3a, 0x93, 0x77, 0x47, 0x8b, 0x50, 0xb0, 0x77, 0xfb, 0xfd, 0x86, 0x06, + 0x1b, 0xb3, 0xf5, 0x1b, 0x64, 0x1f, 0xb3, 0xce, 0xe8, 0x16, 0x80, 0xe1, 0x92, 0x26, 0xb1, 0x7d, + 0x53, 0x7c, 0xc2, 0xac, 0xbf, 0xfd, 0x85, 0x45, 0xd9, 0x19, 0x2b, 0x84, 0xe6, 0xbe, 0x5e, 0x84, + 0xe9, 0xf8, 0x99, 0xee, 0x87, 0xb9, 0x9c, 0xe7, 0x61, 0xcc, 0xeb, 0xb2, 0x02, 0x37, 0xc2, 0xe9, + 0xc8, 0x69, 0x40, 0xe3, 0xcd, 0x38, 0x80, 0xa7, 0xbb, 0x92, 0xfc, 0xa9, 0xb8, 0x92, 0xc2, 0x51, + 0x5d, 0x49, 0xd6, 0x01, 0xcd, 0xfb, 0xc9, 0xcf, 0x43, 0xbc, 0x9d, 0xf1, 0x29, 0xfc, 0x3e, 0x7c, + 0x09, 0x11, 0x56, 0x3d, 0x96, 0x49, 0x69, 0x98, 0xc0, 0x10, 0x13, 0xfb, 0xa8, 0x8f, 0x61, 0xc5, + 0xbe, 0x9f, 0x8c, 0xc2, 0x64, 0xf4, 0x90, 0x26, 0x5d, 0x16, 0xef, 0x38, 0x9e, 0x2f, 0x92, 0x05, + 0xf1, 0xef, 0x18, 0x5e, 0x0f, 0x41, 0x58, 0xc5, 0x3b, 0xda, 0x9c, 0xfc, 0x3c, 0x8c, 0x89, 0x5a, + 0x74, 0x62, 0x4a, 0x96, 0x56, 0x24, 0xea, 0xd5, 0xe1, 0x00, 0xfe, 0xbf, 0x13, 0xb2, 0xe5, 0xa1, + 0x6f, 0x24, 0x27, 0xe4, 0xb7, 0x32, 0x3d, 0x91, 0xfb, 0xa8, 0xcf, 0xc7, 0x83, 0x29, 0xf7, 0x9b, + 0x30, 0x93, 0xd8, 0xbc, 0x39, 0x5a, 0xad, 0xef, 0x8b, 0x30, 0x6a, 0xeb, 0x6d, 0xc2, 0xcb, 0x61, + 0x95, 0xf9, 0xf4, 0xc6, 0x3e, 0x07, 0x81, 0x79, 0xfb, 0xdc, 0xf7, 0x8b, 0x30, 0x93, 0xb8, 0x79, + 0xc2, 0x96, 0xbc, 0x72, 0x03, 0x20, 0xb6, 0x90, 0x4f, 0x4d, 0xfb, 0xbf, 0x0a, 0x93, 0xcc, 0x30, + 0x1a, 0xb1, 0x6d, 0x03, 0xb9, 0x89, 0xbd, 0x19, 0x81, 0xe2, 0x18, 0xf6, 0xd1, 0x96, 0xcc, 0xaf, + 0xc2, 0xa4, 0xfa, 0xfd, 0x92, 0x95, 0x25, 0xb1, 0x2d, 0x2c, 0x99, 0x68, 0x11, 0x28, 0x8e, 0x61, + 0xb3, 0x8f, 0xbf, 0xc8, 0xc9, 0x53, 0xa4, 0xe3, 0x46, 0xfb, 0xff, 0xf8, 0x4b, 0x8c, 0x04, 0x4e, + 0x10, 0x45, 0x5b, 0x30, 0xcb, 0xd3, 0xf7, 0xaa, 0x40, 0xb1, 0x23, 0x25, 0x73, 0x42, 0xe8, 0xd9, + 0xa5, 0x9e, 0x98, 0xf8, 0x10, 0x2a, 0x7d, 0x56, 0x77, 0xfc, 0x20, 0xf9, 0x39, 0xcc, 0x77, 0xb2, + 0xbe, 0xaf, 0x74, 0x2c, 0x1b, 0x2c, 0x3f, 0x2e, 0x36, 0xf8, 0xfd, 0x0a, 0x35, 0x94, 0xd8, 0xd1, + 0x7b, 0x34, 0x07, 0x45, 0xa6, 0x9b, 0x74, 0x7a, 0x91, 0x3b, 0x01, 0x4c, 0x69, 0x3d, 0x2c, 0x20, + 0x47, 0x48, 0x92, 0x8b, 0x90, 0x2d, 0xdf, 0x23, 0x64, 0xeb, 0xc0, 0x19, 0xdf, 0xf2, 0x36, 0xdd, + 0xae, 0xe7, 0x2f, 0x12, 0xd7, 0xf7, 0x84, 0xea, 0x16, 0xfa, 0xfe, 0x86, 0xdc, 0xe6, 0xaa, 0x16, + 0xa7, 0x82, 0xd3, 0x48, 0x53, 0x05, 0xf6, 0x2d, 0xaf, 0x66, 0x59, 0xce, 0xdd, 0xe0, 0x64, 0x41, + 0x38, 0xd9, 0x88, 0x69, 0x44, 0x2a, 0xf0, 0xe6, 0xaa, 0xd6, 0x03, 0x13, 0x1f, 0x42, 0x05, 0xad, + 0xb1, 0xa7, 0x7a, 0x5d, 0xb7, 0xcc, 0xa6, 0xee, 0x13, 0x3a, 0x1d, 0xb3, 0xec, 0x35, 0xb7, 0x0e, + 0xb9, 0xdd, 0xb8, 0xb9, 0xaa, 0xc5, 0x51, 0x70, 0x5a, 0xbf, 0x61, 0x7d, 0x47, 0x36, 0x75, 0xf6, + 0x2e, 0x9d, 0xca, 0xec, 0x5d, 0xee, 0xcf, 0xca, 0x21, 0x23, 0x2b, 0x8f, 0xa9, 0x7c, 0x1f, 0x56, + 0xde, 0x84, 0x29, 0xf9, 0x81, 0x1d, 0xa1, 0xb3, 0x95, 0xbe, 0x77, 0x3f, 0x6a, 0x51, 0x0a, 0x38, + 0x4e, 0xf2, 0x94, 0x32, 0x4a, 0x7f, 0x99, 0x83, 0x69, 0x2a, 0x49, 0xcd, 0xdf, 0x21, 0xf6, 0xfd, + 0x86, 0xee, 0xea, 0xed, 0xa0, 0x82, 0xd8, 0x76, 0xe6, 0x43, 0x5e, 0x8b, 0x31, 0xe2, 0x43, 0x2f, + 0xcb, 0x3a, 0xc7, 0xc1, 0x38, 0x21, 0x19, 0x9d, 0xfa, 0xc2, 0xb6, 0xe3, 0x7c, 0x0c, 0xf6, 0x6c, + 0x94, 0x51, 0x30, 0xf5, 0xc5, 0x89, 0x0e, 0xe4, 0x63, 0x67, 0x17, 0xe1, 0xc9, 0xd4, 0x47, 0xed, + 0xcb, 0x51, 0x7f, 0xad, 0x28, 0xae, 0xcf, 0x64, 0xb0, 0x16, 0xc8, 0xfa, 0x6b, 0x4d, 0x34, 0xb0, + 0xb2, 0xe5, 0xd7, 0xbc, 0x62, 0x5f, 0x79, 0x0b, 0xbf, 0xdf, 0x15, 0xe2, 0xa0, 0x59, 0x18, 0x69, + 0x6e, 0x31, 0x57, 0x3f, 0x1a, 0x9e, 0xe3, 0x5b, 0xaa, 0xe3, 0x91, 0xe6, 0x16, 0x7a, 0x0e, 0x4a, + 0x62, 0x91, 0x11, 0x1c, 0x73, 0x63, 0x6c, 0xc5, 0x0a, 0xc4, 0xc3, 0x12, 0x3a, 0xac, 0xb0, 0x7e, + 0x08, 0xf9, 0xfb, 0xf8, 0x9b, 0x7b, 0xe4, 0x13, 0x6d, 0xfd, 0x79, 0xe8, 0x17, 0x94, 0xa2, 0xe5, + 0x10, 0xcd, 0xe5, 0x26, 0x2b, 0x92, 0x0f, 0x16, 0xb0, 0xfc, 0x4d, 0x11, 0xce, 0xa5, 0x5f, 0xea, + 0x7a, 0x64, 0xac, 0x81, 0x2b, 0x77, 0x3e, 0x55, 0xb9, 0x3f, 0x0e, 0x63, 0x1e, 0x13, 0x3c, 0xd8, + 0xf9, 0xe7, 0xe5, 0x64, 0x79, 0x13, 0x0e, 0x60, 0xe8, 0x35, 0x40, 0x6d, 0xfd, 0xde, 0x9a, 0xd7, + 0x5a, 0x74, 0xba, 0xac, 0x42, 0x36, 0x26, 0x3a, 0x2f, 0xdf, 0x3e, 0x1a, 0x9e, 0xaf, 0x59, 0x4b, + 0x60, 0xe0, 0x94, 0x5e, 0xec, 0xac, 0x42, 0x64, 0xff, 0x27, 0x76, 0xd0, 0xe7, 0xd0, 0x0d, 0x9b, + 0x21, 0xc5, 0x1f, 0x1f, 0x25, 0x03, 0x77, 0x63, 0x28, 0x37, 0xfd, 0x1e, 0xf5, 0xe8, 0xfd, 0x24, + 0x4d, 0xe7, 0xa7, 0x05, 0x38, 0x93, 0x52, 0xe9, 0x25, 0xea, 0xbd, 0x73, 0x47, 0xf0, 0xde, 0x7b, + 0x72, 0xa4, 0xb2, 0x39, 0x68, 0x1d, 0x08, 0x75, 0xc8, 0x30, 0x7d, 0x90, 0x83, 0xb3, 0x6c, 0x83, + 0x3d, 0xd8, 0xd5, 0x0b, 0x4a, 0xfc, 0xe6, 0x85, 0x66, 0x1e, 0xa9, 0xd6, 0xf6, 0xb5, 0x14, 0x0a, + 0xe1, 0xae, 0x63, 0x1a, 0x14, 0xa7, 0x72, 0x45, 0x8b, 0x00, 0xf2, 0xaa, 0x5c, 0x60, 0xc9, 0xcf, + 0xb2, 0x8a, 0xe1, 0xb2, 0xf5, 0xbf, 0xd9, 0xe6, 0xbd, 0x32, 0xda, 0x6c, 0x65, 0xa4, 0x74, 0x1b, + 0xc6, 0x77, 0x55, 0x52, 0x5e, 0xef, 0xd1, 0x2d, 0x60, 0x30, 0xed, 0xfa, 0x8b, 0x3c, 0x4c, 0x46, + 0x5f, 0x24, 0xba, 0x0c, 0xc5, 0x8e, 0x4b, 0xb6, 0xcd, 0x7b, 0xf1, 0xcf, 0x6b, 0x34, 0x58, 0x2b, + 0x16, 0x50, 0xe4, 0x40, 0xd1, 0xd2, 0xb7, 0xe8, 0x7c, 0xcf, 0xcb, 0x9b, 0x5f, 0x1b, 0xb8, 0x54, + 0x77, 0xb0, 0xcb, 0x10, 0x30, 0x5c, 0x65, 0xe4, 0xb1, 0x60, 0x43, 0x19, 0x6e, 0x9b, 0xc4, 0x6a, + 0xf2, 0xe3, 0x9c, 0xc3, 0x60, 0xb8, 0xcc, 0xc8, 0x63, 0xc1, 0x06, 0xbd, 0x05, 0x65, 0xfe, 0x4d, + 0x92, 0x66, 0x7d, 0x5f, 0xac, 0x70, 0xff, 0xef, 0xd1, 0x54, 0x76, 0xd3, 0x6c, 0x93, 0xd0, 0x1c, + 0x17, 0x03, 0x22, 0x38, 0xa4, 0xc7, 0x3e, 0x45, 0xbf, 0xed, 0x13, 0x57, 0xf3, 0x75, 0x37, 0xf8, + 0x52, 0x7c, 0xf8, 0x29, 0x7a, 0x09, 0xc1, 0x0a, 0xd6, 0xdc, 0x5f, 0x8f, 0xc1, 0x54, 0xec, 0x1a, + 0xed, 0x2f, 0xc7, 0x1d, 0x51, 0xf5, 0xfb, 0x29, 0xf9, 0xac, 0xbf, 0x9f, 0x52, 0xc8, 0x22, 0x3c, + 0x78, 0x0b, 0xc6, 0x3d, 0x6f, 0x87, 0x61, 0xf6, 0x9f, 0xab, 0x9b, 0x3e, 0x78, 0x70, 0x71, 0x5c, + 0xd3, 0xae, 0xcb, 0xee, 0x38, 0x42, 0x0c, 0xad, 0xc2, 0x98, 0x38, 0x3b, 0xd8, 0xdf, 0xc1, 0x3f, + 0x16, 0x86, 0x04, 0xe1, 0x51, 0x40, 0x62, 0x18, 0x3b, 0xce, 0x31, 0xa5, 0x7b, 0xe4, 0x03, 0xe1, + 0x06, 0x9c, 0xed, 0x38, 0x96, 0x15, 0x1c, 0xde, 0x94, 0x5f, 0x3e, 0x2a, 0x47, 0xaf, 0xee, 0x34, + 0x52, 0x70, 0x70, 0x6a, 0xcf, 0xc1, 0xbc, 0xec, 0xbf, 0x17, 0x61, 0x32, 0x5a, 0x65, 0xea, 0xf4, + 0x2e, 0x50, 0xb2, 0x44, 0x60, 0xcd, 0xb5, 0xe3, 0x17, 0x28, 0x37, 0x45, 0x3b, 0x96, 0x18, 0x08, + 0x43, 0x99, 0x1f, 0x68, 0xbf, 0xd1, 0xef, 0x9e, 0x33, 0x3f, 0x19, 0x1b, 0xf4, 0xc5, 0x21, 0x19, + 0x4a, 0xd3, 0x0b, 0xd0, 0xfb, 0xb3, 0x4c, 0x46, 0x53, 0x36, 0xe3, 0x90, 0x0c, 0x9d, 0xb1, 0x5c, + 0xd2, 0x0a, 0xb2, 0x81, 0xca, 0x8c, 0x85, 0x59, 0x2b, 0x16, 0x50, 0xf4, 0x3c, 0x8c, 0xb9, 0x8e, + 0x45, 0x6a, 0x78, 0x5d, 0x44, 0xd3, 0x72, 0xa3, 0x0c, 0xf3, 0x66, 0x1c, 0xc0, 0x87, 0xb1, 0x49, + 0x14, 0x55, 0x80, 0x3e, 0x4c, 0xe8, 0x1a, 0xcc, 0xdc, 0x11, 0x19, 0x46, 0xcd, 0x6c, 0xd9, 0xba, + 0x1f, 0xde, 0xb9, 0x92, 0x07, 0x0e, 0x5f, 0x8f, 0x23, 0xe0, 0x64, 0x9f, 0xd3, 0x8b, 0x95, 0x89, + 0xdd, 0xec, 0x38, 0xa6, 0xed, 0xc7, 0x63, 0xe5, 0xab, 0xa2, 0x1d, 0x4b, 0x8c, 0xc1, 0xec, 0xec, + 0x1f, 0xc6, 0x60, 0x32, 0x5a, 0x45, 0x2d, 0xaa, 0xc3, 0xb9, 0x21, 0xe8, 0xf0, 0x48, 0xd6, 0x3a, + 0x9c, 0x3f, 0x54, 0x87, 0x9f, 0x85, 0x51, 0xf6, 0x9d, 0x7e, 0xb1, 0xdd, 0x24, 0x37, 0xa7, 0x58, + 0xbd, 0x0f, 0xcc, 0x61, 0xa8, 0x46, 0x67, 0x78, 0xd3, 0xa7, 0x51, 0x08, 0x3f, 0x70, 0xc7, 0xcf, + 0x22, 0xe4, 0xd5, 0x19, 0x39, 0x02, 0xc6, 0x71, 0xfc, 0x7e, 0x6c, 0xa5, 0xbf, 0xdd, 0x9f, 0x57, + 0x61, 0x92, 0x09, 0x59, 0x33, 0x0c, 0xba, 0xde, 0x5d, 0x69, 0x8a, 0x33, 0xe2, 0x72, 0xe3, 0x6c, + 0x43, 0x85, 0x2e, 0xe1, 0x18, 0x76, 0xd4, 0x32, 0xcb, 0xd9, 0x58, 0xe6, 0xc6, 0x31, 0x2d, 0xf3, + 0x3c, 0xe4, 0x9b, 0xd6, 0x1e, 0xd3, 0xea, 0x52, 0xb8, 0x57, 0xb2, 0xb4, 0xba, 0x81, 0x69, 0xbb, + 0x62, 0x6f, 0x95, 0x53, 0xb2, 0xb7, 0xf1, 0x87, 0xd9, 0x1b, 0x8b, 0x6b, 0xf8, 0x07, 0x92, 0xf8, + 0x7d, 0x98, 0x89, 0xfe, 0xe3, 0x1a, 0xa5, 0x3b, 0x8e, 0x10, 0x1b, 0xcc, 0x98, 0xbf, 0x0c, 0xa5, + 0x80, 0x11, 0x1d, 0x68, 0xd9, 0x2f, 0x1c, 0x68, 0x6a, 0x42, 0x8c, 0xc8, 0x02, 0x94, 0x9d, 0x0e, + 0x89, 0x7c, 0xdd, 0x50, 0xc6, 0xc0, 0x37, 0x03, 0x00, 0x0e, 0x71, 0xa8, 0x15, 0x71, 0xae, 0xb1, + 0x2d, 0xde, 0xd7, 0x69, 0xa3, 0x10, 0x62, 0xee, 0x2b, 0x39, 0x08, 0x3e, 0x19, 0x84, 0x96, 0x60, + 0xb4, 0xe3, 0xb8, 0x3e, 0xdf, 0x5a, 0xab, 0x5c, 0xb9, 0x98, 0x3e, 0x3e, 0xfc, 0x74, 0xbf, 0xe3, + 0xfa, 0x21, 0x45, 0xfa, 0xcb, 0xc3, 0xbc, 0x33, 0x95, 0xd3, 0xb0, 0xba, 0x9e, 0x4f, 0xdc, 0x95, + 0x46, 0x5c, 0xce, 0xc5, 0x00, 0x80, 0x43, 0x9c, 0xb9, 0xff, 0x2c, 0xc0, 0x74, 0xbc, 0xb0, 0x1e, + 0x7a, 0x07, 0x26, 0x3c, 0xb3, 0x65, 0x9b, 0x76, 0x4b, 0xc4, 0xa2, 0xb9, 0xbe, 0xaf, 0xf6, 0x6a, + 0x6a, 0x7f, 0x1c, 0x25, 0x97, 0xd9, 0x69, 0xb5, 0xd3, 0xf9, 0x2c, 0xfe, 0xfb, 0xc9, 0x1a, 0x32, + 0x6f, 0x67, 0x5c, 0xda, 0xf0, 0x97, 0xbb, 0x88, 0xcc, 0x2f, 0x46, 0xe1, 0x5c, 0x7a, 0xe9, 0xc4, + 0x53, 0x0a, 0x5a, 0xc3, 0x6b, 0x9c, 0x23, 0x3d, 0xaf, 0x71, 0x86, 0xe3, 0x9c, 0xcf, 0xa8, 0x14, + 0xa2, 0x1c, 0x80, 0xc3, 0x5d, 0xad, 0x0c, 0xa7, 0x0b, 0x0f, 0x0d, 0xa7, 0x2f, 0x43, 0x51, 0x94, + 0xcd, 0x8f, 0x85, 0xa9, 0x75, 0x5e, 0xd4, 0x5e, 0x40, 0x95, 0x50, 0xa0, 0x78, 0x68, 0x28, 0x40, + 0x43, 0x9b, 0x60, 0xff, 0xb1, 0xbf, 0xab, 0x5c, 0x3c, 0xb4, 0x09, 0xfa, 0xe2, 0x90, 0x0c, 0xbb, + 0xa8, 0xdf, 0x31, 0x6f, 0xe1, 0x55, 0x31, 0x2b, 0x87, 0x17, 0xf5, 0x1b, 0x2b, 0xb7, 0xf0, 0x2a, + 0x16, 0xd0, 0x68, 0x2a, 0xb8, 0x9c, 0x49, 0x2a, 0x38, 0x5d, 0xe7, 0x4e, 0x2a, 0x11, 0x66, 0xc0, + 0x4c, 0xe2, 0x9d, 0x1f, 0x39, 0x15, 0x76, 0x19, 0x8a, 0x5e, 0x77, 0x9b, 0xe2, 0xc5, 0x2a, 0x28, + 0x69, 0xac, 0x15, 0x0b, 0xe8, 0xdc, 0xb7, 0x0b, 0x94, 0x4b, 0xac, 0xc8, 0xe6, 0x29, 0x59, 0xd5, + 0x2b, 0x30, 0xc1, 0x93, 0x51, 0x6f, 0x28, 0xe5, 0x37, 0x4a, 0xca, 0x06, 0x83, 0x0a, 0xc4, 0x51, + 0x5c, 0xb4, 0xc2, 0xd4, 0xa4, 0xef, 0x65, 0x21, 0x08, 0x4d, 0xa2, 0x13, 0xb7, 0x20, 0x80, 0x5e, + 0x84, 0x0a, 0x7b, 0x08, 0x3e, 0xe4, 0x22, 0x2b, 0xcb, 0x2e, 0xda, 0x5e, 0x0d, 0x9b, 0xb1, 0x8a, + 0x13, 0x3d, 0x5a, 0x30, 0x9a, 0xc9, 0xd1, 0x82, 0xc4, 0x5b, 0x39, 0x29, 0xbd, 0xfb, 0x66, 0x09, + 0xe4, 0x87, 0x10, 0x91, 0x91, 0xf8, 0x1c, 0xe5, 0xa7, 0xfb, 0xde, 0xbc, 0x09, 0x44, 0xe1, 0x99, + 0xac, 0x94, 0x29, 0xe9, 0x35, 0x40, 0xe2, 0xfb, 0x87, 0x22, 0xa8, 0x56, 0xca, 0x29, 0xc9, 0x5d, + 0x2a, 0x2d, 0x81, 0x81, 0x53, 0x7a, 0xa1, 0xd7, 0xd8, 0xc7, 0x57, 0x7d, 0xdd, 0xb4, 0xa5, 0xe7, + 0x3d, 0xdf, 0xe3, 0xfe, 0x25, 0x47, 0x92, 0x9f, 0x51, 0xe5, 0x3f, 0x71, 0xd8, 0x1d, 0x5d, 0x85, + 0xb1, 0x3b, 0x8e, 0xd5, 0x6d, 0x8b, 0xd4, 0x7c, 0xe5, 0xca, 0x6c, 0x1a, 0xa5, 0xd7, 0x19, 0x8a, + 0x72, 0x5f, 0x88, 0x77, 0xc1, 0x41, 0x5f, 0x44, 0x60, 0x8a, 0x1d, 0xef, 0x31, 0xfd, 0x7d, 0x61, + 0x00, 0x62, 0xea, 0xbd, 0x9c, 0x46, 0xae, 0xe1, 0x34, 0xb5, 0x28, 0x36, 0x3f, 0xe9, 0x11, 0x6b, + 0xc4, 0x71, 0x9a, 0x68, 0x19, 0x4a, 0xfa, 0xf6, 0xb6, 0x69, 0x9b, 0xfe, 0xbe, 0xc8, 0xd9, 0x3d, + 0x93, 0x46, 0xbf, 0x26, 0x70, 0x44, 0x9d, 0x16, 0xf1, 0x0b, 0xcb, 0xbe, 0xe8, 0x16, 0x54, 0x7c, + 0xc7, 0x12, 0x71, 0xa9, 0x27, 0x52, 0x0d, 0x17, 0xd2, 0x48, 0x6d, 0x4a, 0xb4, 0x70, 0x7b, 0x34, + 0x6c, 0xf3, 0xb0, 0x4a, 0x07, 0xfd, 0x4e, 0x0e, 0xc6, 0x6d, 0xa7, 0x49, 0x02, 0xd3, 0x13, 0xdb, + 0x75, 0x6f, 0x66, 0xf4, 0x01, 0xcf, 0xf9, 0x75, 0x85, 0x36, 0xb7, 0x10, 0x59, 0xbf, 0x43, 0x05, + 0xe1, 0x88, 0x10, 0xc8, 0x86, 0x69, 0xb3, 0xad, 0xb7, 0x48, 0xa3, 0x6b, 0x89, 0xe3, 0x89, 0x9e, + 0x98, 0x3c, 0x52, 0x6f, 0xed, 0xae, 0x3a, 0x86, 0x6e, 0xf1, 0x0f, 0xe0, 0x62, 0xb2, 0x4d, 0x5c, + 0xf6, 0x1d, 0x5e, 0x79, 0xd2, 0x64, 0x25, 0x46, 0x09, 0x27, 0x68, 0xa3, 0x6b, 0x30, 0xd3, 0x71, + 0x4d, 0x87, 0xbd, 0x37, 0x4b, 0xf7, 0xf8, 0x07, 0x50, 0x21, 0x7a, 0x55, 0xb3, 0x11, 0x47, 0xc0, + 0xc9, 0x3e, 0xbc, 0xbc, 0x00, 0x6f, 0x64, 0x6b, 0xb9, 0xd1, 0xa0, 0xbc, 0x00, 0x6f, 0xc3, 0x12, + 0x3a, 0xfb, 0x59, 0x98, 0x49, 0x8c, 0x4d, 0x5f, 0x0e, 0xe1, 0x0f, 0x72, 0x10, 0xcf, 0x97, 0xd3, + 0x75, 0x43, 0xd3, 0x74, 0x19, 0xc1, 0xfd, 0x78, 0x8e, 0x7f, 0x29, 0x00, 0xe0, 0x10, 0x07, 0x5d, + 0x82, 0x42, 0x47, 0xf7, 0x77, 0xe2, 0xc7, 0xfc, 0x28, 0x49, 0xcc, 0x20, 0xe8, 0x0a, 0x00, 0xfd, + 0x8b, 0x49, 0x8b, 0xdc, 0xeb, 0x88, 0x65, 0x90, 0xdc, 0x7e, 0x68, 0x48, 0x08, 0x56, 0xb0, 0xe6, + 0xfe, 0x65, 0x14, 0x26, 0xa3, 0x73, 0x4b, 0x64, 0xb1, 0x99, 0x7b, 0xe8, 0x62, 0xf3, 0x32, 0x14, + 0xdb, 0xc4, 0xdf, 0x71, 0x9a, 0xf1, 0x79, 0x72, 0x8d, 0xb5, 0x62, 0x01, 0x65, 0xe2, 0x3b, 0xae, + 0x2f, 0xc4, 0x0a, 0xc5, 0x77, 0x5c, 0x1f, 0x33, 0x48, 0x70, 0x4a, 0xb1, 0xd0, 0xe3, 0x94, 0x62, + 0x0b, 0xa6, 0x79, 0x81, 0xdf, 0x45, 0xe2, 0xfa, 0xc7, 0x3e, 0x5d, 0xab, 0xc5, 0x48, 0xe0, 0x04, + 0x51, 0xd4, 0xa4, 0xde, 0x86, 0xb6, 0x85, 0x3b, 0x03, 0xfd, 0x5f, 0xdd, 0xd7, 0xa2, 0x14, 0x70, + 0x9c, 0xe4, 0x30, 0xb2, 0x91, 0xd1, 0xf7, 0x78, 0xec, 0xca, 0x88, 0xa5, 0xac, 0x2a, 0x23, 0xbe, + 0x0c, 0x93, 0x6d, 0xfd, 0x5e, 0x43, 0xdf, 0xb7, 0x1c, 0xbd, 0xa9, 0x99, 0xf7, 0x89, 0xb8, 0x5d, + 0x8a, 0x0e, 0x1e, 0x5c, 0x9c, 0x5c, 0x8b, 0x40, 0x70, 0x0c, 0x73, 0xb0, 0x09, 0xf8, 0x0f, 0x47, + 0x00, 0x25, 0x3f, 0x5c, 0x82, 0x3e, 0xcc, 0xc1, 0xe4, 0xdd, 0xc8, 0x18, 0x0d, 0x27, 0x38, 0x93, + 0x69, 0xaf, 0x68, 0x3b, 0x8e, 0x31, 0x57, 0x16, 0x38, 0x23, 0x27, 0xb7, 0x90, 0xac, 0xcf, 0xff, + 0xf0, 0xe7, 0x17, 0x9e, 0xf8, 0xd1, 0xcf, 0x2f, 0x3c, 0xf1, 0xe3, 0x9f, 0x5f, 0x78, 0xe2, 0x2b, + 0x07, 0x17, 0x72, 0x3f, 0x3c, 0xb8, 0x90, 0xfb, 0xd1, 0xc1, 0x85, 0xdc, 0x8f, 0x0f, 0x2e, 0xe4, + 0x7e, 0x76, 0x70, 0x21, 0xf7, 0xed, 0x7f, 0xbb, 0xf0, 0xc4, 0xe7, 0x4a, 0x01, 0xd5, 0xff, 0x09, + 0x00, 0x00, 0xff, 0xff, 0x8b, 0x96, 0x10, 0x2f, 0x86, 0xa5, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { @@ -3210,6 +3214,11 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err _ = i var l int _ = l + i -= len(m.CheckInterval) + copy(dAtA[i:], m.CheckInterval) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.CheckInterval))) + i-- + dAtA[i] = 0x7a if m.TLS != nil { { size, err := m.TLS.MarshalToSizedBuffer(dAtA[:i]) @@ -3220,7 +3229,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x62 + dAtA[i] = 0x72 } if m.Filter != nil { { @@ -3232,7 +3241,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x5a + dAtA[i] = 0x6a } if len(m.Metadata) > 0 { keysForMetadata := make([]string, 0, len(m.Metadata)) @@ -3255,7 +3264,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err dAtA[i] = 0xa i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) i-- - dAtA[i] = 0x52 + dAtA[i] = 0x62 } } i-- @@ -3265,12 +3274,12 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err dAtA[i] = 0 } i-- - dAtA[i] = 0x48 + dAtA[i] = 0x58 i -= len(m.BitbucketServerBaseURL) copy(dAtA[i:], m.BitbucketServerBaseURL) i = encodeVarintGenerated(dAtA, i, uint64(len(m.BitbucketServerBaseURL))) i-- - dAtA[i] = 0x42 + dAtA[i] = 0x52 if m.WebhookSecret != nil { { size, err := m.WebhookSecret.MarshalToSizedBuffer(dAtA[:i]) @@ -3281,7 +3290,7 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x3a + dAtA[i] = 0x4a } if m.AccessToken != nil { { @@ -3293,15 +3302,23 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x32 + dAtA[i] = 0x42 + } + i-- + if m.SkipBranchRefsChangedOnOpenPR { + dAtA[i] = 1 + } else { + dAtA[i] = 0 } + i-- + dAtA[i] = 0x38 if len(m.Events) > 0 { for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Events[iNdEx]) copy(dAtA[i:], m.Events[iNdEx]) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Events[iNdEx]))) i-- - dAtA[i] = 0x2a + dAtA[i] = 0x32 } } if len(m.Repositories) > 0 { @@ -3315,6 +3332,15 @@ func (m *BitbucketServerEventSource) MarshalToSizedBuffer(dAtA []byte) (int, err i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- + dAtA[i] = 0x2a + } + } + if len(m.Projects) > 0 { + for iNdEx := len(m.Projects) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Projects[iNdEx]) + copy(dAtA[i:], m.Projects[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Projects[iNdEx]))) + i-- dAtA[i] = 0x22 } } @@ -8506,6 +8532,12 @@ func (m *BitbucketServerEventSource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = len(m.DeprecatedRepositorySlug) n += 1 + l + sovGenerated(uint64(l)) + if len(m.Projects) > 0 { + for _, s := range m.Projects { + l = len(s) + n += 1 + l + sovGenerated(uint64(l)) + } + } if len(m.Repositories) > 0 { for _, e := range m.Repositories { l = e.Size() @@ -8518,6 +8550,7 @@ func (m *BitbucketServerEventSource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + n += 2 if m.AccessToken != nil { l = m.AccessToken.Size() n += 1 + l + sovGenerated(uint64(l)) @@ -8545,6 +8578,8 @@ func (m *BitbucketServerEventSource) Size() (n int) { l = m.TLS.Size() n += 1 + l + sovGenerated(uint64(l)) } + l = len(m.CheckInterval) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10470,8 +10505,10 @@ func (this *BitbucketServerEventSource) String() string { `Webhook:` + strings.Replace(this.Webhook.String(), "WebhookContext", "WebhookContext", 1) + `,`, `DeprecatedProjectKey:` + fmt.Sprintf("%v", this.DeprecatedProjectKey) + `,`, `DeprecatedRepositorySlug:` + fmt.Sprintf("%v", this.DeprecatedRepositorySlug) + `,`, + `Projects:` + fmt.Sprintf("%v", this.Projects) + `,`, `Repositories:` + repeatedStringForRepositories + `,`, `Events:` + fmt.Sprintf("%v", this.Events) + `,`, + `SkipBranchRefsChangedOnOpenPR:` + fmt.Sprintf("%v", this.SkipBranchRefsChangedOnOpenPR) + `,`, `AccessToken:` + strings.Replace(fmt.Sprintf("%v", this.AccessToken), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, `WebhookSecret:` + strings.Replace(fmt.Sprintf("%v", this.WebhookSecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, `BitbucketServerBaseURL:` + fmt.Sprintf("%v", this.BitbucketServerBaseURL) + `,`, @@ -10479,6 +10516,7 @@ func (this *BitbucketServerEventSource) String() string { `Metadata:` + mapStringForMetadata + `,`, `Filter:` + strings.Replace(this.Filter.String(), "EventSourceFilter", "EventSourceFilter", 1) + `,`, `TLS:` + strings.Replace(fmt.Sprintf("%v", this.TLS), "TLSConfig", "common.TLSConfig", 1) + `,`, + `CheckInterval:` + fmt.Sprintf("%v", this.CheckInterval) + `,`, `}`, }, "") return s @@ -15150,6 +15188,38 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { m.DeprecatedRepositorySlug = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Projects", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Projects = append(m.Projects, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Repositories", wireType) } @@ -15183,7 +15253,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 5: + case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) } @@ -15215,7 +15285,27 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.Events = append(m.Events, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex - case 6: + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SkipBranchRefsChangedOnOpenPR", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.SkipBranchRefsChangedOnOpenPR = bool(v != 0) + case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AccessToken", wireType) } @@ -15251,7 +15341,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 7: + case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field WebhookSecret", wireType) } @@ -15287,7 +15377,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 8: + case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BitbucketServerBaseURL", wireType) } @@ -15319,7 +15409,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.BitbucketServerBaseURL = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 9: + case 11: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field DeleteHookOnFinish", wireType) } @@ -15339,7 +15429,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } } m.DeleteHookOnFinish = bool(v != 0) - case 10: + case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } @@ -15466,7 +15556,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { } m.Metadata[mapkey] = mapvalue iNdEx = postIndex - case 11: + case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Filter", wireType) } @@ -15502,7 +15592,7 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 12: + case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TLS", wireType) } @@ -15538,6 +15628,38 @@ func (m *BitbucketServerEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 15: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CheckInterval", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CheckInterval = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index 12f9878907..8848000367 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -365,58 +365,72 @@ message BitbucketRepository { // BitbucketServerEventSource refers to event-source related to Bitbucket Server events message BitbucketServerEventSource { - // Webhook holds configuration to run a http server + // Webhook holds configuration to run a http server. optional WebhookContext webhook = 1; - // DeprecatedProjectKey is the key of project for which integration needs to set up - // Deprecated: use Repositories instead. Will be unsupported in v1.8 + // DeprecatedProjectKey is the key of project for which integration needs to set up. + // Deprecated: use Repositories instead. Will be unsupported in v1.8. // +optional optional string projectKey = 2; - // DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up - // Deprecated: use Repositories instead. Will be unsupported in v1.8 + // DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. + // Deprecated: use Repositories instead. Will be unsupported in v1.8. // +optional optional string repositorySlug = 3; - // Repositories holds a list of repositories for which integration needs to set up + // Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project. + // +optional + repeated string projects = 4; + + // Repositories holds a list of repositories for which integration needs to set up. // +optional - repeated BitbucketServerRepository repositories = 4; + repeated BitbucketServerRepository repositories = 5; // Events are bitbucket event to listen to. // Refer https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html - repeated string events = 5; + // +optional + repeated string events = 6; - // AccessToken is reference to K8s secret which holds the bitbucket api access information - optional k8s.io.api.core.v1.SecretKeySelector accessToken = 6; + // SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there's an associated open pull request. + // This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review. + // +optional + optional bool skipBranchRefsChangedOnOpenPR = 7; - // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation) - optional k8s.io.api.core.v1.SecretKeySelector webhookSecret = 7; + // AccessToken is reference to K8s secret which holds the bitbucket api access information. + optional k8s.io.api.core.v1.SecretKeySelector accessToken = 8; - // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint - optional string bitbucketserverBaseURL = 8; + // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation). + optional k8s.io.api.core.v1.SecretKeySelector webhookSecret = 9; + + // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint. + optional string bitbucketserverBaseURL = 10; // DeleteHookOnFinish determines whether to delete the Bitbucket Server hook for the project once the event source is stopped. // +optional - optional bool deleteHookOnFinish = 9; + optional bool deleteHookOnFinish = 11; // Metadata holds the user defined metadata which will passed along the event payload. // +optional - map metadata = 10; + map metadata = 12; // Filter // +optional - optional EventSourceFilter filter = 11; + optional EventSourceFilter filter = 13; // TLS configuration for the bitbucketserver client. // +optional - optional github.com.argoproj.argo_events.pkg.apis.common.TLSConfig tls = 12; + optional github.com.argoproj.argo_events.pkg.apis.common.TLSConfig tls = 14; + + // CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m) + // +optional + optional string checkInterval = 15; } message BitbucketServerRepository { - // ProjectKey is the key of project for which integration needs to set up + // ProjectKey is the key of project for which integration needs to set up. optional string projectKey = 1; - // RepositorySlug is the slug of the repository for which integration needs to set up + // RepositorySlug is the slug of the repository for which integration needs to set up. optional string repositorySlug = 2; } diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index cf10771d89..8eddf7482c 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -819,27 +819,42 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerEventSource(ref common. Properties: map[string]spec.Schema{ "webhook": { SchemaProps: spec.SchemaProps{ - Description: "Webhook holds configuration to run a http server", + Description: "Webhook holds configuration to run a http server.", Ref: ref("github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.WebhookContext"), }, }, "projectKey": { SchemaProps: spec.SchemaProps{ - Description: "DeprecatedProjectKey is the key of project for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + Description: "DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", Type: []string{"string"}, Format: "", }, }, "repositorySlug": { SchemaProps: spec.SchemaProps{ - Description: "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up Deprecated: use Repositories instead. Will be unsupported in v1.8", + Description: "DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8.", Type: []string{"string"}, Format: "", }, }, + "projects": { + SchemaProps: spec.SchemaProps{ + Description: "Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, "repositories": { SchemaProps: spec.SchemaProps{ - Description: "Repositories holds a list of repositories for which integration needs to set up", + Description: "Repositories holds a list of repositories for which integration needs to set up.", Type: []string{"array"}, Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ @@ -866,21 +881,28 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerEventSource(ref common. }, }, }, + "skipBranchRefsChangedOnOpenPR": { + SchemaProps: spec.SchemaProps{ + Description: "SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there's an associated open pull request. This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review.", + Type: []string{"boolean"}, + Format: "", + }, + }, "accessToken": { SchemaProps: spec.SchemaProps{ - Description: "AccessToken is reference to K8s secret which holds the bitbucket api access information", + Description: "AccessToken is reference to K8s secret which holds the bitbucket api access information.", Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), }, }, "webhookSecret": { SchemaProps: spec.SchemaProps{ - Description: "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation)", + Description: "WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation).", Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), }, }, "bitbucketserverBaseURL": { SchemaProps: spec.SchemaProps{ - Description: "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint", + Description: "BitbucketServerBaseURL is the base URL for API requests to a custom endpoint.", Default: "", Type: []string{"string"}, Format: "", @@ -921,8 +943,16 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerEventSource(ref common. Ref: ref("github.com/argoproj/argo-events/pkg/apis/common.TLSConfig"), }, }, + "checkInterval": { + SchemaProps: spec.SchemaProps{ + Description: "CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m)", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, }, - Required: []string{"events", "bitbucketserverBaseURL"}, + Required: []string{"bitbucketserverBaseURL"}, }, }, Dependencies: []string{ @@ -938,7 +968,7 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerRepository(ref common.R Properties: map[string]spec.Schema{ "projectKey": { SchemaProps: spec.SchemaProps{ - Description: "ProjectKey is the key of project for which integration needs to set up", + Description: "ProjectKey is the key of project for which integration needs to set up.", Default: "", Type: []string{"string"}, Format: "", @@ -946,7 +976,7 @@ func schema_pkg_apis_eventsource_v1alpha1_BitbucketServerRepository(ref common.R }, "repositorySlug": { SchemaProps: spec.SchemaProps{ - Description: "RepositorySlug is the slug of the repository for which integration needs to set up", + Description: "RepositorySlug is the slug of the repository for which integration needs to set up.", Default: "", Type: []string{"string"}, Format: "", diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go index 37173e18f0..41da881ebd 100644 --- a/pkg/apis/eventsource/v1alpha1/types.go +++ b/pkg/apis/eventsource/v1alpha1/types.go @@ -1061,47 +1061,58 @@ type BitbucketBasicAuth struct { // BitbucketServerEventSource refers to event-source related to Bitbucket Server events type BitbucketServerEventSource struct { - // Webhook holds configuration to run a http server + // Webhook holds configuration to run a http server. Webhook *WebhookContext `json:"webhook,omitempty" protobuf:"bytes,1,opt,name=webhook"` - // DeprecatedProjectKey is the key of project for which integration needs to set up - // Deprecated: use Repositories instead. Will be unsupported in v1.8 + // DeprecatedProjectKey is the key of project for which integration needs to set up. + // Deprecated: use Repositories instead. Will be unsupported in v1.8. // +optional DeprecatedProjectKey string `json:"projectKey,omitempty" protobuf:"bytes,2,opt,name=projectKey"` - // DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up - // Deprecated: use Repositories instead. Will be unsupported in v1.8 + // DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. + // Deprecated: use Repositories instead. Will be unsupported in v1.8. // +optional DeprecatedRepositorySlug string `json:"repositorySlug,omitempty" protobuf:"bytes,3,opt,name=repositorySlug"` - // Repositories holds a list of repositories for which integration needs to set up + // Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project. + // +optional + Projects []string `json:"projects,omitempty" protobuf:"bytes,4,rep,name=projects"` + // Repositories holds a list of repositories for which integration needs to set up. // +optional - Repositories []BitbucketServerRepository `json:"repositories,omitempty" protobuf:"bytes,4,rep,name=repositories"` + Repositories []BitbucketServerRepository `json:"repositories,omitempty" protobuf:"bytes,5,rep,name=repositories"` // Events are bitbucket event to listen to. // Refer https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html - Events []string `json:"events" protobuf:"bytes,5,opt,name=events"` - // AccessToken is reference to K8s secret which holds the bitbucket api access information - AccessToken *corev1.SecretKeySelector `json:"accessToken,omitempty" protobuf:"bytes,6,opt,name=accessToken"` - // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation) - WebhookSecret *corev1.SecretKeySelector `json:"webhookSecret,omitempty" protobuf:"bytes,7,opt,name=webhookSecret"` - // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint - BitbucketServerBaseURL string `json:"bitbucketserverBaseURL" protobuf:"bytes,8,opt,name=bitbucketserverBaseURL"` + // +optional + Events []string `json:"events" protobuf:"bytes,6,rep,name=events"` + // SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there's an associated open pull request. + // This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review. + // +optional + SkipBranchRefsChangedOnOpenPR bool `json:"skipBranchRefsChangedOnOpenPR,omitempty" protobuf:"varint,7,opt,name=skipBranchRefsChangedOnOpenPR"` + // AccessToken is reference to K8s secret which holds the bitbucket api access information. + AccessToken *corev1.SecretKeySelector `json:"accessToken,omitempty" protobuf:"bytes,8,opt,name=accessToken"` + // WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation). + WebhookSecret *corev1.SecretKeySelector `json:"webhookSecret,omitempty" protobuf:"bytes,9,opt,name=webhookSecret"` + // BitbucketServerBaseURL is the base URL for API requests to a custom endpoint. + BitbucketServerBaseURL string `json:"bitbucketserverBaseURL" protobuf:"bytes,10,opt,name=bitbucketserverBaseURL"` // DeleteHookOnFinish determines whether to delete the Bitbucket Server hook for the project once the event source is stopped. // +optional - DeleteHookOnFinish bool `json:"deleteHookOnFinish,omitempty" protobuf:"varint,9,opt,name=deleteHookOnFinish"` + DeleteHookOnFinish bool `json:"deleteHookOnFinish,omitempty" protobuf:"varint,11,opt,name=deleteHookOnFinish"` // Metadata holds the user defined metadata which will passed along the event payload. // +optional - Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,10,rep,name=metadata"` + Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,12,rep,name=metadata"` // Filter // +optional - Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,11,opt,name=filter"` + Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,13,opt,name=filter"` // TLS configuration for the bitbucketserver client. // +optional - TLS *apicommon.TLSConfig `json:"tls,omitempty" protobuf:"bytes,12,opt,name=tls"` + TLS *apicommon.TLSConfig `json:"tls,omitempty" protobuf:"bytes,14,opt,name=tls"` + // CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m) + // +optional + CheckInterval string `json:"checkInterval" protobuf:"bytes,15,opt,name=checkInterval"` } type BitbucketServerRepository struct { - // ProjectKey is the key of project for which integration needs to set up + // ProjectKey is the key of project for which integration needs to set up. ProjectKey string `json:"projectKey" protobuf:"bytes,1,opt,name=projectKey"` - // RepositorySlug is the slug of the repository for which integration needs to set up - RepositorySlug string `json:"repositorySlug" protobuf:"bytes,2,rep,name=repositorySlug"` + // RepositorySlug is the slug of the repository for which integration needs to set up. + RepositorySlug string `json:"repositorySlug" protobuf:"bytes,2,opt,name=repositorySlug"` } func (b BitbucketServerEventSource) ShouldCreateWebhooks() bool { diff --git a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go index 845a6762fc..e33de9dc68 100644 --- a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go @@ -397,6 +397,11 @@ func (in *BitbucketServerEventSource) DeepCopyInto(out *BitbucketServerEventSour *out = new(WebhookContext) (*in).DeepCopyInto(*out) } + if in.Projects != nil { + in, out := &in.Projects, &out.Projects + *out = make([]string, len(*in)) + copy(*out, *in) + } if in.Repositories != nil { in, out := &in.Repositories, &out.Repositories *out = make([]BitbucketServerRepository, len(*in)) From 9b72a21b4cebffeb783d7fb2e7a2909fd2363504 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:55:44 +0000 Subject: [PATCH 046/123] chore(deps): bump github.com/slack-go/slack from 0.12.4 to 0.12.5 (#3040) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 7cccfff9dd..acb7fffd6a 100644 --- a/go.mod +++ b/go.mod @@ -66,7 +66,7 @@ require ( github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 github.com/robfig/cron/v3 v3.0.1 - github.com/slack-go/slack v0.12.4 + github.com/slack-go/slack v0.12.5 github.com/smartystreets/goconvey v1.7.2 github.com/spf13/cobra v1.8.0 github.com/spf13/viper v1.18.2 diff --git a/go.sum b/go.sum index e186852ca4..e948f72d6d 100644 --- a/go.sum +++ b/go.sum @@ -1718,8 +1718,8 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= -github.com/slack-go/slack v0.12.4 h1:4iLT2opw+/QptmQxBNA7S8pNfSIvtn0NDGu7Jq0emi4= -github.com/slack-go/slack v0.12.4/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= +github.com/slack-go/slack v0.12.5 h1:ddZ6uz6XVaB+3MTDhoW04gG+Vc/M/X1ctC+wssy2cqs= +github.com/slack-go/slack v0.12.5/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= From 4640848c3c27877c9e37cb3cf05aac87edd2b928 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:55:51 +0000 Subject: [PATCH 047/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.97.0 to 0.98.0 (#3041) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index acb7fffd6a..a392f70078 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.97.0 + github.com/xanzy/go-gitlab v0.98.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.27.0 diff --git a/go.sum b/go.sum index e948f72d6d..d60393cf0a 100644 --- a/go.sum +++ b/go.sum @@ -1813,8 +1813,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.97.0 h1:StMqJ1Kvt00X43pYIBBjj52dFlghwSeBhRDRfzaZ7xY= -github.com/xanzy/go-gitlab v0.97.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.98.0 h1:psTMbnA0vSo512M8WUpM5YIFPxrdQ/11V0y/5SdzIIg= +github.com/xanzy/go-gitlab v0.98.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From b9adbdf977360be6ee722657924f4844419f6bd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:56:24 +0000 Subject: [PATCH 048/123] chore(deps): bump github.com/prometheus/client_golang from 1.17.0 to 1.19.0 (#3042) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 9 ++++----- go.sum | 18 ++++++++---------- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/go.mod b/go.mod index a392f70078..2be7bf6dff 100644 --- a/go.mod +++ b/go.mod @@ -61,7 +61,7 @@ require ( github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 - github.com/prometheus/client_golang v1.17.0 + github.com/prometheus/client_golang v1.19.0 github.com/rabbitmq/amqp091-go v1.8.1 github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 @@ -259,7 +259,6 @@ require ( github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/minio/md5-simd v1.1.2 // indirect github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect @@ -275,9 +274,9 @@ require ( github.com/pelletier/go-toml v1.9.5 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect - github.com/prometheus/common v0.44.0 // indirect - github.com/prometheus/procfs v0.11.1 // indirect + github.com/prometheus/client_model v0.5.0 // indirect + github.com/prometheus/common v0.48.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/rs/xid v1.5.0 // indirect diff --git a/go.sum b/go.sum index d60393cf0a..ae1591423e 100644 --- a/go.sum +++ b/go.sum @@ -1472,8 +1472,6 @@ github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= -github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= @@ -1635,15 +1633,15 @@ github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDf github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q= -github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+LjWfWDUmp1mBz9JgUY= +github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= +github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 h1:v7DLqVdK4VrYkVD5diGdl4sxJurKJEMnODWRJlxV9oM= -github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= +github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= +github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= @@ -1651,8 +1649,8 @@ github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8 github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.28.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= -github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= +github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= +github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= @@ -1660,8 +1658,8 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI= -github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY= +github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= +github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rabbitmq/amqp091-go v1.8.1 h1:RejT1SBUim5doqcL6s7iN6SBmsQqyTgXb1xMlH0h1hA= github.com/rabbitmq/amqp091-go v1.8.1/go.mod h1:+jPrT9iY2eLjRaMSRHUhc3z14E/l85kv/f+6luSD3pc= From c18b9808368ccf8204288628492d090e071be9f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 13:00:08 +0000 Subject: [PATCH 049/123] chore(deps): bump golang.org/x/crypto from 0.19.0 to 0.20.0 (#3044) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 2be7bf6dff..8c3a497b9a 100644 --- a/go.mod +++ b/go.mod @@ -78,7 +78,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.27.0 - golang.org/x/crypto v0.19.0 + golang.org/x/crypto v0.20.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 google.golang.org/api v0.167.0 google.golang.org/grpc v1.62.0 diff --git a/go.sum b/go.sum index ae1591423e..cc7446fee7 100644 --- a/go.sum +++ b/go.sum @@ -1959,8 +1959,8 @@ golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= -golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo= -golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.20.0 h1:jmAMJJZXr5KiCw05dfYK9QnqaqKLYXijU23lsEdcQqg= +golang.org/x/crypto v0.20.0/go.mod h1:Xwo95rrVNIoSMx9wa1JroENMToLWn3RNVrTBpLHgZPQ= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= From dff299189e9c2e6568173f413d54a605c3139bd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 13:04:38 +0000 Subject: [PATCH 050/123] chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#3045) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 8c3a497b9a..83390b8e56 100644 --- a/go.mod +++ b/go.mod @@ -70,7 +70,7 @@ require ( github.com/smartystreets/goconvey v1.7.2 github.com/spf13/cobra v1.8.0 github.com/spf13/viper v1.18.2 - github.com/stretchr/testify v1.8.4 + github.com/stretchr/testify v1.9.0 github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 diff --git a/go.sum b/go.sum index cc7446fee7..3f584787ce 100644 --- a/go.sum +++ b/go.sum @@ -1767,8 +1767,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= github.com/stretchr/testify v0.0.0-20161117074351-18a02ba4a312/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= @@ -1780,8 +1780,9 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/stripe/stripe-go v70.15.0+incompatible h1:hNML7M1zx8RgtepEMlxyu/FpVPrP7KZm1gPFQquJQvM= github.com/stripe/stripe-go v70.15.0+incompatible/go.mod h1:A1dQZmO/QypXmsL0T8axYZkSN/uA/T/A64pfKdBAMiY= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= From 869836d9be499325db8a0512f0187e59597a639b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 20:25:35 +0000 Subject: [PATCH 051/123] chore(deps): bump github.com/cloudevents/sdk-go/v2 from 2.15.1 to 2.15.2 (#3047) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 83390b8e56..0859ef978e 100644 --- a/go.mod +++ b/go.mod @@ -27,7 +27,7 @@ require ( github.com/aws/aws-sdk-go v1.44.209 github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 - github.com/cloudevents/sdk-go/v2 v2.15.1 + github.com/cloudevents/sdk-go/v2 v2.15.2 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 github.com/eclipse/paho.mqtt.golang v1.4.3 github.com/emitter-io/go/v2 v2.0.9 diff --git a/go.sum b/go.sum index 3f584787ce..744304d1c7 100644 --- a/go.sum +++ b/go.sum @@ -802,8 +802,8 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudevents/sdk-go/v2 v2.15.1 h1:EZxXQFkzk8TSsxDBx8v18+KGwTYsGRyHNwtzZiHUk4E= -github.com/cloudevents/sdk-go/v2 v2.15.1/go.mod h1:lL7kSWAE/V8VI4Wh0jbL2v/jvqsm6tjmaQBSvxcv4uE= +github.com/cloudevents/sdk-go/v2 v2.15.2 h1:54+I5xQEnI73RBhWHxbI1XJcqOFOVJN85vb41+8mHUc= +github.com/cloudevents/sdk-go/v2 v2.15.2/go.mod h1:lL7kSWAE/V8VI4Wh0jbL2v/jvqsm6tjmaQBSvxcv4uE= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= From 1d83490fdad225038b844447474f8f6e7d88a9ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:10:13 +0000 Subject: [PATCH 052/123] chore(deps): bump softprops/action-gh-release from 1 to 2 (#3050) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3cc0b8f9bf..a3ef0c6ef0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -169,7 +169,7 @@ jobs: COSIGN_PASSWORD: ${{secrets.COSIGN_PASSWORD}} - name: Release binaries - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: | From dbceb182a2d700486ade6fe47c461f4688b29920 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:17:11 +0000 Subject: [PATCH 053/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus from 1.6.0 to 1.6.1 (#3051) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 10 +++++----- go.sum | 24 ++++++++++++------------ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/go.mod b/go.mod index 0859ef978e..32d0c2555b 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 - github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 + github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.1 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.43.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible @@ -101,9 +101,9 @@ require ( github.com/99designs/keyring v1.2.1 // indirect github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect - github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/DataDog/zstd v1.5.0 // indirect github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect @@ -175,7 +175,7 @@ require ( cloud.google.com/go v0.112.0 // indirect cloud.google.com/go/iam v1.1.6 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect - github.com/Azure/go-amqp v1.0.4 // indirect + github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.28 // indirect github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect diff --git a/go.sum b/go.sum index 744304d1c7..ad4d2e9580 100644 --- a/go.sum +++ b/go.sum @@ -624,18 +624,18 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7 github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1 h1:lGlwhPtrX6EVml1hO0ivjkUxsSyl4dsiw9qcA1k/3IQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1/go.mod h1:RKUqNu35KJYcVG/fqTRqmuXJZYNhYkBrnC/hX7yGbTA= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 h1:c4k2FIYIh4xtwqrQwV0Ct1v5+ehlNXj5NI/MWVsiTkQ= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2/go.mod h1:5FDJtLEO/GxwNgUxbwrY3LP0pEoThTQJtk2oysdXHxM= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 h1:6oNBlSdi1QqM1PNW7FPA6xOGA5UNsXnkaYZz9vdPGhA= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1/go.mod h1:s4kgfzA0covAXNicZHDMN58jExvcng2mC/DepXiF1EI= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0 h1:Fhg/LkAagiLv9Xpw6r2knr19tn9t1TiQoJu5bOMzflc= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.0/go.mod h1:7xwz/6tTwO9zMKni8/EozIMi0DTexFSm7YNE9HdD3cQ= +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/messaging/azservicebus v1.6.1 h1:gttKczhMJufxvljW0Z6t8b6a9Ink9aOdqxQxD3igWMA= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.1/go.mod h1:xNjFERdhyMqZncbNJSPBsTCddk5kwsUVUzELQPMj/LA= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTHJKx/ZF6CJSt9znxmLw9DqSTvyRU= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0/go.mod h1:GfT0aGew8Qj5yiQVqOO5v7N8fanbJGyUoHqXg56qcVY= -github.com/Azure/go-amqp v1.0.4 h1:GX5OFOs706UjuFRD5PDKm3aOuLQ92F7DMbua+DKAYCc= -github.com/Azure/go-amqp v1.0.4/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= +github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= +github.com/Azure/go-amqp v1.0.5/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= @@ -669,8 +669,8 @@ github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= -github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 h1:DzHpqpoJVaCgOUdVHxE8QB52S6NiVdDQvGlny1qvPqA= -github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 h1:XHOnouVk1mxXfQidrMEnLlPk9UMeRtyBTnEFtxkV0kU= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= @@ -1358,8 +1358,8 @@ github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9Y github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc= github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= +github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 h1:ct2XA1aDw8A07Dr8gtrrZgIgLKcZNAl2o9nn0WRMK4Y= @@ -2872,7 +2872,7 @@ modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs= moul.io/http2curl/v2 v2.3.0/go.mod h1:RW4hyBjTWSYDOxapodpNEtX0g5Eb16sxklBqmd2RHcE= -nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g= +nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= From 77e610dc58f631a66381ce61febabef99a87c6e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:17:38 +0000 Subject: [PATCH 054/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.98.0 to 0.99.0 (#3052) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 32d0c2555b..4fd6334bb2 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.98.0 + github.com/xanzy/go-gitlab v0.99.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.27.0 diff --git a/go.sum b/go.sum index ad4d2e9580..33e00fd4e2 100644 --- a/go.sum +++ b/go.sum @@ -1812,8 +1812,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.98.0 h1:psTMbnA0vSo512M8WUpM5YIFPxrdQ/11V0y/5SdzIIg= -github.com/xanzy/go-gitlab v0.98.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.99.0 h1:0W5dmFQejPlqnScZoGRXNPmx+evOxBMk50P40cxlnWU= +github.com/xanzy/go-gitlab v0.99.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From ef18fad18cbb95961bcc0344f7b320f18a79acb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:20:19 +0000 Subject: [PATCH 055/123] chore(deps): bump golang.org/x/crypto from 0.20.0 to 0.21.0 (#3053) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 4fd6334bb2..c611ac7c8b 100644 --- a/go.mod +++ b/go.mod @@ -78,7 +78,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.2.0 go.uber.org/zap v1.27.0 - golang.org/x/crypto v0.20.0 + golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 google.golang.org/api v0.167.0 google.golang.org/grpc v1.62.0 @@ -311,8 +311,8 @@ require ( golang.org/x/net v0.21.0 // indirect golang.org/x/oauth2 v0.17.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.17.0 // indirect - golang.org/x/term v0.17.0 // indirect + golang.org/x/sys v0.18.0 // indirect + golang.org/x/term v0.18.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.13.0 // indirect diff --git a/go.sum b/go.sum index 33e00fd4e2..906d4f7596 100644 --- a/go.sum +++ b/go.sum @@ -1960,8 +1960,8 @@ golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= -golang.org/x/crypto v0.20.0 h1:jmAMJJZXr5KiCw05dfYK9QnqaqKLYXijU23lsEdcQqg= -golang.org/x/crypto v0.20.0/go.mod h1:Xwo95rrVNIoSMx9wa1JroENMToLWn3RNVrTBpLHgZPQ= +golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= +golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2283,8 +2283,8 @@ golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= -golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2299,8 +2299,8 @@ golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= -golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U= -golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= +golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= From 8388c91a76ec7459461c17998aaf6e419ee90ac2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:21:20 +0000 Subject: [PATCH 056/123] chore(deps): bump github.com/golang/protobuf from 1.5.3 to 1.5.4 (#3054) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index c611ac7c8b..0b8a733209 100644 --- a/go.mod +++ b/go.mod @@ -42,7 +42,7 @@ require ( github.com/go-swagger/go-swagger v0.30.4 github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe github.com/gogo/protobuf v1.3.2 - github.com/golang/protobuf v1.5.3 + github.com/golang/protobuf v1.5.4 github.com/google/go-cmp v0.6.0 github.com/google/go-github/v50 v50.2.0 github.com/google/uuid v1.6.0 @@ -319,7 +319,7 @@ require ( gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 // indirect - google.golang.org/protobuf v1.32.0 // indirect + google.golang.org/protobuf v1.33.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect diff --git a/go.sum b/go.sum index 906d4f7596..e31ba1fc17 100644 --- a/go.sum +++ b/go.sum @@ -1129,8 +1129,9 @@ github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= @@ -2724,8 +2725,8 @@ google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= -google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= From 95db0fc3c45bdc6ece06c00b154fab7c512d8f58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:26:12 +0000 Subject: [PATCH 057/123] chore(deps): bump github.com/minio/minio-go/v7 from 7.0.67 to 7.0.68 (#3057) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 0b8a733209..5d05dc00d5 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.76 - github.com/minio/minio-go/v7 v7.0.67 + github.com/minio/minio-go/v7 v7.0.68 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f diff --git a/go.sum b/go.sum index e31ba1fc17..1364ee07db 100644 --- a/go.sum +++ b/go.sum @@ -1483,8 +1483,8 @@ github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77Z github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go/v7 v7.0.29/go.mod h1:x81+AX5gHSfCSqw7jxRKHvxUXMlE5uKX0Vb75Xk5yYg= -github.com/minio/minio-go/v7 v7.0.67 h1:BeBvZWAS+kRJm1vGTMJYVjKUNoo0FoEt/wUWdUtfmh8= -github.com/minio/minio-go/v7 v7.0.67/go.mod h1:+UXocnUeZ3wHvVh5s95gcrA4YjMIbccT6ubB+1m054A= +github.com/minio/minio-go/v7 v7.0.68 h1:hTqSIfLlpXaKuNy4baAp4Jjy2sqZEN9hRxD0M4aOfrQ= +github.com/minio/minio-go/v7 v7.0.68/go.mod h1:XAvOPJQ5Xlzk5o3o/ArO2NMbhSGkimC+bpW/ngRKDmQ= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= From e979b58430672a20eac061e3a3674d7179cee95c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:27:15 +0000 Subject: [PATCH 058/123] chore(deps): bump github.com/go-openapi/inflect from 0.19.0 to 0.20.0 (#3058) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 5d05dc00d5..b882cd7d94 100644 --- a/go.mod +++ b/go.mod @@ -36,7 +36,7 @@ require ( github.com/gfleury/go-bitbucket-v1 v0.0.0-20210707202713-7d616f7c18ac github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 github.com/go-git/go-git/v5 v5.11.0 - github.com/go-openapi/inflect v0.19.0 + github.com/go-openapi/inflect v0.20.0 github.com/go-redis/redis/v8 v8.11.5 github.com/go-resty/resty/v2 v2.11.0 github.com/go-swagger/go-swagger v0.30.4 diff --git a/go.sum b/go.sum index 1364ee07db..bcdd6ebbe0 100644 --- a/go.sum +++ b/go.sum @@ -990,8 +990,8 @@ github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpX github.com/go-openapi/errors v0.20.2/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= github.com/go-openapi/errors v0.20.3 h1:rz6kiC84sqNQoqrtulzaL/VERgkoCyB6WdEkc2ujzUc= github.com/go-openapi/errors v0.20.3/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk= -github.com/go-openapi/inflect v0.19.0 h1:9jCH9scKIbHeV9m12SmPilScz6krDxKRasNNSNPXu/4= -github.com/go-openapi/inflect v0.19.0/go.mod h1:lHpZVlpIQqLyKwJ4N+YSc9hchQy/i12fJykb83CRBH4= +github.com/go-openapi/inflect v0.20.0 h1:OpmOqyxVnZ4idO6OhA21Te9P4WIvcBvhv95+4WvT5Sk= +github.com/go-openapi/inflect v0.20.0/go.mod h1:iw8UPvdxN2e/2ne3IUj0d+9LSArdU17+X6qJAeH7ff0= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.19.5 h1:gZr+CIYByUqjcgeLXnQu2gHYQC9o73G2XUeOFYEICuY= From 5faea8a378f5036c1a72974d67c0d237452567a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:36:53 +0000 Subject: [PATCH 059/123] chore(deps): bump go.uber.org/ratelimit from 0.2.0 to 0.3.1 (#3055) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index b882cd7d94..8b628f3e24 100644 --- a/go.mod +++ b/go.mod @@ -76,7 +76,7 @@ require ( github.com/tidwall/sjson v1.2.4 github.com/xanzy/go-gitlab v0.99.0 github.com/yuin/gopher-lua v1.1.1 - go.uber.org/ratelimit v0.2.0 + go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 @@ -109,6 +109,7 @@ require ( github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 // indirect github.com/andybalholm/brotli v1.0.4 // indirect + github.com/benbjohnson/clock v1.3.0 // indirect github.com/bits-and-blooms/bitset v1.4.0 // indirect github.com/cloudflare/circl v1.3.7 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect @@ -189,7 +190,6 @@ require ( github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect github.com/ajg/form v1.5.1 // indirect - github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71 // indirect diff --git a/go.sum b/go.sum index bcdd6ebbe0..31e55ce797 100644 --- a/go.sum +++ b/go.sum @@ -721,8 +721,6 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI= -github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129/go.mod h1:rFgpPQZYZ8vdbc+48xibu8ALc3yeyd64IhHS+PU6Yyg= github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY= github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/andygrunwald/go-gerrit v0.0.0-20230325081502-da63a5c62d80 h1:7GeFYBed/nHbicP+zd2xzKHUjJnTyn3Ljgme8FXJykQ= @@ -767,6 +765,8 @@ github.com/aws/aws-sdk-go v1.44.209/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8 github.com/beevik/ntp v0.2.0/go.mod h1:hIHWr+l3+/clUnF44zdK+CWW7fO8dR5cIylAQ76NRpg= github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= +github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= +github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -1916,8 +1916,8 @@ go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/ go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= -go.uber.org/ratelimit v0.2.0 h1:UQE2Bgi7p2B85uP5dC2bbRtig0C+OeNRnNEafLjsLPA= -go.uber.org/ratelimit v0.2.0/go.mod h1:YYBV4e4naJvhpitQrWJu1vCpgB7CboMe0qhltKt6mUg= +go.uber.org/ratelimit v0.3.1 h1:K4qVE+byfv/B3tC+4nYWP7v/6SimcO7HzHekoMNBma0= +go.uber.org/ratelimit v0.3.1/go.mod h1:6euWsTB6U/Nb3X++xEUXA8ciPJvr19Q/0h1+oDcJhRk= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= From c19f4b8db85911fefbb073b228e4b1ded28af4c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:39:10 +0000 Subject: [PATCH 060/123] chore(deps): bump cloud.google.com/go/pubsub from 1.36.1 to 1.37.0 (#3059) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 14 +++++++------- go.sum | 32 ++++++++++++++++---------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/go.mod b/go.mod index 8b628f3e24..870b5b1749 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ retract v1.15.0 // Published accidentally. require ( cloud.google.com/go/compute/metadata v0.2.3 - cloud.google.com/go/pubsub v1.36.1 + cloud.google.com/go/pubsub v1.37.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 @@ -95,7 +95,7 @@ require ( ) require ( - cloud.google.com/go/compute v1.23.4 // indirect + cloud.google.com/go/compute v1.24.0 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect @@ -164,8 +164,8 @@ require ( go.opentelemetry.io/otel/trace v1.23.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -173,7 +173,7 @@ require ( ) require ( - cloud.google.com/go v0.112.0 // indirect + cloud.google.com/go v0.112.1 // indirect cloud.google.com/go/iam v1.1.6 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/go-amqp v1.0.5 // indirect @@ -226,7 +226,7 @@ require ( github.com/golang/snappy v0.0.4 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/googleapis/gax-go/v2 v2.12.1 // indirect + github.com/googleapis/gax-go/v2 v2.12.2 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -318,7 +318,7 @@ require ( golang.org/x/tools v0.13.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 // indirect + google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect google.golang.org/protobuf v1.33.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 31e55ce797..2299b0149f 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,8 @@ cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFO cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.112.0 h1:tpFCD7hpHFlQ8yPwT3x+QeXqc2T6+n6T+hmABHfDUSM= -cloud.google.com/go v0.112.0/go.mod h1:3jEEVwZ/MHU4djK5t5RHuKOA/GbLddgTdVubX1qnPD4= +cloud.google.com/go v0.112.1 h1:uJSeirPke5UNZHIb4SxfZklVSiWWVqW4oXlETwZziwM= +cloud.google.com/go v0.112.1/go.mod h1:+Vbu+Y1UU+I1rjmzeMOb/8RfkKJK2Gyxi1X6jJCZLo4= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= @@ -176,8 +176,8 @@ cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOV cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.4 h1:EBT9Nw4q3zyE7G45Wvv3MzolIrCJEuHys5muLY0wvAw= -cloud.google.com/go/compute v1.23.4/go.mod h1:/EJMj55asU6kAFnuZET8zqgwgJ9FvXWXOkkfQZa4ioI= +cloud.google.com/go/compute v1.24.0 h1:phWcR2eWzRJaL/kOiJwfFsPs4BaKq1j6vnpZrc1YlVg= +cloud.google.com/go/compute v1.24.0/go.mod h1:kw1/T+h/+tK2LJK0wiPPx1intgdAM3j/g3hFDlscY40= cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= @@ -338,7 +338,7 @@ cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4 cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.15.6 h1:ktpEMQmsOAYj3VZwH020FcQlm23BVYg8T8O1woG2GcE= +cloud.google.com/go/kms v1.15.7 h1:7caV9K3yIxvlQPAcaFffhlT7d1qpxjB1wHBtjWa13SM= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= @@ -432,8 +432,8 @@ cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcd cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.36.1 h1:dfEPuGCHGbWUhaMCTHUFjfroILEkx55iUmKBZTP5f+Y= -cloud.google.com/go/pubsub v1.36.1/go.mod h1:iYjCa9EzWOoBiTdd4ps7QoMtMln5NwaZQpK1hbRfBDE= +cloud.google.com/go/pubsub v1.37.0 h1:0uEEfaB1VIJzabPpwpZf44zWAKAme3zwKKxHk7vJQxQ= +cloud.google.com/go/pubsub v1.37.0/go.mod h1:YQOQr1uiUM092EXwKs56OPT650nwnawc+8/IjoUeGzQ= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= @@ -1226,8 +1226,8 @@ github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38 github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.1 h1:9F8GV9r9ztXyAi00gsMQHNoF51xPZm8uj1dpYt2ZETM= -github.com/googleapis/gax-go/v2 v2.12.1/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= +github.com/googleapis/gax-go/v2 v2.12.2 h1:mhN09QQW1jEWeMF74zGR81R30z4VJzjZsfkUhuHF+DA= +github.com/googleapis/gax-go/v2 v2.12.2/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= @@ -1896,7 +1896,7 @@ go.opentelemetry.io/otel/metric v1.23.0 h1:pazkx7ss4LFVVYSxYew7L5I6qvLXHA0Ap2pwV go.opentelemetry.io/otel/metric v1.23.0/go.mod h1:MqUW2X2a6Q8RN96E2/nqNoT+z9BSms20Jb7Bbp+HiTo= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= -go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= +go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= @@ -2648,21 +2648,21 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 h1:g/4bk7P6TPMkAUbUhquq98xey1slwvuVJPosdBqYJlU= -google.golang.org/genproto v0.0.0-20240205150955-31a09d347014/go.mod h1:xEgQu1e4stdSSsxPDK8Azkrk/ECl5HvdPf6nbZrTS5M= +google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 h1:9+tzLLstTlPTRyJTh+ah5wIMsBW5c4tQwGTN3thOW9Y= +google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:mqHbVIp48Muh7Ywss/AD6I5kNVKZMmAa/QEW58Gxp2s= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 h1:x9PwdEgd11LgK+orcck69WVRo7DezSO4VUMPI4xpc8A= -google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014/go.mod h1:rbHMSEDyoYX62nRVLOCc4Qt1HbsdytAYoVwgjiOhF3I= +google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 h1:SzXBGiWM1LNVYLCRP3e0/Gsze804l4jGoJ5lYysEO5I= +google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78/go.mod h1:O1cOfN1Cy6QEYr7VxtjOyP5AdAuR0aJ/MYZaaof623Y= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 h1:hZB7eLIaYlW9qXRfCq/qDaPdbeY3757uARz5Vvfv+cY= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:YUWgXUFRPfoYK1IHMuxH5K6nPEXSCzIMljnQ59lLRCk= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 h1:DKU1r6Tj5s1vlU/moGhuGz7E3xRfwjdAfDzbsaQJtEY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From 1edd7b3c821480a1cdc7d52deafc4c47286018c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:46:27 +0000 Subject: [PATCH 061/123] chore(deps): bump google.golang.org/api from 0.167.0 to 0.169.0 (#3060) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 14 +++++++------- go.sum | 30 ++++++++++++++---------------- 2 files changed, 21 insertions(+), 23 deletions(-) diff --git a/go.mod b/go.mod index 870b5b1749..509e6a88bd 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 - google.golang.org/api v0.167.0 + google.golang.org/api v0.169.0 google.golang.org/grpc v1.62.0 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -157,15 +157,15 @@ require ( github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect - go.opentelemetry.io/otel v1.23.0 // indirect - go.opentelemetry.io/otel/metric v1.23.0 // indirect - go.opentelemetry.io/otel/trace v1.23.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect + go.opentelemetry.io/otel v1.24.0 // indirect + go.opentelemetry.io/otel/metric v1.24.0 // indirect + go.opentelemetry.io/otel/trace v1.24.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect diff --git a/go.sum b/go.sum index 2299b0149f..3514650118 100644 --- a/go.sum +++ b/go.sum @@ -822,7 +822,6 @@ github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWH github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa h1:jQCWAUqqlij9Pgj2i/PB79y4KOPYVyFYdROxgaCwdTQ= github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= @@ -908,7 +907,6 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7 github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v1.0.4 h1:gVPz/FMfvh57HdSJQyvBtF00j8JU4zdyUgIUNhlgg0A= github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= @@ -1882,26 +1880,26 @@ go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 h1:P+/g8GpuJGYbOp2tAdKrIPUX9JO02q8Q0YNlHolpibA= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0/go.mod h1:tIKj3DbO8N9Y2xo52og3irLsPI4GW02DSMtrVgNMgxg= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 h1:doUP+ExOpH3spVTLS0FcWGLnQrPct/hD/bCPbDRUEAU= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0/go.mod h1:rdENBZMT2OE6Ne/KLwpiXudnAsbdrdBaqBvTN8M8BgA= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= -go.opentelemetry.io/otel v1.23.0 h1:Df0pqjqExIywbMCMTxkAwzjLZtRf+bBKLbUcpxO2C9E= -go.opentelemetry.io/otel v1.23.0/go.mod h1:YCycw9ZeKhcJFrb34iVSkyT0iczq/zYDtZYFufObyB0= +go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= +go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= -go.opentelemetry.io/otel/metric v1.23.0 h1:pazkx7ss4LFVVYSxYew7L5I6qvLXHA0Ap2pwV+9Cnpo= -go.opentelemetry.io/otel/metric v1.23.0/go.mod h1:MqUW2X2a6Q8RN96E2/nqNoT+z9BSms20Jb7Bbp+HiTo= +go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= +go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= -go.opentelemetry.io/otel/trace v1.23.0 h1:37Ik5Ib7xfYVb4V1UtnT97T1jI+AoIYkJyPkuL4iJgI= -go.opentelemetry.io/otel/trace v1.23.0/go.mod h1:GSGTbIClEsuZrGIzoEHqsVfxgn5UkggkflQwDScNUsk= +go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= +go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= @@ -2499,8 +2497,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.167.0 h1:CKHrQD1BLRii6xdkatBDXyKzM0mkawt2QP+H3LtPmSE= -google.golang.org/api v0.167.0/go.mod h1:4FcBc686KFi7QI/U51/2GKKevfZMpM17sCdibqe/bSA= +google.golang.org/api v0.169.0 h1:QwWPy71FgMWqJN/l6jVlFHUa29a7dcUy02I8o799nPY= +google.golang.org/api v0.169.0/go.mod h1:gpNOiMA2tZ4mf5R9Iwf4rK/Dcz0fbdIgWYWVoxmsyLg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2661,8 +2659,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 h1:DKU1r6Tj5s1vlU/moGhuGz7E3xRfwjdAfDzbsaQJtEY= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 h1:Xs9lu+tLXxLIfuci70nG4cpwaRC+mRQPUL7LoIeDJC4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From c6c539dc69413bbe7e5901e37c728dd9476c5d1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:24:07 +0000 Subject: [PATCH 062/123] chore(deps): bump github.com/go-openapi/inflect from 0.20.0 to 0.21.0 (#3068) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 509e6a88bd..5e003d9295 100644 --- a/go.mod +++ b/go.mod @@ -36,7 +36,7 @@ require ( github.com/gfleury/go-bitbucket-v1 v0.0.0-20210707202713-7d616f7c18ac github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 github.com/go-git/go-git/v5 v5.11.0 - github.com/go-openapi/inflect v0.20.0 + github.com/go-openapi/inflect v0.21.0 github.com/go-redis/redis/v8 v8.11.5 github.com/go-resty/resty/v2 v2.11.0 github.com/go-swagger/go-swagger v0.30.4 diff --git a/go.sum b/go.sum index 3514650118..f2705ffda1 100644 --- a/go.sum +++ b/go.sum @@ -988,8 +988,8 @@ github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpX github.com/go-openapi/errors v0.20.2/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= github.com/go-openapi/errors v0.20.3 h1:rz6kiC84sqNQoqrtulzaL/VERgkoCyB6WdEkc2ujzUc= github.com/go-openapi/errors v0.20.3/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk= -github.com/go-openapi/inflect v0.20.0 h1:OpmOqyxVnZ4idO6OhA21Te9P4WIvcBvhv95+4WvT5Sk= -github.com/go-openapi/inflect v0.20.0/go.mod h1:iw8UPvdxN2e/2ne3IUj0d+9LSArdU17+X6qJAeH7ff0= +github.com/go-openapi/inflect v0.21.0 h1:FoBjBTQEcbg2cJUWX6uwL9OyIW8eqc9k4KhN4lfbeYk= +github.com/go-openapi/inflect v0.21.0/go.mod h1:INezMuUu7SJQc2AyR3WO0DqqYUJSj8Kb4hBd7WtjlAw= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.19.5 h1:gZr+CIYByUqjcgeLXnQu2gHYQC9o73G2XUeOFYEICuY= From 61353fd132114014176966feed056f442c0cdb85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:24:50 +0000 Subject: [PATCH 063/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.99.0 to 0.100.0 (#3069) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 5e003d9295..a4a820af21 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.99.0 + github.com/xanzy/go-gitlab v0.100.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 diff --git a/go.sum b/go.sum index f2705ffda1..be7aec9b47 100644 --- a/go.sum +++ b/go.sum @@ -1811,8 +1811,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.99.0 h1:0W5dmFQejPlqnScZoGRXNPmx+evOxBMk50P40cxlnWU= -github.com/xanzy/go-gitlab v0.99.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.100.0 h1:jaOtYj5nWI19+9oVVmgy233pax2oYqucwetogYU46ks= +github.com/xanzy/go-gitlab v0.100.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 0500efd88dd489e2cf9518aecabb4f9f592f1478 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:25:03 +0000 Subject: [PATCH 064/123] chore(deps): bump github.com/minio/minio-go/v7 from 7.0.68 to 7.0.69 (#3070) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a4a820af21..bb6269f3cb 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.76 - github.com/minio/minio-go/v7 v7.0.68 + github.com/minio/minio-go/v7 v7.0.69 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f diff --git a/go.sum b/go.sum index be7aec9b47..501c7e6f24 100644 --- a/go.sum +++ b/go.sum @@ -1481,8 +1481,8 @@ github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77Z github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go/v7 v7.0.29/go.mod h1:x81+AX5gHSfCSqw7jxRKHvxUXMlE5uKX0Vb75Xk5yYg= -github.com/minio/minio-go/v7 v7.0.68 h1:hTqSIfLlpXaKuNy4baAp4Jjy2sqZEN9hRxD0M4aOfrQ= -github.com/minio/minio-go/v7 v7.0.68/go.mod h1:XAvOPJQ5Xlzk5o3o/ArO2NMbhSGkimC+bpW/ngRKDmQ= +github.com/minio/minio-go/v7 v7.0.69 h1:l8AnsQFyY1xiwa/DaQskY4NXSLA2yrGsW5iD9nRPVS0= +github.com/minio/minio-go/v7 v7.0.69/go.mod h1:XAvOPJQ5Xlzk5o3o/ArO2NMbhSGkimC+bpW/ngRKDmQ= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= From e558e6ce25b6845ac97f15242fa4d1be425aaa93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:28:45 +0000 Subject: [PATCH 065/123] chore(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 (#3071) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index bb6269f3cb..5c86a687ae 100644 --- a/go.mod +++ b/go.mod @@ -81,7 +81,7 @@ require ( golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 google.golang.org/api v0.169.0 - google.golang.org/grpc v1.62.0 + google.golang.org/grpc v1.62.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 k8s.io/apimachinery v0.24.3 diff --git a/go.sum b/go.sum index 501c7e6f24..5a7e907883 100644 --- a/go.sum +++ b/go.sum @@ -2702,8 +2702,8 @@ google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5v google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.62.0 h1:HQKZ/fa1bXkX1oFOvSjmZEUL8wLSaZTjCcLAlmZRtdk= -google.golang.org/grpc v1.62.0/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= +google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk= +google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= From 9adf09c00b05b8961be157601fb971d059c82078 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:36:50 +0000 Subject: [PATCH 066/123] chore(deps): bump google.golang.org/api from 0.169.0 to 0.170.0 (#3072) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 5c86a687ae..91327121c5 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 - google.golang.org/api v0.169.0 + google.golang.org/api v0.170.0 google.golang.org/grpc v1.62.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -165,7 +165,7 @@ require ( gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -308,8 +308,8 @@ require ( go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.10.0 // indirect golang.org/x/mod v0.12.0 // indirect - golang.org/x/net v0.21.0 // indirect - golang.org/x/oauth2 v0.17.0 // indirect + golang.org/x/net v0.22.0 // indirect + golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.18.0 // indirect golang.org/x/term v0.18.0 // indirect diff --git a/go.sum b/go.sum index 5a7e907883..b3c0ef5c2e 100644 --- a/go.sum +++ b/go.sum @@ -2106,8 +2106,8 @@ golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= -golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= -golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= +golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2140,8 +2140,8 @@ golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= -golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ= -golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA= +golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI= +golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2497,8 +2497,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.169.0 h1:QwWPy71FgMWqJN/l6jVlFHUa29a7dcUy02I8o799nPY= -google.golang.org/api v0.169.0/go.mod h1:gpNOiMA2tZ4mf5R9Iwf4rK/Dcz0fbdIgWYWVoxmsyLg= +google.golang.org/api v0.170.0 h1:zMaruDePM88zxZBG+NG8+reALO2rfLhe/JShitLyT48= +google.golang.org/api v0.170.0/go.mod h1:/xql9M2btF85xac/VAm4PsLMTLVGUOpq4BE9R8jyNy8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2659,8 +2659,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 h1:Xs9lu+tLXxLIfuci70nG4cpwaRC+mRQPUL7LoIeDJC4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2 h1:9IZDv+/GcI6u+a4jRFRLxQs0RUCfavGfoOgEW6jpkI0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From 8a552bafc7c24fbcd2636985897dc6d7e39be6a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:15:19 +0000 Subject: [PATCH 067/123] chore(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 (#3078) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dependabot-reviewer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-reviewer.yml b/.github/workflows/dependabot-reviewer.yml index de4a2c1021..b5864ab2f0 100644 --- a/.github/workflows/dependabot-reviewer.yml +++ b/.github/workflows/dependabot-reviewer.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.6.0 + uses: dependabot/fetch-metadata@v2.0.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Approve PR From a5f83bcc52aac1512613c404e2cf25fa74424a7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:58:50 +0000 Subject: [PATCH 068/123] chore(deps): bump github.com/go-resty/resty/v2 from 2.11.0 to 2.12.0 (#3079) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 91327121c5..d5aad3dae2 100644 --- a/go.mod +++ b/go.mod @@ -38,7 +38,7 @@ require ( github.com/go-git/go-git/v5 v5.11.0 github.com/go-openapi/inflect v0.21.0 github.com/go-redis/redis/v8 v8.11.5 - github.com/go-resty/resty/v2 v2.11.0 + github.com/go-resty/resty/v2 v2.12.0 github.com/go-swagger/go-swagger v0.30.4 github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe github.com/gogo/protobuf v1.3.2 diff --git a/go.sum b/go.sum index b3c0ef5c2e..42ef3cba89 100644 --- a/go.sum +++ b/go.sum @@ -1027,8 +1027,8 @@ github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhO github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= -github.com/go-resty/resty/v2 v2.11.0 h1:i7jMfNOJYMp69lq7qozJP+bjgzfAzeOhuGlyDrqxT/8= -github.com/go-resty/resty/v2 v2.11.0/go.mod h1:iiP/OpA0CkcL3IGt1O0+/SIItFUbkkyw5BGXiVdTu+A= +github.com/go-resty/resty/v2 v2.12.0 h1:rsVL8P90LFvkUYq/V5BTVe203WfRIU4gvcf+yfzJzGA= +github.com/go-resty/resty/v2 v2.12.0/go.mod h1:o0yGPrkS3lOe1+eFajk6kBW8ScXzwU3hD69/gt2yB/0= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= @@ -1957,8 +1957,8 @@ golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2104,8 +2104,8 @@ golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= 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.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -2280,8 +2280,8 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= @@ -2296,8 +2296,8 @@ golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2317,7 +2317,6 @@ golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= From b0a366e28e2399a4752b2d5ad7a4201bddc00026 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:59:06 +0000 Subject: [PATCH 069/123] chore(deps): bump github.com/nats-io/nats.go from 1.33.1 to 1.34.0 (#3080) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index d5aad3dae2..74f0180a99 100644 --- a/go.mod +++ b/go.mod @@ -57,7 +57,7 @@ require ( github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f - github.com/nats-io/nats.go v1.33.1 + github.com/nats-io/nats.go v1.34.0 github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 diff --git a/go.sum b/go.sum index 42ef3cba89..180423dfcb 100644 --- a/go.sum +++ b/go.sum @@ -1545,8 +1545,8 @@ github.com/nats-io/nats.go v1.13.0/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/ github.com/nats-io/nats.go v1.13.1-0.20220121202836-972a071d373d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.22.1/go.mod h1:tLqubohF7t4z3du1QDPYJIQQyhb4wl6DhjxEajSI7UA= -github.com/nats-io/nats.go v1.33.1 h1:8TxLZZ/seeEfR97qV0/Bl939tpDnt2Z2fK3HkPypj70= -github.com/nats-io/nats.go v1.33.1/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= +github.com/nats-io/nats.go v1.34.0 h1:fnxnPCNiwIG5w08rlMcEKTUw4AV/nKyGCOJE8TdhSPk= +github.com/nats-io/nats.go v1.34.0/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV6A5y4= github.com/nats-io/nkeys v0.4.7 h1:RwNJbbIdYCoClSDNY7QVKZlyb/wfT6ugvFCiKy6vDvI= github.com/nats-io/nkeys v0.4.7/go.mod h1:kqXRgRDPlGy7nGaEDMuYzmiJCIAAWDK0IMBtDmGD0nc= From f19615053ebd1375b25fd48961f1b0197d64513b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:59:17 +0000 Subject: [PATCH 070/123] chore(deps): bump github.com/bradleyfalzon/ghinstallation/v2 from 2.9.0 to 2.10.0 (#3081) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 74f0180a99..a75248a2ca 100644 --- a/go.mod +++ b/go.mod @@ -26,7 +26,7 @@ require ( github.com/argoproj/pkg v0.13.6 github.com/aws/aws-sdk-go v1.44.209 github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 - github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 + github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 github.com/cloudevents/sdk-go/v2 v2.15.2 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 github.com/eclipse/paho.mqtt.golang v1.4.3 @@ -126,7 +126,7 @@ require ( github.com/golang-jwt/jwt/v5 v5.2.0 // indirect github.com/google/gnostic v0.5.7-v3refs // indirect github.com/google/go-github/v41 v41.0.0 // indirect - github.com/google/go-github/v57 v57.0.0 // indirect + github.com/google/go-github/v60 v60.0.0 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/gregdel/pushover v1.1.0 // indirect diff --git a/go.sum b/go.sum index 180423dfcb..00aa607f7e 100644 --- a/go.sum +++ b/go.sum @@ -782,8 +782,8 @@ github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9/go.mod h1:nDeX github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 h1:HmxIYqnxubRYcYGRc5v3wUekmo5Wv2uX3gukmWJ0AFk= -github.com/bradleyfalzon/ghinstallation/v2 v2.9.0/go.mod h1:wmkTDJf8CmVypxE8ijIStFnKoTa6solK5QfdmJrP9KI= +github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 h1:XWuWBRFEpqVrHepQob9yPS3Xg4K3Wr9QCx4fu8HbUNg= +github.com/bradleyfalzon/ghinstallation/v2 v2.10.0/go.mod h1:qoGA4DxWPaYTgVCrmEspVSjlTu4WYAiSxMIhorMRXXc= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/bwmarrin/discordgo v0.19.0/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= @@ -1163,8 +1163,8 @@ github.com/google/go-github/v41 v41.0.0 h1:HseJrM2JFf2vfiZJ8anY2hqBjdfY1Vlj/K27u github.com/google/go-github/v41 v41.0.0/go.mod h1:XgmCA5H323A9rtgExdTcnDkcqp6S30AVACCBDOonIxg= github.com/google/go-github/v50 v50.2.0 h1:j2FyongEHlO9nxXLc+LP3wuBSVU9mVxfpdYUexMpIfk= github.com/google/go-github/v50 v50.2.0/go.mod h1:VBY8FB6yPIjrtKhozXv4FQupxKLS6H4m6xFZlT43q8Q= -github.com/google/go-github/v57 v57.0.0 h1:L+Y3UPTY8ALM8x+TV0lg+IEBI+upibemtBD8Q9u7zHs= -github.com/google/go-github/v57 v57.0.0/go.mod h1:s0omdnye0hvK/ecLvpsGfJMiRt85PimQh4oygmLIxHw= +github.com/google/go-github/v60 v60.0.0 h1:oLG98PsLauFvvu4D/YPxq374jhSxFYdzQGNCyONLfn8= +github.com/google/go-github/v60 v60.0.0/go.mod h1:ByhX2dP9XT9o/ll2yXAu2VD8l5eNVg8hD4Cr0S/LmQk= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= From 8e2c6a8243f6617cfa987014fed628283f4ba1b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 13:02:50 +0000 Subject: [PATCH 071/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.100.0 to 0.101.0 (#3082) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a75248a2ca..822a0fae89 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.100.0 + github.com/xanzy/go-gitlab v0.101.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 diff --git a/go.sum b/go.sum index 00aa607f7e..55687b9a9f 100644 --- a/go.sum +++ b/go.sum @@ -1811,8 +1811,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.100.0 h1:jaOtYj5nWI19+9oVVmgy233pax2oYqucwetogYU46ks= -github.com/xanzy/go-gitlab v0.100.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.101.0 h1:qRgvX8DNE19zRugB6rnnZMZ5ubhITSKPLNWEyc6UIPg= +github.com/xanzy/go-gitlab v0.101.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 9cd2cdbefa989e9549811da7bb171eac7e4b8285 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 13:03:40 +0000 Subject: [PATCH 072/123] chore(deps): bump google.golang.org/api from 0.170.0 to 0.171.0 (#3083) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 822a0fae89..6f00a3c0be 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 - google.golang.org/api v0.170.0 + google.golang.org/api v0.171.0 google.golang.org/grpc v1.62.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -164,8 +164,8 @@ require ( go.opentelemetry.io/otel/trace v1.24.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect @@ -226,7 +226,7 @@ require ( github.com/golang/snappy v0.0.4 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/googleapis/gax-go/v2 v2.12.2 // indirect + github.com/googleapis/gax-go/v2 v2.12.3 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect diff --git a/go.sum b/go.sum index 55687b9a9f..97ace04a39 100644 --- a/go.sum +++ b/go.sum @@ -1224,8 +1224,8 @@ github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38 github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.2 h1:mhN09QQW1jEWeMF74zGR81R30z4VJzjZsfkUhuHF+DA= -github.com/googleapis/gax-go/v2 v2.12.2/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= +github.com/googleapis/gax-go/v2 v2.12.3 h1:5/zPPDvw8Q1SuXjrqrZslrqT7dL/uJT2CQii/cLCKqA= +github.com/googleapis/gax-go/v2 v2.12.3/go.mod h1:AKloxT6GtNbaLm8QTNSidHUVsHYcBHwWRvkNFJUQcS4= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= @@ -2496,8 +2496,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.170.0 h1:zMaruDePM88zxZBG+NG8+reALO2rfLhe/JShitLyT48= -google.golang.org/api v0.170.0/go.mod h1:/xql9M2btF85xac/VAm4PsLMTLVGUOpq4BE9R8jyNy8= +google.golang.org/api v0.171.0 h1:w174hnBPqut76FzW5Qaupt7zY8Kql6fiVjgys4f58sU= +google.golang.org/api v0.171.0/go.mod h1:Hnq5AHm4OTMt2BUVjael2CWZFD6vksJdWCWiUAmjC9o= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2651,15 +2651,15 @@ google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go. google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 h1:SzXBGiWM1LNVYLCRP3e0/Gsze804l4jGoJ5lYysEO5I= -google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78/go.mod h1:O1cOfN1Cy6QEYr7VxtjOyP5AdAuR0aJ/MYZaaof623Y= +google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 h1:rIo7ocm2roD9DcFIX67Ym8icoGCKSARAiPljFhh5suQ= +google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2/go.mod h1:O1cOfN1Cy6QEYr7VxtjOyP5AdAuR0aJ/MYZaaof623Y= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2 h1:9IZDv+/GcI6u+a4jRFRLxQs0RUCfavGfoOgEW6jpkI0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c h1:lfpJ/2rWPa/kJgxyyXM8PrNnfCzcmxJ265mADgwmvLI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From f0ec923682e3948c9d6ace600b9b44cc08eebb5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 12:09:43 +0000 Subject: [PATCH 073/123] chore(deps): bump actions/setup-python from 5.0.0 to 5.1.0 (#3085) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/gh-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 7b37f7eb32..ffae4b4bda 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: 3.9 - name: Setup Golang From fecbd8ba5d37aa4518652f1785cf1bcda8c997f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 12:37:22 +0000 Subject: [PATCH 074/123] chore(deps): bump google.golang.org/api from 0.171.0 to 0.172.0 (#3088) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 6f00a3c0be..74d52ee664 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 - google.golang.org/api v0.171.0 + google.golang.org/api v0.172.0 google.golang.org/grpc v1.62.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 @@ -165,7 +165,7 @@ require ( gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect diff --git a/go.sum b/go.sum index 97ace04a39..22187513c7 100644 --- a/go.sum +++ b/go.sum @@ -2496,8 +2496,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.171.0 h1:w174hnBPqut76FzW5Qaupt7zY8Kql6fiVjgys4f58sU= -google.golang.org/api v0.171.0/go.mod h1:Hnq5AHm4OTMt2BUVjael2CWZFD6vksJdWCWiUAmjC9o= +google.golang.org/api v0.172.0 h1:/1OcMZGPmW1rX2LCu2CmGUD1KXK1+pfzxotxyRUCCdk= +google.golang.org/api v0.172.0/go.mod h1:+fJZq6QXWfa9pXhnIzsjx4yI22d4aI9ZpLb58gvXjis= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2658,8 +2658,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c h1:lfpJ/2rWPa/kJgxyyXM8PrNnfCzcmxJ265mADgwmvLI= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From 45d36d52f0979799b185ab46ecf72e49f7fcf9f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 12:37:34 +0000 Subject: [PATCH 075/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.76 to 0.9.77 (#3087) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 10 +++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 74d52ee664..4785879d76 100644 --- a/go.mod +++ b/go.mod @@ -52,7 +52,7 @@ require ( github.com/imdario/mergo v0.3.15 github.com/itchyny/gojq v0.12.14 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.76 + github.com/ktrysmt/go-bitbucket v0.9.77 github.com/minio/minio-go/v7 v7.0.69 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index 22187513c7..302219f0f9 100644 --- a/go.sum +++ b/go.sum @@ -1424,8 +1424,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.76 h1:/oXA8TXtpAtNDPqOpwixg6J7xXpoUvnoduhOCJ7/fWo= -github.com/ktrysmt/go-bitbucket v0.9.76/go.mod h1:+wfH5IgKupLt9U0Voy1nH3YX+kNVtddeyeW8bqYXCto= +github.com/ktrysmt/go-bitbucket v0.9.77 h1:D/xyUFLDaxI9USElXzjQr+s4hYR22vcsIl8+dQx/gEM= +github.com/ktrysmt/go-bitbucket v0.9.77/go.mod h1:7dN/AHXCCG9TW2KzXdJJy2J2uvcvZCLJR4uXYr1Gx/A= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= @@ -1768,6 +1768,7 @@ github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoH 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= github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/testify v0.0.0-20161117074351-18a02ba4a312/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= @@ -1957,7 +1958,6 @@ golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= @@ -2104,7 +2104,6 @@ golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -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.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= @@ -2139,7 +2138,6 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI= golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2280,7 +2278,6 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= @@ -2296,7 +2293,6 @@ golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= From d2593fd6f67a1b74d6ebe7d2351f03ad26dbb96e Mon Sep 17 00:00:00 2001 From: Mike Cravey Date: Sun, 31 Mar 2024 12:37:50 -0500 Subject: [PATCH 076/123] docs: Provides command to view logs (#3076) Signed-off-by: Derek Wang --- docs/tutorials/01-introduction.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/tutorials/01-introduction.md b/docs/tutorials/01-introduction.md index 0f549871dd..b9c4c923c5 100644 --- a/docs/tutorials/01-introduction.md +++ b/docs/tutorials/01-introduction.md @@ -53,6 +53,10 @@ If the commands are executed successfully, the eventbus, event-source and sensor - Make sure the workflow pod ran successfully. + argo logs -n argo-events @latest + + Should result in something similar to what is below. + _________________________________________ / {"context":{"type":"webhook","specVersi \ | on":"0.3","source":"webhook","e | From cf8736e7820e9dafb15444e88896f3752a733533 Mon Sep 17 00:00:00 2001 From: Marek Skrobacki Date: Fri, 5 Apr 2024 07:00:59 +0100 Subject: [PATCH 077/123] fix logging on config watcher setup failure (#3074) Signed-off-by: Marek Skrobacki Signed-off-by: Marek Skrobacki --- common/leaderelection/leaderelection.go | 3 +-- common/viper.go | 29 +++++++++++++++++++++++++ controllers/config.go | 4 ++-- eventbus/driver.go | 3 +-- go.mod | 6 ++--- go.sum | 12 +++++----- 6 files changed, 42 insertions(+), 15 deletions(-) create mode 100644 common/viper.go diff --git a/common/leaderelection/leaderelection.go b/common/leaderelection/leaderelection.go index deac594c3c..3027c02887 100644 --- a/common/leaderelection/leaderelection.go +++ b/common/leaderelection/leaderelection.go @@ -11,7 +11,6 @@ import ( "github.com/fsnotify/fsnotify" "github.com/nats-io/graft" nats "github.com/nats-io/nats.go" - "github.com/spf13/viper" "go.uber.org/zap" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" @@ -79,7 +78,7 @@ func getEventBusAuth(ctx context.Context, authStrategy *eventbusv1alpha1.AuthStr Strategy: eventbusv1alpha1.AuthStrategyNone, } } else { - v := viper.New() + v := common.ViperWithLogging() v.SetConfigName("auth") v.SetConfigType("yaml") v.AddConfigPath(eventBusAuthFileMountPath) diff --git a/common/viper.go b/common/viper.go new file mode 100644 index 0000000000..188d814e33 --- /dev/null +++ b/common/viper.go @@ -0,0 +1,29 @@ +/* +Copyright 2024 BlackRock, Inc. + +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 common + +import ( + "os" + + "github.com/spf13/viper" + "golang.org/x/exp/slog" +) + +func ViperWithLogging() *viper.Viper { + v := viper.NewWithOptions(viper.WithLogger(slog.New(slog.NewJSONHandler(os.Stdout, nil)))) + return v +} diff --git a/controllers/config.go b/controllers/config.go index c64365ea1b..f335468a1a 100644 --- a/controllers/config.go +++ b/controllers/config.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" + "github.com/argoproj/argo-events/common" "github.com/fsnotify/fsnotify" - "github.com/spf13/viper" ) type GlobalConfig struct { @@ -94,7 +94,7 @@ func (g *GlobalConfig) GetJetStreamVersion(version string) (*JetStreamVersion, e } func LoadConfig(onErrorReloading func(error)) (*GlobalConfig, error) { - v := viper.New() + v := common.ViperWithLogging() v.SetConfigName("controller-config") v.SetConfigType("yaml") v.AddConfigPath("/etc/argo-events") diff --git a/eventbus/driver.go b/eventbus/driver.go index 585aa67db7..06fc095788 100644 --- a/eventbus/driver.go +++ b/eventbus/driver.go @@ -19,7 +19,6 @@ import ( stansensor "github.com/argoproj/argo-events/eventbus/stan/sensor" eventbusv1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1" "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1" - "github.com/spf13/viper" ) func GetEventSourceDriver(ctx context.Context, eventBusConfig eventbusv1alpha1.BusConfig, eventSourceName string, defaultSubject string) (eventbuscommon.EventSourceDriver, error) { @@ -134,7 +133,7 @@ func GetAuth(ctx context.Context, eventBusConfig eventbusv1alpha1.BusConfig) (*e Strategy: eventbusv1alpha1.AuthStrategyNone, } } else { - v := viper.New() + v := common.ViperWithLogging() v.SetConfigName("auth") v.SetConfigType("yaml") v.AddConfigPath(common.EventBusAuthFileMountPath) diff --git a/go.mod b/go.mod index 4785879d76..606b55ffc3 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 golang.org/x/crypto v0.21.0 - golang.org/x/exp v0.0.0-20230905200255-921286631fa9 + golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 google.golang.org/api v0.172.0 google.golang.org/grpc v1.62.1 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 @@ -307,7 +307,7 @@ require ( go.opencensus.io v0.24.0 // indirect go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.10.0 // indirect - golang.org/x/mod v0.12.0 // indirect + golang.org/x/mod v0.16.0 // indirect golang.org/x/net v0.22.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect @@ -315,7 +315,7 @@ require ( golang.org/x/term v0.18.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect - golang.org/x/tools v0.13.0 // indirect + golang.org/x/tools v0.19.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect diff --git a/go.sum b/go.sum index 302219f0f9..89c2312f9d 100644 --- a/go.sum +++ b/go.sum @@ -1977,8 +1977,8 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200908183739-ae8ad444f925/go.mod h1:1phAWC201xIgDyaFpmDeZkgf70Q4Pd/CNqfRtVPtxNw= golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -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= +golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 h1:6R2FC06FonbXQ8pK11/PDFY6N6LWlf9KlzibaCapmqc= +golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81/go.mod h1:CQ1k9gNrJ50XIzaKCRR2hssIjF07kZFEiieALBM/ARQ= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -2022,8 +2022,8 @@ golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91 golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= -golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.16.0 h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic= +golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -2405,8 +2405,8 @@ golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= -golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.19.0 h1:tfGCXNR1OsFG+sVdLAitlpjAvD/I6dHDKnYrpEZUHkw= +golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc= 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= From 6ea1dfc96afb2b9d156506cad8b6644ab539b889 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:43:59 +0000 Subject: [PATCH 078/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.101.0 to 0.102.0 (#3092) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 606b55ffc3..403f3cad9e 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.101.0 + github.com/xanzy/go-gitlab v0.102.0 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 diff --git a/go.sum b/go.sum index 89c2312f9d..452e5fe996 100644 --- a/go.sum +++ b/go.sum @@ -1812,8 +1812,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.101.0 h1:qRgvX8DNE19zRugB6rnnZMZ5ubhITSKPLNWEyc6UIPg= -github.com/xanzy/go-gitlab v0.101.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.102.0 h1:ExHuJ1OTQ2yt25zBMMj0G96ChBirGYv8U7HyUiYkZ+4= +github.com/xanzy/go-gitlab v0.102.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 6e07695924ae37975bbe44878701181526157e6d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:44:08 +0000 Subject: [PATCH 079/123] chore(deps): bump github.com/itchyny/gojq from 0.12.14 to 0.12.15 (#3093) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 403f3cad9e..e46c5e1c51 100644 --- a/go.mod +++ b/go.mod @@ -50,7 +50,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/hamba/avro v1.8.0 github.com/imdario/mergo v0.3.15 - github.com/itchyny/gojq v0.12.14 + github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.77 github.com/minio/minio-go/v7 v7.0.69 diff --git a/go.sum b/go.sum index 452e5fe996..690acdf4cc 100644 --- a/go.sum +++ b/go.sum @@ -1328,8 +1328,8 @@ github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/C github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/itchyny/gojq v0.12.14 h1:6k8vVtsrhQSYgSGg827AD+PVVaB1NLXEdX+dda2oZCc= -github.com/itchyny/gojq v0.12.14/go.mod h1:y1G7oO7XkcR1LPZO59KyoCRy08T3j9vDYRV0GgYSS+s= +github.com/itchyny/gojq v0.12.15 h1:WC1Nxbx4Ifw5U2oQWACYz32JK8G9qxNtHzrvW4KEcqI= +github.com/itchyny/gojq v0.12.15/go.mod h1:uWAHCbCIla1jiNxmeT5/B5mOjSdfkCq6p8vxWg+BM10= github.com/itchyny/timefmt-go v0.1.5 h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE= github.com/itchyny/timefmt-go v0.1.5/go.mod h1:nEP7L+2YmAbT2kZ2HfSs1d8Xtw9LY8D2stDBckWakZ8= github.com/jawher/mow.cli v1.0.4/go.mod h1:5hQj2V8g+qYmLUVWqu4Wuja1pI57M83EChYLVZ0sMKk= From 924ca8fa820528037ef9f910e708ab879f20a61e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:48:57 +0000 Subject: [PATCH 080/123] chore(deps): bump golang.org/x/crypto from 0.21.0 to 0.22.0 (#3095) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 9 ++++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index e46c5e1c51..34b9f661a9 100644 --- a/go.mod +++ b/go.mod @@ -78,7 +78,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 - golang.org/x/crypto v0.21.0 + golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 google.golang.org/api v0.172.0 google.golang.org/grpc v1.62.1 @@ -311,8 +311,8 @@ require ( golang.org/x/net v0.22.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.19.0 // indirect diff --git a/go.sum b/go.sum index 690acdf4cc..78b96217df 100644 --- a/go.sum +++ b/go.sum @@ -1959,8 +1959,9 @@ golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58 golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -2279,8 +2280,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2294,8 +2296,9 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= From 870804e70e0e17d7be38417628134848a479c902 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:49:13 +0000 Subject: [PATCH 081/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus from 1.6.1 to 1.7.0 (#3096) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 34b9f661a9..44b5707e24 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 - github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.1 + github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.43.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible diff --git a/go.sum b/go.sum index 78b96217df..b889372289 100644 --- a/go.sum +++ b/go.sum @@ -630,8 +630,8 @@ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= 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/messaging/azservicebus v1.6.1 h1:gttKczhMJufxvljW0Z6t8b6a9Ink9aOdqxQxD3igWMA= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.6.1/go.mod h1:xNjFERdhyMqZncbNJSPBsTCddk5kwsUVUzELQPMj/LA= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0 h1:QISzMrspEvZj4zrrN2wlNwfum5RmnKQhQNiSujwH7oU= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0/go.mod h1:xNjFERdhyMqZncbNJSPBsTCddk5kwsUVUzELQPMj/LA= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTHJKx/ZF6CJSt9znxmLw9DqSTvyRU= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0/go.mod h1:GfT0aGew8Qj5yiQVqOO5v7N8fanbJGyUoHqXg56qcVY= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= From a39729fda6306de60458fef9cc98f830158f016d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:53:54 +0000 Subject: [PATCH 082/123] chore(deps): bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 (#3097) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/go.mod b/go.mod index 44b5707e24..bf3ba28850 100644 --- a/go.mod +++ b/go.mod @@ -35,7 +35,7 @@ require ( github.com/gavv/httpexpect/v2 v2.16.0 github.com/gfleury/go-bitbucket-v1 v0.0.0-20210707202713-7d616f7c18ac github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 - github.com/go-git/go-git/v5 v5.11.0 + github.com/go-git/go-git/v5 v5.12.0 github.com/go-openapi/inflect v0.21.0 github.com/go-redis/redis/v8 v8.11.5 github.com/go-resty/resty/v2 v2.12.0 @@ -152,7 +152,7 @@ require ( github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sanity-io/litter v1.5.5 // indirect github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect - github.com/skeema/knownhosts v1.2.1 // indirect + github.com/skeema/knownhosts v1.2.2 // indirect github.com/sourcegraph/conc v0.3.0 // indirect github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect @@ -188,7 +188,7 @@ require ( github.com/Masterminds/goutils v1.1.1 // indirect github.com/Masterminds/semver/v3 v3.2.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect + github.com/ProtonMail/go-crypto v1.0.0 // indirect github.com/ajg/form v1.5.1 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect @@ -281,7 +281,7 @@ require ( github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/rs/xid v1.5.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/sergi/go-diff v1.1.0 // indirect + github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/shopspring/decimal v1.2.0 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/smartystreets/assertions v1.2.0 // indirect diff --git a/go.sum b/go.sum index b889372289..884585fe3f 100644 --- a/go.sum +++ b/go.sum @@ -697,8 +697,8 @@ github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMo github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/PagerDuty/go-pagerduty v1.6.0 h1:am81SzvG5Pw+s3JZ5yEy6kGvsXXklTNRrGr3d8WKpsU= github.com/PagerDuty/go-pagerduty v1.6.0/go.mod h1:7eaBLzsDpK7VUvU0SJ5mohczQkoWrrr5CjDaw5gh1as= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 h1:kkhsdkhsCvIsutKu5zLMgWtgh9YxGCNAw8Ad8hjwfYg= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= +github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= +github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= @@ -945,7 +945,7 @@ github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeME github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 h1:Mn26/9ZMNWSw9C9ERFA1PUxfmGpolnw2v0bKOREu5ew= github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32/go.mod h1:GIjDIg/heH5DOkXY3YJ/wNhfHsQHoXGjl8G8amsYQ1I= github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY= -github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY= +github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE= github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= @@ -956,8 +956,8 @@ github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmS github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= -github.com/go-git/go-git/v5 v5.11.0 h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4= -github.com/go-git/go-git/v5 v5.11.0/go.mod h1:6GFcX2P3NM7FPBfpePbpLd21XxsgdAt+lKqXmCUiUCY= +github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= +github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -1699,8 +1699,8 @@ github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 h1:TToq11gyfNlrMFZiYujSekIsPd9Am github.com/santhosh-tekuri/jsonschema/v5 v5.0.0/go.mod h1:FKdcjfQW6rpZSnxxUvEA5H/cDPdvJ/SZJQLWWXWGrZ0= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= -github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0= -github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= @@ -1713,8 +1713,8 @@ github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= -github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= +github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A= +github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= github.com/slack-go/slack v0.12.5 h1:ddZ6uz6XVaB+3MTDhoW04gG+Vc/M/X1ctC+wssy2cqs= github.com/slack-go/slack v0.12.5/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= From a10a311a00309686ea29010cc66640e1962fdae8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:57:04 +0000 Subject: [PATCH 083/123] chore(deps): bump github.com/nats-io/nats.go from 1.34.0 to 1.34.1 (#3098) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index bf3ba28850..511d22e4e0 100644 --- a/go.mod +++ b/go.mod @@ -57,7 +57,7 @@ require ( github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f - github.com/nats-io/nats.go v1.34.0 + github.com/nats-io/nats.go v1.34.1 github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 diff --git a/go.sum b/go.sum index 884585fe3f..421853f585 100644 --- a/go.sum +++ b/go.sum @@ -1545,8 +1545,8 @@ github.com/nats-io/nats.go v1.13.0/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/ github.com/nats-io/nats.go v1.13.1-0.20220121202836-972a071d373d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.22.1/go.mod h1:tLqubohF7t4z3du1QDPYJIQQyhb4wl6DhjxEajSI7UA= -github.com/nats-io/nats.go v1.34.0 h1:fnxnPCNiwIG5w08rlMcEKTUw4AV/nKyGCOJE8TdhSPk= -github.com/nats-io/nats.go v1.34.0/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= +github.com/nats-io/nats.go v1.34.1 h1:syWey5xaNHZgicYBemv0nohUPPmaLteiBEUT6Q5+F/4= +github.com/nats-io/nats.go v1.34.1/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV6A5y4= github.com/nats-io/nkeys v0.4.7 h1:RwNJbbIdYCoClSDNY7QVKZlyb/wfT6ugvFCiKy6vDvI= github.com/nats-io/nkeys v0.4.7/go.mod h1:kqXRgRDPlGy7nGaEDMuYzmiJCIAAWDK0IMBtDmGD0nc= From 759c4dd4059b995505348695c3f32669c83a4237 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 12:41:25 +0000 Subject: [PATCH 084/123] chore(deps): bump sigstore/cosign-installer from 3.4.0 to 3.5.0 (#3100) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a3ef0c6ef0..16b0661eba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,7 +146,7 @@ jobs: password: ${{ secrets.QUAYIO_PASSWORD }} - name: Install cosign - uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0 + uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0 with: cosign-release: 'v1.13.1' From c61fa87bbd84ea8ce3dd2354a0f3b86d72a97bf6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 12:41:38 +0000 Subject: [PATCH 085/123] chore(deps): bump peaceiris/actions-gh-pages from 3 to 4 (#3101) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/gh-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index ffae4b4bda..18611a4af6 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -29,7 +29,7 @@ jobs: pip install mkdocs==1.3.0 mkdocs_material==8.2.9 mkdocs build - name: deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./site From 2fa2b34a58f716ad57a931ba6a6ef6bf256ef947 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 12:43:03 +0000 Subject: [PATCH 086/123] chore(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.2 (#3102) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 511d22e4e0..26505b702e 100644 --- a/go.mod +++ b/go.mod @@ -81,7 +81,7 @@ require ( golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 google.golang.org/api v0.172.0 - google.golang.org/grpc v1.62.1 + google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.24.3 k8s.io/apimachinery v0.24.3 @@ -318,7 +318,7 @@ require ( golang.org/x/tools v0.19.0 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect + google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect google.golang.org/protobuf v1.33.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 421853f585..9e2c41235f 100644 --- a/go.sum +++ b/go.sum @@ -2644,8 +2644,8 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 h1:9+tzLLstTlPTRyJTh+ah5wIMsBW5c4tQwGTN3thOW9Y= -google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:mqHbVIp48Muh7Ywss/AD6I5kNVKZMmAa/QEW58Gxp2s= +google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de h1:F6qOa9AZTYJXOUEr4jDysRDLrm4PHePlge4v4TGAlxY= +google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de/go.mod h1:VUhTRKeHn9wwcdrk73nvdC9gF178Tzhmt/qyaFcPLSo= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= @@ -2700,8 +2700,8 @@ google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5v google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk= -google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= +google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM= +google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= From ee41608b6c82630e24c052ac56bc43eed932ae1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 12:45:34 +0000 Subject: [PATCH 087/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.5.1 to 1.5.2 (#3103) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 26505b702e..d1f80d7899 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( cloud.google.com/go/pubsub v1.37.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 - github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2 github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.43.0 @@ -101,7 +101,7 @@ require ( github.com/99designs/keyring v1.2.1 // indirect github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/DataDog/zstd v1.5.0 // indirect @@ -123,7 +123,7 @@ require ( github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible // indirect - github.com/golang-jwt/jwt/v5 v5.2.0 // indirect + github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/google/gnostic v0.5.7-v3refs // indirect github.com/google/go-github/v41 v41.0.0 // indirect github.com/google/go-github/v60 v60.0.0 // indirect diff --git a/go.sum b/go.sum index 9e2c41235f..67155e4abf 100644 --- a/go.sum +++ b/go.sum @@ -624,10 +624,10 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7 github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 h1:c4k2FIYIh4xtwqrQwV0Ct1v5+ehlNXj5NI/MWVsiTkQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2/go.mod h1:5FDJtLEO/GxwNgUxbwrY3LP0pEoThTQJtk2oysdXHxM= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/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/messaging/azservicebus v1.7.0 h1:QISzMrspEvZj4zrrN2wlNwfum5RmnKQhQNiSujwH7oU= @@ -1084,8 +1084,8 @@ github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzw github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v5 v5.2.0 h1:d/ix8ftRUorsN+5eMIlF4T6J8CAt9rch3My2winC1Jw= -github.com/golang-jwt/jwt/v5 v5.2.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= +github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk= +github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= From 775fc12f395a12f29d21e3fef3b412286fce8bd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:28:20 +0000 Subject: [PATCH 088/123] chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#3106) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index d1f80d7899..c127aeaac0 100644 --- a/go.mod +++ b/go.mod @@ -308,7 +308,7 @@ require ( go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.10.0 // indirect golang.org/x/mod v0.16.0 // indirect - golang.org/x/net v0.22.0 // indirect + golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.19.0 // indirect diff --git a/go.sum b/go.sum index 67155e4abf..3c440feece 100644 --- a/go.sum +++ b/go.sum @@ -2106,8 +2106,9 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= -golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= +golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= From 11625343529108a7986e1dae1f2ceb275cc6794e Mon Sep 17 00:00:00 2001 From: bene-tleilax-werdna <99219287+bene-tleilax-werdna@users.noreply.github.com> Date: Fri, 19 Apr 2024 16:34:27 -0400 Subject: [PATCH 089/123] fix(AzureQueueStorage): update base64 encoding (#3104) Signed-off-by: Derek Wang --- eventsources/sources/azurequeuestorage/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventsources/sources/azurequeuestorage/start.go b/eventsources/sources/azurequeuestorage/start.go index 2efda677d9..a548dfbfd8 100644 --- a/eventsources/sources/azurequeuestorage/start.go +++ b/eventsources/sources/azurequeuestorage/start.go @@ -137,7 +137,7 @@ func (el *EventListener) processMessage(message *azqueue.DequeuedMessage, dispat } body := []byte(*message.MessageText) if el.AzureQueueStorageEventSource.DecodeMessage { - rawDecodedText, err := base64.RawURLEncoding.DecodeString(*message.MessageText) + rawDecodedText, err := base64.URLEncoding.DecodeString(*message.MessageText) if err != nil { log.Errorw("failed to base64 decode message...", zap.Error(err)) el.Metrics.EventProcessingFailed(el.GetEventSourceName(), el.GetEventName()) From 8cdb78caead940fd7be71a7eead4beaf455022e4 Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Fri, 19 Apr 2024 22:05:51 -0700 Subject: [PATCH 090/123] chore: golang, k8s and controller-runtime upgrades (#3107) Signed-off-by: Derek Wang --- .github/workflows/ci.yaml | 20 +- .github/workflows/gh-pages.yaml | 6 +- .github/workflows/release.yml | 8 +- .golangci.yml | 4 +- Makefile | 4 +- api/jsonschema/schema.json | 13061 +++++++--------- api/openapi-spec/swagger.json | 12247 ++++++--------- common/string_keyed_map.go | 4 +- common/viper.go | 2 +- controllers/cmd/start.go | 82 +- controllers/eventbus/installer/jetstream.go | 2 +- controllers/eventbus/installer/nats.go | 2 +- controllers/eventbus/validate_test.go | 4 +- eventsources/sources/resource/start.go | 4 +- go.mod | 195 +- go.sum | 375 +- hack/update-codegen.sh | 2 + hack/update-swagger.sh | 2 +- pkg/apis/common/generated.pb.go | 182 +- pkg/apis/common/generated.proto | 2 +- pkg/apis/common/openapi_generated.go | 1 - pkg/apis/eventbus/v1alpha1/generated.pb.go | 164 +- pkg/apis/eventbus/v1alpha1/generated.proto | 2 +- pkg/apis/eventsource/v1alpha1/generated.pb.go | 918 +- pkg/apis/eventsource/v1alpha1/generated.proto | 2 +- .../eventsource/v1alpha1/openapi_generated.go | 1 - pkg/apis/sensor/v1alpha1/generated.pb.go | 623 +- pkg/apis/sensor/v1alpha1/generated.proto | 2 +- pkg/apis/sensor/v1alpha1/openapi_generated.go | 1 - .../eventbus/clientset/versioned/clientset.go | 7 +- .../eventbus/clientset/versioned/doc.go | 20 - .../eventbus/v1alpha1/fake/fake_eventbus.go | 5 +- .../informers/externalversions/factory.go | 91 +- .../clientset/versioned/clientset.go | 7 +- .../eventsource/clientset/versioned/doc.go | 20 - .../v1alpha1/fake/fake_eventsource.go | 5 +- .../informers/externalversions/factory.go | 91 +- .../sensor/clientset/versioned/clientset.go | 7 +- pkg/client/sensor/clientset/versioned/doc.go | 20 - .../typed/sensor/v1alpha1/fake/fake_sensor.go | 5 +- .../informers/externalversions/factory.go | 91 +- sensors/policy/resource-labels_test.go | 2 +- .../triggers/argo-workflow/argo-workflow.go | 5 +- sensors/triggers/standard-k8s/standard-k8s.go | 6 +- 44 files changed, 11962 insertions(+), 16342 deletions(-) delete mode 100644 pkg/client/eventbus/clientset/versioned/doc.go delete mode 100644 pkg/client/eventsource/clientset/versioned/doc.go delete mode 100644 pkg/client/sensor/clientset/versioned/doc.go diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a26748ccc0..9a0f6dbb1d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,9 +19,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Golang - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - name: Restore go build cache uses: actions/cache@v4 with: @@ -34,9 +34,9 @@ jobs: - name: Install protoc run: | set -eux -o pipefail - PROTOC_VERSION=3.11.1 + PROTOC_VERSION=3.19.4 PROTOC_ZIP=protoc-$PROTOC_VERSION-linux-x86_64.zip - curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.11.1/$PROTOC_ZIP + curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOC_VERSION/$PROTOC_ZIP sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*' sudo chmod +x /usr/local/bin/protoc @@ -68,9 +68,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Golang - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - name: Restore go build cache uses: actions/cache@v4 with: @@ -95,9 +95,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Golang - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - name: Restore go build cache uses: actions/cache@v4 with: @@ -128,9 +128,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Golang - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - name: Restore go build cache uses: actions/cache@v4 with: diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 18611a4af6..95700d1f87 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -17,13 +17,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Setup Golang - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: build run: | pip install mkdocs==1.3.0 mkdocs_material==8.2.9 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 16b0661eba..3d1f9b0350 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,9 +25,9 @@ jobs: uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - name: Build binaries run: | @@ -93,9 +93,9 @@ jobs: else echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV fi - - uses: actions/setup-go@v4.1.0 + - uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.21" - uses: actions/checkout@v4 - run: go install sigs.k8s.io/bom/cmd/bom@v0.2.0 - run: go install github.com/spdx/spdx-sbom-generator/cmd/generator@v0.0.13 diff --git a/.golangci.yml b/.golangci.yml index 55097b2488..b299d14b83 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -9,7 +9,7 @@ run: linters: enable: - deadcode - - depguard + # - depguard - dogsled - goconst - gocritic @@ -23,7 +23,7 @@ linters: - nakedret - rowserrcheck - staticcheck - - structcheck + # - structcheck - typecheck - unconvert - unused diff --git a/Makefile b/Makefile index af5fcd023c..f5574d19b8 100644 --- a/Makefile +++ b/Makefile @@ -155,12 +155,12 @@ start: image kubectl -n argo-events wait --for=condition=Ready --timeout 60s pod --all $(GOPATH)/bin/golangci-lint: - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b `go env GOPATH`/bin v1.52.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b `go env GOPATH`/bin v1.54.1 .PHONY: lint lint: $(GOPATH)/bin/golangci-lint go mod tidy - golangci-lint run --fix --verbose --concurrency 4 --timeout 10m + golangci-lint run --fix --verbose --concurrency 4 --timeout 5m --enable goimports # release - targets only available on release branch ifneq ($(findstring release,$(GIT_BRANCH)),) diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index 43d112fa99..da379ed97b 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -4705,6 +4705,24 @@ ], "type": "object" }, + "io.k8s.api.admissionregistration.v1.MatchCondition": { + "description": "MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", + "type": "string" + }, + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + }, + "required": [ + "name", + "expression" + ], + "type": "object" + }, "io.k8s.api.admissionregistration.v1.MutatingWebhook": { "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { @@ -4723,6 +4741,19 @@ "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" @@ -4751,7 +4782,7 @@ "type": "array" }, "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { @@ -4845,28 +4876,32 @@ "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", @@ -4920,6 +4955,19 @@ "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" @@ -4944,7 +4992,7 @@ "type": "array" }, "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { @@ -5049,260 +5097,199 @@ }, "type": "object" }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhook": { - "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", + "io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", "properties": { - "admissionReviewVersions": { - "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", - "items": { - "type": "string" - }, - "type": "array" - }, - "clientConfig": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig", - "description": "ClientConfig defines how to communicate with the hook. Required" - }, - "failurePolicy": { - "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", - "type": "string" - }, - "matchPolicy": { - "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", "type": "string" }, - "name": { - "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", "type": "string" - }, - "namespaceSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." - }, - "objectSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." - }, - "reinvocationPolicy": { - "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", + } + }, + "required": [ + "key", + "valueExpression" + ], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", + "properties": { + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", "type": "string" }, - "rules": { - "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations" - }, - "type": "array" - }, - "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", "type": "string" - }, - "timeoutSeconds": { - "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", - "format": "int32", - "type": "integer" } }, "required": [ - "name", - "clientConfig" + "fieldRef", + "warning" ], "type": "object" }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration": { - "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration instead.", + "io.k8s.api.admissionregistration.v1alpha1.MatchCondition": { "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", "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", + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." - }, - "webhooks": { - "description": "Webhooks is a list of webhooks and the affected resources and operations.", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhook" - }, - "type": "array", - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" } }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "admissionregistration.k8s.io", - "kind": "MutatingWebhookConfiguration", - "version": "v1beta1" - } - ] + "required": [ + "name", + "expression" + ], + "type": "object" }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList": { - "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.", + "io.k8s.api.admissionregistration.v1alpha1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", "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" - }, - "items": { - "description": "List of MutatingWebhookConfiguration.", + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "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", + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" + "namespaceSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the policy.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the policy on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." + }, + "objectSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." + }, + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, - "required": [ - "items" - ], "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "admissionregistration.k8s.io", - "kind": "MutatingWebhookConfigurationList", - "version": "v1beta1" - } - ] + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.RuleWithOperations": { - "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", + "io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", "properties": { "apiGroups": { "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": "string" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "io.k8s.api.admissionregistration.v1alpha1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", "properties": { - "name": { - "description": "`name` is the name of the service. Required", - "type": "string" - }, - "namespace": { - "description": "`namespace` is the namespace of the service. Required", + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", "type": "string" }, - "path": { - "description": "`path` is an optional URL path which will be sent in any request to this service.", + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", "type": "string" - }, - "port": { - "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", - "format": "int32", - "type": "integer" } }, - "required": [ - "namespace", - "name" - ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook": { - "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.", + "io.k8s.api.admissionregistration.v1alpha1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", "properties": { - "admissionReviewVersions": { - "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", - "items": { - "type": "string" - }, - "type": "array" - }, - "clientConfig": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig", - "description": "ClientConfig defines how to communicate with the hook. Required" - }, - "failurePolicy": { - "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", + "name": { + "description": "`name` is the name of the resource being referenced.\n\n`name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.", "type": "string" }, - "matchPolicy": { - "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", "type": "string" }, - "name": { - "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny` Default to `Deny`", "type": "string" }, - "namespaceSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." - }, - "objectSelector": { + "selector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." - }, - "rules": { - "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", + "description": "selector can be used to match multiple param objects based on their labels. Supply selector: {} to match all resources of the ParamKind.\n\nIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed together.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset." + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", + "properties": { + "expressionWarnings": { + "description": "The type checking warnings for each expression.", "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning" }, - "type": "array" - }, - "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", - "type": "string" - }, - "timeoutSeconds": { - "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", - "format": "int32", - "type": "integer" + "type": "array", + "x-kubernetes-list-type": "atomic" } }, - "required": [ - "name", - "clientConfig" - ], "type": "object" }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration": { - "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", "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", @@ -5316,184 +5303,122 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, - "webhooks": { - "description": "Webhooks is a list of webhooks and the affected resources and operations.", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook" - }, - "type": "array", - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" + "spec": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec", + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicy." + }, + "status": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus", + "description": "The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way. Populated by the system. Read-only." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", - "kind": "ValidatingWebhookConfiguration", - "version": "v1beta1" + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" } ] }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList": { - "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", "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" }, - "items": { - "description": "List of ValidatingWebhookConfiguration.", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" - }, - "type": "array" - }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec", + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicyBinding." } }, - "required": [ - "items" - ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", - "kind": "ValidatingWebhookConfigurationList", - "version": "v1beta1" + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" } ] }, - "io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig": { - "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", - "properties": { - "caBundle": { - "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", - "format": "byte", - "type": "string" - }, - "service": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ServiceReference", - "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." - }, - "url": { - "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting 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" - }, - "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": { - "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", "properties": { - "apiServerID": { - "description": "The ID of the reporting API server.", + "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" }, - "decodableVersions": { - "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.", + "items": { + "description": "List of PolicyBinding.", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" }, - "type": "array", - "x-kubernetes-list-type": "set" - }, - "encodingVersion": { - "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { - "description": "\n Storage version of a specific resource.", - "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" + "type": "array" }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "The name is \u003cgroup\u003e.\u003cresource\u003e." - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec", - "description": "Spec is an empty spec. It is here to comply with Kubernetes API style." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus", - "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, - "required": [ - "spec", - "status" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "internal.apiserver.k8s.io", - "kind": "StorageVersion", + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", "version": "v1alpha1" } ] }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": { - "description": "Describes the state of the storageVersion at a certain point.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transitioned from one status to another." - }, - "message": { - "description": "A human readable message indicating details about the transition.", - "type": "string" - }, - "observedGeneration": { - "description": "If set, this represents the .metadata.generation that the condition was set based upon.", - "format": "int64", - "type": "integer" + "matchResources": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchResources", + "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated. Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required." }, - "reason": { - "description": "The reason for the condition's last transition.", - "type": "string" + "paramRef": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ParamRef", + "description": "paramRef specifies the parameter resource used to configure the admission control policy. It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy. If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied. If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param." }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", "type": "string" }, - "type": { - "description": "Type of the condition.", - "type": "string" + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, - "required": [ - "type", - "status", - "reason" - ], "type": "object" }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": { - "description": "A list of StorageVersions.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", "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" }, "items": { + "description": "List of ValidatingAdmissionPolicy.", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" }, "type": "array" }, @@ -5502,341 +5427,342 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, - "required": [ - "items" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "internal.apiserver.k8s.io", - "kind": "StorageVersionList", + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", "version": "v1alpha1" } ] }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": { - "description": "StorageVersionSpec is an empty spec.", - "type": "object" - }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": { - "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", "properties": { - "commonEncodingVersion": { - "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.", + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, - "conditions": { - "description": "The latest available observations of the storageVersion's state.", + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ - "type" + "name" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" }, - "storageVersions": { - "description": "The reported versions per API server instance.", + "matchConstraints": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchResources", + "description": "MatchConstraints specifies what resources this policy is designed to validate. The AdmissionPolicy cares about a request if it matches _all_ Constraints. However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding. Required." + }, + "paramKind": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ParamKind", + "description": "ParamKind specifies the kind of resources used to parameterize this policy. If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions. If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied. If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null." + }, + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Validation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Variable" }, "type": "array", "x-kubernetes-list-map-keys": [ - "apiServerID" + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy.", + "properties": { + "conditions": { + "description": "The conditions represent the latest available observations of a policy's current state.", + "items": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" ], "x-kubernetes-list-type": "map" + }, + "observedGeneration": { + "description": "The generation observed by the controller.", + "format": "int64", + "type": "integer" + }, + "typeChecking": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.TypeChecking", + "description": "The results of type checking for each expression. Presence of this field indicates the completion of the type checking." } }, "type": "object" }, - "io.k8s.api.apps.v1.ControllerRevision": { - "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + "io.k8s.api.admissionregistration.v1alpha1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ \u003e 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop \u003e 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", "type": "string" }, - "data": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension", - "description": "Data is the serialized representation of the state." - }, - "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", + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" }, - "revision": { - "description": "Revision indicates the revision of the state represented by Data.", - "format": "int64", - "type": "integer" + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" } }, "required": [ - "revision" + "expression" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "ControllerRevision", - "version": "v1" - } - ] + "type": "object" }, - "io.k8s.api.apps.v1.ControllerRevisionList": { - "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", + "io.k8s.api.admissionregistration.v1alpha1.Variable": { + "description": "Variable is the definition of a variable that is used for composition.", "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", + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", "type": "string" }, - "items": { - "description": "Items is the list of ControllerRevisions", - "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" - }, - "type": "array" - }, - "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", + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "items" + "name", + "expression" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "ControllerRevisionList", - "version": "v1" - } - ] + "type": "object" }, - "io.k8s.api.apps.v1.DaemonSet": { - "description": "DaemonSet represents the configuration of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", "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", + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", "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", + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec", - "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" - }, - "status": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus", - "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "DaemonSet", - "version": "v1" - } - ] + "required": [ + "key", + "valueExpression" + ], + "type": "object" }, - "io.k8s.api.apps.v1.DaemonSetCondition": { - "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", + "io.k8s.api.admissionregistration.v1beta1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transitioned from one status to another." - }, - "message": { - "description": "A human readable message indicating details about the transition.", - "type": "string" - }, - "reason": { - "description": "The reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", "type": "string" }, - "type": { - "description": "Type of DaemonSet condition.", + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", "type": "string" } }, "required": [ - "type", - "status" + "fieldRef", + "warning" ], "type": "object" }, - "io.k8s.api.apps.v1.DaemonSetList": { - "description": "DaemonSetList is a collection of daemon sets.", + "io.k8s.api.admissionregistration.v1beta1.MatchCondition": { + "description": "MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.", "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", "type": "string" }, - "items": { - "description": "A list of daemon sets.", - "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" - }, - "type": "array" - }, - "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", + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "items" + "name", + "expression" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "DaemonSetList", - "version": "v1" - } - ] + "type": "object" }, - "io.k8s.api.apps.v1.DaemonSetSpec": { - "description": "DaemonSetSpec is the specification of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", "properties": { - "minReadySeconds": { - "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", - "format": "int32", - "type": "integer" + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "revisionHistoryLimit": { - "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", - "format": "int32", - "type": "integer" + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", + "type": "string" }, - "selector": { + "namespaceSelector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" + "description": "NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the policy.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the policy on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, - "template": { - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" + "objectSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, - "updateStrategy": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy", - "description": "An update strategy to replace existing DaemonSet pods with new pods." + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, - "required": [ - "selector", - "template" - ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.apps.v1.DaemonSetStatus": { - "description": "DaemonSetStatus represents the current status of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", "properties": { - "collisionCount": { - "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", - "format": "int32", - "type": "integer" + "apiGroups": { + "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "conditions": { - "description": "Represents the latest available observations of a DaemonSet's current state.", + "apiVersions": { + "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition" + "type": "string" }, "type": "array", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-type": "atomic" }, - "currentNumberScheduled": { - "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "format": "int32", - "type": "integer" + "operations": { + "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "desiredNumberScheduled": { - "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "format": "int32", - "type": "integer" + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "numberAvailable": { - "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", - "format": "int32", - "type": "integer" + "resources": { + "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "numberMisscheduled": { - "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "format": "int32", - "type": "integer" + "scope": { + "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", + "properties": { + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", + "type": "string" }, - "numberReady": { - "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", - "format": "int32", - "type": "integer" + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", + "properties": { + "name": { + "description": "name is the name of the resource being referenced.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.\n\nA single parameter used for all admission requests can be configured by setting the `name` field, leaving `selector` blank, and setting namespace if `paramKind` is namespace-scoped.", + "type": "string" }, - "numberUnavailable": { - "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", - "format": "int32", - "type": "integer" + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", + "type": "string" }, - "observedGeneration": { - "description": "The most recent generation observed by the daemon set controller.", - "format": "int64", - "type": "integer" + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny`\n\nRequired", + "type": "string" }, - "updatedNumberScheduled": { - "description": "The total number of nodes that are running updated daemon pod", - "format": "int32", - "type": "integer" + "selector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "selector can be used to match multiple param objects based on their labels. Supply selector: {} to match all resources of the ParamKind.\n\nIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed together.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset." } }, - "required": [ - "currentNumberScheduled", - "numberMisscheduled", - "desiredNumberScheduled", - "numberReady" - ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { - "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", + "io.k8s.api.admissionregistration.v1beta1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", "properties": { - "rollingUpdate": { - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet", - "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." - }, - "type": { - "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", - "type": "string" + "expressionWarnings": { + "description": "The type checking warnings for each expression.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ExpressionWarning" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, "type": "object" }, - "io.k8s.api.apps.v1.Deployment": { - "description": "Deployment enables declarative updates for Pods and ReplicaSets.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", "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", @@ -5848,71 +5774,124 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata." + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "spec": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec", - "description": "Specification of the desired behavior of the Deployment." + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec", + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicy." }, "status": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus", - "description": "Most recently observed status of the Deployment." + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus", + "description": "The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way. Populated by the system. Read-only." } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "Deployment", - "version": "v1" + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" } ] }, - "io.k8s.api.apps.v1.DeploymentCondition": { - "description": "DeploymentCondition describes the state of a deployment at a certain point.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transitioned from one status to another." + "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" }, - "lastUpdateTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "The last time this condition was updated." - }, - "message": { - "description": "A human readable message indicating details about the transition.", + "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" }, - "reason": { - "description": "The reason for the condition's last transition.", + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec", + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicyBinding." + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", + "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" }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "items": { + "description": "List of PolicyBinding.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + }, + "type": "array" + }, + "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" }, - "type": { - "description": "Type of deployment condition.", + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", + "properties": { + "matchResources": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchResources", + "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated. Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required." + }, + "paramRef": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ParamRef", + "description": "paramRef specifies the parameter resource used to configure the admission control policy. It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy. If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied. If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param." + }, + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", "type": "string" + }, + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, - "required": [ - "type", - "status" - ], "type": "object" }, - "io.k8s.api.apps.v1.DeploymentList": { - "description": "DeploymentList is a list of Deployments.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", "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" }, "items": { - "description": "Items is the list of Deployments.", + "description": "List of ValidatingAdmissionPolicy.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" }, "type": "array" }, @@ -5922,134 +5901,180 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata." + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, - "required": [ - "items" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "DeploymentList", - "version": "v1" + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", + "version": "v1beta1" } ] }, - "io.k8s.api.apps.v1.DeploymentSpec": { - "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", "properties": { - "minReadySeconds": { - "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", - "format": "int32", - "type": "integer" - }, - "paused": { - "description": "Indicates that the deployment is paused.", - "type": "boolean" + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.AuditAnnotation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "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.", - "format": "int32", - "type": "integer" + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" }, - "replicas": { - "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", - "format": "int32", - "type": "integer" + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" }, - "revisionHistoryLimit": { - "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", - "format": "int32", - "type": "integer" + "matchConstraints": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchResources", + "description": "MatchConstraints specifies what resources this policy is designed to validate. The AdmissionPolicy cares about a request if it matches _all_ Constraints. However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding. Required." }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels." + "paramKind": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ParamKind", + "description": "ParamKind specifies the kind of resources used to parameterize this policy. If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions. If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied. If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null." }, - "strategy": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy", - "description": "The deployment strategy to use to replace existing pods with new ones.", - "x-kubernetes-patch-strategy": "retainKeys" + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.Validation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "template": { - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "Template describes the pods that will be created." + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.Variable" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" } }, - "required": [ - "selector", - "template" - ], "type": "object" }, - "io.k8s.api.apps.v1.DeploymentStatus": { - "description": "DeploymentStatus is the most recently observed status of the Deployment.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of an admission validation policy.", "properties": { - "availableReplicas": { - "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", - "format": "int32", - "type": "integer" - }, - "collisionCount": { - "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", - "format": "int32", - "type": "integer" - }, "conditions": { - "description": "Represents the latest available observations of a deployment's current state.", + "description": "The conditions represent the latest available observations of a policy's current state.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" }, "type": "array", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, "observedGeneration": { - "description": "The generation observed by the deployment controller.", + "description": "The generation observed by the controller.", "format": "int64", "type": "integer" }, - "readyReplicas": { - "description": "Total number of ready pods targeted by this deployment.", - "format": "int32", - "type": "integer" + "typeChecking": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.TypeChecking", + "description": "The results of type checking for each expression. Presence of this field indicates the completion of the type checking." + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ \u003e 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop \u003e 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", + "type": "string" }, - "replicas": { - "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", - "format": "int32", - "type": "integer" + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", + "type": "string" }, - "unavailableReplicas": { - "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", - "format": "int32", - "type": "integer" + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" }, - "updatedReplicas": { - "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", - "format": "int32", - "type": "integer" + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" } }, + "required": [ + "expression" + ], "type": "object" }, - "io.k8s.api.apps.v1.DeploymentStrategy": { - "description": "DeploymentStrategy describes how to replace existing pods with new ones.", + "io.k8s.api.admissionregistration.v1beta1.Variable": { + "description": "Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.", "properties": { - "rollingUpdate": { - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment", - "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", + "type": "string" }, - "type": { - "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", + "type": "string" + } + }, + "required": [ + "name", + "expression" + ], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": { + "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.", + "properties": { + "apiServerID": { + "description": "The ID of the reporting API server.", + "type": "string" + }, + "decodableVersions": { + "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "encodingVersion": { + "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).", "type": "string" + }, + "servedVersions": { + "description": "The API server can serve these versions. DecodableVersions must include all ServedVersions.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, "type": "object" }, - "io.k8s.api.apps.v1.ReplicaSet": { - "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { + "description": "Storage version of a specific resource.", "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", @@ -6061,37 +6086,46 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "The name is \u003cgroup\u003e.\u003cresource\u003e." }, "spec": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec", - "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec", + "description": "Spec is an empty spec. It is here to comply with Kubernetes API style." }, "status": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus", - "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus", + "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend." } }, + "required": [ + "spec", + "status" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "ReplicaSet", - "version": "v1" + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" } ] }, - "io.k8s.api.apps.v1.ReplicaSetCondition": { - "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": { + "description": "Describes the state of the storageVersion at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "The last time the condition transitioned from one status to another." + "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, + "observedGeneration": { + "description": "If set, this represents the .metadata.generation that the condition was set based upon.", + "format": "int64", + "type": "integer" + }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" @@ -6101,27 +6135,28 @@ "type": "string" }, "type": { - "description": "Type of replica set condition.", + "description": "Type of the condition.", "type": "string" } }, "required": [ "type", - "status" + "status", + "reason" ], "type": "object" }, - "io.k8s.api.apps.v1.ReplicaSetList": { - "description": "ReplicaSetList is a collection of ReplicaSets.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": { + "description": "A list of StorageVersions.", "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" }, "items": { - "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "description": "Items holds a list of StorageVersion", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" }, "type": "array" }, @@ -6131,7 +6166,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -6140,119 +6175,122 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "ReplicaSetList", - "version": "v1" + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersionList", + "version": "v1alpha1" } ] }, - "io.k8s.api.apps.v1.ReplicaSetSpec": { - "description": "ReplicaSetSpec is the specification of a ReplicaSet.", - "properties": { - "minReadySeconds": { - "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod 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. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", - "format": "int32", - "type": "integer" - }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" - }, - "template": { - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" - } - }, - "required": [ - "selector" - ], + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": { + "description": "StorageVersionSpec is an empty spec.", "type": "object" }, - "io.k8s.api.apps.v1.ReplicaSetStatus": { - "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": { + "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.", "properties": { - "availableReplicas": { - "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", - "format": "int32", - "type": "integer" + "commonEncodingVersion": { + "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.", + "type": "string" }, "conditions": { - "description": "Represents the latest available observations of a replica set's current state.", + "description": "The latest available observations of the storageVersion's state.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition" + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition" }, "type": "array", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, - "fullyLabeledReplicas": { - "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", - "format": "int32", - "type": "integer" + "storageVersions": { + "description": "The reported versions per API server instance.", + "items": { + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "apiServerID" + ], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.ControllerRevision": { + "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + "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" }, - "observedGeneration": { - "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", - "format": "int64", - "type": "integer" + "data": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension", + "description": "Data is the serialized representation of the state." }, - "readyReplicas": { - "description": "The number of ready replicas for this replica set.", - "format": "int32", - "type": "integer" + "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" }, - "replicas": { - "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", - "format": "int32", + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "revision": { + "description": "Revision indicates the revision of the state represented by Data.", + "format": "int64", "type": "integer" } }, "required": [ - "replicas" + "revision" ], - "type": "object" - }, - "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { - "description": "Spec to control the desired behavior of daemon set rolling update.", - "properties": { - "maxUnavailable": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" } - }, - "type": "object" + ] }, - "io.k8s.api.apps.v1.RollingUpdateDeployment": { - "description": "Spec to control the desired behavior of rolling update.", + "io.k8s.api.apps.v1.ControllerRevisionList": { + "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", "properties": { - "maxSurge": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." + "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" }, - "maxUnavailable": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." + "items": { + "description": "Items is the list of ControllerRevisions", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" + }, + "type": "array" + }, + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, - "type": "object" - }, - "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { - "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", - "properties": { - "partition": { - "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", - "format": "int32", - "type": "integer" + "required": [ + "items" + ], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevisionList", + "version": "v1" } - }, - "type": "object" + ] }, - "io.k8s.api.apps.v1.StatefulSet": { - "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", + "io.k8s.api.apps.v1.DaemonSet": { + "description": "DaemonSet represents the configuration of a daemon set.", "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", @@ -6263,28 +6301,29 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec", - "description": "Spec defines the desired identities of pods in this set." + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec", + "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus", - "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time." + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus", + "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", - "kind": "StatefulSet", + "kind": "DaemonSet", "version": "v1" } ] }, - "io.k8s.api.apps.v1.StatefulSetCondition": { - "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", + "io.k8s.api.apps.v1.DaemonSetCondition": { + "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", @@ -6303,7 +6342,7 @@ "type": "string" }, "type": { - "description": "Type of statefulset condition.", + "description": "Type of DaemonSet condition.", "type": "string" } }, @@ -6313,16 +6352,17 @@ ], "type": "object" }, - "io.k8s.api.apps.v1.StatefulSetList": { - "description": "StatefulSetList is a collection of StatefulSets.", + "io.k8s.api.apps.v1.DaemonSetList": { + "description": "DaemonSetList is a collection of daemon sets.", "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" }, "items": { + "description": "A list of daemon sets.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" }, "type": "array" }, @@ -6331,7 +6371,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -6341,153 +6382,125 @@ "x-kubernetes-group-version-kind": [ { "group": "apps", - "kind": "StatefulSetList", + "kind": "DaemonSetList", "version": "v1" } ] }, - "io.k8s.api.apps.v1.StatefulSetSpec": { - "description": "A StatefulSetSpec is the specification of a StatefulSet.", + "io.k8s.api.apps.v1.DaemonSetSpec": { + "description": "DaemonSetSpec is the specification of a daemon set.", "properties": { - "podManagementPolicy": { - "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", - "type": "string" - }, - "replicas": { - "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "minReadySeconds": { + "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", "format": "int32", "type": "integer" }, "revisionHistoryLimit": { - "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "format": "int32", "type": "integer" }, "selector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" - }, - "serviceName": { - "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", - "type": "string" + "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet." + "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" }, "updateStrategy": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy", - "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template." - }, - "volumeClaimTemplates": { - "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" - }, - "type": "array" + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy", + "description": "An update strategy to replace existing DaemonSet pods with new pods." } }, "required": [ "selector", - "template", - "serviceName" + "template" ], "type": "object" }, - "io.k8s.api.apps.v1.StatefulSetStatus": { - "description": "StatefulSetStatus represents the current state of a StatefulSet.", + "io.k8s.api.apps.v1.DaemonSetStatus": { + "description": "DaemonSetStatus represents the current status of a daemon set.", "properties": { "collisionCount": { - "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", "format": "int32", "type": "integer" }, "conditions": { - "description": "Represents the latest available observations of a statefulset's current state.", + "description": "Represents the latest available observations of a DaemonSet's current state.", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition" + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, - "currentReplicas": { - "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + "currentNumberScheduled": { + "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "format": "int32", "type": "integer" }, - "currentRevision": { - "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", - "type": "string" + "desiredNumberScheduled": { + "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + "format": "int32", + "type": "integer" }, - "observedGeneration": { - "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", - "format": "int64", + "numberAvailable": { + "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", + "format": "int32", "type": "integer" }, - "readyReplicas": { - "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.", + "numberMisscheduled": { + "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "format": "int32", "type": "integer" }, - "replicas": { - "description": "replicas is the number of Pods created by the StatefulSet controller.", + "numberReady": { + "description": "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.", "format": "int32", "type": "integer" }, - "updateRevision": { - "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", - "type": "string" + "numberUnavailable": { + "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", + "format": "int32", + "type": "integer" }, - "updatedReplicas": { - "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + "observedGeneration": { + "description": "The most recent generation observed by the daemon set controller.", + "format": "int64", + "type": "integer" + }, + "updatedNumberScheduled": { + "description": "The total number of nodes that are running updated daemon pod", "format": "int32", "type": "integer" } }, "required": [ - "replicas" + "currentNumberScheduled", + "numberMisscheduled", + "desiredNumberScheduled", + "numberReady" ], "type": "object" }, - "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { - "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", + "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { + "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", "properties": { "rollingUpdate": { - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy", - "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet", + "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." }, "type": { - "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.authentication.v1.BoundObjectReference": { - "description": "BoundObjectReference is a reference to an object that a token is bound to.", - "properties": { - "apiVersion": { - "description": "API version of the referent.", - "type": "string" - }, - "kind": { - "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", - "type": "string" - }, - "name": { - "description": "Name of the referent.", - "type": "string" - }, - "uid": { - "description": "UID of the referent.", + "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, - "io.k8s.api.authentication.v1.TokenRequest": { - "description": "TokenRequest requests a token for a given service account.", + "io.k8s.api.apps.v1.Deployment": { + "description": "Deployment enables declarative updates for Pods and ReplicaSets.", "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", @@ -6498,180 +6511,209 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec" + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec", + "description": "Specification of the desired behavior of the Deployment." }, "status": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus" + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus", + "description": "Most recently observed status of the Deployment." } }, - "required": [ - "spec" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenRequest", + "group": "apps", + "kind": "Deployment", "version": "v1" } ] }, - "io.k8s.api.authentication.v1.TokenRequestSpec": { - "description": "TokenRequestSpec contains client provided parameters of a token request.", + "io.k8s.api.apps.v1.DeploymentCondition": { + "description": "DeploymentCondition describes the state of a deployment at a certain point.", "properties": { - "audiences": { - "description": "Audiences are the intendend audiences of the token. A recipient of a token must identitfy themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", - "items": { - "type": "string" - }, - "type": "array" - }, - "boundObjectRef": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference", - "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation." + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Last time the condition transitioned from one status to another." }, - "expirationSeconds": { - "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "audiences" - ], - "type": "object" - }, - "io.k8s.api.authentication.v1.TokenRequestStatus": { - "description": "TokenRequestStatus is the result of a token request.", - "properties": { - "expirationTimestamp": { + "lastUpdateTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "ExpirationTimestamp is the time of expiration of the returned token." + "description": "The last time this condition was updated." }, - "token": { - "description": "Token is the opaque bearer token.", + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of deployment condition.", "type": "string" } }, "required": [ - "token", - "expirationTimestamp" + "type", + "status" ], "type": "object" }, - "io.k8s.api.authentication.v1.TokenReview": { - "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + "io.k8s.api.apps.v1.DeploymentList": { + "description": "DeploymentList is a list of Deployments.", "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" }, + "items": { + "description": "Items is the list of Deployments.", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec", - "description": "Spec holds information about the request being evaluated" - }, - "status": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus", - "description": "Status is filled in by the server and indicates whether the request can be authenticated." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata." } }, "required": [ - "spec" + "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenReview", + "group": "apps", + "kind": "DeploymentList", "version": "v1" } ] }, - "io.k8s.api.authentication.v1.TokenReviewSpec": { - "description": "TokenReviewSpec is a description of the token authentication request.", + "io.k8s.api.apps.v1.DeploymentSpec": { + "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", "properties": { - "audiences": { - "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", - "items": { - "type": "string" - }, - "type": "array" + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" }, - "token": { - "description": "Token is the opaque bearer token.", - "type": "string" + "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.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "format": "int32", + "type": "integer" + }, + "revisionHistoryLimit": { + "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + "format": "int32", + "type": "integer" + }, + "selector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels." + }, + "strategy": { + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy", + "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys" + }, + "template": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", + "description": "Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is \"Always\"." } }, + "required": [ + "selector", + "template" + ], "type": "object" }, - "io.k8s.api.authentication.v1.TokenReviewStatus": { - "description": "TokenReviewStatus is the result of the token authentication request.", + "io.k8s.api.apps.v1.DeploymentStatus": { + "description": "DeploymentStatus is the most recently observed status of the Deployment.", "properties": { - "audiences": { - "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", - "items": { - "type": "string" - }, - "type": "array" + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + "format": "int32", + "type": "integer" }, - "authenticated": { - "description": "Authenticated indicates that the token was associated with a known user.", - "type": "boolean" + "collisionCount": { + "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + "format": "int32", + "type": "integer" }, - "error": { - "description": "Error indicates that the token couldn't be checked", - "type": "string" + "conditions": { + "description": "Represents the latest available observations of a deployment's current state.", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "user": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo", - "description": "User is the UserInfo associated with the provided token." + "observedGeneration": { + "description": "The generation observed by the deployment controller.", + "format": "int64", + "type": "integer" + }, + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + "format": "int32", + "type": "integer" + }, + "unavailableReplicas": { + "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + "format": "int32", + "type": "integer" + }, + "updatedReplicas": { + "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + "format": "int32", + "type": "integer" } }, "type": "object" }, - "io.k8s.api.authentication.v1.UserInfo": { - "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", + "io.k8s.api.apps.v1.DeploymentStrategy": { + "description": "DeploymentStrategy describes how to replace existing pods with new ones.", "properties": { - "extra": { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "description": "Any additional information provided by the authenticator.", - "type": "object" - }, - "groups": { - "description": "The names of groups this user is a part of.", - "items": { - "type": "string" - }, - "type": "array" - }, - "uid": { - "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", - "type": "string" + "rollingUpdate": { + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment", + "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." }, - "username": { - "description": "The name that uniquely identifies this user among all active users.", + "type": { + "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, - "io.k8s.api.authentication.v1beta1.TokenReview": { - "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + "io.k8s.api.apps.v1.ReplicaSet": { + "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", "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", @@ -6682,296 +6724,207 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec", - "description": "Spec holds information about the request being evaluated" + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec", + "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus", - "description": "Status is filled in by the server and indicates whether the request can be authenticated." + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus", + "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, - "required": [ - "spec" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenReview", - "version": "v1beta1" + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" } ] }, - "io.k8s.api.authentication.v1beta1.TokenReviewSpec": { - "description": "TokenReviewSpec is a description of the token authentication request.", + "io.k8s.api.apps.v1.ReplicaSetCondition": { + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", "properties": { - "audiences": { - "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", - "items": { - "type": "string" - }, - "type": "array" + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "The last time the condition transitioned from one status to another." }, - "token": { - "description": "Token is the opaque bearer token.", + "message": { + "description": "A human readable message indicating details about the transition.", "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.authentication.v1beta1.TokenReviewStatus": { - "description": "TokenReviewStatus is the result of the token authentication request.", - "properties": { - "audiences": { - "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", - "items": { - "type": "string" - }, - "type": "array" - }, - "authenticated": { - "description": "Authenticated indicates that the token was associated with a known user.", - "type": "boolean" }, - "error": { - "description": "Error indicates that the token couldn't be checked", + "reason": { + "description": "The reason for the condition's last transition.", "type": "string" }, - "user": { - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo", - "description": "User is the UserInfo associated with the provided token." - } - }, - "type": "object" - }, - "io.k8s.api.authentication.v1beta1.UserInfo": { - "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", - "properties": { - "extra": { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "description": "Any additional information provided by the authenticator.", - "type": "object" - }, - "groups": { - "description": "The names of groups this user is a part of.", - "items": { - "type": "string" - }, - "type": "array" - }, - "uid": { - "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "status": { + "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, - "username": { - "description": "The name that uniquely identifies this user among all active users.", + "type": { + "description": "Type of replica set condition.", "type": "string" } }, + "required": [ + "type", + "status" + ], "type": "object" }, - "io.k8s.api.authorization.v1.LocalSubjectAccessReview": { - "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + "io.k8s.api.apps.v1.ReplicaSetList": { + "description": "ReplicaSetList is a collection of ReplicaSets.", "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" }, + "items": { + "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec", - "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ - "spec" + "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "LocalSubjectAccessReview", + "group": "apps", + "kind": "ReplicaSetList", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.NonResourceAttributes": { - "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + "io.k8s.api.apps.v1.ReplicaSetSpec": { + "description": "ReplicaSetSpec is the specification of a ReplicaSet.", "properties": { - "path": { - "description": "Path is the URL path of the request", - "type": "string" + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" }, - "verb": { - "description": "Verb is the standard HTTP verb", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.authorization.v1.NonResourceRule": { - "description": "NonResourceRule holds information that describes a rule for the non-resource", - "properties": { - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" + "replicas": { + "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" }, - "verbs": { - "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" + "selector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" + }, + "template": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", + "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" } }, "required": [ - "verbs" + "selector" ], "type": "object" }, - "io.k8s.api.authorization.v1.ResourceAttributes": { - "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", + "io.k8s.api.apps.v1.ReplicaSetStatus": { + "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "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" + "availableReplicas": { + "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", + "format": "int32", + "type": "integer" }, - "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" + "conditions": { + "description": "Represents the latest available observations of a replica set's current state.", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "resource": { - "description": "Resource is one of the existing resource types. \"*\" means all.", - "type": "string" + "fullyLabeledReplicas": { + "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", + "format": "int32", + "type": "integer" }, - "subresource": { - "description": "Subresource is one of the existing resource types. \"\" means none.", - "type": "string" + "observedGeneration": { + "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + "format": "int64", + "type": "integer" }, - "verb": { - "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "type": "string" + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.", + "format": "int32", + "type": "integer" }, - "version": { - "description": "Version is the API Version of the Resource. \"*\" means all.", - "type": "string" + "replicas": { + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" } }, + "required": [ + "replicas" + ], "type": "object" }, - "io.k8s.api.authorization.v1.ResourceRule": { - "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { + "description": "Spec to control the desired behavior of daemon set rolling update.", "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resources": { - "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", - "items": { - "type": "string" - }, - "type": "array" + "maxSurge": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption." }, - "verbs": { - "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" + "maxUnavailable": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." } }, - "required": [ - "verbs" - ], "type": "object" }, - "io.k8s.api.authorization.v1.SelfSubjectAccessReview": { - "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + "io.k8s.api.apps.v1.RollingUpdateDeployment": { + "description": "Spec to control the desired behavior of rolling update.", "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec", - "description": "Spec holds information about the request being evaluated. user and groups must be empty" + "maxSurge": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." }, - "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "maxUnavailable": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." } }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "SelfSubjectAccessReview", - "version": "v1" - } - ] + "type": "object" }, - "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": { - "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { + "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { - "nonResourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes", - "description": "NonResourceAttributes describes information for a non-resource access request" + "maxUnavailable": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0. Defaults to 1. This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable." }, - "resourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes", - "description": "ResourceAuthorizationAttributes describes information for a resource access request" + "partition": { + "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0.", + "format": "int32", + "type": "integer" } }, "type": "object" }, - "io.k8s.api.authorization.v1.SelfSubjectRulesReview": { - "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + "io.k8s.api.apps.v1.StatefulSet": { + "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\n\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", "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", @@ -6982,315 +6935,316 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec", - "description": "Spec holds information about the request being evaluated." + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec", + "description": "Spec defines the desired identities of pods in this set." }, "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus", - "description": "Status is filled in by the server and indicates the set of actions a user can perform." + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus", + "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time." } }, - "required": [ - "spec" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SelfSubjectRulesReview", + "group": "apps", + "kind": "StatefulSet", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": { + "io.k8s.api.apps.v1.StatefulSetCondition": { + "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", "properties": { - "namespace": { - "description": "Namespace to evaluate rules for. Required.", + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Last time the condition transitioned from one status to another." + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of statefulset condition.", "type": "string" } }, + "required": [ + "type", + "status" + ], "type": "object" }, - "io.k8s.api.authorization.v1.SubjectAccessReview": { - "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "io.k8s.api.apps.v1.StatefulSetList": { + "description": "StatefulSetList is a collection of StatefulSets.", "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" }, + "items": { + "description": "Items is the list of stateful sets.", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec", - "description": "Spec holds information about the request being evaluated" - }, - "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "spec" + "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SubjectAccessReview", + "group": "apps", + "kind": "StatefulSetList", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": { - "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.apps.v1.StatefulSetOrdinals": { + "description": "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.", "properties": { - "extra": { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", - "type": "object" - }, - "groups": { - "description": "Groups is the groups you're testing for.", - "items": { - "type": "string" - }, - "type": "array" - }, - "nonResourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes", - "description": "NonResourceAttributes describes information for a non-resource access request" - }, - "resourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes", - "description": "ResourceAuthorizationAttributes describes information for a resource access request" - }, - "uid": { - "description": "UID information about the requesting user.", - "type": "string" - }, - "user": { - "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", - "type": "string" + "start": { + "description": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the range:\n [0, .spec.replicas).", + "format": "int32", + "type": "integer" } }, "type": "object" }, - "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": { - "description": "SubjectAccessReviewStatus", + "io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy": { + "description": "StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.", "properties": { - "allowed": { - "description": "Allowed is required. True if the action would be allowed, false otherwise.", - "type": "boolean" - }, - "denied": { - "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", - "type": "boolean" - }, - "evaluationError": { - "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "whenDeleted": { + "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.", "type": "string" }, - "reason": { - "description": "Reason is optional. It indicates why a request was allowed or denied.", + "whenScaled": { + "description": "WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down. The default policy of `Retain` causes PVCs to not be affected by a scaledown. The `Delete` policy causes the associated PVCs for any excess pods above the replica count to be deleted.", "type": "string" } }, - "required": [ - "allowed" - ], "type": "object" }, - "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": { - "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "io.k8s.api.apps.v1.StatefulSetSpec": { + "description": "A StatefulSetSpec is the specification of a StatefulSet.", "properties": { - "evaluationError": { - "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" + }, + "ordinals": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetOrdinals", + "description": "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is beta." + }, + "persistentVolumeClaimRetentionPolicy": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy", + "description": "persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates. By default, all persistent volume claims are created as needed and retained until manually deleted. This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha. +optional" + }, + "podManagementPolicy": { + "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", "type": "string" }, - "incomplete": { - "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", - "type": "boolean" + "replicas": { + "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "format": "int32", + "type": "integer" }, - "nonResourceRules": { - "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule" - }, - "type": "array" + "revisionHistoryLimit": { + "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "format": "int32", + "type": "integer" }, - "resourceRules": { - "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "selector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" + }, + "serviceName": { + "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", + "type": "string" + }, + "template": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", + "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. Each pod will be named with the format \u003cstatefulsetname\u003e-\u003cpodindex\u003e. For example, a pod in a StatefulSet named \"web\" with index number \"3\" would be named \"web-3\". The only allowed template.spec.restartPolicy value is \"Always\"." + }, + "updateStrategy": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy", + "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template." + }, + "volumeClaimTemplates": { + "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule" + "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" }, "type": "array" } }, "required": [ - "resourceRules", - "nonResourceRules", - "incomplete" + "selector", + "template", + "serviceName" ], "type": "object" }, - "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview": { - "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + "io.k8s.api.apps.v1.StatefulSetStatus": { + "description": "StatefulSetStatus represents the current state of a StatefulSet.", "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" + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.", + "format": "int32", + "type": "integer" }, - "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", + "collisionCount": { + "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a statefulset's current state.", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentReplicas": { + "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + "format": "int32", + "type": "integer" + }, + "currentRevision": { + "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "observedGeneration": { + "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + "format": "int64", + "type": "integer" }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec", - "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted." + "readyReplicas": { + "description": "readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.", + "format": "int32", + "type": "integer" }, - "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "replicas": { + "description": "replicas is the number of Pods created by the StatefulSet controller.", + "format": "int32", + "type": "integer" + }, + "updateRevision": { + "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + "format": "int32", + "type": "integer" } }, "required": [ - "spec" + "replicas" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "LocalSubjectAccessReview", - "version": "v1beta1" - } - ] + "type": "object" }, - "io.k8s.api.authorization.v1beta1.NonResourceAttributes": { - "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { + "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { - "path": { - "description": "Path is the URL path of the request", - "type": "string" + "rollingUpdate": { + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy", + "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." }, - "verb": { - "description": "Verb is the standard HTTP verb", + "type": { + "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", "type": "string" } }, "type": "object" }, - "io.k8s.api.authorization.v1beta1.NonResourceRule": { - "description": "NonResourceRule holds information that describes a rule for the non-resource", + "io.k8s.api.authentication.v1.BoundObjectReference": { + "description": "BoundObjectReference is a reference to an object that a token is bound to.", "properties": { - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" + "apiVersion": { + "description": "API version of the referent.", + "type": "string" }, - "verbs": { - "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "verbs" - ], - "type": "object" - }, - "io.k8s.api.authorization.v1beta1.ResourceAttributes": { - "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.", + "kind": { + "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", "type": "string" }, "name": { - "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", + "description": "Name of the referent.", "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", + "uid": { + "description": "UID of the referent.", "type": "string" - }, - "resource": { - "description": "Resource is one of the existing resource types. \"*\" means all.", + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", + "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" }, - "subresource": { - "description": "Subresource is one of the existing resource types. \"\" means none.", + "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" }, - "verb": { - "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "type": "string" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "version": { - "description": "Version is the API Version of the Resource. \"*\" means all.", - "type": "string" + "status": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.SelfSubjectReviewStatus", + "description": "Status is filled in by the server with the user attributes." } }, - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1" + } + ] }, - "io.k8s.api.authorization.v1beta1.ResourceRule": { - "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "io.k8s.api.authentication.v1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resources": { - "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", - "items": { - "type": "string" - }, - "type": "array" - }, - "verbs": { - "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "items": { - "type": "string" - }, - "type": "array" + "userInfo": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo", + "description": "User attributes of the user making this request." } }, - "required": [ - "verbs" - ], "type": "object" }, - "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview": { - "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + "io.k8s.api.authentication.v1.TokenRequest": { + "description": "TokenRequest requests a token for a given service account.", "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", @@ -7301,15 +7255,16 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec", - "description": "Spec holds information about the request being evaluated. user and groups must be empty" + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec", + "description": "Spec holds information about the request being evaluated" }, "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus", + "description": "Status is filled in by the server and indicates whether the token can be authenticated." } }, "required": [ @@ -7318,72 +7273,57 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SelfSubjectAccessReview", - "version": "v1beta1" - } + "group": "authentication.k8s.io", + "kind": "TokenRequest", + "version": "v1" + } ] }, - "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec": { - "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.authentication.v1.TokenRequestSpec": { + "description": "TokenRequestSpec contains client provided parameters of a token request.", "properties": { - "nonResourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes", - "description": "NonResourceAttributes describes information for a non-resource access request" + "audiences": { + "description": "Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", + "items": { + "type": "string" + }, + "type": "array" }, - "resourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes", - "description": "ResourceAuthorizationAttributes describes information for a resource access request" + "boundObjectRef": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference", + "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation." + }, + "expirationSeconds": { + "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", + "format": "int64", + "type": "integer" } }, + "required": [ + "audiences" + ], "type": "object" }, - "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview": { - "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + "io.k8s.api.authentication.v1.TokenRequestStatus": { + "description": "TokenRequestStatus is the result of a token request.", "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" + "expirationTimestamp": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "ExpirationTimestamp is the time of expiration of the returned token." }, - "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", + "token": { + "description": "Token is the opaque bearer token.", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec", - "description": "Spec holds information about the request being evaluated." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus", - "description": "Status is filled in by the server and indicates the set of actions a user can perform." } }, "required": [ - "spec" + "token", + "expirationTimestamp" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "SelfSubjectRulesReview", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec": { - "properties": { - "namespace": { - "description": "Namespace to evaluate rules for. Required.", - "type": "string" - } - }, "type": "object" }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReview": { - "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "io.k8s.api.authentication.v1.TokenReview": { + "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "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", @@ -7394,15 +7334,16 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec", + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus", - "description": "Status is filled in by the server and indicates whether the request is allowed or not" + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus", + "description": "Status is filled in by the server and indicates whether the request can be authenticated." } }, "required": [ @@ -7411,133 +7352,126 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SubjectAccessReview", - "version": "v1beta1" + "group": "authentication.k8s.io", + "kind": "TokenReview", + "version": "v1" } ] }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec": { - "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.authentication.v1.TokenReviewSpec": { + "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { - "extra": { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", - "type": "object" - }, - "group": { - "description": "Groups is the groups you're testing for.", + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "items": { "type": "string" }, "type": "array" }, - "nonResourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes", - "description": "NonResourceAttributes describes information for a non-resource access request" - }, - "resourceAttributes": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes", - "description": "ResourceAuthorizationAttributes describes information for a resource access request" - }, - "uid": { - "description": "UID information about the requesting user.", - "type": "string" - }, - "user": { - "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", + "token": { + "description": "Token is the opaque bearer token.", "type": "string" } }, "type": "object" }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus": { - "description": "SubjectAccessReviewStatus", + "io.k8s.api.authentication.v1.TokenReviewStatus": { + "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { - "allowed": { - "description": "Allowed is required. True if the action would be allowed, false otherwise.", - "type": "boolean" + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "items": { + "type": "string" + }, + "type": "array" }, - "denied": { - "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "authenticated": { + "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" }, - "evaluationError": { - "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "error": { + "description": "Error indicates that the token couldn't be checked", "type": "string" }, - "reason": { - "description": "Reason is optional. It indicates why a request was allowed or denied.", - "type": "string" + "user": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo", + "description": "User is the UserInfo associated with the provided token." } }, - "required": [ - "allowed" - ], "type": "object" }, - "io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus": { - "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "io.k8s.api.authentication.v1.UserInfo": { + "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", "properties": { - "evaluationError": { - "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", - "type": "string" - }, - "incomplete": { - "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", - "type": "boolean" - }, - "nonResourceRules": { - "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceRule" + "extra": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" }, - "type": "array" + "description": "Any additional information provided by the authenticator.", + "type": "object" }, - "resourceRules": { - "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "groups": { + "description": "The names of groups this user is a part of.", "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceRule" + "type": "string" }, "type": "array" + }, + "uid": { + "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "type": "string" + }, + "username": { + "description": "The name that uniquely identifies this user among all active users.", + "type": "string" } }, - "required": [ - "resourceRules", - "nonResourceRules", - "incomplete" - ], "type": "object" }, - "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": { - "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "io.k8s.api.authentication.v1alpha1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", "properties": { "apiVersion": { - "description": "API version of the referent", + "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 of the referent; 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" }, - "name": { - "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", - "type": "string" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "status": { + "$ref": "#/definitions/io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus", + "description": "Status is filled in by the server with the user attributes." + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "properties": { + "userInfo": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo", + "description": "User attributes of the user making this request." } }, - "required": [ - "kind", - "name" - ], "type": "object" }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { - "description": "configuration of a horizontal pod autoscaler.", + "io.k8s.api.authentication.v1beta1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", "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", @@ -7549,126 +7483,178 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec", - "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "status": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus", - "description": "current information about the autoscaler." + "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus", + "description": "Status is filled in by the server with the user attributes." } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "HorizontalPodAutoscaler", - "version": "v1" + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1beta1" } ] }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": { - "description": "list of horizontal pod autoscaler objects.", + "io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "properties": { + "userInfo": { + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo", + "description": "User attributes of the user making this request." + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.LocalSubjectAccessReview": { + "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", "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" }, - "items": { - "description": "list of horizontal pod autoscaler objects.", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" - }, - "type": "array" - }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec", + "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted." + }, + "status": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", + "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ - "items" + "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "HorizontalPodAutoscalerList", - "version": "v1" + "group": "authorization.k8s.io", + "kind": "LocalSubjectAccessReview", + "version": "v1" } ] }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": { - "description": "specification of a horizontal pod autoscaler.", + "io.k8s.api.authorization.v1.NonResourceAttributes": { + "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "properties": { - "maxReplicas": { - "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", - "format": "int32", - "type": "integer" - }, - "minReplicas": { - "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", - "format": "int32", - "type": "integer" + "path": { + "description": "Path is the URL path of the request", + "type": "string" }, - "scaleTargetRef": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference", - "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource." + "verb": { + "description": "Verb is the standard HTTP verb", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.NonResourceRule": { + "description": "NonResourceRule holds information that describes a rule for the non-resource", + "properties": { + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" }, - "targetCPUUtilizationPercentage": { - "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", - "format": "int32", - "type": "integer" + "verbs": { + "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" } }, "required": [ - "scaleTargetRef", - "maxReplicas" + "verbs" ], "type": "object" }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": { - "description": "current status of a horizontal pod autoscaler", + "io.k8s.api.authorization.v1.ResourceAttributes": { + "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "properties": { - "currentCPUUtilizationPercentage": { - "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", - "format": "int32", - "type": "integer" + "group": { + "description": "Group is the API Group of the Resource. \"*\" means all.", + "type": "string" }, - "currentReplicas": { - "description": "current number of replicas of pods managed by this autoscaler.", - "format": "int32", - "type": "integer" + "name": { + "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", + "type": "string" }, - "desiredReplicas": { - "description": "desired number of replicas of pods managed by this autoscaler.", - "format": "int32", - "type": "integer" + "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" }, - "lastScaleTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed." + "resource": { + "description": "Resource is one of the existing resource types. \"*\" means all.", + "type": "string" }, - "observedGeneration": { - "description": "most recent generation observed by this autoscaler.", - "format": "int64", - "type": "integer" + "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" + }, + "io.k8s.api.authorization.v1.ResourceRule": { + "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "properties": { + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", + "items": { + "type": "string" + }, + "type": "array" + }, + "verbs": { + "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" } }, "required": [ - "currentReplicas", - "desiredReplicas" + "verbs" ], "type": "object" }, - "io.k8s.api.autoscaling.v1.Scale": { - "description": "Scale represents a scaling request for a resource.", + "io.k8s.api.authorization.v1.SelfSubjectAccessReview": { + "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", "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", @@ -7680,185 +7666,247 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec", - "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." + "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec", + "description": "Spec holds information about the request being evaluated. user and groups must be empty" }, "status": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus", - "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only." + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", + "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, + "required": [ + "spec" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "Scale", + "group": "authorization.k8s.io", + "kind": "SelfSubjectAccessReview", "version": "v1" } ] }, - "io.k8s.api.autoscaling.v1.ScaleSpec": { - "description": "ScaleSpec describes the attributes of a scale subresource.", - "properties": { - "replicas": { - "description": "desired number of instances for the scaled object.", - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, - "io.k8s.api.autoscaling.v1.ScaleStatus": { - "description": "ScaleStatus represents the current status of a scale subresource.", + "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": { + "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { - "replicas": { - "description": "actual number of observed instances of the scaled object.", - "format": "int32", - "type": "integer" + "nonResourceAttributes": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes", + "description": "NonResourceAttributes describes information for a non-resource access request" }, - "selector": { - "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors", - "type": "string" + "resourceAttributes": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes", + "description": "ResourceAuthorizationAttributes describes information for a resource access request" } }, - "required": [ - "replicas" - ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource": { - "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + "io.k8s.api.authorization.v1.SelfSubjectRulesReview": { + "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", "properties": { - "container": { - "description": "container is the name of the container in the pods of the scaling target", + "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" }, - "name": { - "description": "name is the name of the resource in question.", + "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" }, - "targetAverageUtilization": { - "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", - "format": "int32", - "type": "integer" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "targetAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type." + "spec": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec", + "description": "Spec holds information about the request being evaluated." + }, + "status": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus", + "description": "Status is filled in by the server and indicates the set of actions a user can perform." } }, "required": [ - "name", - "container" + "spec" ], - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SelfSubjectRulesReview", + "version": "v1" + } + ] }, - "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus": { - "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": { + "description": "SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.", "properties": { - "container": { - "description": "container is the name of the container in the pods of the scaling target", - "type": "string" - }, - "currentAverageUtilization": { - "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", - "format": "int32", - "type": "integer" - }, - "currentAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification." - }, - "name": { - "description": "name is the name of the resource in question.", + "namespace": { + "description": "Namespace to evaluate rules for. Required.", "type": "string" } }, - "required": [ - "name", - "currentAverageValue", - "container" - ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference": { - "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "io.k8s.api.authorization.v1.SubjectAccessReview": { + "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", "properties": { "apiVersion": { - "description": "API version of the referent", + "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 of the referent; 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" }, - "name": { - "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", - "type": "string" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec", + "description": "Spec holds information about the request being evaluated" + }, + "status": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus", + "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ - "kind", - "name" + "spec" ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.ExternalMetricSource": { - "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.", - "properties": { - "metricName": { - "description": "metricName is the name of the metric in question.", - "type": "string" - }, - "metricSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "metricSelector is used to identify a specific time series within a given metric." + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SubjectAccessReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": { + "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "properties": { + "extra": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", + "type": "object" }, - "targetAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue." + "groups": { + "description": "Groups is the groups you're testing for.", + "items": { + "type": "string" + }, + "type": "array" }, - "targetValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue." + "nonResourceAttributes": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes", + "description": "NonResourceAttributes describes information for a non-resource access request" + }, + "resourceAttributes": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes", + "description": "ResourceAuthorizationAttributes describes information for a resource access request" + }, + "uid": { + "description": "UID information about the requesting user.", + "type": "string" + }, + "user": { + "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": { + "description": "SubjectAccessReviewStatus", + "properties": { + "allowed": { + "description": "Allowed is required. True if the action would be allowed, false otherwise.", + "type": "boolean" + }, + "denied": { + "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "type": "boolean" + }, + "evaluationError": { + "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "type": "string" + }, + "reason": { + "description": "Reason is optional. It indicates why a request was allowed or denied.", + "type": "string" } }, "required": [ - "metricName" + "allowed" ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus": { - "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", + "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": { + "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", "properties": { - "currentAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentAverageValue is the current value of metric averaged over autoscaled pods." + "evaluationError": { + "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + "type": "string" }, - "currentValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentValue is the current value of the metric (as a quantity)" + "incomplete": { + "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + "type": "boolean" }, - "metricName": { - "description": "metricName is the name of a metric used for autoscaling in metric system.", - "type": "string" + "nonResourceRules": { + "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "items": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule" + }, + "type": "array" }, - "metricSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "metricSelector is used to identify a specific time series within a given metric." + "resourceRules": { + "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "items": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule" + }, + "type": "array" } }, "required": [ - "metricName", - "currentValue" + "resourceRules", + "nonResourceRules", + "incomplete" ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": { - "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", + "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": { + "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "properties": { + "apiVersion": { + "description": "apiVersion is the API version of the referent", + "type": "string" + }, + "kind": { + "description": "kind is the 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 is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + } + }, + "required": [ + "kind", + "name" + ], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { + "description": "configuration of a horizontal pod autoscaler.", "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", @@ -7870,14 +7918,14 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec", - "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec", + "description": "spec defines the behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus", "description": "status is the current information about the autoscaler." } }, @@ -7886,42 +7934,12 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", - "version": "v2beta1" + "version": "v1" } ] }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition": { - "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", - "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "lastTransitionTime is the last time the condition transitioned from one status to another" - }, - "message": { - "description": "message is a human-readable explanation containing details about the transition", - "type": "string" - }, - "reason": { - "description": "reason is the reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "status is the status of the condition (True, False, Unknown)", - "type": "string" - }, - "type": { - "description": "type describes the current condition", - "type": "string" - } - }, - "required": [ - "type", - "status" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList": { - "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": { + "description": "list of horizontal pod autoscaler objects.", "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", @@ -7930,7 +7948,7 @@ "items": { "description": "items is the list of horizontal pod autoscaler objects.", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" }, "type": "array" }, @@ -7940,7 +7958,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "metadata is the standard list metadata." + "description": "Standard list metadata." } }, "required": [ @@ -7951,33 +7969,31 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", - "version": "v2beta1" + "version": "v1" } ] }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec": { - "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": { + "description": "specification of a horizontal pod autoscaler.", "properties": { "maxReplicas": { - "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", + "description": "maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", "format": "int32", "type": "integer" }, - "metrics": { - "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec" - }, - "type": "array" - }, "minReplicas": { "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "format": "int32", "type": "integer" }, "scaleTargetRef": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference", - "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count." + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference", + "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource." + }, + "targetCPUUtilizationPercentage": { + "description": "targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", + "format": "int32", + "type": "integer" } }, "required": [ @@ -7986,36 +8002,27 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus": { - "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": { + "description": "current status of a horizontal pod autoscaler", "properties": { - "conditions": { - "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition" - }, - "type": "array" - }, - "currentMetrics": { - "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus" - }, - "type": "array" + "currentCPUUtilizationPercentage": { + "description": "currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", + "format": "int32", + "type": "integer" }, "currentReplicas": { - "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", + "description": "currentReplicas is the current number of replicas of pods managed by this autoscaler.", "format": "int32", "type": "integer" }, "desiredReplicas": { - "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", + "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler.", "format": "int32", "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed." + "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed." }, "observedGeneration": { "description": "observedGeneration is the most recent generation observed by this autoscaler.", @@ -8025,229 +8032,73 @@ }, "required": [ "currentReplicas", - "desiredReplicas", - "conditions" + "desiredReplicas" ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.MetricSpec": { - "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", + "io.k8s.api.autoscaling.v1.Scale": { + "description": "Scale represents a scaling request for a resource.", "properties": { - "containerResource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource", - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag." + "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" }, - "external": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource", - "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." + "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" }, - "object": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource", - "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, - "pods": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource", - "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." + "spec": { + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec", + "description": "spec defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, - "resource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource", - "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." + "status": { + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus", + "description": "status is the current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only." + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + } + ] + }, + "io.k8s.api.autoscaling.v1.ScaleSpec": { + "description": "ScaleSpec describes the attributes of a scale subresource.", + "properties": { + "replicas": { + "description": "replicas is the desired number of instances for the scaled object.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.autoscaling.v1.ScaleStatus": { + "description": "ScaleStatus represents the current status of a scale subresource.", + "properties": { + "replicas": { + "description": "replicas is the actual number of observed instances of the scaled object.", + "format": "int32", + "type": "integer" }, - "type": { - "description": "type is the type of metric source. It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", + "selector": { + "description": "selector is the label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/", "type": "string" } }, "required": [ - "type" + "replicas" ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta1.MetricStatus": { - "description": "MetricStatus describes the last-read state of a single metric.", - "properties": { - "containerResource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus", - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." - }, - "external": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus", - "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." - }, - "object": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus", - "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." - }, - "pods": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus", - "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." - }, - "resource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus", - "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." - }, - "type": { - "description": "type is the type of metric source. It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", - "type": "string" - } - }, - "required": [ - "type" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.ObjectMetricSource": { - "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", - "properties": { - "averageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" - }, - "metricName": { - "description": "metricName is the name of the metric in question.", - "type": "string" - }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." - }, - "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference", - "description": "target is the described Kubernetes object." - }, - "targetValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetValue is the target value of the metric (as a quantity)." - } - }, - "required": [ - "target", - "metricName", - "targetValue" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus": { - "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", - "properties": { - "averageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" - }, - "currentValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentValue is the current value of the metric (as a quantity)." - }, - "metricName": { - "description": "metricName is the name of the metric in question.", - "type": "string" - }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." - }, - "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference", - "description": "target is the described Kubernetes object." - } - }, - "required": [ - "target", - "metricName", - "currentValue" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.PodsMetricSource": { - "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "properties": { - "metricName": { - "description": "metricName is the name of the metric in question", - "type": "string" - }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." - }, - "targetAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)" - } - }, - "required": [ - "metricName", - "targetAverageValue" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.PodsMetricStatus": { - "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", - "properties": { - "currentAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)" - }, - "metricName": { - "description": "metricName is the name of the metric in question", - "type": "string" - }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." - } - }, - "required": [ - "metricName", - "currentAverageValue" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": { - "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", - "properties": { - "name": { - "description": "name is the name of the resource in question.", - "type": "string" - }, - "targetAverageUtilization": { - "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", - "format": "int32", - "type": "integer" - }, - "targetAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type." - } - }, - "required": [ - "name" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus": { - "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "properties": { - "currentAverageUtilization": { - "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", - "format": "int32", - "type": "integer" - }, - "currentAverageValue": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification." - }, - "name": { - "description": "name is the name of the resource in question.", - "type": "string" - } - }, - "required": [ - "name", - "currentAverageValue" - ], - "type": "object" - }, - "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource": { + "io.k8s.api.autoscaling.v2.ContainerResourceMetricSource": { "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "container": { @@ -8259,7 +8110,7 @@ "type": "string" }, "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget", "description": "target specifies the target value for the given metric" } }, @@ -8270,19 +8121,19 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus": { + "io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus": { "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "container": { - "description": "Container is the name of the container in the pods of the scaling target", + "description": "container is the name of the container in the pods of the scaling target", "type": "string" }, "current": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus", "description": "current contains the current value for the given metric" }, "name": { - "description": "Name is the name of the resource in question.", + "description": "name is the name of the resource in question.", "type": "string" } }, @@ -8293,19 +8144,19 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference": { + "io.k8s.api.autoscaling.v2.CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { - "description": "API version of the referent", + "description": "apiVersion is the 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\"", + "description": "kind is the 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 is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, @@ -8315,15 +8166,15 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ExternalMetricSource": { + "io.k8s.api.autoscaling.v2.ExternalMetricSource": { "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", "properties": { "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget", "description": "target specifies the target value for the given metric" } }, @@ -8333,15 +8184,15 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus": { + "io.k8s.api.autoscaling.v2.ExternalMetricStatus": { "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", "properties": { "current": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, @@ -8351,20 +8202,20 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy": { + "io.k8s.api.autoscaling.v2.HPAScalingPolicy": { "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.", "properties": { "periodSeconds": { - "description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", + "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", "format": "int32", "type": "integer" }, "type": { - "description": "Type is used to specify the scaling policy.", + "description": "type is used to specify the scaling policy.", "type": "string" }, "value": { - "description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero", + "description": "value contains the amount of change which is permitted by the policy. It must be greater than zero", "format": "int32", "type": "integer" } @@ -8376,29 +8227,30 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HPAScalingRules": { + "io.k8s.api.autoscaling.v2.HPAScalingRules": { "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.", "properties": { "policies": { "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingPolicy" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "selectPolicy": { - "description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.", + "description": "selectPolicy is used to specify which policy should be used. If not set, the default value Max is used.", "type": "string" }, "stabilizationWindowSeconds": { - "description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", + "description": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", "format": "int32", "type": "integer" } }, "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": { "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", "properties": { "apiVersion": { @@ -8414,11 +8266,11 @@ "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec", "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus", "description": "status is the current information about the autoscaler." } }, @@ -8427,25 +8279,25 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", - "version": "v2beta2" + "version": "v2" } ] }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior": { "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).", "properties": { "scaleDown": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingRules", "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)." }, "scaleUp": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingRules", "description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used." } }, "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition": { "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", "properties": { "lastTransitionTime": { @@ -8475,7 +8327,7 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList": { "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.", "properties": { "apiVersion": { @@ -8485,7 +8337,7 @@ "items": { "description": "items is the list of horizontal pod autoscaler objects.", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" }, "type": "array" }, @@ -8506,15 +8358,15 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", - "version": "v2beta2" + "version": "v2" } ] }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec": { "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", "properties": { "behavior": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior", "description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used." }, "maxReplicas": { @@ -8525,9 +8377,10 @@ "metrics": { "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricSpec" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricSpec" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "minReplicas": { "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", @@ -8535,7 +8388,7 @@ "type": "integer" }, "scaleTargetRef": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference", "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count." } }, @@ -8545,22 +8398,29 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus": { "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", "properties": { "conditions": { "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition" }, - "type": "array" + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, "currentMetrics": { "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricStatus" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, "currentReplicas": { "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", @@ -8583,13 +8443,11 @@ } }, "required": [ - "currentReplicas", - "desiredReplicas", - "conditions" + "desiredReplicas" ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.MetricIdentifier": { + "io.k8s.api.autoscaling.v2.MetricIdentifier": { "description": "MetricIdentifier defines the name and optionally selector for a metric", "properties": { "name": { @@ -8606,27 +8464,27 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.MetricSpec": { + "io.k8s.api.autoscaling.v2.MetricSpec": { "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", "properties": { "containerResource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource", - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag." + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ContainerResourceMetricSource", + "description": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag." }, "external": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricSource", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ExternalMetricSource", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricSource", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ObjectMetricSource", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricSource", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.PodsMetricSource", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricSource", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ResourceMetricSource", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { @@ -8639,27 +8497,27 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.MetricStatus": { + "io.k8s.api.autoscaling.v2.MetricStatus": { "description": "MetricStatus describes the last-read state of a single metric.", "properties": { "containerResource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus", "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "external": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ExternalMetricStatus", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ObjectMetricStatus", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.PodsMetricStatus", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ResourceMetricStatus", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { @@ -8672,7 +8530,7 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.MetricTarget": { + "io.k8s.api.autoscaling.v2.MetricTarget": { "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", "properties": { "averageUtilization": { @@ -8698,7 +8556,7 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.MetricValueStatus": { + "io.k8s.api.autoscaling.v2.MetricValueStatus": { "description": "MetricValueStatus holds the current value for a metric", "properties": { "averageUtilization": { @@ -8717,18 +8575,19 @@ }, "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ObjectMetricSource": { + "io.k8s.api.autoscaling.v2.ObjectMetricSource": { "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "describedObject": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference", + "description": "describedObject specifies the descriptions of a object,such as kind,name apiVersion" }, "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget", "description": "target specifies the target value for the given metric" } }, @@ -8739,18 +8598,19 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus": { + "io.k8s.api.autoscaling.v2.ObjectMetricStatus": { "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "current": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus", "description": "current contains the current value for the given metric" }, "describedObject": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference", + "description": "DescribedObject specifies the descriptions of a object,such as kind,name apiVersion" }, "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, @@ -8761,15 +8621,15 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.PodsMetricSource": { + "io.k8s.api.autoscaling.v2.PodsMetricSource": { "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", "properties": { "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget", "description": "target specifies the target value for the given metric" } }, @@ -8779,15 +8639,15 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.PodsMetricStatus": { + "io.k8s.api.autoscaling.v2.PodsMetricStatus": { "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "current": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, @@ -8797,7 +8657,7 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ResourceMetricSource": { + "io.k8s.api.autoscaling.v2.ResourceMetricSource": { "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "name": { @@ -8805,7 +8665,7 @@ "type": "string" }, "target": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget", "description": "target specifies the target value for the given metric" } }, @@ -8815,15 +8675,15 @@ ], "type": "object" }, - "io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus": { + "io.k8s.api.autoscaling.v2.ResourceMetricStatus": { "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "current": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus", "description": "current contains the current value for the given metric" }, "name": { - "description": "Name is the name of the resource in question.", + "description": "name is the name of the resource in question.", "type": "string" } }, @@ -8833,8 +8693,8 @@ ], "type": "object" }, - "io.k8s.api.batch.v1.Job": { - "description": "Job represents the configuration of a single job.", + "io.k8s.api.batch.v1.CronJob": { + "description": "CronJob represents the configuration of a single cron job.", "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", @@ -8849,68 +8709,34 @@ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec", - "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobSpec", + "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus", - "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobStatus", + "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "Job", + "kind": "CronJob", "version": "v1" } ] }, - "io.k8s.api.batch.v1.JobCondition": { - "description": "JobCondition describes current state of a job.", - "properties": { - "lastProbeTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition was checked." - }, - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transit from one status to another." - }, - "message": { - "description": "Human readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "(brief) reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "Type of job condition, Complete or Failed.", - "type": "string" - } - }, - "required": [ - "type", - "status" - ], - "type": "object" - }, - "io.k8s.api.batch.v1.JobList": { - "description": "JobList is a collection of jobs.", + "io.k8s.api.batch.v1.CronJobList": { + "description": "CronJobList is a collection of cron jobs.", "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" }, "items": { - "description": "items is the list of Jobs.", + "description": "items is the list of CronJobs.", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1.Job" + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob" }, "type": "array" }, @@ -8930,97 +8756,80 @@ "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "JobList", + "kind": "CronJobList", "version": "v1" } ] }, - "io.k8s.api.batch.v1.JobSpec": { - "description": "JobSpec describes how the job execution will look like.", + "io.k8s.api.batch.v1.CronJobSpec": { + "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", "properties": { - "activeDeadlineSeconds": { - "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", - "format": "int64", - "type": "integer" + "concurrencyPolicy": { + "description": "Specifies how to treat concurrent executions of a Job. Valid values are:\n\n- \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "type": "string" }, - "backoffLimit": { - "description": "Specifies the number of retries before marking this job failed. Defaults to 6", + "failedJobsHistoryLimit": { + "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.", "format": "int32", "type": "integer" }, - "completions": { - "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", - "format": "int32", - "type": "integer" + "jobTemplate": { + "$ref": "#/definitions/io.k8s.api.batch.v1.JobTemplateSpec", + "description": "Specifies the job that will be created when executing a CronJob." }, - "manualSelector": { - "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", - "type": "boolean" + "schedule": { + "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "type": "string" }, - "parallelism": { - "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", - "format": "int32", + "startingDeadlineSeconds": { + "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + "format": "int64", "type": "integer" }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" - }, - "template": { - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" - }, - "ttlSecondsAfterFinished": { - "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.", + "successfulJobsHistoryLimit": { + "description": "The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3.", "format": "int32", "type": "integer" + }, + "suspend": { + "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "type": "boolean" + }, + "timeZone": { + "description": "The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. If not specified, this will default to the time zone of the kube-controller-manager process. The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide time zone database can be found a bundled version of the database is used instead. If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone. More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones", + "type": "string" } }, "required": [ - "template" + "schedule", + "jobTemplate" ], "type": "object" }, - "io.k8s.api.batch.v1.JobStatus": { - "description": "JobStatus represents the current state of a Job.", + "io.k8s.api.batch.v1.CronJobStatus": { + "description": "CronJobStatus represents the current state of a cron job.", "properties": { "active": { - "description": "The number of actively running pods.", - "format": "int32", - "type": "integer" - }, - "completionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully." - }, - "conditions": { - "description": "The latest available observations of an object's current state. When a job fails, one of the conditions will have type == \"Failed\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "description": "A list of pointers to currently running jobs.", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition" + "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, "type": "array", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" - }, - "failed": { - "description": "The number of pods which reached phase Failed.", - "format": "int32", - "type": "integer" + "x-kubernetes-list-type": "atomic" }, - "startTime": { + "lastScheduleTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC." + "description": "Information when was the last time the job was successfully scheduled." }, - "succeeded": { - "description": "The number of pods which reached phase Succeeded.", - "format": "int32", - "type": "integer" + "lastSuccessfulTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Information when was the last time the job successfully completed." } }, "type": "object" }, - "io.k8s.api.batch.v1beta1.CronJob": { - "description": "CronJob represents the configuration of a single cron job.", + "io.k8s.api.batch.v1.Job": { + "description": "Job represents the configuration of a single job.", "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", @@ -9035,34 +8844,68 @@ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec", - "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec", + "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus", - "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus", + "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "CronJob", - "version": "v1beta1" + "kind": "Job", + "version": "v1" } ] }, - "io.k8s.api.batch.v1beta1.CronJobList": { - "description": "CronJobList is a collection of cron jobs.", + "io.k8s.api.batch.v1.JobCondition": { + "description": "JobCondition describes current state of a job.", + "properties": { + "lastProbeTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Last time the condition was checked." + }, + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Last time the condition transit from one status to another." + }, + "message": { + "description": "Human readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "(brief) reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of job condition, Complete or Failed.", + "type": "string" + } + }, + "required": [ + "type", + "status" + ], + "type": "object" + }, + "io.k8s.api.batch.v1.JobList": { + "description": "JobList is a collection of jobs.", "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" }, "items": { - "description": "items is the list of CronJobs.", + "description": "items is the list of Jobs.", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob" + "$ref": "#/definitions/io.k8s.api.batch.v1.Job" }, "type": "array" }, @@ -9082,70 +8925,145 @@ "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "CronJobList", - "version": "v1beta1" + "kind": "JobList", + "version": "v1" } ] }, - "io.k8s.api.batch.v1beta1.CronJobSpec": { - "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "io.k8s.api.batch.v1.JobSpec": { + "description": "JobSpec describes how the job execution will look like.", "properties": { - "concurrencyPolicy": { - "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", - "type": "string" + "activeDeadlineSeconds": { + "description": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.", + "format": "int64", + "type": "integer" }, - "failedJobsHistoryLimit": { - "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "backoffLimit": { + "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "format": "int32", "type": "integer" }, - "jobTemplate": { - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec", - "description": "Specifies the job that will be created when executing a CronJob." + "backoffLimitPerIndex": { + "description": "Specifies the limit for the number of retries within an index before marking this index as failed. When enabled the number of failures per index is kept in the pod's batch.kubernetes.io/job-index-failure-count annotation. It can only be set when Job's completionMode=Indexed, and the Pod's restart policy is Never. The field is immutable. This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "format": "int32", + "type": "integer" }, - "schedule": { - "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "completionMode": { + "description": "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job.", "type": "string" }, - "startingDeadlineSeconds": { - "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", - "format": "int64", + "completions": { + "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "format": "int32", "type": "integer" }, - "successfulJobsHistoryLimit": { - "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", + "manualSelector": { + "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", + "type": "boolean" + }, + "maxFailedIndexes": { + "description": "Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues execution of all of its indexes and is marked with the `Complete` Job condition. It can only be specified when backoffLimitPerIndex is set. It can be null or up to completions. It is required and must be less than or equal to 10^4 when is completions greater than 10^5. This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "format": "int32", + "type": "integer" + }, + "parallelism": { + "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "format": "int32", "type": "integer" }, + "podFailurePolicy": { + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicy", + "description": "Specifies the policy of handling failed pods. In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action. If empty, the default behaviour applies - the counter of failed pods, represented by the jobs's .status.failed field, is incremented and it is checked against the backoffLimit. This field cannot be used in combination with restartPolicy=OnFailure.\n\nThis field is beta-level. It can be used when the `JobPodFailurePolicy` feature gate is enabled (enabled by default)." + }, + "podReplacementPolicy": { + "description": "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n Failed or Succeeded) before creating a replacement Pod.\n\nWhen using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle. This is on by default.", + "type": "string" + }, + "selector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" + }, "suspend": { - "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "description": "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false.", "type": "boolean" + }, + "template": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", + "description": "Describes the pod that will be created when executing a job. The only allowed template.spec.restartPolicy values are \"Never\" or \"OnFailure\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" + }, + "ttlSecondsAfterFinished": { + "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes.", + "format": "int32", + "type": "integer" } }, "required": [ - "schedule", - "jobTemplate" + "template" ], "type": "object" }, - "io.k8s.api.batch.v1beta1.CronJobStatus": { - "description": "CronJobStatus represents the current state of a cron job.", + "io.k8s.api.batch.v1.JobStatus": { + "description": "JobStatus represents the current state of a Job.", "properties": { "active": { - "description": "A list of pointers to currently running jobs.", + "description": "The number of pending and running pods.", + "format": "int32", + "type": "integer" + }, + "completedIndexes": { + "description": "completedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".", + "type": "string" + }, + "completionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully." + }, + "conditions": { + "description": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" + "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "lastScheduleTime": { + "failed": { + "description": "The number of pods which reached phase Failed.", + "format": "int32", + "type": "integer" + }, + "failedIndexes": { + "description": "FailedIndexes holds the failed indexes when backoffLimitPerIndex=true. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "type": "string" + }, + "ready": { + "description": "The number of pods which have a Ready condition.", + "format": "int32", + "type": "integer" + }, + "startTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Information when was the last time the job was successfully scheduled." + "description": "Represents time when the job controller started processing a job. When a Job is created in the suspended state, this field is not set until the first time it is resumed. This field is reset every time a Job is resumed from suspension. It is represented in RFC3339 form and is in UTC." + }, + "succeeded": { + "description": "The number of pods which reached phase Succeeded.", + "format": "int32", + "type": "integer" + }, + "terminating": { + "description": "The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp).\n\nThis field is beta-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default).", + "format": "int32", + "type": "integer" + }, + "uncountedTerminatedPods": { + "$ref": "#/definitions/io.k8s.api.batch.v1.UncountedTerminatedPods", + "description": "uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer. 3. Remove the pod UID from the arrays while increasing the corresponding\n counter.\n\nOld jobs might not be tracked using this field, in which case the field remains null." } }, "type": "object" }, - "io.k8s.api.batch.v1beta1.JobTemplateSpec": { + "io.k8s.api.batch.v1.JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job should have when created from a template", "properties": { "metadata": { @@ -9159,142 +9077,111 @@ }, "type": "object" }, - "io.k8s.api.batch.v2alpha1.CronJob": { - "description": "CronJob represents the configuration of a single cron job.", + "io.k8s.api.batch.v1.PodFailurePolicy": { + "description": "PodFailurePolicy describes how failed pods influence the backoffLimit.", "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", + "rules": { + "description": "A list of pod failure policy rules. The rules are evaluated in order. Once a rule matches a Pod failure, the remaining of the rules are ignored. When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit. At most 20 elements are allowed.", + "items": { + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": [ + "rules" + ], + "type": "object" + }, + "io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement": { + "description": "PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement check.", + "properties": { + "containerName": { + "description": "Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template.", "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", + "operator": { + "description": "Represents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is not in the set of specified values.\nAdditional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec", - "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" - }, - "status": { - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus", - "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "values": { + "description": "Specifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed.", + "items": { + "format": "int32", + "type": "integer" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "batch", - "kind": "CronJob", - "version": "v2alpha1" - } - ] + "required": [ + "operator", + "values" + ], + "type": "object" }, - "io.k8s.api.batch.v2alpha1.CronJobList": { - "description": "CronJobList is a collection of cron jobs.", + "io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern": { + "description": "PodFailurePolicyOnPodConditionsPattern describes a pattern for matching an actual pod condition type.", "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", + "status": { + "description": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.", "type": "string" }, - "items": { - "description": "items is the list of CronJobs.", - "items": { - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" - }, - "type": "array" - }, - "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": { + "description": "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.", "type": "string" - }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "items" + "type", + "status" ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "batch", - "kind": "CronJobList", - "version": "v2alpha1" - } - ] + "type": "object" }, - "io.k8s.api.batch.v2alpha1.CronJobSpec": { - "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "io.k8s.api.batch.v1.PodFailurePolicyRule": { + "description": "PodFailurePolicyRule describes how a pod failure is handled when the requirements are met. One of onExitCodes and onPodConditions, but not both, can be used in each rule.", "properties": { - "concurrencyPolicy": { - "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "action": { + "description": "Specifies the action taken on a pod failure when the requirements are satisfied. Possible values are:\n\n- FailJob: indicates that the pod's job is marked as Failed and all\n running pods are terminated.\n- FailIndex: indicates that the pod's index is marked as Failed and will\n not be restarted.\n This value is beta-level. It can be used when the\n `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).\n- Ignore: indicates that the counter towards the .backoffLimit is not\n incremented and a replacement pod is created.\n- Count: indicates that the pod is handled in the default way - the\n counter towards the .backoffLimit is incremented.\nAdditional values are considered to be added in the future. Clients should react to an unknown action by skipping the rule.", "type": "string" }, - "failedJobsHistoryLimit": { - "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", - "format": "int32", - "type": "integer" - }, - "jobTemplate": { - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec", - "description": "Specifies the job that will be created when executing a CronJob." - }, - "schedule": { - "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", - "type": "string" - }, - "startingDeadlineSeconds": { - "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", - "format": "int64", - "type": "integer" - }, - "successfulJobsHistoryLimit": { - "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", - "format": "int32", - "type": "integer" + "onExitCodes": { + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement", + "description": "Represents the requirement on the container exit codes." }, - "suspend": { - "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", - "type": "boolean" + "onPodConditions": { + "description": "Represents the requirement on the pod conditions. The requirement is represented as a list of pod condition patterns. The requirement is satisfied if at least one pattern matches an actual pod condition. At most 20 elements are allowed.", + "items": { + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, "required": [ - "schedule", - "jobTemplate" + "action" ], "type": "object" }, - "io.k8s.api.batch.v2alpha1.CronJobStatus": { - "description": "CronJobStatus represents the current state of a cron job.", + "io.k8s.api.batch.v1.UncountedTerminatedPods": { + "description": "UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.", "properties": { - "active": { - "description": "A list of pointers to currently running jobs.", + "failed": { + "description": "failed holds UIDs of failed Pods.", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" + "type": "string" }, - "type": "array" - }, - "lastScheduleTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Information when was the last time the job was successfully scheduled." - } - }, - "type": "object" - }, - "io.k8s.api.batch.v2alpha1.JobTemplateSpec": { - "description": "JobTemplateSpec describes the data a Job should have when created from a template", - "properties": { - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "type": "array", + "x-kubernetes-list-type": "set" }, - "spec": { - "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec", - "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "succeeded": { + "description": "succeeded holds UIDs of succeeded Pods.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, "type": "object" @@ -9315,7 +9202,7 @@ }, "spec": { "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestSpec", - "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users." + "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, expirationSeconds, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users." }, "status": { "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestStatus", @@ -9405,6 +9292,11 @@ "io.k8s.api.certificates.v1.CertificateSigningRequestSpec": { "description": "CertificateSigningRequestSpec contains the certificate request.", "properties": { + "expirationSeconds": { + "description": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n 1. Old signer that is unaware of the field (such as the in-tree\n implementations prior to v1.22)\n 2. Signer whose configured maximum is shorter than the requested duration\n 3. Signer whose configured minimum is longer than the requested duration\n\nThe minimum valid value for expirationSeconds is 600, i.e. 10 minutes.", + "format": "int32", + "type": "integer" + }, "extra": { "additionalProperties": { "items": { @@ -9479,8 +9371,8 @@ }, "type": "object" }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequest": { - "description": "Describes a certificate signing request", + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": { + "description": "ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root certificates).\n\nClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the `clusterTrustBundle` projection. All service accounts have read access to ClusterTrustBundles by default. Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to.\n\nIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer. Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle.", "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", @@ -9491,67 +9383,37 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "metadata contains the object metadata." }, "spec": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec", - "description": "The certificate request itself and any additional information." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus", - "description": "Derived information about the request." + "$ref": "#/definitions/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec", + "description": "spec contains the signer (if any) and trust anchors." } }, + "required": [ + "spec" + ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", - "kind": "CertificateSigningRequest", - "version": "v1beta1" + "kind": "ClusterTrustBundle", + "version": "v1alpha1" } ] }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition": { - "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time." - }, - "lastUpdateTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "timestamp for the last update to this condition" - }, - "message": { - "description": "human readable message with details about the request state", - "type": "string" - }, - "reason": { - "description": "brief reason for the request state", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\". Defaults to \"True\". If unset, should be treated as \"True\".", - "type": "string" - }, - "type": { - "description": "type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\".", - "type": "string" - } - }, - "required": [ - "type" - ], - "type": "object" - }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList": { + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList": { + "description": "ClusterTrustBundleList is a collection of ClusterTrustBundle objects", "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" }, "items": { + "description": "items is a collection of ClusterTrustBundle objects", "items": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" + "$ref": "#/definitions/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" }, "type": "array" }, @@ -9560,7 +9422,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "metadata contains the list metadata." } }, "required": [ @@ -9570,86 +9433,28 @@ "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", - "kind": "CertificateSigningRequestList", - "version": "v1beta1" + "kind": "ClusterTrustBundleList", + "version": "v1alpha1" } ] }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec": { - "description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.", + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec": { + "description": "ClusterTrustBundleSpec contains the signer and trust anchors.", "properties": { - "extra": { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "description": "Extra information about the requesting user. See user.Info interface for details.", - "type": "object" - }, - "groups": { - "description": "Group information about the requesting user. See user.Info interface for details.", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - }, - "request": { - "description": "Base64-encoded PKCS#10 CSR data", - "format": "byte", - "type": "string", - "x-kubernetes-list-type": "atomic" - }, "signerName": { - "description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.", + "description": "signerName indicates the associated signer, if any.\n\nIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificates.k8s.io resource=signers resourceName=\u003cthe signer name\u003e verb=attest.\n\nIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `example.com:foo:abc` and `example.com:foo:v1`.\n\nIf signerName is empty, then the ClusterTrustBundle object's name must not have such a prefix.\n\nList/watch requests for ClusterTrustBundles can filter on this field using a `spec.signerName=NAME` field selector.", "type": "string" }, - "uid": { - "description": "UID information about the requesting user. See user.Info interface for details.", - "type": "string" - }, - "usages": { - "description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12\nValid values are:\n \"signing\",\n \"digital signature\",\n \"content commitment\",\n \"key encipherment\",\n \"key agreement\",\n \"data encipherment\",\n \"cert sign\",\n \"crl sign\",\n \"encipher only\",\n \"decipher only\",\n \"any\",\n \"server auth\",\n \"client auth\",\n \"code signing\",\n \"email protection\",\n \"s/mime\",\n \"ipsec end system\",\n \"ipsec tunnel\",\n \"ipsec user\",\n \"timestamping\",\n \"ocsp signing\",\n \"microsoft sgc\",\n \"netscape sgc\"", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - }, - "username": { - "description": "Information about the requesting user. See user.Info interface for details.", + "trustBundle": { + "description": "trustBundle contains the individual X.509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.\n\nThe data must consist only of PEM certificate blocks that parse as valid X.509 certificates. Each certificate must include a basic constraints extension with the CA bit set. The API server will reject objects that contain duplicate certificates, or that use PEM block headers.\n\nUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data.", "type": "string" } }, "required": [ - "request" + "trustBundle" ], "type": "object" }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus": { - "properties": { - "certificate": { - "description": "If request was approved, the controller will place the issued certificate here.", - "format": "byte", - "type": "string", - "x-kubernetes-list-type": "atomic" - }, - "conditions": { - "description": "Conditions applied to the request, such as approval or denial.", - "items": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition" - }, - "type": "array", - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map" - } - }, - "type": "object" - }, "io.k8s.api.coordination.v1.Lease": { "description": "Lease defines a lease concept.", "properties": { @@ -9667,7 +9472,7 @@ }, "spec": { "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec", - "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", @@ -9687,7 +9492,7 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "items is a list of schema objects.", "items": { "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease" }, @@ -9726,99 +9531,7 @@ "type": "string" }, "leaseDurationSeconds": { - "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", - "format": "int32", - "type": "integer" - }, - "leaseTransitions": { - "description": "leaseTransitions is the number of transitions of a lease between holders.", - "format": "int32", - "type": "integer" - }, - "renewTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime", - "description": "renewTime is a time when the current holder of a lease has last updated the lease." - } - }, - "type": "object" - }, - "io.k8s.api.coordination.v1beta1.Lease": { - "description": "Lease defines a lease concept.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseSpec", - "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "coordination.k8s.io", - "kind": "Lease", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.coordination.v1beta1.LeaseList": { - "description": "LeaseList is a list of Lease objects.", - "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" - }, - "items": { - "description": "Items is a list of schema objects.", - "items": { - "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "coordination.k8s.io", - "kind": "LeaseList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.coordination.v1beta1.LeaseSpec": { - "description": "LeaseSpec is a specification of a Lease.", - "properties": { - "acquireTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime", - "description": "acquireTime is a time when the current lease was acquired." - }, - "holderIdentity": { - "description": "holderIdentity contains the identity of the holder of a current lease.", - "type": "string" - }, - "leaseDurationSeconds": { - "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", + "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed renewTime.", "format": "int32", "type": "integer" }, @@ -9838,20 +9551,20 @@ "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { - "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "format": "int32", "type": "integer" }, "readOnly": { - "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { - "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, @@ -9900,27 +9613,27 @@ "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { - "description": "Host Caching mode: None, Read Only, Read Write.", + "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { - "description": "The Name of the data disk in the blob storage", + "description": "diskName is the Name of the data disk in the blob storage", "type": "string" }, "diskURI": { - "description": "The URI the data disk in the blob storage", + "description": "diskURI is the URI of data disk in the blob storage", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { - "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", + "description": "kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, @@ -9934,19 +9647,19 @@ "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { - "description": "the name of secret that contains Azure Storage Account Name and Key", + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { - "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", + "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { - "description": "Share Name", + "description": "shareName is the azure Share Name", "type": "string" } }, @@ -9960,15 +9673,15 @@ "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { - "description": "the name of secret that contains Azure Storage Account Name and Key", + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { - "description": "Share Name", + "description": "shareName is the azure share Name", "type": "string" } }, @@ -10015,41 +9728,45 @@ "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." + "description": "controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." + "description": "controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { - "description": "Driver is the name of the driver to use for this volume. Required.", + "description": "driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", + "description": "fsType to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, + "nodeExpandSecretRef": { + "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", + "description": "nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call. This field is optional, may be omitted if no secret is required. If the secret object contains more than one secret, all secrets are passed." + }, "nodePublishSecretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." + "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." + "description": "nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { - "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", + "description": "readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, - "description": "Attributes of the volume to publish.", + "description": "volumeAttributes of the volume to publish.", "type": "object" }, "volumeHandle": { - "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", + "description": "volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, @@ -10063,26 +9780,26 @@ "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { - "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", + "description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", + "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." + "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { - "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", + "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, - "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", + "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, @@ -10115,30 +9832,30 @@ "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { - "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "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", "items": { "type": "string" }, "type": "array" }, "path": { - "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { - "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" + "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { - "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "user is Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, @@ -10151,30 +9868,30 @@ "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { - "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "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", "items": { "type": "string" }, "type": "array" }, "path": { - "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { - "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" + "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { - "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, @@ -10187,19 +9904,19 @@ "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "fsType Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." + "description": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { - "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, @@ -10212,19 +9929,19 @@ "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." + "description": "secretRef is optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { - "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, @@ -10233,6 +9950,20 @@ ], "type": "object" }, + "io.k8s.api.core.v1.ClaimSource": { + "description": "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.", + "properties": { + "resourceClaimName": { + "description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.", + "type": "string" + }, + "resourceClaimTemplateName": { + "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", + "type": "string" + } + }, + "type": "object" + }, "io.k8s.api.core.v1.ClientIPConfig": { "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { @@ -10244,11 +9975,40 @@ }, "type": "object" }, - "io.k8s.api.core.v1.ComponentCondition": { - "description": "Information about the condition of a component.", + "io.k8s.api.core.v1.ClusterTrustBundleProjection": { + "description": "ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.", "properties": { - "error": { - "description": "Condition error code for a component. For example, a health check error code.", + "labelSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as \"match nothing\". If set but empty, interpreted as \"match everything\"." + }, + "name": { + "description": "Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.", + "type": "string" + }, + "optional": { + "description": "If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.", + "type": "boolean" + }, + "path": { + "description": "Relative path from the volume root to write the bundle.", + "type": "string" + }, + "signerName": { + "description": "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.", + "type": "string" + } + }, + "required": [ + "path" + ], + "type": "object" + }, + "io.k8s.api.core.v1.ComponentCondition": { + "description": "Information about the condition of a component.", + "properties": { + "error": { + "description": "Condition error code for a component. For example, a health check error code.", "type": "string" }, "message": { @@ -10362,7 +10122,7 @@ "type": "object" }, "immutable": { - "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is a beta field enabled by ImmutableEphemeralVolumes feature gate.", + "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", "type": "boolean" }, "kind": { @@ -10416,7 +10176,8 @@ "required": [ "key" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ConfigMapList": { "description": "ConfigMapList is a resource containing a list of ConfigMap objects.", @@ -10454,7 +10215,7 @@ ] }, "io.k8s.api.core.v1.ConfigMapNodeConfigSource": { - "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", + "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration", "properties": { "kubeletConfigKey": { "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", @@ -10488,7 +10249,7 @@ "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { - "description": "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 '..'.", + "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 '..'.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" }, @@ -10499,7 +10260,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the ConfigMap or its keys must be defined", + "description": "optional specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, @@ -10509,12 +10270,12 @@ "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { - "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": "integer" }, "items": { - "description": "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 '..'.", + "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 '..'.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" }, @@ -10525,7 +10286,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the ConfigMap or its keys must be defined", + "description": "optional specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, @@ -10535,14 +10296,14 @@ "description": "A single application container that you want to run within a pod.", "properties": { "args": { - "description": "Arguments to the entrypoint. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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", "items": { "type": "string" }, "type": "array" }, "command": { - "description": "Entrypoint array. Not executed within a shell. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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", "items": { "type": "string" }, @@ -10565,7 +10326,7 @@ "type": "array" }, "image": { - "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { @@ -10585,7 +10346,7 @@ "type": "string" }, "ports": { - "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", + "description": "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort" }, @@ -10602,13 +10363,25 @@ "$ref": "#/definitions/io.k8s.api.core.v1.Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, + "resizePolicy": { + "description": "Resources resize policy for the container.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, "resources": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements", - "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" + "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "restartPolicy": { + "description": "RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \"Always\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \"Always\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \"Always\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \"sidecar\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.", + "type": "string" }, "securityContext": { "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext", - "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + "description": "SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/io.k8s.api.core.v1.Probe", @@ -10666,7 +10439,7 @@ "description": "Describe a container image", "properties": { "names": { - "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", + "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\"]", "items": { "type": "string" }, @@ -10678,9 +10451,6 @@ "type": "integer" } }, - "required": [ - "names" - ], "type": "object" }, "io.k8s.api.core.v1.ContainerPort": { @@ -10714,6 +10484,24 @@ ], "type": "object" }, + "io.k8s.api.core.v1.ContainerResizePolicy": { + "description": "ContainerResizePolicy represents resource resize policy for the container.", + "properties": { + "resourceName": { + "description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.", + "type": "string" + }, + "restartPolicy": { + "description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.", + "type": "string" + } + }, + "required": [ + "resourceName", + "restartPolicy" + ], + "type": "object" + }, "io.k8s.api.core.v1.ContainerState": { "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", "properties": { @@ -10746,7 +10534,7 @@ "description": "ContainerStateTerminated is a terminated state of a container.", "properties": { "containerID": { - "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'", + "description": "Container's ID in the format '\u003ctype\u003e://\u003ccontainer_id\u003e'", "type": "string" }, "exitCode": { @@ -10798,42 +10586,53 @@ "io.k8s.api.core.v1.ContainerStatus": { "description": "ContainerStatus contains details for the current status of this container.", "properties": { + "allocatedResources": { + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.", + "type": "object" + }, "containerID": { - "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'.", + "description": "ContainerID is the ID of the container in the format '\u003ctype\u003e://\u003ccontainer_id\u003e'. Where type is a container runtime identifier, returned from Version call of CRI API (for example \"containerd\").", "type": "string" }, "image": { - "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", + "description": "Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.", "type": "string" }, "imageID": { - "description": "ImageID of the container's image.", + "description": "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.", "type": "string" }, "lastState": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState", - "description": "Details about the container's last termination condition." + "description": "LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0." }, "name": { - "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.", + "description": "Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.", "type": "string" }, "ready": { - "description": "Specifies whether the container has passed its readiness probe.", + "description": "Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field).\n\nThe value is typically used to determine whether a container is ready to accept traffic.", "type": "boolean" }, + "resources": { + "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements", + "description": "Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized." + }, "restartCount": { - "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.", + "description": "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.", "format": "int32", "type": "integer" }, "started": { - "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", + "description": "Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.", "type": "boolean" }, "state": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState", - "description": "Details about the container's current condition." + "description": "State holds details about the container's current condition." } }, "required": [ @@ -10920,12 +10719,12 @@ "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { - "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + "description": "medium represents what type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", - "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" + "description": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" } }, "type": "object" @@ -10938,7 +10737,7 @@ "type": "string" }, "ip": { - "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.", + "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).", "type": "string" }, "nodeName": { @@ -10953,13 +10752,14 @@ "required": [ "ip" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.EndpointPort": { "description": "EndpointPort is a tuple that describes a single port.", "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { @@ -10979,10 +10779,11 @@ "required": [ "port" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.EndpointSubset": { - "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]", + "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n\n\t{\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t}\n\nThe resulting set of endpoints can be viewed as:\n\n\ta: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n\tb: [ 10.10.1.1:309, 10.10.2.2:309 ]", "properties": { "addresses": { "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.", @@ -11009,7 +10810,7 @@ "type": "object" }, "io.k8s.api.core.v1.Endpoints": { - "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n Name: \"mysvc\",\n Subsets: [\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n },\n {\n Addresses: [{\"ip\": \"10.10.3.3\"}],\n Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n },\n ]", + "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n\n\t Name: \"mysvc\",\n\t Subsets: [\n\t {\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t },\n\t {\n\t Addresses: [{\"ip\": \"10.10.3.3\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n\t },\n\t]", "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", @@ -11101,7 +10902,7 @@ "type": "string" }, "value": { - "description": "Variable references $(VAR_NAME) are expanded using the previous 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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": { @@ -11137,17 +10938,17 @@ "type": "object" }, "io.k8s.api.core.v1.EphemeralContainer": { - "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", + "description": "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.\n\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.", "properties": { "args": { - "description": "Arguments to the entrypoint. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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", "items": { "type": "string" }, "type": "array" }, "command": { - "description": "Entrypoint array. Not executed within a shell. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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", "items": { "type": "string" }, @@ -11170,7 +10971,7 @@ "type": "array" }, "image": { - "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { @@ -11194,19 +10995,38 @@ "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort" }, - "type": "array" + "type": "array", + "x-kubernetes-list-map-keys": [ + "containerPort", + "protocol" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "containerPort", + "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/io.k8s.api.core.v1.Probe", "description": "Probes are not allowed for ephemeral containers." }, + "resizePolicy": { + "description": "Resources resize policy for the container.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, "resources": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, + "restartPolicy": { + "description": "Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers.", + "type": "string" + }, "securityContext": { "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext", - "description": "SecurityContext is not allowed for ephemeral containers." + "description": "Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext." }, "startupProbe": { "$ref": "#/definitions/io.k8s.api.core.v1.Probe", @@ -11221,7 +11041,7 @@ "type": "boolean" }, "targetContainerName": { - "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", + "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.", "type": "string" }, "terminationMessagePath": { @@ -11246,7 +11066,7 @@ "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { - "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", + "description": "Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount" }, @@ -11267,10 +11087,6 @@ "io.k8s.api.core.v1.EphemeralVolumeSource": { "description": "Represents an ephemeral volume that is handled by a normal storage driver.", "properties": { - "readOnly": { - "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", - "type": "boolean" - }, "volumeClaimTemplate": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate", "description": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\u003cpod name\u003e-\u003cvolume name\u003e` where `\u003cvolume name\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been created.\n\nRequired, must not be nil." @@ -11445,27 +11261,27 @@ "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { - "description": "Optional: FC target lun number", + "description": "lun is Optional: FC target lun number", "format": "int32", "type": "integer" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { - "description": "Optional: FC target worldwide names (WWNs)", + "description": "targetWWNs is Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { - "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", + "description": "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, @@ -11478,27 +11294,27 @@ "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { - "description": "Driver is the name of the driver to use for this volume.", + "description": "driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "description": "fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, - "description": "Optional: Extra command options if any.", + "description": "options is Optional: this field holds extra command options if any.", "type": "object" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." + "description": "secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ @@ -11510,27 +11326,27 @@ "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { - "description": "Driver is the name of the driver to use for this volume.", + "description": "driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, - "description": "Optional: Extra command options if any.", + "description": "options is Optional: this field holds extra command options if any.", "type": "object" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." + "description": "secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ @@ -11542,11 +11358,11 @@ "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { - "description": "Name of the dataset stored as metadata -\u003e name on the dataset for Flocker should be considered as deprecated", + "description": "datasetName is Name of the dataset stored as metadata -\u003e name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { - "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", + "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, @@ -11556,20 +11372,20 @@ "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { - "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "format": "int32", "type": "integer" }, "pdName": { - "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, @@ -11578,19 +11394,36 @@ ], "type": "object" }, + "io.k8s.api.core.v1.GRPCAction": { + "properties": { + "port": { + "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.", + "format": "int32", + "type": "integer" + }, + "service": { + "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.", + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, "io.k8s.api.core.v1.GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { - "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", + "description": "directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { - "description": "Repository URL", + "description": "repository is the URL", "type": "string" }, "revision": { - "description": "Commit hash for the specified revision.", + "description": "revision is the commit hash for the specified revision.", "type": "string" } }, @@ -11603,19 +11436,19 @@ "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { - "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { - "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { - "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, @@ -11629,15 +11462,15 @@ "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { - "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { - "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, @@ -11683,7 +11516,7 @@ "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { - "description": "The header field name", + "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.", "type": "string" }, "value": { @@ -11697,24 +11530,6 @@ ], "type": "object" }, - "io.k8s.api.core.v1.Handler": { - "description": "Handler defines a specific action that should be taken", - "properties": { - "exec": { - "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction", - "description": "One and only one of the following should be specified. Exec specifies the action to take." - }, - "httpGet": { - "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction", - "description": "HTTPGet specifies the http request to perform." - }, - "tcpSocket": { - "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction", - "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" - } - }, - "type": "object" - }, "io.k8s.api.core.v1.HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { @@ -11732,15 +11547,25 @@ }, "type": "object" }, + "io.k8s.api.core.v1.HostIP": { + "description": "HostIP represents a single IP address allocated to the host.", + "properties": { + "ip": { + "description": "IP is the IP address assigned to the host", + "type": "string" + } + }, + "type": "object" + }, "io.k8s.api.core.v1.HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { - "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { - "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, @@ -11753,51 +11578,51 @@ "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { - "description": "whether support iSCSI Discovery CHAP authentication", + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { - "description": "whether support iSCSI Session CHAP authentication", + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { - "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", "type": "string" }, "iqn": { - "description": "Target iSCSI Qualified Name.", + "description": "iqn is Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { - "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { - "description": "iSCSI Target Lun number.", + "description": "lun is iSCSI Target Lun number.", "format": "int32", "type": "integer" }, "portals": { - "description": "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).", + "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).", "items": { "type": "string" }, "type": "array" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "CHAP Secret for iSCSI target and initiator authentication" + "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { - "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "description": "targetPortal is iSCSI Target Portal. 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" } }, @@ -11812,51 +11637,51 @@ "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { - "description": "whether support iSCSI Discovery CHAP authentication", + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { - "description": "whether support iSCSI Session CHAP authentication", + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { - "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", "type": "string" }, "iqn": { - "description": "Target iSCSI Qualified Name.", + "description": "iqn is the target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { - "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { - "description": "iSCSI Target Lun number.", + "description": "lun represents iSCSI Target Lun number.", "format": "int32", "type": "integer" }, "portals": { - "description": "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).", + "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).", "items": { "type": "string" }, "type": "array" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "CHAP Secret for iSCSI target and initiator authentication" + "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { - "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "description": "targetPortal is iSCSI Target Portal. 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" } }, @@ -11871,16 +11696,16 @@ "description": "Maps a string key to a path within a volume.", "properties": { "key": { - "description": "The key to project.", + "description": "key is the key to project.", "type": "string" }, "mode": { - "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": "integer" }, "path": { - "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", + "description": "path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, @@ -11894,12 +11719,34 @@ "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { - "$ref": "#/definitions/io.k8s.api.core.v1.Handler", + "$ref": "#/definitions/io.k8s.api.core.v1.LifecycleHandler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { - "$ref": "#/definitions/io.k8s.api.core.v1.Handler", - "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + "$ref": "#/definitions/io.k8s.api.core.v1.LifecycleHandler", + "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.LifecycleHandler": { + "description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.", + "properties": { + "exec": { + "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction", + "description": "Exec specifies the action to take." + }, + "httpGet": { + "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction", + "description": "HTTPGet specifies the http request to perform." + }, + "sleep": { + "$ref": "#/definitions/io.k8s.api.core.v1.SleepAction", + "description": "Sleep represents the duration that the container should sleep before being terminated." + }, + "tcpSocket": { + "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction", + "description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." } }, "type": "object" @@ -11989,7 +11836,7 @@ "type": "string" }, "items": { - "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange" }, @@ -12043,6 +11890,10 @@ "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" }, + "ipMode": { + "description": "IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + "type": "string" + }, "ports": { "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", "items": { @@ -12075,17 +11926,18 @@ "type": "string" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { - "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", + "description": "fsType is the filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a filesystem if unspecified.", "type": "string" }, "path": { - "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", + "description": "path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, @@ -12094,19 +11946,36 @@ ], "type": "object" }, + "io.k8s.api.core.v1.ModifyVolumeStatus": { + "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation", + "properties": { + "status": { + "description": "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n the specified VolumeAttributesClass not existing.\n - InProgress\n InProgress indicates that the volume is being modified.\n - Infeasible\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.", + "type": "string" + }, + "targetVolumeAttributesClassName": { + "description": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + }, "io.k8s.api.core.v1.NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { - "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { - "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, @@ -12346,7 +12215,7 @@ "type": "object" }, "io.k8s.api.core.v1.NodeConfigSource": { - "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", + "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22", "properties": { "configMap": { "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapNodeConfigSource", @@ -12436,7 +12305,8 @@ "required": [ "nodeSelectorTerms" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", @@ -12481,14 +12351,15 @@ "type": "array" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.NodeSpec": { "description": "NodeSpec describes the attributes that a node is created with.", "properties": { "configSource": { "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource", - "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field" + "description": "Deprecated: Previously used to specify the source of the node's configuration for the DynamicKubeletConfig feature. This feature is removed." }, "externalID": { "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966", @@ -12528,7 +12399,7 @@ "description": "NodeStatus is information about the current status of a node.", "properties": { "addresses": { - "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.", + "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See https://pr.k8s.io/79391 for an example. Consumers should assume that addresses can change during the lifetime of a Node. However, there are some exceptions where this may not be possible, such as Pods that inherit a Node's address in its own status or consumers of the downward API (status.hostIP).", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress" }, @@ -12611,7 +12482,7 @@ "type": "string" }, "containerRuntimeVersion": { - "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", + "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).", "type": "string" }, "kernelVersion": { @@ -12672,7 +12543,8 @@ "required": [ "fieldPath" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", @@ -12706,7 +12578,8 @@ "type": "string" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.PersistentVolume": { "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", @@ -12725,11 +12598,11 @@ }, "spec": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec", - "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" + "description": "spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" }, "status": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus", - "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" + "description": "status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" } }, "type": "object", @@ -12758,11 +12631,11 @@ }, "spec": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec", - "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" + "description": "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "status": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus", - "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" + "description": "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" } }, "type": "object", @@ -12775,22 +12648,22 @@ ] }, "io.k8s.api.core.v1.PersistentVolumeClaimCondition": { - "description": "PersistentVolumeClaimCondition contails details about state of pvc", + "description": "PersistentVolumeClaimCondition contains details about state of pvc", "properties": { "lastProbeTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time we probed the condition." + "description": "lastProbeTime is the time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transitioned from one status to another." + "description": "lastTransitionTime is the time the condition transitioned from one status to another." }, "message": { - "description": "Human-readable message indicating details about last transition.", + "description": "message is the human-readable message indicating details about last transition.", "type": "string" }, "reason": { - "description": "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 \"ResizeStarted\" that means the underlying persistent volume is being resized.", "type": "string" }, "status": { @@ -12814,7 +12687,7 @@ "type": "string" }, "items": { - "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "items is a list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" }, @@ -12845,7 +12718,7 @@ "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", "properties": { "accessModes": { - "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + "description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": "string" }, @@ -12853,18 +12726,26 @@ }, "dataSource": { "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source." + "description": "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource." + }, + "dataSourceRef": { + "$ref": "#/definitions/io.k8s.api.core.v1.TypedObjectReference", + "description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled." }, "resources": { - "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements", - "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" + "$ref": "#/definitions/io.k8s.api.core.v1.VolumeResourceRequirements", + "description": "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" }, "selector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "A label query over volumes to consider for binding." + "description": "selector is a label query over volumes to consider for binding." }, "storageClassName": { - "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + "type": "string" + }, + "volumeAttributesClassName": { + "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.", "type": "string" }, "volumeMode": { @@ -12872,7 +12753,7 @@ "type": "string" }, "volumeName": { - "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.", + "description": "volumeName is the binding reference to the PersistentVolume backing this claim.", "type": "string" } }, @@ -12882,21 +12763,36 @@ "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", "properties": { "accessModes": { - "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", + "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", "items": { "type": "string" }, "type": "array" }, + "allocatedResourceStatuses": { + "additionalProperties": { + "type": "string" + }, + "description": "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object", + "x-kubernetes-map-type": "granular" + }, + "allocatedResources": { + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object" + }, "capacity": { "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, - "description": "Represents the actual resources of the underlying volume.", + "description": "capacity represents the actual resources of the underlying volume.", "type": "object" }, "conditions": { - "description": "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 'ResizeStarted'.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition" }, @@ -12904,8 +12800,16 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentVolumeAttributesClassName": { + "description": "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature.", + "type": "string" + }, + "modifyVolumeStatus": { + "$ref": "#/definitions/io.k8s.api.core.v1.ModifyVolumeStatus", + "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is an alpha field and requires enabling VolumeAttributesClass feature." + }, "phase": { - "description": "Phase represents the current phase of PersistentVolumeClaim.", + "description": "phase represents the current phase of PersistentVolumeClaim.", "type": "string" } }, @@ -12932,11 +12836,11 @@ "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { - "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { - "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", + "description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, @@ -12953,7 +12857,7 @@ "type": "string" }, "items": { - "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + "description": "items is a list of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume" }, @@ -12984,7 +12888,7 @@ "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { - "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", + "description": "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, @@ -12992,73 +12896,74 @@ }, "awsElasticBlockStore": { "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource", - "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" + "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource", - "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." + "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource", - "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." + "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, - "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + "description": "capacity is the description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource", - "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" + "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource", - "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" + "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference", - "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" + "description": "claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding", + "x-kubernetes-map-type": "granular" }, "csi": { "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource", - "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." + "description": "csi represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource", - "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." + "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource", - "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." + "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource", - "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" + "description": "flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource", - "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" + "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource", - "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" + "description": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource", - "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" + "description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource", - "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." + "description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource", - "description": "Local represents directly-attached storage with node affinity" + "description": "local represents directly-attached storage with node affinity" }, "mountOptions": { - "description": "A 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", + "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", "items": { "type": "string" }, @@ -13066,43 +12971,47 @@ }, "nfs": { "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource", - "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" + "description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity", - "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." + "description": "nodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { - "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", + "description": "persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource", - "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" + "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource", - "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" + "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource", - "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource", - "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" + "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource", - "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." + "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { - "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", + "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource", - "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" + "description": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" + }, + "volumeAttributesClassName": { + "description": "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process. This is an alpha field and requires enabling VolumeAttributesClass feature.", + "type": "string" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", @@ -13110,7 +13019,7 @@ }, "vsphereVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource", - "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" @@ -13118,16 +13027,20 @@ "io.k8s.api.core.v1.PersistentVolumeStatus": { "description": "PersistentVolumeStatus is the current status of a persistent volume.", "properties": { + "lastPhaseTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions. This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default)." + }, "message": { - "description": "A human-readable message indicating details about why the volume is in this state.", + "description": "message is a human-readable message indicating details about why the volume is in this state.", "type": "string" }, "phase": { - "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + "description": "phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", "type": "string" }, "reason": { - "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", + "description": "reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", "type": "string" } }, @@ -13137,11 +13050,11 @@ "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { - "description": "ID that identifies Photon Controller persistent disk", + "description": "pdID is the ID that identifies Photon Controller persistent disk", "type": "string" } }, @@ -13208,10 +13121,30 @@ "properties": { "labelSelector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "A label query over a set of resources, in this case pods." + "description": "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods." + }, + "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.", + "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.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "namespaceSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "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." }, "namespaces": { - "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list 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" }, @@ -13322,10 +13255,10 @@ "type": "object" }, "io.k8s.api.core.v1.PodIP": { - "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n IP: An IP address allocated to the pod. Routable at least within the cluster.", + "description": "PodIP represents a single IP address allocated to the pod.", "properties": { "ip": { - "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod", + "description": "IP is the IP address assigned to the pod", "type": "string" } }, @@ -13366,6 +13299,19 @@ } ] }, + "io.k8s.api.core.v1.PodOS": { + "description": "PodOS defines the OS parameters of a pod.", + "properties": { + "name": { + "description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, "io.k8s.api.core.v1.PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { @@ -13379,20 +13325,67 @@ ], "type": "object" }, + "io.k8s.api.core.v1.PodResourceClaim": { + "description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.", + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.", + "type": "string" + }, + "source": { + "$ref": "#/definitions/io.k8s.api.core.v1.ClaimSource", + "description": "Source describes where to find the ResourceClaim." + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "io.k8s.api.core.v1.PodResourceClaimStatus": { + "description": "PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.", + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.", + "type": "string" + }, + "resourceClaimName": { + "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. It this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "io.k8s.api.core.v1.PodSchedulingGate": { + "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.", + "properties": { + "name": { + "description": "Name of the scheduling gate. Each scheduling gate must have a unique name field.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, "io.k8s.api.core.v1.PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { - "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", + "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.", "format": "int64", "type": "integer" }, "fsGroupChangePolicy": { - "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used.", + "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used. Note that this field cannot be set when spec.os.name is windows.", "type": "string" }, "runAsGroup": { - "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", "format": "int64", "type": "integer" }, @@ -13401,20 +13394,20 @@ "type": "boolean" }, "runAsUser": { - "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", "format": "int64", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions", - "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." + "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows." }, "seccompProfile": { "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile", - "description": "The seccomp options to use by the containers in this pod." + "description": "The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows." }, "supplementalGroups": { - "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", + "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.", "items": { "format": "int64", "type": "integer" @@ -13422,7 +13415,7 @@ "type": "array" }, "sysctls": { - "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", + "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.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl" }, @@ -13430,7 +13423,7 @@ }, "windowsOptions": { "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions", - "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." + "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux." } }, "type": "object" @@ -13473,7 +13466,7 @@ "type": "boolean" }, "ephemeralContainers": { - "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", + "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer" }, @@ -13502,12 +13495,16 @@ "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, + "hostUsers": { + "description": "Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for 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.", + "type": "boolean" + }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { - "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", + "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, @@ -13533,17 +13530,22 @@ "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/", - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "os": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodOS", + "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" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", + "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md", "type": "object" }, "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", + "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", "type": "string" }, "priority": { @@ -13556,24 +13558,50 @@ "type": "string" }, "readinessGates": { - "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/0007-pod-ready%2B%2B.md", + "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", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate" }, "type": "array" }, - "restartPolicy": { - "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", - "type": "string" - }, - "runtimeClassName": { - "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", - "type": "string" - }, - "schedulerName": { - "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", + "resourceClaims": { + "description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodResourceClaim" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, + "restartPolicy": { + "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", + "type": "string" + }, + "runtimeClassName": { + "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class", + "type": "string" + }, + "schedulerName": { + "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, + "schedulingGates": { + "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.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodSchedulingGate" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "securityContext": { "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." @@ -13599,7 +13627,7 @@ "type": "string" }, "terminationGracePeriodSeconds": { - "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "format": "int64", "type": "integer" }, @@ -13652,23 +13680,33 @@ "x-kubernetes-patch-strategy": "merge" }, "containerStatuses": { - "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + "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", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus" }, "type": "array" }, "ephemeralContainerStatuses": { - "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.", + "description": "Status for any ephemeral containers that have run in this pod.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus" }, "type": "array" }, "hostIP": { - "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.", + "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 be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod", "type": "string" }, + "hostIPs": { + "description": "hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.HostIP" + }, + "type": "array", + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge" + }, "initContainerStatuses": { "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", "items": { @@ -13689,7 +13727,7 @@ "type": "string" }, "podIP": { - "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", + "description": "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", "type": "string" }, "podIPs": { @@ -13702,13 +13740,30 @@ "x-kubernetes-patch-strategy": "merge" }, "qosClass": { - "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md", + "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes", "type": "string" }, "reason": { "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", "type": "string" }, + "resize": { + "description": "Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"", + "type": "string" + }, + "resourceClaimStatuses": { + "description": "Status of resource claims.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodResourceClaimStatus" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, "startTime": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod." @@ -13820,15 +13875,15 @@ "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { - "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { - "description": "VolumeID uniquely identifies a Portworx volume", + "description": "volumeID uniquely identifies a Portworx volume", "type": "string" } }, @@ -13861,13 +13916,17 @@ "properties": { "exec": { "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction", - "description": "One and only one of the following should be specified. Exec specifies the action to take." + "description": "Exec specifies the action to take." }, "failureThreshold": { "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "format": "int32", "type": "integer" }, + "grpc": { + "$ref": "#/definitions/io.k8s.api.core.v1.GRPCAction", + "description": "GRPC specifies an action involving a GRPC port." + }, "httpGet": { "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction", "description": "HTTPGet specifies the http request to perform." @@ -13889,7 +13948,12 @@ }, "tcpSocket": { "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction", - "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" + "description": "TCPSocket specifies an action involving a TCP port." + }, + "terminationGracePeriodSeconds": { + "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.", + "format": "int64", + "type": "integer" }, "timeoutSeconds": { "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", @@ -13903,12 +13967,12 @@ "description": "Represents a projected volume source", "properties": { "defaultMode": { - "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": "integer" }, "sources": { - "description": "list of volume projections", + "description": "sources is the list of volume projections", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection" }, @@ -13921,27 +13985,27 @@ "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { - "description": "Group to map volume access to Default is no group", + "description": "group to map volume access to Default is no group", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", + "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { - "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", + "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { - "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", + "description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { - "description": "User to map volume access to Defaults to serivceaccount user", + "description": "user to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { - "description": "Volume is a string that references an already created Quobyte volume by name.", + "description": "volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, @@ -13955,38 +14019,38 @@ "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { - "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { - "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { - "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { - "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" + "description": "secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { - "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, @@ -14000,38 +14064,38 @@ "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { - "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { - "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { - "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { - "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" + "description": "secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { - "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, @@ -14157,11 +14221,12 @@ "type": "string" }, "description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "template": { "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec", - "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" + "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" } }, "type": "object" @@ -14199,7 +14264,7 @@ "type": "integer" }, "replicas": { - "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", "format": "int32", "type": "integer" } @@ -14209,6 +14274,19 @@ ], "type": "object" }, + "io.k8s.api.core.v1.ResourceClaim": { + "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" + }, "io.k8s.api.core.v1.ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { @@ -14228,7 +14306,8 @@ "required": [ "resource" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ResourceQuota": { "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace", @@ -14345,18 +14424,29 @@ "io.k8s.api.core.v1.ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { + "claims": { + "description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ResourceClaim" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" + }, "limits": { "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, - "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "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": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, - "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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "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" } }, @@ -14388,43 +14478,43 @@ "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { - "description": "The host address of the ScaleIO API Gateway.", + "description": "gateway is the host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { - "description": "The name of the ScaleIO Protection Domain for the configured storage.", + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference", - "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." + "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { - "description": "Flag to enable/disable SSL communication with Gateway, default false", + "description": "sslEnabled is the flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { - "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { - "description": "The ScaleIO Storage Pool associated with the protection domain.", + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { - "description": "The name of the storage system as configured in ScaleIO.", + "description": "system is the name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { - "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, @@ -14439,43 +14529,43 @@ "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { - "description": "The host address of the ScaleIO API Gateway.", + "description": "gateway is the host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { - "description": "The name of the ScaleIO Protection Domain for the configured storage.", + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." + "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { - "description": "Flag to enable/disable SSL communication with Gateway, default false", + "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { - "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { - "description": "The ScaleIO Storage Pool associated with the protection domain.", + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { - "description": "The name of the storage system as configured in ScaleIO.", + "description": "system is the name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { - "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, @@ -14497,7 +14587,8 @@ "type": "array" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": { "description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.", @@ -14528,7 +14619,7 @@ "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.", "properties": { "localhostProfile": { - "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \"Localhost\".", + "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \"Localhost\". Must NOT be set for any other type.", "type": "string" }, "type": { @@ -14565,7 +14656,7 @@ "type": "object" }, "immutable": { - "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is a beta field enabled by ImmutableEphemeralVolumes feature gate.", + "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", "type": "boolean" }, "kind": { @@ -14580,11 +14671,11 @@ "additionalProperties": { "type": "string" }, - "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.", + "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.", "type": "object" }, "type": { - "description": "Used to facilitate programmatic handling of secret data.", + "description": "Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types", "type": "string" } }, @@ -14630,7 +14721,8 @@ "required": [ "key" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.SecretList": { "description": "SecretList is a list of Secret.", @@ -14671,7 +14763,7 @@ "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { - "description": "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 '..'.", + "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 '..'.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" }, @@ -14682,7 +14774,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the Secret or its key must be defined", + "description": "optional field specify whether the Secret or its key must be defined", "type": "boolean" } }, @@ -14692,37 +14784,38 @@ "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { - "description": "Name is unique within a namespace to reference a secret resource.", + "description": "name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { - "description": "Namespace defines the space within which the secret name must be unique.", + "description": "namespace defines the space within which the secret name must be unique.", "type": "string" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { - "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": "integer" }, "items": { - "description": "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 '..'.", + "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 '..'.", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" }, "type": "array" }, "optional": { - "description": "Specify whether the Secret or its keys must be defined", + "description": "optional field specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { - "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + "description": "secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, @@ -14732,27 +14825,27 @@ "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { - "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", + "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities", - "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." + "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." }, "privileged": { - "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", + "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "procMount": { - "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", + "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", "type": "string" }, "readOnlyRootFilesystem": { - "description": "Whether this container has a read-only root filesystem. Default is false.", + "description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "runAsGroup": { - "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", "format": "int64", "type": "integer" }, @@ -14761,21 +14854,21 @@ "type": "boolean" }, "runAsUser": { - "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", "format": "int64", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions", - "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." + "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows." }, "seccompProfile": { "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile", - "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod \u0026 container level, the container options override the pod options." + "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod \u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." }, "windowsOptions": { "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions", - "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." + "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux." } }, "type": "object" @@ -14840,7 +14933,7 @@ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "secrets": { - "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret", + "description": "Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use. Pods are only limited to this list if this service account has a \"kubernetes.io/enforce-mountable-secrets\" annotation set to \"true\". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, @@ -14897,16 +14990,16 @@ "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { - "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", + "description": "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { - "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", + "description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "format": "int64", "type": "integer" }, "path": { - "description": "Path is the path relative to the mount point of the file to project the token into.", + "description": "path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, @@ -14954,7 +15047,7 @@ "description": "ServicePort contains information on service's port.", "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { @@ -14989,7 +15082,7 @@ "description": "ServiceSpec describes the attributes that a user creates on a service.", "properties": { "allocateLoadBalancerNodePorts": { - "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. allocateLoadBalancerNodePorts may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. This field is alpha-level and is only honored by servers that enable the ServiceLBNodePortControl feature.", + "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.", "type": "boolean" }, "clusterIP": { @@ -14997,7 +15090,7 @@ "type": "string" }, "clusterIPs": { - "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nUnless the \"IPv6DualStack\" feature gate is enabled, this field is limited to one value, which must be the same as the clusterIP field. If the feature gate is enabled, this field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nThis field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "items": { "type": "string" }, @@ -15012,20 +15105,24 @@ "type": "array" }, "externalName": { - "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be", + "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \"ExternalName\".", "type": "string" }, "externalTrafficPolicy": { - "description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.", + "description": "externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \"externally-facing\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \"Local\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \"Cluster\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.", "type": "string" }, "healthCheckNodePort": { - "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type).", + "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set.", "format": "int32", "type": "integer" }, + "internalTrafficPolicy": { + "description": "InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \"Local\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).", + "type": "string" + }, "ipFamilies": { - "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service, and is gated by the \"IPv6DualStack\" feature gate. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \"IPv4\" and \"IPv6\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services. This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.", + "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \"IPv4\" and \"IPv6\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services. This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.", "items": { "type": "string" }, @@ -15033,15 +15130,19 @@ "x-kubernetes-list-type": "atomic" }, "ipFamilyPolicy": { - "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service, and is gated by the \"IPv6DualStack\" feature gate. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.", + "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.", + "type": "string" + }, + "loadBalancerClass": { + "description": "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.", "type": "string" }, "loadBalancerIP": { - "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", + "description": "Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.", "type": "string" }, "loadBalancerSourceRanges": { - "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/configure-cloud-provider-firewall/", + "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/", "items": { "type": "string" }, @@ -15070,7 +15171,8 @@ "type": "string" }, "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/", - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "sessionAffinity": { "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", @@ -15080,13 +15182,6 @@ "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig", "description": "sessionAffinityConfig contains the configurations of session affinity." }, - "topologyKeys": { - "description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied. This field is alpha-level and is only honored by servers that enable the ServiceTopology feature.", - "items": { - "type": "string" - }, - "type": "array" - }, "type": { "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \"ExternalName\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types", "type": "string" @@ -15127,27 +15222,41 @@ }, "type": "object" }, + "io.k8s.api.core.v1.SleepAction": { + "description": "SleepAction describes a \"sleep\" action.", + "properties": { + "seconds": { + "description": "Seconds is the number of seconds to sleep.", + "format": "int64", + "type": "integer" + } + }, + "required": [ + "seconds" + ], + "type": "object" + }, "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference", - "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." + "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { - "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { - "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, @@ -15157,23 +15266,23 @@ "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference", - "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." + "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { - "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { - "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, @@ -15299,7 +15408,8 @@ "type": "array" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", @@ -15308,17 +15418,38 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, + "matchLabelKeys": { + "description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.\n\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, "maxSkew": { - "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", + "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", "format": "int32", "type": "integer" }, + "minDomains": { + "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).", + "format": "int32", + "type": "integer" + }, + "nodeAffinityPolicy": { + "description": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\n\nIf this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, + "nodeTaintsPolicy": { + "description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, "topologyKey": { - "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \u003ckey, value\u003e as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", + "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \u003ckey, value\u003e as a \"bucket\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \"kubernetes.io/hostname\", each Node is a domain of that topology. And, if TopologyKey is \"topology.kubernetes.io/zone\", each zone is a domain of that topology. It's a required field.", "type": "string" }, "whenUnsatisfiable": { - "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assigment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", + "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assignment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, @@ -15349,6 +15480,32 @@ "kind", "name" ], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.TypedObjectReference": { + "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" + }, + "namespace": { + "description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", + "type": "string" + } + }, + "required": [ + "kind", + "name" + ], "type": "object" }, "io.k8s.api.core.v1.Volume": { @@ -15356,123 +15513,123 @@ "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource", - "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" + "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource", - "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." + "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource", - "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." + "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource", - "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" + "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource", - "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" + "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource", - "description": "ConfigMap represents a configMap that should populate this volume" + "description": "configMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource", - "description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)." + "description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)." }, "downwardAPI": { "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource", - "description": "DownwardAPI represents downward API about the pod that should populate this volume" + "description": "downwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource", - "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" + "description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "ephemeral": { "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource", - "description": "Ephemeral represents a volume that is handled by a cluster storage driver (Alpha feature). The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time." + "description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time." }, "fc": { "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource", - "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." + "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource", - "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." + "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource", - "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" + "description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource", - "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" + "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource", - "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." + "description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource", - "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" + "description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource", - "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" + "description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource", - "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" + "description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { - "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource", - "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" + "description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource", - "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" + "description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource", - "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" + "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource", - "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" + "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource", - "description": "Items for all in one resources secrets, configmaps, and downward API" + "description": "projected items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource", - "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource", - "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" + "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource", - "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." + "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource", - "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" + "description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource", - "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." + "description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource", - "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ @@ -15537,7 +15694,7 @@ "properties": { "required": { "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector", - "description": "Required specifies hard node constraints that must be met." + "description": "required specifies hard node constraints that must be met." } }, "type": "object" @@ -15545,21 +15702,45 @@ "io.k8s.api.core.v1.VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { + "clusterTrustBundle": { + "$ref": "#/definitions/io.k8s.api.core.v1.ClusterTrustBundleProjection", + "description": "ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file.\n\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\n\nClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector.\n\nKubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time." + }, "configMap": { "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection", - "description": "information about the configMap data to project" + "description": "configMap information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection", - "description": "information about the downwardAPI data to project" + "description": "downwardAPI information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection", - "description": "information about the secret data to project" + "description": "secret information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection", - "description": "information about the serviceAccountToken data to project" + "description": "serviceAccountToken is information about the serviceAccountToken data to project" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.VolumeResourceRequirements": { + "description": "VolumeResourceRequirements describes the storage resource requirements for a volume.", + "properties": { + "limits": { + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "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" @@ -15568,19 +15749,19 @@ "description": "Represents a vSphere volume resource.", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { - "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", + "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { - "description": "Storage Policy Based Management (SPBM) profile name.", + "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { - "description": "Path that identifies vSphere volume vmdk", + "description": "volumePath is the path that identifies vSphere volume vmdk", "type": "string" } }, @@ -15619,6 +15800,10 @@ "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, + "hostProcess": { + "description": "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.", + "type": "boolean" + }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" @@ -15626,11 +15811,11 @@ }, "type": "object" }, - "io.k8s.api.discovery.v1beta1.Endpoint": { + "io.k8s.api.discovery.v1.Endpoint": { "description": "Endpoint represents a single logical \"backend\" implementing a service.", "properties": { "addresses": { - "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.", + "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100. These are all assumed to be fungible and clients may choose to only use the first element. Refer to: https://issue.k8s.io/106267", "items": { "type": "string" }, @@ -15638,27 +15823,35 @@ "x-kubernetes-list-type": "set" }, "conditions": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointConditions", + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointConditions", "description": "conditions contains information about the current status of the endpoint." }, + "deprecatedTopology": { + "additionalProperties": { + "type": "string" + }, + "description": "deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24). While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.", + "type": "object" + }, + "hints": { + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointHints", + "description": "hints contains information associated with how an endpoint should be consumed." + }, "hostname": { "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.", "type": "string" }, "nodeName": { - "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.", + "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node.", "type": "string" }, "targetRef": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference", "description": "targetRef is a reference to a Kubernetes object that represents this endpoint." }, - "topology": { - "additionalProperties": { - "type": "string" - }, - "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n where the endpoint is located. This should match the corresponding\n node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n endpoint is located. This should match the corresponding node label.\nThis field is deprecated and will be removed in future api versions.", - "type": "object" + "zone": { + "description": "zone is the name of the Zone this endpoint exists in.", + "type": "string" } }, "required": [ @@ -15666,48 +15859,63 @@ ], "type": "object" }, - "io.k8s.api.discovery.v1beta1.EndpointConditions": { + "io.k8s.api.discovery.v1.EndpointConditions": { "description": "EndpointConditions represents the current condition of an endpoint.", "properties": { "ready": { - "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints.", + "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag.", "type": "boolean" }, "serving": { - "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.", + "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition.", "type": "boolean" }, "terminating": { - "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.", + "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating.", "type": "boolean" } }, "type": "object" }, - "io.k8s.api.discovery.v1beta1.EndpointPort": { + "io.k8s.api.discovery.v1.EndpointHints": { + "description": "EndpointHints provides hints describing how an endpoint should be consumed.", + "properties": { + "forZones": { + "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.", + "items": { + "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.discovery.v1.EndpointPort": { "description": "EndpointPort represents a Port used by an EndpointSlice", "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { - "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", + "description": "name represents the name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": "string" }, "port": { - "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", + "description": "port represents the port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "format": "int32", "type": "integer" }, "protocol": { - "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", + "description": "protocol represents the IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } }, - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.discovery.v1beta1.EndpointSlice": { + "io.k8s.api.discovery.v1.EndpointSlice": { "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.", "properties": { "addressType": { @@ -15721,7 +15929,7 @@ "endpoints": { "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.Endpoint" + "$ref": "#/definitions/io.k8s.api.discovery.v1.Endpoint" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -15737,7 +15945,7 @@ "ports": { "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointPort" + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointPort" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -15752,11 +15960,11 @@ { "group": "discovery.k8s.io", "kind": "EndpointSlice", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.api.discovery.v1beta1.EndpointSliceList": { + "io.k8s.api.discovery.v1.EndpointSliceList": { "description": "EndpointSliceList represents a list of endpoint slices", "properties": { "apiVersion": { @@ -15764,9 +15972,9 @@ "type": "string" }, "items": { - "description": "List of endpoint slices", + "description": "items is the list of endpoint slices", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice" + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice" }, "type": "array" }, @@ -15787,10 +15995,23 @@ { "group": "discovery.k8s.io", "kind": "EndpointSliceList", - "version": "v1beta1" + "version": "v1" } ] }, + "io.k8s.api.discovery.v1.ForZone": { + "description": "ForZone provides information about which zones should consume this endpoint.", + "properties": { + "name": { + "description": "name represents the name of the zone.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, "io.k8s.api.events.v1.Event": { "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", "properties": { @@ -15828,7 +16049,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "note": { "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.", @@ -15864,7 +16086,6 @@ } }, "required": [ - "metadata", "eventTime" ], "type": "object", @@ -15930,102 +16151,105 @@ ], "type": "object" }, - "io.k8s.api.events.v1beta1.Event": { - "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", + "io.k8s.api.flowcontrol.v1.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", "properties": { - "action": { - "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.", - "type": "string" + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod": { + "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", + "properties": { + "type": { + "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.FlowSchema": { + "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "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" }, - "deprecatedCount": { - "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.", - "format": "int32", - "type": "integer" - }, - "deprecatedFirstTimestamp": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type." - }, - "deprecatedLastTimestamp": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type." - }, - "deprecatedSource": { - "$ref": "#/definitions/io.k8s.api.core.v1.EventSource", - "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type." - }, - "eventTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime", - "description": "eventTime is the time when this Event was first observed. It is required." - }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "note": { - "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.", - "type": "string" + "spec": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaSpec", + "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, - "reason": { - "description": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.", - "type": "string" - }, - "regarding": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference", - "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object." - }, - "related": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference", - "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object." + "status": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaStatus", + "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1" + } + ] + }, + "io.k8s.api.flowcontrol.v1.FlowSchemaCondition": { + "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "properties": { + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, - "reportingController": { - "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.", + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, - "reportingInstance": { - "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.", + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, - "series": { - "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries", - "description": "series is data about the Event series this event represents or nil if it's a singleton Event." + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" }, "type": { - "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.", + "description": "`type` is the type of the condition. Required.", "type": "string" } }, - "required": [ - "metadata", - "eventTime" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "events.k8s.io", - "kind": "Event", - "version": "v1beta1" - } - ] + "type": "object" }, - "io.k8s.api.events.v1beta1.EventList": { - "description": "EventList is a list of Event objects.", + "io.k8s.api.flowcontrol.v1.FlowSchemaList": { + "description": "FlowSchemaList is a list of FlowSchema objects.", "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" }, "items": { - "description": "items is a list of schema objects.", + "description": "`items` is a list of FlowSchemas.", "items": { - "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchema" }, "type": "array" }, @@ -16035,7 +16259,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -16044,70 +16268,185 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "events.k8s.io", - "kind": "EventList", - "version": "v1beta1" + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchemaList", + "version": "v1" } ] }, - "io.k8s.api.events.v1beta1.EventSeries": { - "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", + "io.k8s.api.flowcontrol.v1.FlowSchemaSpec": { + "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", "properties": { - "count": { - "description": "count is the number of occurrences in this series up to the last heartbeat time.", + "distinguisherMethod": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod", + "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string." + }, + "matchingPrecedence": { + "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", "format": "int32", "type": "integer" }, - "lastObservedTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime", - "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat." + "priorityLevelConfiguration": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference", + "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required." + }, + "rules": { + "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PolicyRulesWithSubjects" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, "required": [ - "count", - "lastObservedTime" + "priorityLevelConfiguration" ], "type": "object" }, - "io.k8s.api.extensions.v1beta1.HTTPIngressPath": { - "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", + "io.k8s.api.flowcontrol.v1.FlowSchemaStatus": { + "description": "FlowSchemaStatus represents the current state of a FlowSchema.", "properties": { - "backend": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend", - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." - }, - "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", + "conditions": { + "description": "`conditions` is a list of the current states of FlowSchema.", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.GroupSubject": { + "description": "GroupSubject holds detailed information for group-kind subject.", + "properties": { + "name": { + "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.LimitResponse": { + "description": "LimitResponse defines how to handle requests that can not be executed right now.", + "properties": { + "queuing": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.QueuingConfiguration", + "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." }, - "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", + "type": { + "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", "type": "string" } }, "required": [ - "backend" + "type" ], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "queuing": "Queuing" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", + "properties": { + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "format": "int32", + "type": "integer" + }, + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "limitResponse": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.LimitResponse", + "description": "`limitResponse` indicates what to do with requests that can not be executed right now" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level.\n\nIf not specified, this field defaults to a value of 30.\n\nSetting this field to zero supports the construction of a \"jail\" for this priority level that is used to hold some request(s)", + "format": "int32", + "type": "integer" + } + }, "type": "object" }, - "io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue": { - "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + "io.k8s.api.flowcontrol.v1.NonResourcePolicyRule": { + "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "properties": { - "paths": { - "description": "A collection of paths that map requests to backends.", + "nonResourceURLs": { + "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath" + "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, "required": [ - "paths" + "verbs", + "nonResourceURLs" + ], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.PolicyRulesWithSubjects": { + "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", + "properties": { + "nonResourceRules": { + "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.NonResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceRules": { + "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "subjects": { + "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.Subject" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": [ + "subjects" ], "type": "object" }, - "io.k8s.api.extensions.v1beta1.Ingress": { - "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfiguration": { + "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "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", @@ -16119,55 +16458,63 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec", - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationSpec", + "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus", - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationStatus", + "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "extensions", - "kind": "Ingress", - "version": "v1beta1" + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1" } ] }, - "io.k8s.api.extensions.v1beta1.IngressBackend": { - "description": "IngressBackend describes all endpoints for a given service and port.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationCondition": { + "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "properties": { - "resource": { - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." + "lastTransitionTime": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, - "serviceName": { - "description": "Specifies the name of the referenced service.", + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, - "servicePort": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "Specifies the port of the referenced service." + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" + }, + "type": { + "description": "`type` is the type of the condition. Required.", + "type": "string" } }, "type": "object" }, - "io.k8s.api.extensions.v1beta1.IngressList": { - "description": "IngressList is a collection of Ingress.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationList": { + "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "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" }, "items": { - "description": "Items is the list of Ingress.", + "description": "`items` is a list of request-priorities.", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfiguration" }, "type": "array" }, @@ -16177,7 +16524,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -16186,81 +16533,225 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "extensions", - "kind": "IngressList", - "version": "v1beta1" + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfigurationList", + "version": "v1" } ] }, - "io.k8s.api.extensions.v1beta1.IngressRule": { - "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference": { + "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", "properties": { - "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", + "name": { + "description": "`name` is the name of the priority level configuration being referenced Required.", "type": "string" - }, - "http": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue" } }, + "required": [ + "name" + ], "type": "object" }, - "io.k8s.api.extensions.v1beta1.IngressSpec": { - "description": "IngressSpec describes the Ingress the user wishes to exist.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationSpec": { + "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "properties": { - "backend": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend", - "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." + "exempt": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ExemptPriorityLevelConfiguration", + "description": "`exempt` specifies how requests are handled for an exempt priority level. This field MUST be empty if `type` is `\"Limited\"`. This field MAY be non-empty if `type` is `\"Exempt\"`. If empty and `type` is `\"Exempt\"` then the default values for `ExemptPriorityLevelConfiguration` apply." }, - "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", + "limited": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.LimitedPriorityLevelConfiguration", + "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." + }, + "type": { + "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "exempt": "Exempt", + "limited": "Limited" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationStatus": { + "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", + "properties": { + "conditions": { + "description": "`conditions` is the current state of \"request-priority\".", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.QueuingConfiguration": { + "description": "QueuingConfiguration holds the configuration parameters for queuing", + "properties": { + "handSize": { + "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", + "format": "int32", + "type": "integer" }, - "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "queueLengthLimit": { + "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", + "format": "int32", + "type": "integer" + }, + "queues": { + "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", + "properties": { + "apiGroups": { + "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule" + "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "set" }, - "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + "clusterScope": { + "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.", + "type": "boolean" + }, + "namespaces": { + "description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS" + "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "set" + }, + "resources": { + "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" } }, + "required": [ + "verbs", + "apiGroups", + "resources" + ], "type": "object" }, - "io.k8s.api.extensions.v1beta1.IngressStatus": { - "description": "IngressStatus describe the current state of the Ingress.", + "io.k8s.api.flowcontrol.v1.ServiceAccountSubject": { + "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", "properties": { - "loadBalancer": { - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus", - "description": "LoadBalancer contains the current status of the load-balancer." + "name": { + "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.", + "type": "string" } }, + "required": [ + "namespace", + "name" + ], "type": "object" }, - "io.k8s.api.extensions.v1beta1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", + "io.k8s.api.flowcontrol.v1.Subject": { + "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", "properties": { - "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", - "items": { - "type": "string" - }, - "type": "array" + "group": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.GroupSubject", + "description": "`group` matches based on user group name." }, - "secretName": { - "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", + "kind": { + "description": "`kind` indicates which one of the other fields is non-empty. Required", + "type": "string" + }, + "serviceAccount": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ServiceAccountSubject", + "description": "`serviceAccount` matches ServiceAccounts." + }, + "user": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.UserSubject", + "description": "`user` matches based on username." + } + }, + "required": [ + "kind" + ], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "kind", + "fields-to-discriminateBy": { + "group": "Group", + "serviceAccount": "ServiceAccount", + "user": "User" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1.UserSubject": { + "description": "UserSubject holds detailed information for user-kind subject.", + "properties": { + "name": { + "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", "type": "string" } }, + "required": [ + "name" + ], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", + "properties": { + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "format": "int32", + "type": "integer" + } + }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod": { + "io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod": { "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", "properties": { "type": { @@ -16273,7 +16764,7 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchema": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchema": { "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", "properties": { "apiVersion": { @@ -16289,11 +16780,11 @@ "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec", "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus", "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, @@ -16302,11 +16793,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchema", - "version": "v1alpha1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition": { "description": "FlowSchemaCondition describes conditions for a FlowSchema.", "properties": { "lastTransitionTime": { @@ -16332,7 +16823,7 @@ }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaList": { "description": "FlowSchemaList is a list of FlowSchema objects.", "properties": { "apiVersion": { @@ -16342,7 +16833,7 @@ "items": { "description": "`items` is a list of FlowSchemas.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchema" }, "type": "array" }, @@ -16363,15 +16854,15 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchemaList", - "version": "v1alpha1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec": { "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", "properties": { "distinguisherMethod": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod", "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string." }, "matchingPrecedence": { @@ -16380,13 +16871,13 @@ "type": "integer" }, "priorityLevelConfiguration": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference", "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required." }, "rules": { "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -16397,24 +16888,26 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus": { "description": "FlowSchemaStatus represents the current state of a FlowSchema.", "properties": { "conditions": { "description": "`conditions` is a list of the current states of FlowSchema.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.GroupSubject": { + "io.k8s.api.flowcontrol.v1beta3.GroupSubject": { "description": "GroupSubject holds detailed information for group-kind subject.", "properties": { "name": { @@ -16427,11 +16920,11 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.LimitResponse": { + "io.k8s.api.flowcontrol.v1beta3.LimitResponse": { "description": "LimitResponse defines how to handle requests that can not be executed right now.", "properties": { "queuing": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration", "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." }, "type": { @@ -16452,22 +16945,32 @@ } ] }, - "io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration": { - "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", + "io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", "properties": { - "assuredConcurrencyShares": { - "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "format": "int32", + "type": "integer" + }, + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", "format": "int32", "type": "integer" }, "limitResponse": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitResponse", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.LimitResponse", "description": "`limitResponse` indicates what to do with requests that can not be executed right now" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of 30.", + "format": "int32", + "type": "integer" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule": { + "io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule": { "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "properties": { "nonResourceURLs": { @@ -16493,13 +16996,13 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects": { + "io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects": { "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", "properties": { "nonResourceRules": { "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -16507,7 +17010,7 @@ "resourceRules": { "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -16515,7 +17018,7 @@ "subjects": { "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.Subject" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.Subject" }, "type": "array", "x-kubernetes-list-type": "atomic" @@ -16526,7 +17029,7 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration": { "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "properties": { "apiVersion": { @@ -16542,11 +17045,11 @@ "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec", "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus", "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, @@ -16555,11 +17058,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfiguration", - "version": "v1alpha1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition": { "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "properties": { "lastTransitionTime": { @@ -16585,7 +17088,7 @@ }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList": { "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "properties": { "apiVersion": { @@ -16595,7 +17098,7 @@ "items": { "description": "`items` is a list of request-priorities.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" }, "type": "array" }, @@ -16616,11 +17119,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfigurationList", - "version": "v1alpha1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference": { "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", "properties": { "name": { @@ -16633,11 +17136,15 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "properties": { + "exempt": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration", + "description": "`exempt` specifies how requests are handled for an exempt priority level. This field MUST be empty if `type` is `\"Limited\"`. This field MAY be non-empty if `type` is `\"Exempt\"`. If empty and `type` is `\"Exempt\"` then the default values for `ExemptPriorityLevelConfiguration` apply." + }, "limited": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration", "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." }, "type": { @@ -16653,29 +17160,32 @@ { "discriminator": "type", "fields-to-discriminateBy": { + "exempt": "Exempt", "limited": "Limited" } } ] }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "properties": { "conditions": { "description": "`conditions` is the current state of \"request-priority\".", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration": { + "io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "properties": { "handSize": { @@ -16696,8 +17206,8 @@ }, "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule": { - "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.", + "io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", "properties": { "apiGroups": { "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", @@ -16743,7 +17253,7 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject": { + "io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject": { "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", "properties": { "name": { @@ -16761,21 +17271,24 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1alpha1.Subject": { + "io.k8s.api.flowcontrol.v1beta3.Subject": { "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", "properties": { "group": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.GroupSubject" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.GroupSubject", + "description": "`group` matches based on user group name." }, "kind": { - "description": "Required", + "description": "`kind` indicates which one of the other fields is non-empty. Required", "type": "string" }, "serviceAccount": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject", + "description": "`serviceAccount` matches ServiceAccounts." }, "user": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.UserSubject" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.UserSubject", + "description": "`user` matches based on username." } }, "required": [ @@ -16793,7 +17306,7 @@ } ] }, - "io.k8s.api.flowcontrol.v1alpha1.UserSubject": { + "io.k8s.api.flowcontrol.v1beta3.UserSubject": { "description": "UserSubject holds detailed information for user-kind subject.", "properties": { "name": { @@ -16806,21 +17319,67 @@ ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod": { - "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", + "io.k8s.api.networking.v1.HTTPIngressPath": { + "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "properties": { - "type": { - "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", + "backend": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend", + "description": "backend defines the referenced service endpoint to which the traffic will be forwarded to." + }, + "path": { + "description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".", + "type": "string" + }, + "pathType": { + "description": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.", "type": "string" } }, "required": [ - "type" + "pathType", + "backend" ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchema": { - "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "io.k8s.api.networking.v1.HTTPIngressRuleValue": { + "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + "properties": { + "paths": { + "description": "paths is a collection of paths that map requests to backends.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": [ + "paths" + ], + "type": "object" + }, + "io.k8s.api.networking.v1.IPBlock": { + "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.0/24\",\"2001:db8::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", + "properties": { + "cidr": { + "description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"", + "type": "string" + }, + "except": { + "description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "cidr" + ], + "type": "object" + }, + "io.k8s.api.networking.v1.Ingress": { + "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", "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", @@ -16832,63 +17391,80 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "`metadata` is the 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" }, "spec": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec", - "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec", + "description": "spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus", - "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus", + "description": "status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "FlowSchema", - "version": "v1beta1" + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition": { - "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "io.k8s.api.networking.v1.IngressBackend": { + "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." - }, - "message": { - "description": "`message` is a human-readable message indicating details about last transition.", - "type": "string" + "resource": { + "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", + "description": "resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\"." }, - "reason": { - "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "service": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend", + "description": "service references a service as a backend. This is a mutually exclusive setting with \"Resource\"." + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressClass": { + "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", + "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" }, - "status": { - "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "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" }, - "type": { - "description": "`type` is the type of the condition. Required.", - "type": "string" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec", + "description": "spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + } + ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaList": { - "description": "FlowSchemaList is a list of FlowSchema objects.", + "io.k8s.api.networking.v1.IngressClassList": { + "description": "IngressClassList is a collection of IngressClasses.", "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" }, "items": { - "description": "`items` is a list of FlowSchemas.", + "description": "items is the list of IngressClasses.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass" }, "type": "array" }, @@ -16898,7 +17474,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard list metadata." } }, "required": [ @@ -16907,173 +17483,239 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "FlowSchemaList", - "version": "v1beta1" + "group": "networking.k8s.io", + "kind": "IngressClassList", + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec": { - "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", + "io.k8s.api.networking.v1.IngressClassParametersReference": { + "description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.", "properties": { - "distinguisherMethod": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod", - "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string." + "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" }, - "matchingPrecedence": { - "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", - "format": "int32", - "type": "integer" + "kind": { + "description": "kind is the type of resource being referenced.", + "type": "string" }, - "priorityLevelConfiguration": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference", - "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required." + "name": { + "description": "name is the name of resource being referenced.", + "type": "string" }, - "rules": { - "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", + "namespace": { + "description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".", + "type": "string" + }, + "scope": { + "description": "scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".", + "type": "string" + } + }, + "required": [ + "kind", + "name" + ], + "type": "object" + }, + "io.k8s.api.networking.v1.IngressClassSpec": { + "description": "IngressClassSpec provides information about the class of an Ingress.", + "properties": { + "controller": { + "description": "controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", + "type": "string" + }, + "parameters": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassParametersReference", + "description": "parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressList": { + "description": "IngressList is a collection of Ingress.", + "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" + }, + "items": { + "description": "items is the list of Ingress.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects" + "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress" }, - "type": "array", - "x-kubernetes-list-type": "atomic" + "type": "array" + }, + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "priorityLevelConfiguration" + "items" ], - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IngressList", + "version": "v1" + } + ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus": { - "description": "FlowSchemaStatus represents the current state of a FlowSchema.", + "io.k8s.api.networking.v1.IngressLoadBalancerIngress": { + "description": "IngressLoadBalancerIngress represents the status of a load-balancer ingress point.", "properties": { - "conditions": { - "description": "`conditions` is a list of the current states of FlowSchema.", + "hostname": { + "description": "hostname is set for load-balancer ingress points that are DNS based.", + "type": "string" + }, + "ip": { + "description": "ip is set for load-balancer ingress points that are IP based.", + "type": "string" + }, + "ports": { + "description": "ports provides information about the ports exposed by this LoadBalancer.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressPortStatus" }, "type": "array", - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "atomic" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.GroupSubject": { - "description": "GroupSubject holds detailed information for group-kind subject.", + "io.k8s.api.networking.v1.IngressLoadBalancerStatus": { + "description": "IngressLoadBalancerStatus represents the status of a load-balancer.", "properties": { - "name": { - "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", - "type": "string" + "ingress": { + "description": "ingress is a list containing ingress points for the load-balancer.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerIngress" + }, + "type": "array" } }, - "required": [ - "name" - ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.LimitResponse": { - "description": "LimitResponse defines how to handle requests that can not be executed right now.", + "io.k8s.api.networking.v1.IngressPortStatus": { + "description": "IngressPortStatus represents the error condition of a service port", "properties": { - "queuing": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration", - "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." + "error": { + "description": "error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.", + "type": "string" }, - "type": { - "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", + "port": { + "description": "port is the port number of the ingress port.", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"", "type": "string" } }, "required": [ - "type" + "port", + "protocol" ], - "type": "object", - "x-kubernetes-unions": [ - { - "discriminator": "type", - "fields-to-discriminateBy": { - "queuing": "Queuing" - } - } - ] + "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration": { - "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", + "io.k8s.api.networking.v1.IngressRule": { + "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "properties": { - "assuredConcurrencyShares": { - "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", - "format": "int32", - "type": "integer" + "host": { + "description": "host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", + "type": "string" }, - "limitResponse": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitResponse", - "description": "`limitResponse` indicates what to do with requests that can not be executed right now" + "http": { + "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressRuleValue" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule": { - "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", + "io.k8s.api.networking.v1.IngressServiceBackend": { + "description": "IngressServiceBackend references a Kubernetes Service as a Backend.", "properties": { - "nonResourceURLs": { - "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "set" + "name": { + "description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.", + "type": "string" }, - "verbs": { - "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "set" + "port": { + "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort", + "description": "port of the referenced service. A port name or port number is required for a IngressServiceBackend." } }, "required": [ - "verbs", - "nonResourceURLs" + "name" ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects": { - "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", + "io.k8s.api.networking.v1.IngressSpec": { + "description": "IngressSpec describes the Ingress the user wishes to exist.", "properties": { - "nonResourceRules": { - "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", + "defaultBackend": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend", + "description": "defaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller." + }, + "ingressClassName": { + "description": "ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -\u003e IngressClass -\u003e Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.", + "type": "string" + }, + "rules": { + "description": "rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule" }, "type": "array", "x-kubernetes-list-type": "atomic" }, - "resourceRules": { - "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", + "tls": { + "description": "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS" }, "type": "array", "x-kubernetes-list-type": "atomic" - }, - "subjects": { - "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressStatus": { + "description": "IngressStatus describe the current state of the Ingress.", + "properties": { + "loadBalancer": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerStatus", + "description": "loadBalancer contains the current status of the load-balancer." + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressTLS": { + "description": "IngressTLS describes the transport layer security associated with an ingress.", + "properties": { + "hosts": { + "description": "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.Subject" + "type": "string" }, "type": "array", "x-kubernetes-list-type": "atomic" + }, + "secretName": { + "description": "secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the \"Host\" header is used for routing.", + "type": "string" } }, - "required": [ - "subjects" - ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration": { - "description": "PriorityLevelConfiguration represents the configuration of a priority level.", + "io.k8s.api.networking.v1.NetworkPolicy": { + "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods", "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", @@ -17085,63 +17727,73 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "`metadata` is the 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" }, "spec": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec", - "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" - }, - "status": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus", - "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec", + "description": "spec represents the specification of the desired behavior for this NetworkPolicy." } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "PriorityLevelConfiguration", - "version": "v1beta1" + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition": { - "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", + "io.k8s.api.networking.v1.NetworkPolicyEgressRule": { + "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." - }, - "message": { - "description": "`message` is a human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" + "ports": { + "description": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" + }, + "type": "array" }, - "status": { - "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", - "type": "string" + "to": { + "description": "to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicyIngressRule": { + "description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.", + "properties": { + "from": { + "description": "from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" + }, + "type": "array" }, - "type": { - "description": "`type` is the type of the condition. Required.", - "type": "string" + "ports": { + "description": "ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" + }, + "type": "array" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList": { - "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", + "io.k8s.api.networking.v1.NetworkPolicyList": { + "description": "NetworkPolicyList is a list of NetworkPolicy objects.", "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" }, "items": { - "description": "`items` is a list of request-priorities.", + "description": "items is a list of schema objects.", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" }, "type": "array" }, @@ -17151,7 +17803,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -17160,258 +17812,196 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "PriorityLevelConfigurationList", - "version": "v1beta1" + "group": "networking.k8s.io", + "kind": "NetworkPolicyList", + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference": { - "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", - "properties": { - "name": { - "description": "`name` is the name of the priority level configuration being referenced Required.", - "type": "string" - } - }, - "required": [ - "name" - ], - "type": "object" - }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec": { - "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", + "io.k8s.api.networking.v1.NetworkPolicyPeer": { + "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed", "properties": { - "limited": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration", - "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." + "ipBlock": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock", + "description": "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be." }, - "type": { - "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", - "type": "string" - } - }, - "required": [ - "type" - ], - "type": "object", - "x-kubernetes-unions": [ - { - "discriminator": "type", - "fields-to-discriminateBy": { - "limited": "Limited" - } - } - ] - }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus": { - "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", - "properties": { - "conditions": { - "description": "`conditions` is the current state of \"request-priority\".", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition" - }, - "type": "array", - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map" + "namespaceSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector. Otherwise it selects all pods in the namespaces selected by namespaceSelector." + }, + "podSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the pods matching podSelector in the policy's own namespace." } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration": { - "description": "QueuingConfiguration holds the configuration parameters for queuing", + "io.k8s.api.networking.v1.NetworkPolicyPort": { + "description": "NetworkPolicyPort describes a port to allow traffic on", "properties": { - "handSize": { - "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", + "endPort": { + "description": "endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.", "format": "int32", "type": "integer" }, - "queueLengthLimit": { - "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", - "format": "int32", - "type": "integer" + "port": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "port represents the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched." }, - "queues": { - "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", - "format": "int32", - "type": "integer" + "protocol": { + "description": "protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", + "type": "string" } }, "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule": { - "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.", + "io.k8s.api.networking.v1.NetworkPolicySpec": { + "description": "NetworkPolicySpec provides the specification of a NetworkPolicy", "properties": { - "apiGroups": { - "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", + "egress": { + "description": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule" }, - "type": "array", - "x-kubernetes-list-type": "set" - }, - "clusterScope": { - "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.", - "type": "boolean" + "type": "array" }, - "namespaces": { - "description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.", + "ingress": { + "description": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule" }, - "type": "array", - "x-kubernetes-list-type": "set" + "type": "array" }, - "resources": { - "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "set" + "podSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "podSelector selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace." }, - "verbs": { - "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.", + "policyTypes": { + "description": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", "items": { "type": "string" }, - "type": "array", - "x-kubernetes-list-type": "set" + "type": "array" } }, "required": [ - "verbs", - "apiGroups", - "resources" + "podSelector" ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject": { - "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", + "io.k8s.api.networking.v1.ServiceBackendPort": { + "description": "ServiceBackendPort is the service port being referenced.", "properties": { "name": { - "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.", + "description": "name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".", "type": "string" }, - "namespace": { - "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.", - "type": "string" + "number": { + "description": "number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".", + "format": "int32", + "type": "integer" } }, - "required": [ - "namespace", - "name" - ], "type": "object" }, - "io.k8s.api.flowcontrol.v1beta1.Subject": { - "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", + "io.k8s.api.networking.v1alpha1.IPAddress": { + "description": "IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1", "properties": { - "group": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.GroupSubject" + "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": "Required", + "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" }, - "serviceAccount": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "user": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.UserSubject" + "spec": { + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.IPAddressSpec", + "description": "spec is the desired state of the IPAddress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, - "required": [ - "kind" - ], "type": "object", - "x-kubernetes-unions": [ + "x-kubernetes-group-version-kind": [ { - "discriminator": "kind", - "fields-to-discriminateBy": { - "group": "Group", - "serviceAccount": "ServiceAccount", - "user": "User" - } + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" } ] }, - "io.k8s.api.flowcontrol.v1beta1.UserSubject": { - "description": "UserSubject holds detailed information for user-kind subject.", + "io.k8s.api.networking.v1alpha1.IPAddressList": { + "description": "IPAddressList contains a list of IPAddress.", "properties": { - "name": { - "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", + "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" + }, + "items": { + "description": "items is the list of IPAddresses.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.IPAddress" + }, + "type": "array" + }, + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "name" + "items" ], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IPAddressList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.networking.v1alpha1.IPAddressSpec": { + "description": "IPAddressSpec describe the attributes in an IP Address.", + "properties": { + "parentRef": { + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ParentReference", + "description": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object." + } + }, "type": "object" }, - "io.k8s.api.networking.v1.HTTPIngressPath": { - "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", + "io.k8s.api.networking.v1alpha1.ParentReference": { + "description": "ParentReference describes a reference to a parent object.", "properties": { - "backend": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend", - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." - }, - "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", + "group": { + "description": "Group is the group of the object being referenced.", "type": "string" }, - "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.", + "name": { + "description": "Name is the name of the object being referenced.", "type": "string" - } - }, - "required": [ - "backend" - ], - "type": "object" - }, - "io.k8s.api.networking.v1.HTTPIngressRuleValue": { - "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", - "properties": { - "paths": { - "description": "A collection of paths that map requests to backends.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - } - }, - "required": [ - "paths" - ], - "type": "object" - }, - "io.k8s.api.networking.v1.IPBlock": { - "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", - "properties": { - "cidr": { - "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"", + }, + "namespace": { + "description": "Namespace is the namespace of the object being referenced.", "type": "string" }, - "except": { - "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range", - "items": { - "type": "string" - }, - "type": "array" + "resource": { + "description": "Resource is the resource of the object being referenced.", + "type": "string" } }, - "required": [ - "cidr" - ], "type": "object" }, - "io.k8s.api.networking.v1.Ingress": { - "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", + "io.k8s.api.networking.v1alpha1.ServiceCIDR": { + "description": "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.", "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", @@ -17426,126 +18016,154 @@ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec", - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDRSpec", + "description": "spec is the desired state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus", - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDRStatus", + "description": "status represents the current state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "Ingress", - "version": "v1" + "kind": "ServiceCIDR", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1.IngressBackend": { - "description": "IngressBackend describes all endpoints for a given service and port.", - "properties": { - "resource": { - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\"." - }, - "service": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend", - "description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.IngressClass": { - "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", + "io.k8s.api.networking.v1alpha1.ServiceCIDRList": { + "description": "ServiceCIDRList contains a list of ServiceCIDR objects.", "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" }, + "items": { + "description": "items is the list of ServiceCIDRs.", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDR" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec", - "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, + "required": [ + "items" + ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "IngressClass", - "version": "v1" + "kind": "ServiceCIDRList", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1.IngressClassList": { - "description": "IngressClassList is a collection of IngressClasses.", + "io.k8s.api.networking.v1alpha1.ServiceCIDRSpec": { + "description": "ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.", + "properties": { + "cidrs": { + "description": "CIDRs defines the IP blocks in CIDR notation (e.g. \"192.168.0.0/24\" or \"2001:db8::/64\") from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. This field is immutable.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1alpha1.ServiceCIDRStatus": { + "description": "ServiceCIDRStatus describes the current state of the ServiceCIDR.", + "properties": { + "conditions": { + "description": "conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state", + "items": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.node.v1.Overhead": { + "description": "Overhead structure represents the resource overhead associated with running a pod.", + "properties": { + "podFixed": { + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "podFixed represents the fixed resource overhead associated with running a pod.", + "type": "object" + } + }, + "type": "object" + }, + "io.k8s.api.node.v1.RuntimeClass": { + "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/", "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" }, - "items": { - "description": "Items is the list of IngressClasses.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass" - }, - "type": "array" + "handler": { + "description": "handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", + "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "overhead": { + "$ref": "#/definitions/io.k8s.api.node.v1.Overhead", + "description": "overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/" + }, + "scheduling": { + "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling", + "description": "scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." } }, "required": [ - "items" + "handler" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "IngressClassList", + "group": "node.k8s.io", + "kind": "RuntimeClass", "version": "v1" } ] }, - "io.k8s.api.networking.v1.IngressClassSpec": { - "description": "IngressClassSpec provides information about the class of an Ingress.", - "properties": { - "controller": { - "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", - "type": "string" - }, - "parameters": { - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.IngressList": { - "description": "IngressList is a collection of Ingress.", + "io.k8s.api.node.v1.RuntimeClassList": { + "description": "RuntimeClassList is a list of RuntimeClass objects.", "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" }, "items": { - "description": "Items is the list of Ingress.", + "description": "items is a list of schema objects.", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress" + "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass" }, "type": "array" }, @@ -17555,7 +18173,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -17564,180 +18182,107 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "IngressList", + "group": "node.k8s.io", + "kind": "RuntimeClassList", "version": "v1" } ] }, - "io.k8s.api.networking.v1.IngressRule": { - "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", - "properties": { - "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", - "type": "string" - }, - "http": { - "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressRuleValue" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.IngressServiceBackend": { - "description": "IngressServiceBackend references a Kubernetes Service as a Backend.", - "properties": { - "name": { - "description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.", - "type": "string" - }, - "port": { - "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort", - "description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend." - } - }, - "required": [ - "name" - ], - "type": "object" - }, - "io.k8s.api.networking.v1.IngressSpec": { - "description": "IngressSpec describes the Ingress the user wishes to exist.", + "io.k8s.api.node.v1.Scheduling": { + "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { - "defaultBackend": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend", - "description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller." - }, - "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", - "type": "string" - }, - "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule" + "nodeSelector": { + "additionalProperties": { + "type": "string" }, - "type": "array", - "x-kubernetes-list-type": "atomic" + "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.IngressStatus": { - "description": "IngressStatus describe the current state of the Ingress.", - "properties": { - "loadBalancer": { - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus", - "description": "LoadBalancer contains the current status of the load-balancer." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", - "properties": { - "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + "tolerations": { + "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" }, "type": "array", "x-kubernetes-list-type": "atomic" - }, - "secretName": { - "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", - "type": "string" } }, "type": "object" }, - "io.k8s.api.networking.v1.NetworkPolicy": { - "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods", + "io.k8s.api.policy.v1.Eviction": { + "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/\u003cpod name\u003e/evictions.", "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" }, + "deleteOptions": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions", + "description": "DeleteOptions may be provided" + }, "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": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec", - "description": "Specification of the desired behavior for this NetworkPolicy." + "description": "ObjectMeta describes the pod that is being evicted." } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "NetworkPolicy", - "version": "v1" + "group": "policy", + "kind": "Eviction", + "version": "v1" } ] }, - "io.k8s.api.networking.v1.NetworkPolicyEgressRule": { - "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", + "io.k8s.api.policy.v1.PodDisruptionBudget": { + "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", "properties": { - "ports": { - "description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" - }, - "type": "array" + "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" }, - "to": { - "description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.NetworkPolicyIngressRule": { - "description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.", - "properties": { - "from": { - "description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" - }, - "type": "array" + "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" }, - "ports": { - "description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" - }, - "type": "array" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec", + "description": "Specification of the desired behavior of the PodDisruptionBudget." + }, + "status": { + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetStatus", + "description": "Most recently observed status of the PodDisruptionBudget." } }, - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + } + ] }, - "io.k8s.api.networking.v1.NetworkPolicyList": { - "description": "NetworkPolicyList is a list of NetworkPolicy objects.", + "io.k8s.api.policy.v1.PodDisruptionBudgetList": { + "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", "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" }, "items": { - "description": "Items is a list of schema objects.", + "description": "Items is a list of PodDisruptionBudgets", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget" }, "type": "array" }, @@ -17747,7 +18292,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list 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" } }, "required": [ @@ -17756,133 +18301,112 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "NetworkPolicyList", + "group": "policy", + "kind": "PodDisruptionBudgetList", "version": "v1" } ] }, - "io.k8s.api.networking.v1.NetworkPolicyPeer": { - "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed", + "io.k8s.api.policy.v1.PodDisruptionBudgetSpec": { + "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", "properties": { - "ipBlock": { - "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock", - "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be." + "maxUnavailable": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"." }, - "namespaceSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector." + "minAvailable": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", + "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"." }, - "podSelector": { + "selector": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1.NetworkPolicyPort": { - "description": "NetworkPolicyPort describes a port to allow traffic on", - "properties": { - "port": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers." + "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.", + "x-kubernetes-patch-strategy": "replace" }, - "protocol": { - "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", + "unhealthyPodEvictionPolicy": { + "description": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy.\n\nIfHealthyBudget policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).", "type": "string" } }, "type": "object" }, - "io.k8s.api.networking.v1.NetworkPolicySpec": { - "description": "NetworkPolicySpec provides the specification of a NetworkPolicy", + "io.k8s.api.policy.v1.PodDisruptionBudgetStatus": { + "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", "properties": { - "egress": { - "description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", + "conditions": { + "description": "Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute\n the number of allowed disruptions. Therefore no disruptions are\n allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n required by the PodDisruptionBudget. No disruptions are\n allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n The condition will be True, and the number of allowed\n disruptions are provided by the disruptionsAllowed property.", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" }, - "type": "array" + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "ingress": { - "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule" - }, - "type": "array" + "currentHealthy": { + "description": "current number of healthy pods", + "format": "int32", + "type": "integer" }, - "podSelector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace." + "desiredHealthy": { + "description": "minimum desired number of healthy pods", + "format": "int32", + "type": "integer" }, - "policyTypes": { - "description": "List of rule types that the NetworkPolicy relates to. Valid options are \"Ingress\", \"Egress\", or \"Ingress,Egress\". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", - "items": { - "type": "string" + "disruptedPods": { + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, - "type": "array" - } - }, - "required": [ - "podSelector" - ], - "type": "object" - }, - "io.k8s.api.networking.v1.ServiceBackendPort": { - "description": "ServiceBackendPort is the service port being referenced.", - "properties": { - "name": { - "description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".", - "type": "string" + "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", + "type": "object" }, - "number": { - "description": "Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".", + "disruptionsAllowed": { + "description": "Number of pod disruptions that are currently allowed.", "format": "int32", "type": "integer" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.HTTPIngressPath": { - "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", - "properties": { - "backend": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend", - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." }, - "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", - "type": "string" + "expectedPods": { + "description": "total number of pods counted by this disruption budget", + "format": "int32", + "type": "integer" }, - "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", - "type": "string" + "observedGeneration": { + "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", + "format": "int64", + "type": "integer" } }, "required": [ - "backend" + "disruptionsAllowed", + "currentHealthy", + "desiredHealthy", + "expectedPods" ], "type": "object" }, - "io.k8s.api.networking.v1beta1.HTTPIngressRuleValue": { - "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + "io.k8s.api.rbac.v1.AggregationRule": { + "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { - "paths": { - "description": "A collection of paths that map requests to backends.", + "clusterRoleSelectors": { + "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressPath" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, "type": "array" } }, - "required": [ - "paths" - ], "type": "object" }, - "io.k8s.api.networking.v1beta1.Ingress": { - "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", + "io.k8s.api.rbac.v1.ClusterRole": { + "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", "properties": { + "aggregationRule": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule", + "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." + }, "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" @@ -17893,46 +18417,27 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressSpec", - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "description": "Standard object's metadata." }, - "status": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressStatus", - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "rules": { + "description": "Rules holds all the PolicyRules for this ClusterRole", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" + }, + "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "Ingress", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" } ] }, - "io.k8s.api.networking.v1beta1.IngressBackend": { - "description": "IngressBackend describes all endpoints for a given service and port.", - "properties": { - "resource": { - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." - }, - "serviceName": { - "description": "Specifies the name of the referenced service.", - "type": "string" - }, - "servicePort": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "Specifies the port of the referenced service." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.IngressClass": { - "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", + "io.k8s.api.rbac.v1.ClusterRoleBinding": { + "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", "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", @@ -17944,33 +18449,43 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "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." }, - "spec": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassSpec", - "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "roleRef": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef", + "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. This field is immutable." + }, + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" + }, + "type": "array" } }, + "required": [ + "roleRef" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "IngressClass", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" } ] }, - "io.k8s.api.networking.v1beta1.IngressClassList": { - "description": "IngressClassList is a collection of IngressClasses.", + "io.k8s.api.rbac.v1.ClusterRoleBindingList": { + "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", "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" }, "items": { - "description": "Items is the list of IngressClasses.", + "description": "Items is a list of ClusterRoleBindings", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass" + "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" }, "type": "array" }, @@ -17980,7 +18495,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata." + "description": "Standard object's metadata." } }, "required": [ @@ -17989,37 +18504,23 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "IngressClassList", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBindingList", + "version": "v1" } ] }, - "io.k8s.api.networking.v1beta1.IngressClassSpec": { - "description": "IngressClassSpec provides information about the class of an Ingress.", - "properties": { - "controller": { - "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", - "type": "string" - }, - "parameters": { - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference", - "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.IngressList": { - "description": "IngressList is a collection of Ingress.", + "io.k8s.api.rbac.v1.ClusterRoleList": { + "description": "ClusterRoleList is a collection of ClusterRoles", "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" }, "items": { - "description": "Items is the list of Ingress.", + "description": "Items is a list of ClusterRoles", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress" + "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" }, "type": "array" }, @@ -18029,7 +18530,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "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." } }, "required": [ @@ -18038,245 +18539,173 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "networking.k8s.io", - "kind": "IngressList", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleList", + "version": "v1" } ] }, - "io.k8s.api.networking.v1beta1.IngressRule": { - "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", - "properties": { - "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", - "type": "string" - }, - "http": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressRuleValue" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.IngressSpec": { - "description": "IngressSpec describes the Ingress the user wishes to exist.", + "io.k8s.api.rbac.v1.PolicyRule": { + "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { - "backend": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend", - "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." - }, - "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", - "type": "string" + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.", + "items": { + "type": "string" + }, + "type": "array" }, - "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressRule" + "type": "string" }, "type": "array" }, - "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressTLS" + "type": "string" }, "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.IngressStatus": { - "description": "IngressStatus describe the current state of the Ingress.", - "properties": { - "loadBalancer": { - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus", - "description": "LoadBalancer contains the current status of the load-balancer." - } - }, - "type": "object" - }, - "io.k8s.api.networking.v1beta1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", - "properties": { - "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. '*' represents all resources.", "items": { "type": "string" }, "type": "array" }, - "secretName": { - "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.node.v1.Overhead": { - "description": "Overhead structure represents the resource overhead associated with running a pod.", - "properties": { - "podFixed": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "verbs": { + "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.", + "items": { + "type": "string" }, - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", - "type": "object" + "type": "array" } }, + "required": [ + "verbs" + ], "type": "object" }, - "io.k8s.api.node.v1.RuntimeClass": { - "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/", + "io.k8s.api.rbac.v1.Role": { + "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", "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" }, - "handler": { - "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", - "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": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "overhead": { - "$ref": "#/definitions/io.k8s.api.node.v1.Overhead", - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/\nThis field is in beta starting v1.18 and is only honored by servers that enable the PodOverhead feature." + "description": "Standard object's metadata." }, - "scheduling": { - "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling", - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." + "rules": { + "description": "Rules holds all the PolicyRules for this Role", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" + }, + "type": "array" } }, - "required": [ - "handler" - ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClass", + "group": "rbac.authorization.k8s.io", + "kind": "Role", "version": "v1" } ] }, - "io.k8s.api.node.v1.RuntimeClassList": { - "description": "RuntimeClassList is a list of RuntimeClass objects.", + "io.k8s.api.rbac.v1.RoleBinding": { + "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that 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", "type": "string" }, - "items": { - "description": "Items is a list of schema objects.", - "items": { - "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass" - }, - "type": "array" - }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata." + }, + "roleRef": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef", + "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. This field is immutable." + }, + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" + }, + "type": "array" } }, "required": [ - "items" + "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClassList", + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", "version": "v1" } ] }, - "io.k8s.api.node.v1.Scheduling": { - "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", - "properties": { - "nodeSelector": { - "additionalProperties": { - "type": "string" - }, - "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", - "type": "object" - }, - "tolerations": { - "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - } - }, - "type": "object" - }, - "io.k8s.api.node.v1alpha1.Overhead": { - "description": "Overhead structure represents the resource overhead associated with running a pod.", - "properties": { - "podFixed": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", - "type": "object" - } - }, - "type": "object" - }, - "io.k8s.api.node.v1alpha1.RuntimeClass": { - "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", + "io.k8s.api.rbac.v1.RoleBindingList": { + "description": "RoleBindingList is a collection of RoleBindings", "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" }, + "items": { + "description": "Items is a list of RoleBindings", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec", - "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard object's metadata." } }, "required": [ - "spec" + "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClass", - "version": "v1alpha1" + "group": "rbac.authorization.k8s.io", + "kind": "RoleBindingList", + "version": "v1" } ] }, - "io.k8s.api.node.v1alpha1.RuntimeClassList": { - "description": "RuntimeClassList is a list of RuntimeClass objects.", + "io.k8s.api.rbac.v1.RoleList": { + "description": "RoleList is a collection of Roles", "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" }, "items": { - "description": "Items is a list of schema objects.", + "description": "Items is a list of Roles", "items": { - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass" + "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" }, "type": "array" }, @@ -18286,7 +18715,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard object's metadata." } }, "required": [ @@ -18295,118 +18724,132 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClassList", - "version": "v1alpha1" + "group": "rbac.authorization.k8s.io", + "kind": "RoleList", + "version": "v1" } ] }, - "io.k8s.api.node.v1alpha1.RuntimeClassSpec": { - "description": "RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.", + "io.k8s.api.rbac.v1.RoleRef": { + "description": "RoleRef contains information that points to the role being used", "properties": { - "overhead": { - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead", - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced", + "type": "string" }, - "runtimeHandler": { - "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", + "kind": { + "description": "Kind is the type of resource being referenced", "type": "string" }, - "scheduling": { - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Scheduling", - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." + "name": { + "description": "Name is the name of resource being referenced", + "type": "string" } }, "required": [ - "runtimeHandler" + "apiGroup", + "kind", + "name" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.node.v1alpha1.Scheduling": { - "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", + "io.k8s.api.rbac.v1.Subject": { + "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { - "nodeSelector": { - "additionalProperties": { - "type": "string" - }, - "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", - "type": "object" + "apiGroup": { + "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + "type": "string" }, - "tolerations": { - "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - } - }, - "type": "object" - }, - "io.k8s.api.node.v1beta1.Overhead": { - "description": "Overhead structure represents the resource overhead associated with running a pod.", - "properties": { - "podFixed": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "kind": { + "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + "type": "string" + }, + "name": { + "description": "Name of the object being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + "type": "string" + } + }, + "required": [ + "kind", + "name" + ], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.resource.v1alpha2.AllocationResult": { + "description": "AllocationResult contains attributes of an allocated resource.", + "properties": { + "availableOnNodes": { + "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector", + "description": "This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaim.\n\nSetting this field is optional. If null, the resource is available everywhere." + }, + "resourceHandles": { + "description": "ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed.\n\nSetting this field is optional. It has a maximum size of 32 entries. If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached. The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in.", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceHandle" }, - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", - "type": "object" + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "shareable": { + "description": "Shareable determines whether the resource supports more than one consumer at a time.", + "type": "boolean" } }, "type": "object" }, - "io.k8s.api.node.v1beta1.RuntimeClass": { - "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", + "io.k8s.api.resource.v1alpha2.PodSchedulingContext": { + "description": "PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use \"WaitForFirstConsumer\" allocation mode.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", "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" }, - "handler": { - "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", - "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": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard object metadata" }, - "overhead": { - "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead", - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." + "spec": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec", + "description": "Spec describes where resources for the Pod are needed." }, - "scheduling": { - "$ref": "#/definitions/io.k8s.api.node.v1beta1.Scheduling", - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." + "status": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus", + "description": "Status describes where resources for the Pod can be allocated." } }, "required": [ - "handler" + "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClass", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" } ] }, - "io.k8s.api.node.v1beta1.RuntimeClassList": { - "description": "RuntimeClassList is a list of RuntimeClass objects.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextList": { + "description": "PodSchedulingContextList is a collection of Pod scheduling objects.", "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" }, "items": { - "description": "Items is a list of schema objects.", + "description": "Items is the list of PodSchedulingContext objects.", "items": { - "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContext" }, "type": "array" }, @@ -18416,7 +18859,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard list metadata" } }, "required": [ @@ -18425,161 +18868,237 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClassList", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "PodSchedulingContextList", + "version": "v1alpha2" } ] }, - "io.k8s.api.node.v1beta1.Scheduling": { - "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec": { + "description": "PodSchedulingContextSpec describes where resources for the Pod are needed.", "properties": { - "nodeSelector": { - "additionalProperties": { - "type": "string" - }, - "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", - "type": "object" - }, - "tolerations": { - "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", + "potentialNodes": { + "description": "PotentialNodes lists nodes where the Pod might be able to run.\n\nThe size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" + "type": "string" }, "type": "array", "x-kubernetes-list-type": "atomic" + }, + "selectedNode": { + "description": "SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use \"WaitForFirstConsumer\" allocation is to be attempted.", + "type": "string" } }, "type": "object" }, - "io.k8s.api.policy.v1beta1.AllowedCSIDriver": { - "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus": { + "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.", "properties": { - "name": { - "description": "Name is the registered name of the CSI driver", - "type": "string" + "resourceClaims": { + "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" } }, - "required": [ - "name" - ], "type": "object" }, - "io.k8s.api.policy.v1beta1.AllowedFlexVolume": { - "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.", + "io.k8s.api.resource.v1alpha2.ResourceClaim": { + "description": "ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", "properties": { - "driver": { - "description": "driver is the name of the Flexvolume driver.", + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSpec", + "description": "Spec describes the desired attributes of a resource that then needs to be allocated. It can only be set once when creating the ResourceClaim." + }, + "status": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimStatus", + "description": "Status describes whether the resource is available and with which attributes." } }, "required": [ - "driver" + "spec" ], - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + } + ] }, - "io.k8s.api.policy.v1beta1.AllowedHostPath": { - "description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.", + "io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference": { + "description": "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.", "properties": { - "pathPrefix": { - "description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`", + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", "type": "string" }, - "readOnly": { - "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.", - "type": "boolean" + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" + }, + "resource": { + "description": "Resource is the type of resource being referenced, for example \"pods\".", + "type": "string" + }, + "uid": { + "description": "UID identifies exactly one incarnation of the resource.", + "type": "string" } }, + "required": [ + "resource", + "name", + "uid" + ], "type": "object" }, - "io.k8s.api.policy.v1beta1.Eviction": { - "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/\u003cpod name\u003e/evictions.", + "io.k8s.api.resource.v1alpha2.ResourceClaimList": { + "description": "ResourceClaimList is a collection of claims.", "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" }, - "deleteOptions": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions", - "description": "DeleteOptions may be provided" + "items": { + "description": "Items is the list of resource claims.", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaim" + }, + "type": "array" }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "ObjectMeta describes the pod that is being evicted." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata" } }, + "required": [ + "items" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "Eviction", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClaimList", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": { - "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", + "io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference": { + "description": "ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim. The object must be in the same namespace as the ResourceClaim.", "properties": { - "ranges": { - "description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - }, - "type": "array" + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" }, - "rule": { - "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata, for example \"ConfigMap\".", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced.", "type": "string" } }, + "required": [ + "kind", + "name" + ], "type": "object" }, - "io.k8s.api.policy.v1beta1.HostPortRange": { - "description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.", + "io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus": { + "description": "ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with \"WaitForFirstConsumer\" allocation mode.", "properties": { - "max": { - "description": "max is the end of the range, inclusive.", - "format": "int32", - "type": "integer" + "name": { + "description": "Name matches the pod.spec.resourceClaims[*].Name field.", + "type": "string" }, - "min": { - "description": "min is the start of the range, inclusive.", - "format": "int32", - "type": "integer" + "unsuitableNodes": { + "description": "UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated for.\n\nThe size of this field is limited to 128, the same as for PodSchedulingSpec.PotentialNodes. This may get increased in the future, but not reduced.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" } }, - "required": [ - "min", - "max" - ], "type": "object" }, - "io.k8s.api.policy.v1beta1.IDRange": { - "description": "IDRange provides a min/max of an allowed range of IDs.", + "io.k8s.api.resource.v1alpha2.ResourceClaimSpec": { + "description": "ResourceClaimSpec defines how a resource is to be allocated.", "properties": { - "max": { - "description": "max is the end of the range, inclusive.", - "format": "int64", - "type": "integer" + "allocationMode": { + "description": "Allocation can start immediately or when a Pod wants to use the resource. \"WaitForFirstConsumer\" is the default.", + "type": "string" }, - "min": { - "description": "min is the start of the range, inclusive.", - "format": "int64", - "type": "integer" + "parametersRef": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference", + "description": "ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claim.\n\nThe object must be in the same namespace as the ResourceClaim." + }, + "resourceClassName": { + "description": "ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment.", + "type": "string" } }, "required": [ - "min", - "max" + "resourceClassName" ], "type": "object" }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudget": { - "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", + "io.k8s.api.resource.v1alpha2.ResourceClaimStatus": { + "description": "ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are.", + "properties": { + "allocation": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.AllocationResult", + "description": "Allocation is set by the resource driver once a resource or set of resources has been allocated successfully. If this is not specified, the resources have not been allocated yet." + }, + "deallocationRequested": { + "description": "DeallocationRequested indicates that a ResourceClaim is to be deallocated.\n\nThe driver then must deallocate this claim and reset the field together with clearing the Allocation field.\n\nWhile DeallocationRequested is set, no new consumers may be added to ReservedFor.", + "type": "boolean" + }, + "driverName": { + "description": "DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.", + "type": "string" + }, + "reservedFor": { + "description": "ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.\n\nThere can be at most 32 such reservations. This may get increased in the future, but not reduced.", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "uid" + ], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplate": { + "description": "ResourceClaimTemplate is used to produce ResourceClaim objects.", "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", @@ -18590,36 +19109,37 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec", - "description": "Specification of the desired behavior of the PodDisruptionBudget." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus", - "description": "Most recently observed status of the PodDisruptionBudget." + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec", + "description": "Describes the ResourceClaim that is to be generated.\n\nThis field is immutable. A ResourceClaim will get created by the control plane for a Pod when needed and then not get updated anymore." } }, + "required": [ + "spec" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodDisruptionBudget", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": { - "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList": { + "description": "ResourceClaimTemplateList is a collection of claim 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", "type": "string" }, "items": { + "description": "Items is the list of resource claim templates.", "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" }, "type": "array" }, @@ -18628,7 +19148,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata" } }, "required": [ @@ -18637,114 +19158,80 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodDisruptionBudgetList", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplateList", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": { - "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec": { + "description": "ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim.", "properties": { - "maxUnavailable": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"." - }, - "minAvailable": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString", - "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"." + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "ObjectMeta may contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation." }, - "selector": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", - "description": "Label query over pods whose evictions are managed by the disruption budget." + "spec": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSpec", + "description": "Spec for the ResourceClaim. The entire content is copied unchanged into the ResourceClaim that gets created from this template. The same fields as in a ResourceClaim are also valid here." } }, + "required": [ + "spec" + ], "type": "object" }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": { - "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", + "io.k8s.api.resource.v1alpha2.ResourceClass": { + "description": "ResourceClass is used by administrators to influence how resources are allocated.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", "properties": { - "currentHealthy": { - "description": "current number of healthy pods", - "format": "int32", - "type": "integer" + "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" }, - "desiredHealthy": { - "description": "minimum desired number of healthy pods", - "format": "int32", - "type": "integer" + "driverName": { + "description": "DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.\n\nResource drivers have a unique name in forward domain order (acme.example.com).", + "type": "string" }, - "disruptedPods": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", - "type": "object" + "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" }, - "disruptionsAllowed": { - "description": "Number of pod disruptions that are currently allowed.", - "format": "int32", - "type": "integer" + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata" }, - "expectedPods": { - "description": "total number of pods counted by this disruption budget", - "format": "int32", - "type": "integer" + "parametersRef": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClassParametersReference", + "description": "ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec." }, - "observedGeneration": { - "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", - "format": "int64", - "type": "integer" + "suitableNodes": { + "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector", + "description": "Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.\n\nSetting this field is optional. If null, all nodes are candidates." } }, "required": [ - "disruptionsAllowed", - "currentHealthy", - "desiredHealthy", - "expectedPods" + "driverName" ], - "type": "object" - }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicy": { - "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec", - "description": "spec defines the policy enforced." - } - }, "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodSecurityPolicy", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": { - "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.", + "io.k8s.api.resource.v1alpha2.ResourceClassList": { + "description": "ResourceClassList is a collection of classes.", "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" }, "items": { - "description": "items is a list of schema objects.", + "description": "Items is the list of resource classes.", "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClass" }, "type": "array" }, @@ -18754,7 +19241,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + "description": "Standard list metadata" } }, "required": [ @@ -18763,302 +19250,66 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodSecurityPolicyList", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClassList", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": { - "description": "PodSecurityPolicySpec defines the policy enforced.", - "properties": { - "allowPrivilegeEscalation": { - "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.", - "type": "boolean" - }, - "allowedCSIDrivers": { - "description": "AllowedCSIDrivers is an allowlist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is a beta field, and is only honored if the API server enables the CSIInlineVolume feature gate.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver" - }, - "type": "array" - }, - "allowedCapabilities": { - "description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.", - "items": { - "type": "string" - }, - "type": "array" - }, - "allowedFlexVolumes": { - "description": "allowedFlexVolumes is an allowlist of Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume" - }, - "type": "array" - }, - "allowedHostPaths": { - "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath" - }, - "type": "array" - }, - "allowedProcMountTypes": { - "description": "AllowedProcMountTypes is an allowlist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.", - "items": { - "type": "string" - }, - "type": "array" - }, - "allowedUnsafeSysctls": { - "description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.", - "items": { - "type": "string" - }, - "type": "array" - }, - "defaultAddCapabilities": { - "description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.", - "items": { - "type": "string" - }, - "type": "array" - }, - "defaultAllowPrivilegeEscalation": { - "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.", - "type": "boolean" - }, - "forbiddenSysctls": { - "description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.", - "items": { - "type": "string" - }, - "type": "array" - }, - "fsGroup": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions", - "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext." - }, - "hostIPC": { - "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.", - "type": "boolean" - }, - "hostNetwork": { - "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.", - "type": "boolean" - }, - "hostPID": { - "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.", - "type": "boolean" - }, - "hostPorts": { - "description": "hostPorts determines which host port ranges are allowed to be exposed.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange" - }, - "type": "array" - }, - "privileged": { - "description": "privileged determines if a pod can request to be run as privileged.", - "type": "boolean" - }, - "readOnlyRootFilesystem": { - "description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.", - "type": "boolean" - }, - "requiredDropCapabilities": { - "description": "requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.", - "items": { - "type": "string" - }, - "type": "array" - }, - "runAsGroup": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions", - "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled." - }, - "runAsUser": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions", - "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set." - }, - "runtimeClass": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions", - "description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled." - }, - "seLinux": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions", - "description": "seLinux is the strategy that will dictate the allowable labels that may be set." - }, - "supplementalGroups": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions", - "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext." - }, - "volumes": { - "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "seLinux", - "runAsUser", - "supplementalGroups", - "fsGroup" - ], - "type": "object" - }, - "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": { - "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.", + "io.k8s.api.resource.v1alpha2.ResourceClassParametersReference": { + "description": "ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass.", "properties": { - "ranges": { - "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - }, - "type": "array" + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" }, - "rule": { - "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.", "type": "string" - } - }, - "required": [ - "rule" - ], - "type": "object" - }, - "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": { - "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.", - "properties": { - "ranges": { - "description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - }, - "type": "array" }, - "rule": { - "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.", + "name": { + "description": "Name is the name of resource being referenced.", "type": "string" - } - }, - "required": [ - "rule" - ], - "type": "object" - }, - "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": { - "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.", - "properties": { - "allowedRuntimeClassNames": { - "description": "allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.", - "items": { - "type": "string" - }, - "type": "array" }, - "defaultRuntimeClassName": { - "description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.", + "namespace": { + "description": "Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.", "type": "string" } }, "required": [ - "allowedRuntimeClassNames" + "kind", + "name" ], "type": "object" }, - "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": { - "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.", + "io.k8s.api.resource.v1alpha2.ResourceHandle": { + "description": "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.", "properties": { - "rule": { - "description": "rule is the strategy that will dictate the allowable labels that may be set.", + "data": { + "description": "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.\n\nThe maximum size of this field is 16KiB. This may get increased in the future, but not reduced.", "type": "string" }, - "seLinuxOptions": { - "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions", - "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" - } - }, - "required": [ - "rule" - ], - "type": "object" - }, - "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": { - "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.", - "properties": { - "ranges": { - "description": "ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - }, - "type": "array" - }, - "rule": { - "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.", + "driverName": { + "description": "DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in.", "type": "string" } }, "type": "object" }, - "io.k8s.api.rbac.v1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", - "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", - "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.rbac.v1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + "io.k8s.api.scheduling.v1.PriorityClass": { + "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "properties": { - "aggregationRule": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule", - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." - }, "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", + "description": { + "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" - }, - "type": "array" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1" - } - ] - }, - "io.k8s.api.rbac.v1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", - "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" + "globalDefault": { + "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", + "type": "boolean" }, "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", @@ -19066,43 +19317,41 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef", - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." + "preemptionPolicy": { + "description": "preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", + "type": "string" }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" - }, - "type": "array" + "value": { + "description": "value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", + "format": "int32", + "type": "integer" } }, "required": [ - "roleRef" + "value" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", + "group": "scheduling.k8s.io", + "kind": "PriorityClass", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", + "io.k8s.api.scheduling.v1.PriorityClassList": { + "description": "PriorityClassList is a collection of priority classes.", "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" }, "items": { - "description": "Items is a list of ClusterRoleBindings", + "description": "items is the list of PriorityClasses", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" + "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass" }, "type": "array" }, @@ -19112,7 +19361,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -19121,23 +19370,55 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", + "group": "scheduling.k8s.io", + "kind": "PriorityClassList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles", + "io.k8s.api.storage.v1.CSIDriver": { + "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "spec": { + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec", + "description": "spec represents the specification of the CSI Driver." + } + }, + "required": [ + "spec" + ], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSIDriverList": { + "description": "CSIDriverList is a collection of CSIDriver objects.", "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" }, "items": { - "description": "Items is a list of ClusterRoles", + "description": "items is the list of CSIDriver", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver" }, "type": "array" }, @@ -19147,7 +19428,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -19156,58 +19437,60 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", + "group": "storage.k8s.io", + "kind": "CSIDriverList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.storage.v1.CSIDriverSpec": { + "description": "CSIDriverSpec is the specification of a CSIDriver.", "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "items": { - "type": "string" - }, - "type": "array" + "attachRequired": { + "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", + "type": "boolean" }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "items": { - "type": "string" - }, - "type": "array" + "fsGroupPolicy": { + "description": "fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details.\n\nThis field is immutable.\n\nDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume. With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume's access mode contains ReadWriteOnce.", + "type": "string" }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "items": { - "type": "string" - }, - "type": "array" + "podInfoOnMount": { + "description": "podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false.\n\nThe CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext.\n\nThe following VolumeContext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field is immutable.", + "type": "boolean" }, - "resources": { - "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", + "requiresRepublish": { + "description": "requiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.", + "type": "boolean" + }, + "seLinuxMount": { + "description": "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes. Kubernetes will call NodeStage / NodePublish with \"-o context=xyz\" mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context. In the future, it may be expanded to other volume AccessModes. In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux context.\n\nWhen \"false\", Kubernetes won't pass any special SELinux mount options to the driver. This is typical for volumes that represent subdirectories of a bigger shared filesystem.\n\nDefault is \"false\".", + "type": "boolean" + }, + "storageCapacity": { + "description": "storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field was immutable in Kubernetes \u003c= 1.22 and now is mutable.", + "type": "boolean" + }, + "tokenRequests": { + "description": "tokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "atomic" }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", + "volumeLifecycleModes": { + "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.\n\nThis field is beta. This field is immutable.", "items": { "type": "string" }, - "type": "array" + "type": "array", + "x-kubernetes-list-type": "set" } }, - "required": [ - "verbs" - ], "type": "object" }, - "io.k8s.api.rbac.v1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + "io.k8s.api.storage.v1.CSINode": { + "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "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", @@ -19219,112 +19502,168 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." + "description": "Standard object's metadata. metadata.name must be the Kubernetes node name." }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" - }, - "type": "array" + "spec": { + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec", + "description": "spec is the specification of CSINode" } }, + "required": [ + "spec" + ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "Role", + "group": "storage.k8s.io", + "kind": "CSINode", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + "io.k8s.api.storage.v1.CSINodeDriver": { + "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", + "properties": { + "allocatable": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources", + "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta." + }, + "name": { + "description": "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", + "type": "string" + }, + "nodeID": { + "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", + "type": "string" + }, + "topologyKeys": { + "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "nodeID" + ], + "type": "object" + }, + "io.k8s.api.storage.v1.CSINodeList": { + "description": "CSINodeList is a collection of CSINode objects.", "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" }, + "items": { + "description": "items is the list of CSINode", + "items": { + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode" + }, + "type": "array" + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef", - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" - }, - "type": "array" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "roleRef" + "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", + "group": "storage.k8s.io", + "kind": "CSINodeList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings", + "io.k8s.api.storage.v1.CSINodeSpec": { + "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", + "properties": { + "drivers": { + "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", + "items": { + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "required": [ + "drivers" + ], + "type": "object" + }, + "io.k8s.api.storage.v1.CSIStorageCapacity": { + "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity. If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node.", "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" }, - "items": { - "description": "Items is a list of RoleBindings", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" - }, - "type": "array" + "capacity": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", + "description": "capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThe semantic is currently (CSI spec 1.2) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes. If not set, that information is currently unavailable." }, "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" }, + "maximumVolumeSize": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity", + "description": "maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis is defined since CSI spec 1.4.0 as the largest size that may be used in a CreateVolumeRequest.capacity_range.required_bytes field to create a volume with the same parameters as those in GetCapacityRequest. The corresponding value in the Kubernetes API is ResourceRequirements.Requests in a volume claim." + }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. The name has no particular meaning. It must be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-\u003cuuid\u003e, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects are namespaced.\n\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "nodeTopology": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "nodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable." + }, + "storageClassName": { + "description": "storageClassName represents the name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.", + "type": "string" } }, "required": [ - "items" + "storageClassName" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleList": { - "description": "RoleList is a collection of Roles", + "io.k8s.api.storage.v1.CSIStorageCapacityList": { + "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.", "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" }, "items": { - "description": "Items is a list of Roles", + "description": "items is the list of CSIStorageCapacity objects.", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIStorageCapacity" }, - "type": "array" + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" }, "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", @@ -19332,7 +19671,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -19341,195 +19680,89 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", + "group": "storage.k8s.io", + "kind": "CSIStorageCapacityList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", + "io.k8s.api.storage.v1.StorageClass": { + "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", + "allowVolumeExpansion": { + "description": "allowVolumeExpansion shows whether the storage class allow volume expand.", + "type": "boolean" + }, + "allowedTopologies": { + "description": "allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "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 the type of resource being referenced", - "type": "string" - }, - "name": { - "description": "Name is the name of resource being referenced", - "type": "string" - } - }, - "required": [ - "apiGroup", - "kind", - "name" - ], - "type": "object" - }, - "io.k8s.api.rbac.v1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", - "properties": { - "apiGroup": { - "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", - "type": "string" - }, - "kind": { - "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", - "type": "string" - }, - "name": { - "description": "Name of the object being referenced.", - "type": "string" - }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" - } - }, - "required": [ - "kind", - "name" - ], - "type": "object" - }, - "io.k8s.api.rbac.v1alpha1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", - "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", - "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.rbac.v1alpha1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.", - "properties": { - "aggregationRule": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule", - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." - }, - "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", + "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": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", + "mountOptions": { + "description": "mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class. e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" + "type": "string" }, "type": "array" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef", - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" + "parameters": { + "additionalProperties": { + "type": "string" }, - "type": "array" - } - }, - "required": [ - "roleRef" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.", - "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" + "description": "parameters holds the parameters for the provisioner that should create volumes of this storage class.", + "type": "object" }, - "items": { - "description": "Items is a list of ClusterRoleBindings", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" - }, - "type": "array" + "provisioner": { + "description": "provisioner indicates the type of the provisioner.", + "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", + "reclaimPolicy": { + "description": "reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class. Defaults to Delete.", "type": "string" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "volumeBindingMode": { + "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", + "type": "string" } }, "required": [ - "items" + "provisioner" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.StorageClassList": { + "description": "StorageClassList is a collection of storage classes.", "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" }, "items": { - "description": "Items is a list of ClusterRoles", + "description": "items is the list of StorageClasses", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" + "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" }, "type": "array" }, @@ -19539,7 +19772,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -19548,90 +19781,32 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "StorageClassList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.storage.v1.TokenRequest": { + "description": "TokenRequest contains parameters of a service account token.", "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "items": { - "type": "string" - }, - "type": "array" - }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "items": { - "type": "string" - }, - "type": "array" - }, - "resources": { - "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", - "items": { - "type": "string" - }, - "type": "array" + "audience": { + "description": "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", + "type": "string" }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", - "items": { - "type": "string" - }, - "type": "array" + "expirationSeconds": { + "description": "expirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".", + "format": "int64", + "type": "integer" } }, "required": [ - "verbs" + "audience" ], "type": "object" }, - "io.k8s.api.rbac.v1alpha1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" - }, - "type": "array" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "Role", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachment": { + "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "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", @@ -19643,43 +19818,40 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef", - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." + "spec": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec", + "description": "spec represents specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" - }, - "type": "array" + "status": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus", + "description": "status represents status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ - "roleRef" + "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachmentList": { + "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", "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" }, "items": { - "description": "Items is a list of RoleBindings", + "description": "items is the list of VolumeAttachments", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" }, "type": "array" }, @@ -19689,7 +19861,7 @@ }, "metadata": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -19698,2511 +19870,179 @@ "type": "object", "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "VolumeAttachmentList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.RoleList": { - "description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachmentSource": { + "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "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" - }, - "items": { - "description": "Items is a list of Roles", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", - "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", - "type": "string" - }, - "kind": { - "description": "Kind is the type of resource being referenced", - "type": "string" + "inlineVolumeSpec": { + "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec", + "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is beta-level and is only honored by servers that enabled the CSIMigration feature." }, - "name": { - "description": "Name is the name of resource being referenced", + "persistentVolumeName": { + "description": "persistentVolumeName represents the name of the persistent volume to attach.", "type": "string" } }, - "required": [ - "apiGroup", - "kind", - "name" - ], "type": "object" }, - "io.k8s.api.rbac.v1alpha1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + "io.k8s.api.storage.v1.VolumeAttachmentSpec": { + "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { - "apiVersion": { - "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", - "type": "string" - }, - "kind": { - "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + "attacher": { + "description": "attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, - "name": { - "description": "Name of the object being referenced.", + "nodeName": { + "description": "nodeName represents the node that the volume should be attached to.", "type": "string" }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" + "source": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource", + "description": "source represents the volume that should be attached." } }, "required": [ - "kind", - "name" + "attacher", + "source", + "nodeName" ], "type": "object" }, - "io.k8s.api.rbac.v1beta1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", - "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", - "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.rbac.v1beta1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.", - "properties": { - "aggregationRule": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule", - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" - }, - "type": "array" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef", - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject" - }, - "type": "array" - } - }, - "required": [ - "roleRef" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindingList, and will no longer be served in v1.22.", - "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" - }, - "items": { - "description": "Items is a list of ClusterRoleBindings", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.", - "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" - }, - "items": { - "description": "Items is a list of ClusterRoles", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.storage.v1.VolumeAttachmentStatus": { + "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "items": { - "type": "string" - }, - "type": "array" - }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "items": { - "type": "string" - }, - "type": "array" + "attachError": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError", + "description": "attachError represents the last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "items": { - "type": "string" - }, - "type": "array" + "attached": { + "description": "attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "boolean" }, - "resources": { - "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", - "items": { + "attachmentMetadata": { + "additionalProperties": { "type": "string" }, - "type": "array" + "description": "attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "object" }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", - "items": { - "type": "string" - }, - "type": "array" + "detachError": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError", + "description": "detachError represents the last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ - "verbs" - ], - "type": "object" - }, - "io.k8s.api.rbac.v1beta1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" - }, - "type": "array" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "Role", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata." - }, - "roleRef": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef", - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject" - }, - "type": "array" - } - }, - "required": [ - "roleRef" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.", - "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" - }, - "items": { - "description": "Items is a list of RoleBindings", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleList": { - "description": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.", - "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" - }, - "items": { - "description": "Items is a list of Roles", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard object's metadata." - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", - "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", - "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": [ - "apiGroup", - "kind", - "name" - ], - "type": "object" - }, - "io.k8s.api.rbac.v1beta1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", - "properties": { - "apiGroup": { - "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", - "type": "string" - }, - "kind": { - "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", - "type": "string" - }, - "name": { - "description": "Name of the object being referenced.", - "type": "string" - }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" - } - }, - "required": [ - "kind", - "name" - ], - "type": "object" - }, - "io.k8s.api.scheduling.v1.PriorityClass": { - "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "format": "int32", - "type": "integer" - } - }, - "required": [ - "value" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1" - } - ] - }, - "io.k8s.api.scheduling.v1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1" - } - ] - }, - "io.k8s.api.scheduling.v1alpha1.PriorityClass": { - "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "format": "int32", - "type": "integer" - } - }, - "required": [ - "value" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.scheduling.v1alpha1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.scheduling.v1beta1.PriorityClass": { - "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "format": "int32", - "type": "integer" - } - }, - "required": [ - "value" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.scheduling.v1beta1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriver": { - "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec", - "description": "Specification of the CSI Driver." - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriver", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriverList": { - "description": "CSIDriverList is a collection of CSIDriver objects.", - "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" - }, - "items": { - "description": "items is the list of CSIDriver", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriverList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriverSpec": { - "description": "CSIDriverSpec is the specification of a CSIDriver.", - "properties": { - "attachRequired": { - "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", - "type": "boolean" - }, - "fsGroupPolicy": { - "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.", - "type": "string" - }, - "podInfoOnMount": { - "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", - "type": "boolean" - }, - "requiresRepublish": { - "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "boolean" - }, - "storageCapacity": { - "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.", - "type": "boolean" - }, - "tokenRequests": { - "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - }, - "volumeLifecycleModes": { - "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. This field is beta.", - "items": { - "type": "string" - }, - "type": "array", - "x-kubernetes-list-type": "set" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1.CSINode": { - "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "metadata.name must be the Kubernetes node name." - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec", - "description": "spec is the specification of CSINode" - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINode", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSINodeDriver": { - "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", - "properties": { - "allocatable": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources", - "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta." - }, - "name": { - "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", - "type": "string" - }, - "nodeID": { - "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", - "type": "string" - }, - "topologyKeys": { - "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "name", - "nodeID" - ], - "type": "object" - }, - "io.k8s.api.storage.v1.CSINodeList": { - "description": "CSINodeList is a collection of CSINode objects.", - "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" - }, - "items": { - "description": "items is the list of CSINode", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINodeList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSINodeSpec": { - "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", - "properties": { - "drivers": { - "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver" - }, - "type": "array", - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" - } - }, - "required": [ - "drivers" - ], - "type": "object" - }, - "io.k8s.api.storage.v1.StorageClass": { - "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", - "properties": { - "allowVolumeExpansion": { - "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", - "type": "boolean" - }, - "allowedTopologies": { - "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "mountOptions": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", - "items": { - "type": "string" - }, - "type": "array" - }, - "parameters": { - "additionalProperties": { - "type": "string" - }, - "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", - "type": "object" - }, - "provisioner": { - "description": "Provisioner indicates the type of the provisioner.", - "type": "string" - }, - "reclaimPolicy": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", - "type": "string" - }, - "volumeBindingMode": { - "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "string" - } - }, - "required": [ - "provisioner" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClass", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.StorageClassList": { - "description": "StorageClassList is a collection of storage classes.", - "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" - }, - "items": { - "description": "Items is the list of StorageClasses", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClassList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.TokenRequest": { - "description": "TokenRequest contains parameters of a service account token.", - "properties": { - "audience": { - "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", - "type": "string" - }, - "expirationSeconds": { - "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "audience" - ], - "type": "object" - }, - "io.k8s.api.storage.v1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec", - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus", - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "properties": { - "inlineVolumeSpec": { - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec", - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource", - "description": "Source represents the volume that should be attached." - } - }, - "required": [ - "attacher", - "source", - "nodeName" - ], - "type": "object" - }, - "io.k8s.api.storage.v1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "properties": { - "attachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError", - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "additionalProperties": { - "type": "string" - }, - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object" - }, - "detachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError", - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." - } - }, - "required": [ - "attached" - ], - "type": "object" - }, - "io.k8s.api.storage.v1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Time the error was encountered." - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1.VolumeNodeResources": { - "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", - "properties": { - "count": { - "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec", - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus", - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "properties": { - "inlineVolumeSpec": { - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec", - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource", - "description": "Source represents the volume that should be attached." - } - }, - "required": [ - "attacher", - "source", - "nodeName" - ], - "type": "object" - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "properties": { - "attachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError", - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "additionalProperties": { - "type": "string" - }, - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object" - }, - "detachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError", - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." - } - }, - "required": [ - "attached" - ], - "type": "object" - }, - "io.k8s.api.storage.v1alpha1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Time the error was encountered." - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1beta1.CSIDriver": { - "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverSpec", - "description": "Specification of the CSI Driver." - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriver", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSIDriverList": { - "description": "CSIDriverList is a collection of CSIDriver objects.", - "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" - }, - "items": { - "description": "items is the list of CSIDriver", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriverList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSIDriverSpec": { - "description": "CSIDriverSpec is the specification of a CSIDriver.", - "properties": { - "attachRequired": { - "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", - "type": "boolean" - }, - "fsGroupPolicy": { - "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.", - "type": "string" - }, - "podInfoOnMount": { - "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", - "type": "boolean" - }, - "requiresRepublish": { - "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "boolean" - }, - "storageCapacity": { - "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.", - "type": "boolean" - }, - "tokenRequests": { - "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.TokenRequest" - }, - "type": "array", - "x-kubernetes-list-type": "atomic" - }, - "volumeLifecycleModes": { - "description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1beta1.CSINode": { - "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "metadata.name must be the Kubernetes node name." - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeSpec", - "description": "spec is the specification of CSINode" - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINode", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSINodeDriver": { - "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", - "properties": { - "allocatable": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeNodeResources", - "description": "allocatable represents the volume resources of a node that are available for scheduling." - }, - "name": { - "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", - "type": "string" - }, - "nodeID": { - "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", - "type": "string" - }, - "topologyKeys": { - "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "name", - "nodeID" - ], - "type": "object" - }, - "io.k8s.api.storage.v1beta1.CSINodeList": { - "description": "CSINodeList is a collection of CSINode objects.", - "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" - }, - "items": { - "description": "items is the list of CSINode", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINodeList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSINodeSpec": { - "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", - "properties": { - "drivers": { - "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeDriver" - }, - "type": "array", - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" - } - }, - "required": [ - "drivers" - ], - "type": "object" - }, - "io.k8s.api.storage.v1beta1.StorageClass": { - "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", - "properties": { - "allowVolumeExpansion": { - "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", - "type": "boolean" - }, - "allowedTopologies": { - "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "mountOptions": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", - "items": { - "type": "string" - }, - "type": "array" - }, - "parameters": { - "additionalProperties": { - "type": "string" - }, - "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", - "type": "object" - }, - "provisioner": { - "description": "Provisioner indicates the type of the provisioner.", - "type": "string" - }, - "reclaimPolicy": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", - "type": "string" - }, - "volumeBindingMode": { - "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "string" - } - }, - "required": [ - "provisioner" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClass", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.StorageClassList": { - "description": "StorageClassList is a collection of storage classes.", - "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" - }, - "items": { - "description": "Items is the list of StorageClasses", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClassList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.TokenRequest": { - "description": "TokenRequest contains parameters of a service account token.", - "properties": { - "audience": { - "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", - "type": "string" - }, - "expirationSeconds": { - "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\"", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "audience" - ], - "type": "object" - }, - "io.k8s.api.storage.v1beta1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - }, - "spec": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec", - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." - }, - "status": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus", - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "properties": { - "inlineVolumeSpec": { - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec", - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource", - "description": "Source represents the volume that should be attached." - } - }, - "required": [ - "attacher", - "source", - "nodeName" - ], - "type": "object" - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "properties": { - "attachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError", - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "additionalProperties": { - "type": "string" - }, - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object" - }, - "detachError": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError", - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." - } - }, - "required": [ - "attached" - ], - "type": "object" - }, - "io.k8s.api.storage.v1beta1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Time the error was encountered." - } - }, - "type": "object" - }, - "io.k8s.api.storage.v1beta1.VolumeNodeResources": { - "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", - "properties": { - "count": { - "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.", - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": { - "description": "CustomResourceColumnDefinition specifies a column for server side printing.", - "properties": { - "description": { - "description": "description is a human readable description of this column.", - "type": "string" - }, - "format": { - "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", - "type": "string" - }, - "jsonPath": { - "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", - "type": "string" - }, - "name": { - "description": "name is a human readable name for the column.", - "type": "string" - }, - "priority": { - "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", - "format": "int32", - "type": "integer" - }, - "type": { - "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", - "type": "string" - } - }, - "required": [ - "name", - "type", - "jsonPath" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": { - "description": "CustomResourceConversion describes how to convert different versions of a CR.", - "properties": { - "strategy": { - "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", - "type": "string" - }, - "webhook": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion", - "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`." - } - }, - "required": [ - "strategy" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { - "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e.", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec", - "description": "spec describes how the user wants the resources to appear" - }, - "status": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus", - "description": "status indicates the actual state of the CustomResourceDefinition" - } - }, - "required": [ - "spec" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apiextensions.k8s.io", - "kind": "CustomResourceDefinition", - "version": "v1" - } - ] - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": { - "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", - "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "lastTransitionTime last time the condition transitioned from one status to another." - }, - "message": { - "description": "message is a human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "status is the status of the condition. Can be True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.", - "type": "string" - } - }, - "required": [ - "type", - "status" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": { - "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", - "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" - }, - "items": { - "description": "items list individual CustomResourceDefinition objects", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apiextensions.k8s.io", - "kind": "CustomResourceDefinitionList", - "version": "v1" - } - ] - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": { - "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", - "properties": { - "categories": { - "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.", - "items": { - "type": "string" - }, - "type": "array" - }, - "kind": { - "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.", - "type": "string" - }, - "listKind": { - "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".", - "type": "string" - }, - "plural": { - "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/\u003cgroup\u003e/\u003cversion\u003e/.../\u003cplural\u003e`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`). Must be all lowercase.", - "type": "string" - }, - "shortNames": { - "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get \u003cshortname\u003e`. It must be all lowercase.", - "items": { - "type": "string" - }, - "type": "array" - }, - "singular": { - "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.", - "type": "string" - } - }, - "required": [ - "plural", - "kind" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": { - "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", - "properties": { - "conversion": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion", - "description": "conversion defines conversion settings for the CRD." - }, - "group": { - "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/\u003cgroup\u003e/...`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`).", - "type": "string" - }, - "names": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames", - "description": "names specify the resource and kind names for the custom resource." - }, - "preserveUnknownFields": { - "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", - "type": "boolean" - }, - "scope": { - "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", - "type": "string" - }, - "versions": { - "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion" - }, - "type": "array" - } - }, - "required": [ - "group", - "names", - "scope", - "versions" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": { - "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", - "properties": { - "acceptedNames": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames", - "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec." - }, - "conditions": { - "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition" - }, - "type": "array" - }, - "storedVersions": { - "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": { - "description": "CustomResourceDefinitionVersion describes a version for CRD.", - "properties": { - "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition" - }, - "type": "array" - }, - "deprecated": { - "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.", - "type": "boolean" - }, - "deprecationWarning": { - "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.", - "type": "string" - }, - "name": { - "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/\u003cgroup\u003e/\u003cversion\u003e/...` if `served` is true.", - "type": "string" - }, - "schema": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation", - "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource." - }, - "served": { - "description": "served is a flag enabling/disabling this version from being served via REST APIs", - "type": "boolean" - }, - "storage": { - "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", - "type": "boolean" - }, - "subresources": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources", - "description": "subresources specify what subresources this version of the defined custom resource have." - } - }, - "required": [ - "name", - "served", - "storage" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": { - "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", - "properties": { - "labelSelectorPath": { - "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", - "type": "string" - }, - "specReplicasPath": { - "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", - "type": "string" - }, - "statusReplicasPath": { - "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", - "type": "string" - } - }, - "required": [ - "specReplicasPath", - "statusReplicasPath" - ], - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": { - "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": { - "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", - "properties": { - "scale": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale", - "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." - }, - "status": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus", - "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": { - "description": "CustomResourceValidation is a list of validation methods for CustomResources.", - "properties": { - "openAPIV3Schema": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps", - "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": { - "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", - "properties": { - "description": { - "type": "string" - }, - "url": { - "type": "string" - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": { - "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": { - "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", - "properties": { - "$ref": { - "type": "string" - }, - "$schema": { - "type": "string" - }, - "additionalItems": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" - }, - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" - }, - "allOf": { - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "array" - }, - "anyOf": { - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "array" - }, - "default": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON", - "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false." - }, - "definitions": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "object" - }, - "dependencies": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray" - }, - "type": "object" - }, - "description": { - "type": "string" - }, - "enum": { - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" - }, - "type": "array" - }, - "example": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" - }, - "exclusiveMaximum": { - "type": "boolean" - }, - "exclusiveMinimum": { - "type": "boolean" - }, - "externalDocs": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation" - }, - "format": { - "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", - "type": "string" - }, - "id": { - "type": "string" - }, - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray" - }, - "maxItems": { - "format": "int64", - "type": "integer" - }, - "maxLength": { - "format": "int64", - "type": "integer" - }, - "maxProperties": { - "format": "int64", - "type": "integer" - }, - "maximum": { - "format": "double", - "type": "number" - }, - "minItems": { - "format": "int64", - "type": "integer" - }, - "minLength": { - "format": "int64", - "type": "integer" - }, - "minProperties": { - "format": "int64", - "type": "integer" - }, - "minimum": { - "format": "double", - "type": "number" - }, - "multipleOf": { - "format": "double", - "type": "number" - }, - "not": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "nullable": { - "type": "boolean" - }, - "oneOf": { - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "array" - }, - "pattern": { - "type": "string" - }, - "patternProperties": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "object" - }, - "properties": { - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "type": "object" - }, - "required": { - "items": { - "type": "string" - }, - "type": "array" - }, - "title": { - "type": "string" - }, - "type": { - "type": "string" - }, - "uniqueItems": { - "type": "boolean" - }, - "x-kubernetes-embedded-resource": { - "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", - "type": "boolean" - }, - "x-kubernetes-int-or-string": { - "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", - "type": "boolean" - }, - "x-kubernetes-list-map-keys": { - "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", - "items": { - "type": "string" - }, - "type": "array" - }, - "x-kubernetes-list-type": { - "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", - "type": "string" - }, - "x-kubernetes-map-type": { - "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", - "type": "string" - }, - "x-kubernetes-preserve-unknown-fields": { - "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", - "type": "boolean" - } - }, - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": { - "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": { - "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": { - "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", - "properties": { - "name": { - "description": "name is the name of the service. Required", - "type": "string" - }, - "namespace": { - "description": "namespace is the namespace of the service. Required", - "type": "string" - }, - "path": { - "description": "path is an optional URL path at which the webhook will be contacted.", + "attached" + ], + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeError": { + "description": "VolumeError captures an error encountered during a volume operation.", + "properties": { + "message": { + "description": "message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": "string" }, - "port": { - "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", + "time": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", + "description": "time represents the time the error was encountered." + } + }, + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeNodeResources": { + "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", + "properties": { + "count": { + "description": "count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", "format": "int32", "type": "integer" } }, - "required": [ - "namespace", - "name" - ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": { - "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", + "io.k8s.api.storage.v1alpha1.VolumeAttributesClass": { + "description": "VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.", "properties": { - "caBundle": { - "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", - "format": "byte", + "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" }, - "service": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference", - "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." + "driverName": { + "description": "Name of the CSI driver This field is immutable.", + "type": "string" }, - "url": { - "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" + }, + "parameters": { + "additionalProperties": { + "type": "string" + }, + "description": "parameters hold volume attributes defined by the CSI driver. These values are opaque to the Kubernetes and are passed directly to the CSI driver. The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable. To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClass.\n\nThis field is required and must contain at least one key/value pair. The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K. If the CSI driver rejects invalid parameters, the target PersistentVolumeClaim will be set to an \"Infeasible\" state in the modifyVolumeStatus field.", + "type": "object" } }, - "type": "object" + "required": [ + "driverName" + ], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttributesClass", + "version": "v1alpha1" + } + ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": { - "description": "WebhookConversion describes how to call a conversion webhook", + "io.k8s.api.storage.v1alpha1.VolumeAttributesClassList": { + "description": "VolumeAttributesClassList is a collection of VolumeAttributesClass objects.", "properties": { - "clientConfig": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig", - "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`." + "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" }, - "conversionReviewVersions": { - "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", + "items": { + "description": "items is the list of VolumeAttributesClass objects.", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttributesClass" }, "type": "array" + }, + "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": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ - "conversionReviewVersions" + "items" ], - "type": "object" + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttributesClassList", + "version": "v1alpha1" + } + ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "properties": { - "JSONPath": { - "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", - "type": "string" - }, "description": { "description": "description is a human readable description of this column.", "type": "string" @@ -22211,6 +20051,10 @@ "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, + "jsonPath": { + "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", + "type": "string" + }, "name": { "description": "name is a human readable name for the column.", "type": "string" @@ -22228,27 +20072,20 @@ "required": [ "name", "type", - "JSONPath" + "jsonPath" ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": { "description": "CustomResourceConversion describes how to convert different versions of a CR.", "properties": { - "conversionReviewVersions": { - "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.", - "items": { - "type": "string" - }, - "type": "array" - }, "strategy": { - "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.", + "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `\"None\"`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `\"Webhook\"`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", "type": "string" }, - "webhookClientConfig": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig", - "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`." + "webhook": { + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion", + "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `\"Webhook\"`." } }, "required": [ @@ -22256,8 +20093,8 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": { - "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e. Deprecated in v1.16, planned for removal in v1.22. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.", + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { + "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e.", "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", @@ -22268,14 +20105,15 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec", "description": "spec describes how the user wants the resources to appear" }, "status": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus", "description": "status indicates the actual state of the CustomResourceDefinition" } }, @@ -22287,11 +20125,11 @@ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinition", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": { "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", "properties": { "lastTransitionTime": { @@ -22321,7 +20159,7 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": { "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", "properties": { "apiVersion": { @@ -22331,7 +20169,7 @@ "items": { "description": "items list individual CustomResourceDefinition objects", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" }, "type": "array" }, @@ -22340,7 +20178,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -22351,11 +20190,11 @@ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinitionList", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": { "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", "properties": { "categories": { @@ -22395,18 +20234,11 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": { "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", "properties": { - "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" - }, - "type": "array" - }, "conversion": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion", "description": "conversion defines conversion settings for the CRD." }, "group": { @@ -22414,33 +20246,21 @@ "type": "string" }, "names": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames", "description": "names specify the resource and kind names for the custom resource." }, "preserveUnknownFields": { - "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", + "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.", "type": "boolean" }, "scope": { - "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.", - "type": "string" - }, - "subresources": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources", - "description": "subresources specify what subresources the defined custom resource has. If present, this field configures subresources for all versions. Top-level and per-version subresources are mutually exclusive." - }, - "validation": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation", - "description": "validation describes the schema used for validation and pruning of the custom resource. If present, this validation schema is used to validate all versions. Top-level and per-version schemas are mutually exclusive." - }, - "version": { - "description": "version is the API version of the defined custom resource. The custom resources are served under `/apis/\u003cgroup\u003e/\u003cversion\u003e/...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead.", + "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", "type": "string" }, "versions": { - "description": "versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", + "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion" }, "type": "array" } @@ -22448,23 +20268,28 @@ "required": [ "group", "names", - "scope" + "scope", + "versions" ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": { "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", "properties": { "acceptedNames": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames", "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec." }, "conditions": { "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition" }, - "type": "array" + "type": "array", + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, "storedVersions": { "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", @@ -22476,13 +20301,13 @@ }, "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": { "description": "CustomResourceDefinitionVersion describes a version for CRD.", "properties": { "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", + "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition" }, "type": "array" }, @@ -22499,8 +20324,8 @@ "type": "string" }, "schema": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation", - "description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)." + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation", + "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource." }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", @@ -22511,8 +20336,8 @@ "type": "boolean" }, "subresources": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources", - "description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead)." + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources", + "description": "subresources specify what subresources this version of the defined custom resource have." } }, "required": [ @@ -22522,7 +20347,7 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { @@ -22544,35 +20369,35 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { @@ -22584,10 +20409,10 @@ }, "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { @@ -22597,36 +20422,36 @@ "type": "string" }, "additionalItems": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" }, "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" }, "allOf": { "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "array" }, "default": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON", - "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API." + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON", + "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false." }, "definitions": { "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray" }, "type": "object" }, @@ -22635,12 +20460,12 @@ }, "enum": { "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" }, "type": "array" }, "example": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" }, "exclusiveMaximum": { "type": "boolean" @@ -22649,7 +20474,7 @@ "type": "boolean" }, "externalDocs": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", @@ -22659,7 +20484,7 @@ "type": "string" }, "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray" }, "maxItems": { "format": "int64", @@ -22698,14 +20523,14 @@ "type": "number" }, "not": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "array" }, @@ -22714,13 +20539,13 @@ }, "patternProperties": { "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "type": "object" }, @@ -22765,20 +20590,33 @@ "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" + }, + "x-kubernetes-validations": { + "description": "x-kubernetes-validations describes a list of validation rules written in the CEL expression language. This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.", + "items": { + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "rule" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "rule", + "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { @@ -22805,7 +20643,40 @@ ], "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule": { + "description": "ValidationRule describes a validation rule written in the CEL expression language.", + "properties": { + "fieldPath": { + "description": "fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo` If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList` It does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info. Numeric index of array is not supported. For field name which contains special characters, use `['specialName']` to refer the field name. e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`", + "type": "string" + }, + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\"", + "type": "string" + }, + "messageExpression": { + "description": "MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: \"x must be less than max (\"+string(self.max)+\")\"", + "type": "string" + }, + "optionalOldSelf": { + "description": "optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value.\n\nWhen enabled `oldSelf` will be a CEL optional whose value will be `None` if there is no old value, or when the object is initially created.\n\nYou may check for presence of oldSelf using `oldSelf.hasValue()` and unwrap it after checking using `oldSelf.value()`. Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes\n\nMay not be set unless `oldSelf` is used in `rule`.", + "type": "boolean" + }, + "reason": { + "description": "reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: \"FieldValueInvalid\", \"FieldValueForbidden\", \"FieldValueRequired\", \"FieldValueDuplicate\". If not set, default to use \"FieldValueInvalid\". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.", + "type": "string" + }, + "rule": { + "description": "Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {\"rule\": \"self.status.actual \u003c= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is bound to the scalar value. Examples: - Rule scoped to a map of objects: {\"rule\": \"self.components['Widget'].priority \u003c 10\"} - Rule scoped to a list of integers: {\"rule\": \"self.values.all(value, value \u003e= 0 \u0026\u0026 value \u003c 100)\"} - Rule scoped to a string value: {\"rule\": \"self.startsWith('kube')\"}\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.\n\nUnknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an \"unknown type\". An \"unknown type\" is recursively defined as:\n - A schema with no type and x-kubernetes-preserve-unknown-fields set to true\n - An array where the items schema is of an \"unknown type\"\n - An object where the additionalProperties schema is of an \"unknown type\"\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Rule accessing a property named \"namespace\": {\"rule\": \"self.__namespace__ \u003e 0\"}\n - Rule accessing a property named \"x-prop\": {\"rule\": \"self.x__dash__prop \u003e 0\"}\n - Rule accessing a property named \"redact__d\": {\"rule\": \"self.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\n\nIf `rule` makes use of the `oldSelf` variable it is implicitly a `transition rule`.\n\nBy default, the `oldSelf` variable is the same type as `self`. When `optionalOldSelf` is true, the `oldSelf` variable is a CEL optional\n variable whose value() is the same type as `self`.\nSee the documentation for the `optionalOldSelf` field for details.\n\nTransition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting `optionalOldSelf` to true.", + "type": "string" + } + }, + "required": [ + "rule" + ], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", "properties": { "caBundle": { @@ -22814,7 +20685,7 @@ "type": "string" }, "service": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference", "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { @@ -22824,8 +20695,28 @@ }, "type": "object" }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": { + "description": "WebhookConversion describes how to call a conversion webhook", + "properties": { + "clientConfig": { + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig", + "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`." + }, + "conversionReviewVersions": { + "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "conversionReviewVersions" + ], + "type": "object" + }, "io.k8s.apimachinery.pkg.api.resource.Quantity": { - "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n\u003cquantity\u003e ::= \u003csignedNumber\u003e\u003csuffix\u003e\n (Note that \u003csuffix\u003e may be empty, from the \"\" case in \u003cdecimalSI\u003e.)\n\u003cdigit\u003e ::= 0 | 1 | ... | 9 \u003cdigits\u003e ::= \u003cdigit\u003e | \u003cdigit\u003e\u003cdigits\u003e \u003cnumber\u003e ::= \u003cdigits\u003e | \u003cdigits\u003e.\u003cdigits\u003e | \u003cdigits\u003e. | .\u003cdigits\u003e \u003csign\u003e ::= \"+\" | \"-\" \u003csignedNumber\u003e ::= \u003cnumber\u003e | \u003csign\u003e\u003cnumber\u003e \u003csuffix\u003e ::= \u003cbinarySI\u003e | \u003cdecimalExponent\u003e | \u003cdecimalSI\u003e \u003cbinarySI\u003e ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\u003cdecimalSI\u003e ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\u003cdecimalExponent\u003e ::= \"e\" \u003csignedNumber\u003e | \"E\" \u003csignedNumber\u003e\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n a. No precision is lost\n b. No fractional digits will be emitted\n c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n 1.5 will be serialized as \"1500m\"\n 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` \u003cquantity\u003e ::= \u003csignedNumber\u003e\u003csuffix\u003e\n\n\t(Note that \u003csuffix\u003e may be empty, from the \"\" case in \u003cdecimalSI\u003e.)\n\n\u003cdigit\u003e ::= 0 | 1 | ... | 9 \u003cdigits\u003e ::= \u003cdigit\u003e | \u003cdigit\u003e\u003cdigits\u003e \u003cnumber\u003e ::= \u003cdigits\u003e | \u003cdigits\u003e.\u003cdigits\u003e | \u003cdigits\u003e. | .\u003cdigits\u003e \u003csign\u003e ::= \"+\" | \"-\" \u003csignedNumber\u003e ::= \u003cnumber\u003e | \u003csign\u003e\u003cnumber\u003e \u003csuffix\u003e ::= \u003cbinarySI\u003e | \u003cdecimalExponent\u003e | \u003cdecimalSI\u003e \u003cbinarySI\u003e ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n\u003cdecimalSI\u003e ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n\u003cdecimalExponent\u003e ::= \"e\" \u003csignedNumber\u003e | \"E\" \u003csignedNumber\u003e ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", "type": "string" }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": { @@ -23139,6 +21030,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "admissionregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", @@ -23184,6 +21080,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "authentication.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", @@ -23204,6 +21105,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v2" + }, { "group": "autoscaling", "kind": "DeleteOptions", @@ -23225,14 +21131,14 @@ "version": "v1beta1" }, { - "group": "batch", + "group": "certificates.k8s.io", "kind": "DeleteOptions", - "version": "v2alpha1" + "version": "v1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", - "version": "v1" + "version": "v1alpha1" }, { "group": "certificates.k8s.io", @@ -23252,7 +21158,7 @@ { "group": "discovery.k8s.io", "kind": "DeleteOptions", - "version": "v1alpha1" + "version": "v1" }, { "group": "discovery.k8s.io", @@ -23277,13 +21183,23 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", - "version": "v1alpha1" + "version": "v1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta3" + }, { "group": "imagepolicy.k8s.io", "kind": "DeleteOptions", @@ -23299,6 +21215,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "networking.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "networking.k8s.io", "kind": "DeleteOptions", @@ -23319,6 +21240,11 @@ "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "policy", + "kind": "DeleteOptions", + "version": "v1" + }, { "group": "policy", "kind": "DeleteOptions", @@ -23339,6 +21265,11 @@ "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "resource.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha2" + }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", @@ -23419,9 +21350,7 @@ "properties": { "key": { "description": "key is the label key that the selector applies to.", - "type": "string", - "x-kubernetes-patch-merge-key": "key", - "x-kubernetes-patch-strategy": "merge" + "type": "string" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", @@ -23458,7 +21387,7 @@ "type": "string" }, "selfLink": { - "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" } }, @@ -23487,9 +21416,13 @@ "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, + "subresource": { + "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.", + "type": "string" + }, "time": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" + "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over." } }, "type": "object" @@ -23506,13 +21439,9 @@ "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations", "type": "object" }, - "clusterName": { - "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", - "type": "string" - }, "creationTimestamp": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" @@ -23535,7 +21464,7 @@ "x-kubernetes-patch-strategy": "merge" }, "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\nIf 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\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", + "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\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { @@ -23547,7 +21476,7 @@ "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels", "type": "object" }, "managedFields": { @@ -23558,11 +21487,11 @@ "type": "array" }, "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", + "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#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\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", + "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\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces", "type": "string" }, "ownerReferences": { @@ -23579,11 +21508,11 @@ "type": "string" }, "selfLink": { - "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" }, "uid": { - "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", "type": "string" } }, @@ -23597,7 +21526,7 @@ "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. 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": { @@ -23609,11 +21538,11 @@ "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" } }, @@ -23623,7 +21552,8 @@ "name", "uid" ], - "type": "object" + "type": "object", + "x-kubernetes-map-type": "atomic" }, "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", @@ -23704,6 +21634,11 @@ "group": "", "kind": "Status", "version": "v1" + }, + { + "group": "resource.k8s.io", + "kind": "Status", + "version": "v1alpha2" } ] }, @@ -23753,7 +21688,7 @@ "type": "integer" }, "uid": { - "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + "description": "UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", "type": "string" } }, @@ -23801,6 +21736,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "admissionregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", @@ -23846,6 +21786,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "authentication.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "WatchEvent", @@ -23866,6 +21811,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v2" + }, { "group": "autoscaling", "kind": "WatchEvent", @@ -23887,14 +21837,14 @@ "version": "v1beta1" }, { - "group": "batch", + "group": "certificates.k8s.io", "kind": "WatchEvent", - "version": "v2alpha1" + "version": "v1" }, { "group": "certificates.k8s.io", "kind": "WatchEvent", - "version": "v1" + "version": "v1alpha1" }, { "group": "certificates.k8s.io", @@ -23914,7 +21864,7 @@ { "group": "discovery.k8s.io", "kind": "WatchEvent", - "version": "v1alpha1" + "version": "v1" }, { "group": "discovery.k8s.io", @@ -23939,13 +21889,23 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", - "version": "v1alpha1" + "version": "v1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta3" + }, { "group": "imagepolicy.k8s.io", "kind": "WatchEvent", @@ -23961,6 +21921,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "networking.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "networking.k8s.io", "kind": "WatchEvent", @@ -23981,6 +21946,11 @@ "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "policy", + "kind": "WatchEvent", + "version": "v1" + }, { "group": "policy", "kind": "WatchEvent", @@ -24001,6 +21971,11 @@ "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "resource.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha2" + }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", @@ -24034,7 +22009,7 @@ ] }, "io.k8s.apimachinery.pkg.runtime.RawExtension": { - "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", + "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", "type": "object" }, "io.k8s.apimachinery.pkg.util.intstr.IntOrString": { @@ -24101,7 +22076,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec", @@ -24159,6 +22135,7 @@ "type": "string" }, "items": { + "description": "Items is the list of APIService", "items": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" }, @@ -24169,7 +22146,8 @@ "type": "string" }, "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ @@ -24198,7 +22176,7 @@ "type": "string" }, "groupPriorityMinimum": { - "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", + "description": "GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "format": "int32", "type": "integer" }, @@ -24263,181 +22241,6 @@ } }, "type": "object" - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService": { - "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec", - "description": "Spec contains information for locating and communicating with a server" - }, - "status": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus", - "description": "Status contains derived information about an API server" - } - }, - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apiregistration.k8s.io", - "kind": "APIService", - "version": "v1beta1" - } - ] - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition": { - "description": "APIServiceCondition describes the state of an APIService at a particular point", - "properties": { - "lastTransitionTime": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", - "description": "Last time the condition transitioned from one status to another." - }, - "message": { - "description": "Human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "Unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status is the status of the condition. Can be True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "Type is the type of the condition.", - "type": "string" - } - }, - "required": [ - "type", - "status" - ], - "type": "object" - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList": { - "description": "APIServiceList is a list of APIService objects.", - "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" - }, - "items": { - "items": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" - }, - "type": "array" - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "required": [ - "items" - ], - "type": "object", - "x-kubernetes-group-version-kind": [ - { - "group": "apiregistration.k8s.io", - "kind": "APIServiceList", - "version": "v1beta1" - } - ] - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec": { - "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", - "properties": { - "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", - "format": "byte", - "type": "string", - "x-kubernetes-list-type": "atomic" - }, - "group": { - "description": "Group is the API group name this server hosts", - "type": "string" - }, - "groupPriorityMinimum": { - "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", - "format": "int32", - "type": "integer" - }, - "insecureSkipTLSVerify": { - "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", - "type": "boolean" - }, - "service": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference", - "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled." - }, - "version": { - "description": "Version is the API version this server hosts. For example, \"v1\"", - "type": "string" - }, - "versionPriority": { - "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", - "format": "int32", - "type": "integer" - } - }, - "required": [ - "groupPriorityMinimum", - "versionPriority" - ], - "type": "object" - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": { - "description": "APIServiceStatus contains derived information about an API server", - "properties": { - "conditions": { - "description": "Current service state of apiService.", - "items": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition" - }, - "type": "array", - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" - } - }, - "type": "object" - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", - "properties": { - "name": { - "description": "Name is the name of the service", - "type": "string" - }, - "namespace": { - "description": "Namespace is the namespace of the service", - "type": "string" - }, - "port": { - "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", - "format": "int32", - "type": "integer" - } - }, - "type": "object" } }, "oneOf": [ diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 2379acad8c..cb8cdbed52 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -4679,6 +4679,24 @@ } } }, + "io.k8s.api.admissionregistration.v1.MatchCondition": { + "description": "MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.", + "type": "object", + "required": [ + "name", + "expression" + ], + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", + "type": "string" + }, + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + } + }, "io.k8s.api.admissionregistration.v1.MutatingWebhook": { "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", "type": "object", @@ -4704,6 +4722,19 @@ "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" @@ -4732,7 +4763,7 @@ } }, "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { @@ -4820,28 +4851,32 @@ "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", @@ -4901,6 +4936,19 @@ "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" @@ -4925,7 +4973,7 @@ } }, "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { @@ -5023,138 +5071,96 @@ } } }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhook": { - "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", + "io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", "type": "object", "required": [ - "name", - "clientConfig" + "key", + "valueExpression" ], "properties": { - "admissionReviewVersions": { - "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", - "type": "array", - "items": { - "type": "string" - } - }, - "clientConfig": { - "description": "ClientConfig defines how to communicate with the hook. Required", - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig" - }, - "failurePolicy": { - "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", - "type": "string" - }, - "matchPolicy": { - "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", - "type": "string" - }, - "name": { - "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", - "type": "string" - }, - "namespaceSelector": { - "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "objectSelector": { - "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "reinvocationPolicy": { - "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", "type": "string" }, - "rules": { - "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations" - } - }, - "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", "type": "string" - }, - "timeoutSeconds": { - "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", - "type": "integer", - "format": "int32" } } }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration": { - "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration instead.", + "io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", "type": "object", + "required": [ + "fieldRef", + "warning" + ], "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", + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", "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", + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", "type": "string" - }, - "metadata": { - "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "webhooks": { - "description": "Webhooks is a list of webhooks and the affected resources and operations.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhook" - }, - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "admissionregistration.k8s.io", - "kind": "MutatingWebhookConfiguration", - "version": "v1beta1" } - ] + } }, - "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList": { - "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.", + "io.k8s.api.admissionregistration.v1alpha1.MatchCondition": { "type": "object", "required": [ - "items" + "name", + "expression" ], "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", "type": "string" }, - "items": { - "description": "List of MutatingWebhookConfiguration.", + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + } + }, + "io.k8s.api.admissionregistration.v1alpha1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "type": "object", + "properties": { + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" - } + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" + }, + "x-kubernetes-list-type": "atomic" }, - "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", + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", "type": "string" }, - "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "namespaceSelector": { + "description": "NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the policy.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the policy on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "objectSelector": { + "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" + }, + "x-kubernetes-list-type": "atomic" } }, - "x-kubernetes-group-version-kind": [ - { - "group": "admissionregistration.k8s.io", - "kind": "MutatingWebhookConfigurationList", - "version": "v1beta1" - } - ] + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.RuleWithOperations": { - "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", + "io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", "type": "object", "properties": { "apiGroups": { @@ -5162,121 +5168,102 @@ "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "type": "array", "items": { "type": "string" - } + }, + "x-kubernetes-list-type": "atomic" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "io.k8s.api.admissionregistration.v1alpha1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", "type": "object", - "required": [ - "namespace", - "name" - ], "properties": { - "name": { - "description": "`name` is the name of the service. Required", - "type": "string" - }, - "namespace": { - "description": "`namespace` is the namespace of the service. Required", + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", "type": "string" }, - "path": { - "description": "`path` is an optional URL path which will be sent in any request to this service.", + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", "type": "string" - }, - "port": { - "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", - "type": "integer", - "format": "int32" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook": { - "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.", + "io.k8s.api.admissionregistration.v1alpha1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", "type": "object", - "required": [ - "name", - "clientConfig" - ], "properties": { - "admissionReviewVersions": { - "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", - "type": "array", - "items": { - "type": "string" - } - }, - "clientConfig": { - "description": "ClientConfig defines how to communicate with the hook. Required", - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig" - }, - "failurePolicy": { - "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", + "name": { + "description": "`name` is the name of the resource being referenced.\n\n`name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.", "type": "string" }, - "matchPolicy": { - "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", "type": "string" }, - "name": { - "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny` Default to `Deny`", "type": "string" }, - "namespaceSelector": { - "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "objectSelector": { - "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything.", + "selector": { + "description": "selector can be used to match multiple param objects based on their labels. Supply selector: {} to match all resources of the ParamKind.\n\nIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed together.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "rules": { - "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", + } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", + "type": "object", + "properties": { + "expressionWarnings": { + "description": "The type checking warnings for each expression.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations" - } - }, - "sideEffects": { - "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", - "type": "string" - }, - "timeoutSeconds": { - "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", - "type": "integer", - "format": "int32" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration": { - "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", "type": "object", "properties": { "apiVersion": { @@ -5291,188 +5278,123 @@ "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "webhooks": { - "description": "Webhooks is a list of webhooks and the affected resources and operations.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook" - }, - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" + "spec": { + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicy.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec" + }, + "status": { + "description": "The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way. Populated by the system. Read-only.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", - "kind": "ValidatingWebhookConfiguration", - "version": "v1beta1" + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" } ] }, - "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList": { - "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", "type": "object", - "required": [ - "items" - ], "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" }, - "items": { - "description": "List of ValidatingWebhookConfiguration.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" - } - }, "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": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicyBinding.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec" } }, "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", - "kind": "ValidatingWebhookConfigurationList", - "version": "v1beta1" + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" } ] }, - "io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig": { - "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", - "type": "object", - "properties": { - "caBundle": { - "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", - "type": "string", - "format": "byte" - }, - "service": { - "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.", - "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ServiceReference" - }, - "url": { - "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", - "type": "string" - } - } - }, - "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": { - "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", "type": "object", "properties": { - "apiServerID": { - "description": "The ID of the reporting API server.", + "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" }, - "decodableVersions": { - "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.", + "items": { + "description": "List of PolicyBinding.", "type": "array", "items": { - "type": "string" - }, - "x-kubernetes-list-type": "set" - }, - "encodingVersion": { - "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).", - "type": "string" - } - } - }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { - "description": "\n Storage version of a specific resource.", - "type": "object", - "required": [ - "spec", - "status" - ], - "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" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } }, "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": { - "description": "The name is \u003cgroup\u003e.\u003cresource\u003e.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec is an empty spec. It is here to comply with Kubernetes API style.", - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec" - }, - "status": { - "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend.", - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "internal.apiserver.k8s.io", - "kind": "StorageVersion", + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", "version": "v1alpha1" } ] }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": { - "description": "Describes the state of the storageVersion at a certain point.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", "type": "object", - "required": [ - "type", - "status", - "reason" - ], "properties": { - "lastTransitionTime": { - "description": "Last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "A human readable message indicating details about the transition.", - "type": "string" - }, - "observedGeneration": { - "description": "If set, this represents the .metadata.generation that the condition was set based upon.", - "type": "integer", - "format": "int64" + "matchResources": { + "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated. Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchResources" }, - "reason": { - "description": "The reason for the condition's last transition.", - "type": "string" + "paramRef": { + "description": "paramRef specifies the parameter resource used to configure the admission control policy. It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy. If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied. If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ParamRef" }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", "type": "string" }, - "type": { - "description": "Type of the condition.", - "type": "string" + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": { - "description": "A list of StorageVersions.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", "type": "object", - "required": [ - "items" - ], "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" }, "items": { + "description": "List of ValidatingAdmissionPolicy.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" } }, "kind": { @@ -5480,337 +5402,341 @@ "type": "string" }, "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "internal.apiserver.k8s.io", - "kind": "StorageVersionList", + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", "version": "v1alpha1" } ] }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": { - "description": "StorageVersionSpec is an empty spec.", - "type": "object" - }, - "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": { - "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.", + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", "type": "object", "properties": { - "commonEncodingVersion": { - "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.", + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation" + }, + "x-kubernetes-list-type": "atomic" + }, + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, - "conditions": { - "description": "The latest available observations of the storageVersion's state.", + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchCondition" }, "x-kubernetes-list-map-keys": [ - "type" + "name" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" }, - "storageVersions": { - "description": "The reported versions per API server instance.", + "matchConstraints": { + "description": "MatchConstraints specifies what resources this policy is designed to validate. The AdmissionPolicy cares about a request if it matches _all_ Constraints. However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding. Required.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.MatchResources" + }, + "paramKind": { + "description": "ParamKind specifies the kind of resources used to parameterize this policy. If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions. If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied. If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.ParamKind" + }, + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Validation" + }, + "x-kubernetes-list-type": "atomic" + }, + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Variable" }, "x-kubernetes-list-map-keys": [ - "apiServerID" + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + } + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy.", + "type": "object", + "properties": { + "conditions": { + "description": "The conditions represent the latest available observations of a policy's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "x-kubernetes-list-map-keys": [ + "type" ], "x-kubernetes-list-type": "map" + }, + "observedGeneration": { + "description": "The generation observed by the controller.", + "type": "integer", + "format": "int64" + }, + "typeChecking": { + "description": "The results of type checking for each expression. Presence of this field indicates the completion of the type checking.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.TypeChecking" } } }, - "io.k8s.api.apps.v1.ControllerRevision": { - "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + "io.k8s.api.admissionregistration.v1alpha1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", "type": "object", "required": [ - "revision" + "expression" ], "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ \u003e 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop \u003e 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", "type": "string" }, - "data": { - "description": "Data is the serialized representation of the state.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" - }, - "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", + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", "type": "string" }, - "metadata": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" }, - "revision": { - "description": "Revision indicates the revision of the state represented by Data.", - "type": "integer", - "format": "int64" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "ControllerRevision", - "version": "v1" + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" } - ] + } }, - "io.k8s.api.apps.v1.ControllerRevisionList": { - "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", + "io.k8s.api.admissionregistration.v1alpha1.Variable": { + "description": "Variable is the definition of a variable that is used for composition.", "type": "object", "required": [ - "items" + "name", + "expression" ], "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", + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", "type": "string" }, - "items": { - "description": "Items is the list of ControllerRevisions", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" - } - }, - "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", + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", "type": "string" - }, - "metadata": { - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "ControllerRevisionList", - "version": "v1" } - ] + } }, - "io.k8s.api.apps.v1.DaemonSet": { - "description": "DaemonSet represents the configuration of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", "type": "object", + "required": [ + "key", + "valueExpression" + ], "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", + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", "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", + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", "type": "string" - }, - "metadata": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec" - }, - "status": { - "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "DaemonSet", - "version": "v1" } - ] + } }, - "io.k8s.api.apps.v1.DaemonSetCondition": { - "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", + "io.k8s.api.admissionregistration.v1beta1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", "type": "object", "required": [ - "type", - "status" + "fieldRef", + "warning" ], "properties": { - "lastTransitionTime": { - "description": "Last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "A human readable message indicating details about the transition.", - "type": "string" - }, - "reason": { - "description": "The reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", "type": "string" }, - "type": { - "description": "Type of DaemonSet condition.", + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", "type": "string" } } }, - "io.k8s.api.apps.v1.DaemonSetList": { - "description": "DaemonSetList is a collection of daemon sets.", + "io.k8s.api.admissionregistration.v1beta1.MatchCondition": { + "description": "MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.", "type": "object", "required": [ - "items" + "name", + "expression" ], "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", + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", "type": "string" }, - "items": { - "description": "A list of daemon sets.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" - } - }, - "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", + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", "type": "string" - }, - "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apps", - "kind": "DaemonSetList", - "version": "v1" } - ] + } }, - "io.k8s.api.apps.v1.DaemonSetSpec": { - "description": "DaemonSetSpec is the specification of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", "type": "object", - "required": [ - "selector", - "template" - ], "properties": { - "minReadySeconds": { - "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", - "type": "integer", - "format": "int32" + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "x-kubernetes-list-type": "atomic" }, - "revisionHistoryLimit": { - "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", - "type": "integer", - "format": "int32" + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", + "type": "string" }, - "selector": { - "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "namespaceSelector": { + "description": "NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the policy.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the policy on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, - "template": { - "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" + "objectSelector": { + "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, - "updateStrategy": { - "description": "An update strategy to replace existing DaemonSet pods with new pods.", - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy" + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "x-kubernetes-list-type": "atomic" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.apps.v1.DaemonSetStatus": { - "description": "DaemonSetStatus represents the current status of a daemon set.", + "io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", "type": "object", - "required": [ - "currentNumberScheduled", - "numberMisscheduled", - "desiredNumberScheduled", - "numberReady" - ], "properties": { - "collisionCount": { - "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", - "type": "integer", - "format": "int32" + "apiGroups": { + "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, - "conditions": { - "description": "Represents the latest available observations of a DaemonSet's current state.", + "apiVersions": { + "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition" + "type": "string" }, - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-type": "atomic" }, - "currentNumberScheduled": { - "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "type": "integer", - "format": "int32" + "operations": { + "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, - "desiredNumberScheduled": { - "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "type": "integer", - "format": "int32" + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, - "numberAvailable": { - "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", - "type": "integer", - "format": "int32" + "resources": { + "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, - "numberMisscheduled": { - "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", - "type": "integer", - "format": "int32" + "scope": { + "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", + "type": "string" + } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", + "type": "object", + "properties": { + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", + "type": "string" }, - "numberReady": { - "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", - "type": "integer", - "format": "int32" + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", + "type": "string" + } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", + "type": "object", + "properties": { + "name": { + "description": "name is the name of the resource being referenced.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.\n\nA single parameter used for all admission requests can be configured by setting the `name` field, leaving `selector` blank, and setting namespace if `paramKind` is namespace-scoped.", + "type": "string" }, - "numberUnavailable": { - "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", - "type": "integer", - "format": "int32" + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", + "type": "string" }, - "observedGeneration": { - "description": "The most recent generation observed by the daemon set controller.", - "type": "integer", - "format": "int64" + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny`\n\nRequired", + "type": "string" }, - "updatedNumberScheduled": { - "description": "The total number of nodes that are running updated daemon pod", - "type": "integer", - "format": "int32" + "selector": { + "description": "selector can be used to match multiple param objects based on their labels. Supply selector: {} to match all resources of the ParamKind.\n\nIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed together.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { - "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", + "io.k8s.api.admissionregistration.v1beta1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", "type": "object", "properties": { - "rollingUpdate": { - "description": "Rolling update config params. Present only if type = \"RollingUpdate\".", - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet" - }, - "type": { - "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", - "type": "string" + "expressionWarnings": { + "description": "The type checking warnings for each expression.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ExpressionWarning" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.apps.v1.Deployment": { - "description": "Deployment enables declarative updates for Pods and ReplicaSets.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", "type": "object", "properties": { "apiVersion": { @@ -5822,76 +5748,126 @@ "type": "string" }, "metadata": { - "description": "Standard object metadata.", + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the desired behavior of the Deployment.", - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec" + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicy.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec" }, "status": { - "description": "Most recently observed status of the Deployment.", - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus" + "description": "The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way. Populated by the system. Read-only.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "Deployment", - "version": "v1" + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" } ] }, - "io.k8s.api.apps.v1.DeploymentCondition": { - "description": "DeploymentCondition describes the state of a deployment at a certain point.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", "type": "object", - "required": [ - "type", - "status" - ], "properties": { - "lastTransitionTime": { - "description": "Last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + "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" }, - "lastUpdateTime": { - "description": "The last time this condition was updated.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "A human readable message indicating details about the transition.", + "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" }, - "reason": { - "description": "The reason for the condition's last transition.", + "metadata": { + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Specification of the desired behavior of the ValidatingAdmissionPolicyBinding.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", + "type": "object", + "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" }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", + "items": { + "description": "List of PolicyBinding.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "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" }, - "type": { - "description": "Type of deployment condition.", + "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", + "type": "object", + "properties": { + "matchResources": { + "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated. Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchResources" + }, + "paramRef": { + "description": "paramRef specifies the parameter resource used to configure the admission control policy. It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy. If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied. If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ParamRef" + }, + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", "type": "string" + }, + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, - "io.k8s.api.apps.v1.DeploymentList": { - "description": "DeploymentList is a list of Deployments.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", "type": "object", - "required": [ - "items" - ], "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" }, "items": { - "description": "Items is the list of Deployments.", + "description": "List of ValidatingAdmissionPolicy.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" } }, "kind": { @@ -5899,132 +5875,185 @@ "type": "string" }, "metadata": { - "description": "Standard list metadata.", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "DeploymentList", - "version": "v1" + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", + "version": "v1beta1" } ] }, - "io.k8s.api.apps.v1.DeploymentSpec": { - "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", "type": "object", - "required": [ - "selector", - "template" - ], "properties": { - "minReadySeconds": { - "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", - "type": "integer", - "format": "int32" - }, - "paused": { - "description": "Indicates that the deployment is paused.", - "type": "boolean" + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.AuditAnnotation" + }, + "x-kubernetes-list-type": "atomic" }, - "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.", - "type": "integer", - "format": "int32" + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" }, - "replicas": { - "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", - "type": "integer", - "format": "int32" + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchCondition" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" }, - "revisionHistoryLimit": { - "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", - "type": "integer", - "format": "int32" + "matchConstraints": { + "description": "MatchConstraints specifies what resources this policy is designed to validate. The AdmissionPolicy cares about a request if it matches _all_ Constraints. However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding. Required.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MatchResources" }, - "selector": { - "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + "paramKind": { + "description": "ParamKind specifies the kind of resources used to parameterize this policy. If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions. If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied. If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ParamKind" }, - "strategy": { - "description": "The deployment strategy to use to replace existing pods with new ones.", - "x-kubernetes-patch-strategy": "retainKeys", - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy" + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.Validation" + }, + "x-kubernetes-list-type": "atomic" }, - "template": { - "description": "Template describes the pods that will be created.", - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.Variable" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.api.apps.v1.DeploymentStatus": { - "description": "DeploymentStatus is the most recently observed status of the Deployment.", + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of an admission validation policy.", "type": "object", "properties": { - "availableReplicas": { - "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", - "type": "integer", - "format": "int32" - }, - "collisionCount": { - "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", - "type": "integer", - "format": "int32" - }, "conditions": { - "description": "Represents the latest available observations of a deployment's current state.", + "description": "The conditions represent the latest available observations of a policy's current state.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" }, - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, "observedGeneration": { - "description": "The generation observed by the deployment controller.", + "description": "The generation observed by the controller.", "type": "integer", "format": "int64" }, - "readyReplicas": { - "description": "Total number of ready pods targeted by this deployment.", - "type": "integer", - "format": "int32" + "typeChecking": { + "description": "The results of type checking for each expression. Presence of this field indicates the completion of the type checking.", + "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.TypeChecking" + } + } + }, + "io.k8s.api.admissionregistration.v1beta1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", + "type": "object", + "required": [ + "expression" + ], + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ \u003e 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop \u003e 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", + "type": "string" }, - "replicas": { - "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", - "type": "integer", - "format": "int32" + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", + "type": "string" }, - "unavailableReplicas": { - "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", - "type": "integer", - "format": "int32" + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" }, - "updatedReplicas": { - "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", - "type": "integer", - "format": "int32" + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" } } }, - "io.k8s.api.apps.v1.DeploymentStrategy": { - "description": "DeploymentStrategy describes how to replace existing pods with new ones.", + "io.k8s.api.admissionregistration.v1beta1.Variable": { + "description": "Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.", + "type": "object", + "required": [ + "name", + "expression" + ], + "properties": { + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", + "type": "string" + }, + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", + "type": "string" + } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": { + "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.", "type": "object", "properties": { - "rollingUpdate": { - "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.", - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment" + "apiServerID": { + "description": "The ID of the reporting API server.", + "type": "string" }, - "type": { - "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + "decodableVersions": { + "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" + }, + "encodingVersion": { + "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).", "type": "string" + }, + "servedVersions": { + "description": "The API server can serve these versions. DecodableVersions must include all ServedVersions.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, - "io.k8s.api.apps.v1.ReplicaSet": { - "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { + "description": "Storage version of a specific resource.", "type": "object", + "required": [ + "spec", + "status" + ], "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", @@ -6035,42 +6064,48 @@ "type": "string" }, "metadata": { - "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "The name is \u003cgroup\u003e.\u003cresource\u003e.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec" + "description": "Spec is an empty spec. It is here to comply with Kubernetes API style.", + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec" }, "status": { - "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus" + "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend.", + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "ReplicaSet", - "version": "v1" + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" } ] }, - "io.k8s.api.apps.v1.ReplicaSetCondition": { - "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": { + "description": "Describes the state of the storageVersion at a certain point.", "type": "object", "required": [ "type", - "status" + "status", + "reason" ], "properties": { "lastTransitionTime": { - "description": "The last time the condition transitioned from one status to another.", + "description": "Last time the condition transitioned from one status to another.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, + "observedGeneration": { + "description": "If set, this represents the .metadata.generation that the condition was set based upon.", + "type": "integer", + "format": "int64" + }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" @@ -6080,13 +6115,13 @@ "type": "string" }, "type": { - "description": "Type of replica set condition.", + "description": "Type of the condition.", "type": "string" } } }, - "io.k8s.api.apps.v1.ReplicaSetList": { - "description": "ReplicaSetList is a collection of ReplicaSets.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": { + "description": "A list of StorageVersions.", "type": "object", "required": [ "items" @@ -6097,10 +6132,10 @@ "type": "string" }, "items": { - "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "description": "Items holds a list of StorageVersion", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" } }, "kind": { @@ -6108,125 +6143,128 @@ "type": "string" }, "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "apps", - "kind": "ReplicaSetList", - "version": "v1" + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersionList", + "version": "v1alpha1" } ] }, - "io.k8s.api.apps.v1.ReplicaSetSpec": { - "description": "ReplicaSetSpec is the specification of a ReplicaSet.", + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": { + "description": "StorageVersionSpec is an empty spec.", + "type": "object" + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": { + "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.", "type": "object", - "required": [ - "selector" - ], "properties": { - "minReadySeconds": { - "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", - "type": "integer", - "format": "int32" - }, - "replicas": { - "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", - "type": "integer", - "format": "int32" + "commonEncodingVersion": { + "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.", + "type": "string" }, - "selector": { - "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + "conditions": { + "description": "The latest available observations of the storageVersion's state.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, - "template": { - "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" + "storageVersions": { + "description": "The reported versions per API server instance.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion" + }, + "x-kubernetes-list-map-keys": [ + "apiServerID" + ], + "x-kubernetes-list-type": "map" } } }, - "io.k8s.api.apps.v1.ReplicaSetStatus": { - "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", + "io.k8s.api.apps.v1.ControllerRevision": { + "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", "type": "object", "required": [ - "replicas" + "revision" ], "properties": { - "availableReplicas": { - "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", - "type": "integer", - "format": "int32" - }, - "conditions": { - "description": "Represents the latest available observations of a replica set's current state.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition" - }, - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "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" }, - "fullyLabeledReplicas": { - "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", - "type": "integer", - "format": "int32" + "data": { + "description": "Data is the serialized representation of the state.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" }, - "observedGeneration": { - "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", - "type": "integer", - "format": "int64" + "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" }, - "readyReplicas": { - "description": "The number of ready replicas for this replica set.", - "type": "integer", - "format": "int32" + "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "replicas": { - "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "revision": { + "description": "Revision indicates the revision of the state represented by Data.", "type": "integer", - "format": "int32" + "format": "int64" } - } - }, - "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { - "description": "Spec to control the desired behavior of daemon set rolling update.", - "type": "object", - "properties": { - "maxUnavailable": { - "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" } - } + ] }, - "io.k8s.api.apps.v1.RollingUpdateDeployment": { - "description": "Spec to control the desired behavior of rolling update.", + "io.k8s.api.apps.v1.ControllerRevisionList": { + "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", "type": "object", + "required": [ + "items" + ], "properties": { - "maxSurge": { - "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + "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" }, - "maxUnavailable": { - "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + "items": { + "description": "Items is the list of ControllerRevisions", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "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": { + "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } - } - }, - "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { - "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", - "type": "object", - "properties": { - "partition": { - "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", - "type": "integer", - "format": "int32" + }, + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevisionList", + "version": "v1" } - } + ] }, - "io.k8s.api.apps.v1.StatefulSet": { - "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", + "io.k8s.api.apps.v1.DaemonSet": { + "description": "DaemonSet represents the configuration of a daemon set.", "type": "object", "properties": { "apiVersion": { @@ -6238,27 +6276,28 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec defines the desired identities of pods in this set.", - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec" + "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec" }, "status": { - "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.", - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus" + "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "apps", - "kind": "StatefulSet", + "kind": "DaemonSet", "version": "v1" } ] }, - "io.k8s.api.apps.v1.StatefulSetCondition": { - "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", + "io.k8s.api.apps.v1.DaemonSetCondition": { + "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", "type": "object", "required": [ "type", @@ -6282,13 +6321,13 @@ "type": "string" }, "type": { - "description": "Type of statefulset condition.", + "description": "Type of DaemonSet condition.", "type": "string" } } }, - "io.k8s.api.apps.v1.StatefulSetList": { - "description": "StatefulSetList is a collection of StatefulSets.", + "io.k8s.api.apps.v1.DaemonSetList": { + "description": "DaemonSetList is a collection of daemon sets.", "type": "object", "required": [ "items" @@ -6299,9 +6338,10 @@ "type": "string" }, "items": { + "description": "A list of daemon sets.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" } }, "kind": { @@ -6309,163 +6349,133 @@ "type": "string" }, "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "apps", - "kind": "StatefulSetList", + "kind": "DaemonSetList", "version": "v1" } ] }, - "io.k8s.api.apps.v1.StatefulSetSpec": { - "description": "A StatefulSetSpec is the specification of a StatefulSet.", + "io.k8s.api.apps.v1.DaemonSetSpec": { + "description": "DaemonSetSpec is the specification of a daemon set.", "type": "object", "required": [ "selector", - "template", - "serviceName" + "template" ], "properties": { - "podManagementPolicy": { - "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", - "type": "string" - }, - "replicas": { - "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "minReadySeconds": { + "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", "type": "integer", "format": "int32" }, "revisionHistoryLimit": { - "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "type": "integer", "format": "int32" }, "selector": { - "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, - "serviceName": { - "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", - "type": "string" - }, "template": { - "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.", + "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" }, "updateStrategy": { - "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy" - }, - "volumeClaimTemplates": { - "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" - } + "description": "An update strategy to replace existing DaemonSet pods with new pods.", + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy" } } }, - "io.k8s.api.apps.v1.StatefulSetStatus": { - "description": "StatefulSetStatus represents the current state of a StatefulSet.", + "io.k8s.api.apps.v1.DaemonSetStatus": { + "description": "DaemonSetStatus represents the current status of a daemon set.", "type": "object", "required": [ - "replicas" - ], + "currentNumberScheduled", + "numberMisscheduled", + "desiredNumberScheduled", + "numberReady" + ], "properties": { "collisionCount": { - "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", "type": "integer", "format": "int32" }, "conditions": { - "description": "Represents the latest available observations of a statefulset's current state.", + "description": "Represents the latest available observations of a DaemonSet's current state.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition" + "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition" }, "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, - "currentReplicas": { - "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + "currentNumberScheduled": { + "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "type": "integer", "format": "int32" }, - "currentRevision": { - "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", - "type": "string" + "desiredNumberScheduled": { + "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + "type": "integer", + "format": "int32" }, - "observedGeneration": { - "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + "numberAvailable": { + "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", "type": "integer", - "format": "int64" + "format": "int32" }, - "readyReplicas": { - "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.", + "numberMisscheduled": { + "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "type": "integer", "format": "int32" }, - "replicas": { - "description": "replicas is the number of Pods created by the StatefulSet controller.", + "numberReady": { + "description": "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.", "type": "integer", "format": "int32" }, - "updateRevision": { - "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", - "type": "string" + "numberUnavailable": { + "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", + "type": "integer", + "format": "int32" }, - "updatedReplicas": { - "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + "observedGeneration": { + "description": "The most recent generation observed by the daemon set controller.", + "type": "integer", + "format": "int64" + }, + "updatedNumberScheduled": { + "description": "The total number of nodes that are running updated daemon pod", "type": "integer", "format": "int32" } } }, - "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { - "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", + "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { + "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", "type": "object", "properties": { "rollingUpdate": { - "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.", - "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy" + "description": "Rolling update config params. Present only if type = \"RollingUpdate\".", + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet" }, "type": { - "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", - "type": "string" - } - } - }, - "io.k8s.api.authentication.v1.BoundObjectReference": { - "description": "BoundObjectReference is a reference to an object that a token is bound to.", - "type": "object", - "properties": { - "apiVersion": { - "description": "API version of the referent.", - "type": "string" - }, - "kind": { - "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", - "type": "string" - }, - "name": { - "description": "Name of the referent.", - "type": "string" - }, - "uid": { - "description": "UID of the referent.", + "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", "type": "string" } } }, - "io.k8s.api.authentication.v1.TokenRequest": { - "description": "TokenRequest requests a token for a given service account.", + "io.k8s.api.apps.v1.Deployment": { + "description": "Deployment enables declarative updates for Pods and ReplicaSets.", "type": "object", - "required": [ - "spec" - ], "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", @@ -6476,180 +6486,209 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec" + "description": "Specification of the desired behavior of the Deployment.", + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec" }, "status": { - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus" + "description": "Most recently observed status of the Deployment.", + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenRequest", + "group": "apps", + "kind": "Deployment", "version": "v1" } ] }, - "io.k8s.api.authentication.v1.TokenRequestSpec": { - "description": "TokenRequestSpec contains client provided parameters of a token request.", + "io.k8s.api.apps.v1.DeploymentCondition": { + "description": "DeploymentCondition describes the state of a deployment at a certain point.", "type": "object", "required": [ - "audiences" + "type", + "status" ], "properties": { - "audiences": { - "description": "Audiences are the intendend audiences of the token. A recipient of a token must identitfy themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", - "type": "array", - "items": { - "type": "string" - } - }, - "boundObjectRef": { - "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation.", - "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference" + "lastTransitionTime": { + "description": "Last time the condition transitioned from one status to another.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, - "expirationSeconds": { - "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", - "type": "integer", - "format": "int64" - } - } - }, - "io.k8s.api.authentication.v1.TokenRequestStatus": { - "description": "TokenRequestStatus is the result of a token request.", - "type": "object", - "required": [ - "token", - "expirationTimestamp" - ], - "properties": { - "expirationTimestamp": { - "description": "ExpirationTimestamp is the time of expiration of the returned token.", + "lastUpdateTime": { + "description": "The last time this condition was updated.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, - "token": { - "description": "Token is the opaque bearer token.", + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of deployment condition.", "type": "string" } } }, - "io.k8s.api.authentication.v1.TokenReview": { - "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + "io.k8s.api.apps.v1.DeploymentList": { + "description": "DeploymentList is a list of Deployments.", "type": "object", "required": [ - "spec" + "items" ], "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" }, + "items": { + "description": "Items is the list of Deployments.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" + } + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec holds information about the request being evaluated", - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec" - }, - "status": { - "description": "Status is filled in by the server and indicates whether the request can be authenticated.", - "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus" + "description": "Standard list metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenReview", + "group": "apps", + "kind": "DeploymentList", "version": "v1" } ] }, - "io.k8s.api.authentication.v1.TokenReviewSpec": { - "description": "TokenReviewSpec is a description of the token authentication request.", - "type": "object", - "properties": { - "audiences": { - "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", - "type": "array", - "items": { - "type": "string" - } - }, - "token": { - "description": "Token is the opaque bearer token.", - "type": "string" - } - } - }, - "io.k8s.api.authentication.v1.TokenReviewStatus": { - "description": "TokenReviewStatus is the result of the token authentication request.", + "io.k8s.api.apps.v1.DeploymentSpec": { + "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", "type": "object", + "required": [ + "selector", + "template" + ], "properties": { - "audiences": { - "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", - "type": "array", - "items": { - "type": "string" - } + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "type": "integer", + "format": "int32" }, - "authenticated": { - "description": "Authenticated indicates that the token was associated with a known user.", + "paused": { + "description": "Indicates that the deployment is paused.", "type": "boolean" }, - "error": { - "description": "Error indicates that the token couldn't be checked", - "type": "string" + "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.", + "type": "integer", + "format": "int32" }, - "user": { - "description": "User is the UserInfo associated with the provided token.", - "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo" + "replicas": { + "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "type": "integer", + "format": "int32" + }, + "revisionHistoryLimit": { + "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + "type": "integer", + "format": "int32" + }, + "selector": { + "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "strategy": { + "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy" + }, + "template": { + "description": "Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is \"Always\".", + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" } } }, - "io.k8s.api.authentication.v1.UserInfo": { - "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", + "io.k8s.api.apps.v1.DeploymentStatus": { + "description": "DeploymentStatus is the most recently observed status of the Deployment.", "type": "object", "properties": { - "extra": { - "description": "Any additional information provided by the authenticator.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + "type": "integer", + "format": "int32" }, - "groups": { - "description": "The names of groups this user is a part of.", + "collisionCount": { + "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + "type": "integer", + "format": "int32" + }, + "conditions": { + "description": "Represents the latest available observations of a deployment's current state.", "type": "array", "items": { - "type": "string" - } + "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition" + }, + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "uid": { - "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", - "type": "string" + "observedGeneration": { + "description": "The generation observed by the deployment controller.", + "type": "integer", + "format": "int64" }, - "username": { - "description": "The name that uniquely identifies this user among all active users.", + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.", + "type": "integer", + "format": "int32" + }, + "replicas": { + "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + "type": "integer", + "format": "int32" + }, + "unavailableReplicas": { + "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + "type": "integer", + "format": "int32" + }, + "updatedReplicas": { + "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + "type": "integer", + "format": "int32" + } + } + }, + "io.k8s.api.apps.v1.DeploymentStrategy": { + "description": "DeploymentStrategy describes how to replace existing pods with new ones.", + "type": "object", + "properties": { + "rollingUpdate": { + "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.", + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment" + }, + "type": { + "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", "type": "string" } } }, - "io.k8s.api.authentication.v1beta1.TokenReview": { - "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + "io.k8s.api.apps.v1.ReplicaSet": { + "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", "type": "object", - "required": [ - "spec" - ], "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", @@ -6660,296 +6699,207 @@ "type": "string" }, "metadata": { + "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec holds information about the request being evaluated", - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec" + "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec" }, "status": { - "description": "Status is filled in by the server and indicates whether the request can be authenticated.", - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus" + "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authentication.k8s.io", - "kind": "TokenReview", - "version": "v1beta1" + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" } ] }, - "io.k8s.api.authentication.v1beta1.TokenReviewSpec": { - "description": "TokenReviewSpec is a description of the token authentication request.", + "io.k8s.api.apps.v1.ReplicaSetCondition": { + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", "type": "object", + "required": [ + "type", + "status" + ], "properties": { - "audiences": { - "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", - "type": "array", - "items": { - "type": "string" - } + "lastTransitionTime": { + "description": "The last time the condition transitioned from one status to another.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, - "token": { - "description": "Token is the opaque bearer token.", + "message": { + "description": "A human readable message indicating details about the transition.", "type": "string" - } - } - }, - "io.k8s.api.authentication.v1beta1.TokenReviewStatus": { - "description": "TokenReviewStatus is the result of the token authentication request.", - "type": "object", - "properties": { - "audiences": { - "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", - "type": "array", - "items": { - "type": "string" - } - }, - "authenticated": { - "description": "Authenticated indicates that the token was associated with a known user.", - "type": "boolean" }, - "error": { - "description": "Error indicates that the token couldn't be checked", + "reason": { + "description": "The reason for the condition's last transition.", "type": "string" }, - "user": { - "description": "User is the UserInfo associated with the provided token.", - "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo" - } - } - }, - "io.k8s.api.authentication.v1beta1.UserInfo": { - "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", - "type": "object", - "properties": { - "extra": { - "description": "Any additional information provided by the authenticator.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "groups": { - "description": "The names of groups this user is a part of.", - "type": "array", - "items": { - "type": "string" - } - }, - "uid": { - "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "status": { + "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, - "username": { - "description": "The name that uniquely identifies this user among all active users.", + "type": { + "description": "Type of replica set condition.", "type": "string" } } }, - "io.k8s.api.authorization.v1.LocalSubjectAccessReview": { - "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + "io.k8s.api.apps.v1.ReplicaSetList": { + "description": "ReplicaSetList is a collection of ReplicaSets.", "type": "object", "required": [ - "spec" + "items" ], "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" }, + "items": { + "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" + } + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" - }, - "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "LocalSubjectAccessReview", + "group": "apps", + "kind": "ReplicaSetList", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.NonResourceAttributes": { - "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + "io.k8s.api.apps.v1.ReplicaSetSpec": { + "description": "ReplicaSetSpec is the specification of a ReplicaSet.", "type": "object", + "required": [ + "selector" + ], "properties": { - "path": { - "description": "Path is the URL path of the request", - "type": "string" + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "type": "integer", + "format": "int32" }, - "verb": { - "description": "Verb is the standard HTTP verb", - "type": "string" + "replicas": { + "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "type": "integer", + "format": "int32" + }, + "selector": { + "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "template": { + "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" } } }, - "io.k8s.api.authorization.v1.NonResourceRule": { - "description": "NonResourceRule holds information that describes a rule for the non-resource", + "io.k8s.api.apps.v1.ReplicaSetStatus": { + "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "type": "object", "required": [ - "verbs" + "replicas" ], "properties": { - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } + "availableReplicas": { + "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", + "type": "integer", + "format": "int32" }, - "verbs": { - "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + "conditions": { + "description": "Represents the latest available observations of a replica set's current state.", "type": "array", "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.authorization.v1.ResourceAttributes": { - "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", - "type": "object", - "properties": { - "group": { - "description": "Group is the API Group of the Resource. \"*\" means all.", - "type": "string" + "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition" + }, + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "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" + "fullyLabeledReplicas": { + "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", + "type": "integer", + "format": "int32" }, - "subresource": { - "description": "Subresource is one of the existing resource types. \"\" means none.", - "type": "string" + "observedGeneration": { + "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + "type": "integer", + "format": "int64" }, - "verb": { - "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "type": "string" + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.", + "type": "integer", + "format": "int32" }, - "version": { - "description": "Version is the API Version of the Resource. \"*\" means all.", - "type": "string" + "replicas": { + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.authorization.v1.ResourceRule": { - "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { + "description": "Spec to control the desired behavior of daemon set rolling update.", "type": "object", - "required": [ - "verbs" - ], "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } - }, - "resources": { - "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", - "type": "array", - "items": { - "type": "string" - } + "maxSurge": { + "description": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, - "verbs": { - "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } + "maxUnavailable": { + "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" } } }, - "io.k8s.api.authorization.v1.SelfSubjectAccessReview": { - "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + "io.k8s.api.apps.v1.RollingUpdateDeployment": { + "description": "Spec to control the desired behavior of rolling update.", "type": "object", - "required": [ - "spec" - ], "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec holds information about the request being evaluated. user and groups must be empty", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec" + "maxSurge": { + "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, - "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "SelfSubjectAccessReview", - "version": "v1" + "maxUnavailable": { + "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" } - ] + } }, - "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": { - "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { + "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "type": "object", "properties": { - "nonResourceAttributes": { - "description": "NonResourceAttributes describes information for a non-resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" + "maxUnavailable": { + "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0. Defaults to 1. This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, - "resourceAttributes": { - "description": "ResourceAuthorizationAttributes describes information for a resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" + "partition": { + "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.authorization.v1.SelfSubjectRulesReview": { - "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + "io.k8s.api.apps.v1.StatefulSet": { + "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\n\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", "type": "object", - "required": [ - "spec" - ], "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", @@ -6960,315 +6910,277 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec holds information about the request being evaluated.", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec" + "description": "Spec defines the desired identities of pods in this set.", + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec" }, "status": { - "description": "Status is filled in by the server and indicates the set of actions a user can perform.", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus" + "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.", + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SelfSubjectRulesReview", + "group": "apps", + "kind": "StatefulSet", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": { + "io.k8s.api.apps.v1.StatefulSetCondition": { + "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", "type": "object", + "required": [ + "type", + "status" + ], "properties": { - "namespace": { - "description": "Namespace to evaluate rules for. Required.", + "lastTransitionTime": { + "description": "Last time the condition transitioned from one status to another.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of statefulset condition.", "type": "string" } } }, - "io.k8s.api.authorization.v1.SubjectAccessReview": { - "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "io.k8s.api.apps.v1.StatefulSetList": { + "description": "StatefulSetList is a collection of StatefulSets.", "type": "object", "required": [ - "spec" + "items" ], "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" }, + "items": { + "description": "Items is the list of stateful sets.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" + } + }, "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec holds information about the request being evaluated", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" - }, - "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" + "description": "Standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SubjectAccessReview", + "group": "apps", + "kind": "StatefulSetList", "version": "v1" } ] }, - "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": { - "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.apps.v1.StatefulSetOrdinals": { + "description": "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.", "type": "object", "properties": { - "extra": { - "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "groups": { - "description": "Groups is the groups you're testing for.", - "type": "array", - "items": { - "type": "string" - } - }, - "nonResourceAttributes": { - "description": "NonResourceAttributes describes information for a non-resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" - }, - "resourceAttributes": { - "description": "ResourceAuthorizationAttributes describes information for a resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" - }, - "uid": { - "description": "UID information about the requesting user.", + "start": { + "description": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the range:\n [0, .spec.replicas).", + "type": "integer", + "format": "int32" + } + } + }, + "io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy": { + "description": "StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.", + "type": "object", + "properties": { + "whenDeleted": { + "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.", "type": "string" }, - "user": { - "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", + "whenScaled": { + "description": "WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down. The default policy of `Retain` causes PVCs to not be affected by a scaledown. The `Delete` policy causes the associated PVCs for any excess pods above the replica count to be deleted.", "type": "string" } } }, - "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": { - "description": "SubjectAccessReviewStatus", + "io.k8s.api.apps.v1.StatefulSetSpec": { + "description": "A StatefulSetSpec is the specification of a StatefulSet.", "type": "object", "required": [ - "allowed" + "selector", + "template", + "serviceName" ], "properties": { - "allowed": { - "description": "Allowed is required. True if the action would be allowed, false otherwise.", - "type": "boolean" + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "type": "integer", + "format": "int32" }, - "denied": { - "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", - "type": "boolean" + "ordinals": { + "description": "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is beta.", + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetOrdinals" }, - "evaluationError": { - "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "persistentVolumeClaimRetentionPolicy": { + "description": "persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates. By default, all persistent volume claims are created as needed and retained until manually deleted. This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha. +optional", + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy" + }, + "podManagementPolicy": { + "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", "type": "string" }, - "reason": { - "description": "Reason is optional. It indicates why a request was allowed or denied.", - "type": "string" - } - } - }, - "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": { - "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", - "type": "object", - "required": [ - "resourceRules", - "nonResourceRules", - "incomplete" - ], - "properties": { - "evaluationError": { - "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + "replicas": { + "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "type": "integer", + "format": "int32" + }, + "revisionHistoryLimit": { + "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "type": "integer", + "format": "int32" + }, + "selector": { + "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "serviceName": { + "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", "type": "string" }, - "incomplete": { - "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", - "type": "boolean" + "template": { + "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. Each pod will be named with the format \u003cstatefulsetname\u003e-\u003cpodindex\u003e. For example, a pod in a StatefulSet named \"web\" with index number \"3\" would be named \"web-3\". The only allowed template.spec.restartPolicy value is \"Always\".", + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" }, - "nonResourceRules": { - "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule" - } + "updateStrategy": { + "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy" }, - "resourceRules": { - "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "volumeClaimTemplates": { + "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule" + "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" } } } }, - "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview": { - "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + "io.k8s.api.apps.v1.StatefulSetStatus": { + "description": "StatefulSetStatus represents the current state of a StatefulSet.", "type": "object", "required": [ - "spec" + "replicas" ], "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" + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.", + "type": "integer", + "format": "int32" }, - "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" + "collisionCount": { + "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "type": "integer", + "format": "int32" }, - "metadata": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "conditions": { + "description": "Represents the latest available observations of a statefulset's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition" + }, + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "spec": { - "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec" + "currentReplicas": { + "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + "type": "integer", + "format": "int32" }, - "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "LocalSubjectAccessReview", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.authorization.v1beta1.NonResourceAttributes": { - "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", - "type": "object", - "properties": { - "path": { - "description": "Path is the URL path of the request", + "currentRevision": { + "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", "type": "string" }, - "verb": { - "description": "Verb is the standard HTTP verb", + "observedGeneration": { + "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + "type": "integer", + "format": "int64" + }, + "readyReplicas": { + "description": "readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.", + "type": "integer", + "format": "int32" + }, + "replicas": { + "description": "replicas is the number of Pods created by the StatefulSet controller.", + "type": "integer", + "format": "int32" + }, + "updateRevision": { + "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", "type": "string" + }, + "updatedReplicas": { + "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.authorization.v1beta1.NonResourceRule": { - "description": "NonResourceRule holds information that describes a rule for the non-resource", + "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { + "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "type": "object", - "required": [ - "verbs" - ], "properties": { - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } + "rollingUpdate": { + "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.", + "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy" }, - "verbs": { - "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } + "type": { + "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", + "type": "string" } } }, - "io.k8s.api.authorization.v1beta1.ResourceAttributes": { - "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", + "io.k8s.api.authentication.v1.BoundObjectReference": { + "description": "BoundObjectReference is a reference to an object that a token is bound to.", "type": "object", "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.", + "apiVersion": { + "description": "API version of the referent.", "type": "string" }, - "subresource": { - "description": "Subresource is one of the existing resource types. \"\" means none.", + "kind": { + "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", "type": "string" }, - "verb": { - "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + "name": { + "description": "Name of the referent.", "type": "string" }, - "version": { - "description": "Version is the API Version of the Resource. \"*\" means all.", + "uid": { + "description": "UID of the referent.", "type": "string" } } }, - "io.k8s.api.authorization.v1beta1.ResourceRule": { - "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "type": "object", - "required": [ - "verbs" - ], - "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } - }, - "resources": { - "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", - "type": "array", - "items": { - "type": "string" - } - }, - "verbs": { - "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview": { - "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + "io.k8s.api.authentication.v1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", "type": "object", - "required": [ - "spec" - ], "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", @@ -7279,41 +7191,34 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "spec": { - "description": "Spec holds information about the request being evaluated. user and groups must be empty", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec" - }, "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" + "description": "Status is filled in by the server with the user attributes.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.SelfSubjectReviewStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SelfSubjectAccessReview", - "version": "v1beta1" + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1" } ] }, - "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec": { - "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.authentication.v1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", "type": "object", "properties": { - "nonResourceAttributes": { - "description": "NonResourceAttributes describes information for a non-resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes" - }, - "resourceAttributes": { - "description": "ResourceAuthorizationAttributes describes information for a resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes" + "userInfo": { + "description": "User attributes of the user making this request.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo" } } }, - "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview": { - "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + "io.k8s.api.authentication.v1.TokenRequest": { + "description": "TokenRequest requests a token for a given service account.", "type": "object", "required": [ "spec" @@ -7328,36 +7233,71 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec holds information about the request being evaluated.", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec" + "description": "Spec holds information about the request being evaluated", + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec" }, "status": { - "description": "Status is filled in by the server and indicates the set of actions a user can perform.", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus" + "description": "Status is filled in by the server and indicates whether the token can be authenticated.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SelfSubjectRulesReview", - "version": "v1beta1" + "group": "authentication.k8s.io", + "kind": "TokenRequest", + "version": "v1" } ] }, - "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec": { - "type": "object", + "io.k8s.api.authentication.v1.TokenRequestSpec": { + "description": "TokenRequestSpec contains client provided parameters of a token request.", + "type": "object", + "required": [ + "audiences" + ], "properties": { - "namespace": { - "description": "Namespace to evaluate rules for. Required.", + "audiences": { + "description": "Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", + "type": "array", + "items": { + "type": "string" + } + }, + "boundObjectRef": { + "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference" + }, + "expirationSeconds": { + "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", + "type": "integer", + "format": "int64" + } + } + }, + "io.k8s.api.authentication.v1.TokenRequestStatus": { + "description": "TokenRequestStatus is the result of a token request.", + "type": "object", + "required": [ + "token", + "expirationTimestamp" + ], + "properties": { + "expirationTimestamp": { + "description": "ExpirationTimestamp is the time of expiration of the returned token.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "token": { + "description": "Token is the opaque bearer token.", "type": "string" } } }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReview": { - "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "io.k8s.api.authentication.v1.TokenReview": { + "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "type": "object", "required": [ "spec" @@ -7372,146 +7312,140 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "Spec holds information about the request being evaluated", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec" + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec" }, "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" + "description": "Status is filled in by the server and indicates whether the request can be authenticated.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "authorization.k8s.io", - "kind": "SubjectAccessReview", - "version": "v1beta1" + "group": "authentication.k8s.io", + "kind": "TokenReview", + "version": "v1" } ] }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec": { - "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "io.k8s.api.authentication.v1.TokenReviewSpec": { + "description": "TokenReviewSpec is a description of the token authentication request.", "type": "object", "properties": { - "extra": { - "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "group": { - "description": "Groups is the groups you're testing for.", + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "type": "array", "items": { "type": "string" } }, - "nonResourceAttributes": { - "description": "NonResourceAttributes describes information for a non-resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes" - }, - "resourceAttributes": { - "description": "ResourceAuthorizationAttributes describes information for a resource access request", - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes" - }, - "uid": { - "description": "UID information about the requesting user.", - "type": "string" - }, - "user": { - "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", + "token": { + "description": "Token is the opaque bearer token.", "type": "string" } } }, - "io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus": { - "description": "SubjectAccessReviewStatus", + "io.k8s.api.authentication.v1.TokenReviewStatus": { + "description": "TokenReviewStatus is the result of the token authentication request.", "type": "object", - "required": [ - "allowed" - ], "properties": { - "allowed": { - "description": "Allowed is required. True if the action would be allowed, false otherwise.", - "type": "boolean" + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "type": "array", + "items": { + "type": "string" + } }, - "denied": { - "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "authenticated": { + "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" }, - "evaluationError": { - "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "error": { + "description": "Error indicates that the token couldn't be checked", "type": "string" }, - "reason": { - "description": "Reason is optional. It indicates why a request was allowed or denied.", - "type": "string" + "user": { + "description": "User is the UserInfo associated with the provided token.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo" } } }, - "io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus": { - "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "io.k8s.api.authentication.v1.UserInfo": { + "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", "type": "object", - "required": [ - "resourceRules", - "nonResourceRules", - "incomplete" - ], "properties": { - "evaluationError": { - "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", - "type": "string" - }, - "incomplete": { - "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", - "type": "boolean" - }, - "nonResourceRules": { - "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceRule" + "extra": { + "description": "Any additional information provided by the authenticator.", + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } } }, - "resourceRules": { - "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "groups": { + "description": "The names of groups this user is a part of.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceRule" + "type": "string" } + }, + "uid": { + "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "type": "string" + }, + "username": { + "description": "The name that uniquely identifies this user among all active users.", + "type": "string" } } }, - "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": { - "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "io.k8s.api.authentication.v1alpha1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", "type": "object", - "required": [ - "kind", - "name" - ], "properties": { "apiVersion": { - "description": "API version of the referent", + "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 of the referent; 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" }, - "name": { - "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", - "type": "string" + "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "status": { + "description": "Status is filled in by the server with the user attributes.", + "$ref": "#/definitions/io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "type": "object", + "properties": { + "userInfo": { + "description": "User attributes of the user making this request.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo" } } }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { - "description": "configuration of a horizontal pod autoscaler.", + "io.k8s.api.authentication.v1beta1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", "type": "object", "properties": { "apiVersion": { @@ -7523,317 +7457,278 @@ "type": "string" }, "metadata": { - "description": "Standard object 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", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "spec": { - "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec" - }, "status": { - "description": "current information about the autoscaler.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus" + "description": "Status is filled in by the server with the user attributes.", + "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "HorizontalPodAutoscaler", - "version": "v1" + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1beta1" } ] }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": { - "description": "list of horizontal pod autoscaler objects.", + "io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "type": "object", + "properties": { + "userInfo": { + "description": "User attributes of the user making this request.", + "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo" + } + } + }, + "io.k8s.api.authorization.v1.LocalSubjectAccessReview": { + "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", "type": "object", "required": [ - "items" + "spec" ], "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" }, - "items": { - "description": "list of horizontal pod autoscaler objects.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" - } - }, "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": { - "description": "Standard list metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" + }, + "status": { + "description": "Status is filled in by the server and indicates whether the request is allowed or not", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "HorizontalPodAutoscalerList", + "group": "authorization.k8s.io", + "kind": "LocalSubjectAccessReview", "version": "v1" } ] }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": { - "description": "specification of a horizontal pod autoscaler.", + "io.k8s.api.authorization.v1.NonResourceAttributes": { + "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "type": "object", - "required": [ - "scaleTargetRef", - "maxReplicas" - ], "properties": { - "maxReplicas": { - "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", - "type": "integer", - "format": "int32" - }, - "minReplicas": { - "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", - "type": "integer", - "format": "int32" - }, - "scaleTargetRef": { - "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference" + "path": { + "description": "Path is the URL path of the request", + "type": "string" }, - "targetCPUUtilizationPercentage": { - "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", - "type": "integer", - "format": "int32" + "verb": { + "description": "Verb is the standard HTTP verb", + "type": "string" } } }, - "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": { - "description": "current status of a horizontal pod autoscaler", + "io.k8s.api.authorization.v1.NonResourceRule": { + "description": "NonResourceRule holds information that describes a rule for the non-resource", "type": "object", "required": [ - "currentReplicas", - "desiredReplicas" + "verbs" ], "properties": { - "currentCPUUtilizationPercentage": { - "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", - "type": "integer", - "format": "int32" - }, - "currentReplicas": { - "description": "current number of replicas of pods managed by this autoscaler.", - "type": "integer", - "format": "int32" - }, - "desiredReplicas": { - "description": "desired number of replicas of pods managed by this autoscaler.", - "type": "integer", - "format": "int32" - }, - "lastScaleTime": { - "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", + "type": "array", + "items": { + "type": "string" + } }, - "observedGeneration": { - "description": "most recent generation observed by this autoscaler.", - "type": "integer", - "format": "int64" + "verbs": { + "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + "type": "array", + "items": { + "type": "string" + } } } }, - "io.k8s.api.autoscaling.v1.Scale": { - "description": "Scale represents a scaling request for a resource.", + "io.k8s.api.authorization.v1.ResourceAttributes": { + "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "type": "object", "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", + "group": { + "description": "Group is the API Group of the Resource. \"*\" means all.", "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", + "name": { + "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", "type": "string" }, - "metadata": { - "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "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" }, - "spec": { - "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec" + "resource": { + "description": "Resource is one of the existing resource types. \"*\" means all.", + "type": "string" }, - "status": { - "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "autoscaling", - "kind": "Scale", - "version": "v1" - } - ] - }, - "io.k8s.api.autoscaling.v1.ScaleSpec": { - "description": "ScaleSpec describes the attributes of a scale subresource.", - "type": "object", - "properties": { - "replicas": { - "description": "desired number of instances for the scaled object.", - "type": "integer", - "format": "int32" + "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" } } }, - "io.k8s.api.autoscaling.v1.ScaleStatus": { - "description": "ScaleStatus represents the current status of a scale subresource.", + "io.k8s.api.authorization.v1.ResourceRule": { + "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "type": "object", "required": [ - "replicas" + "verbs" ], "properties": { - "replicas": { - "description": "actual number of observed instances of the scaled object.", - "type": "integer", - "format": "int32" + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", + "type": "array", + "items": { + "type": "string" + } }, - "selector": { - "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors", - "type": "string" + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", + "type": "array", + "items": { + "type": "string" + } + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", + "type": "array", + "items": { + "type": "string" + } + }, + "verbs": { + "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + "type": "array", + "items": { + "type": "string" + } } } }, - "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource": { - "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + "io.k8s.api.authorization.v1.SelfSubjectAccessReview": { + "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", "type": "object", "required": [ - "name", - "container" + "spec" ], "properties": { - "container": { - "description": "container is the name of the container in the pods of the scaling target", + "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" }, - "name": { - "description": "name is the name of the resource in question.", + "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" }, - "targetAverageUtilization": { - "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", - "type": "integer", - "format": "int32" + "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "targetAverageValue": { - "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "spec": { + "description": "Spec holds information about the request being evaluated. user and groups must be empty", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec" + }, + "status": { + "description": "Status is filled in by the server and indicates whether the request is allowed or not", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SelfSubjectAccessReview", + "version": "v1" + } + ] }, - "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus": { - "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": { + "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "type": "object", - "required": [ - "name", - "currentAverageValue", - "container" - ], "properties": { - "container": { - "description": "container is the name of the container in the pods of the scaling target", - "type": "string" - }, - "currentAverageUtilization": { - "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", - "type": "integer", - "format": "int32" - }, - "currentAverageValue": { - "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "nonResourceAttributes": { + "description": "NonResourceAttributes describes information for a non-resource access request", + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" }, - "name": { - "description": "name is the name of the resource in question.", - "type": "string" + "resourceAttributes": { + "description": "ResourceAuthorizationAttributes describes information for a resource access request", + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" } } }, - "io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference": { - "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "io.k8s.api.authorization.v1.SelfSubjectRulesReview": { + "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", "type": "object", "required": [ - "kind", - "name" + "spec" ], "properties": { "apiVersion": { - "description": "API version of the referent", + "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 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" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.ExternalMetricSource": { - "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.", - "type": "object", - "required": [ - "metricName" - ], - "properties": { - "metricName": { - "description": "metricName is the name of the metric in question.", + "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" }, - "metricSelector": { - "description": "metricSelector is used to identify a specific time series within a given metric.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "targetAverageValue": { - "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "spec": { + "description": "Spec holds information about the request being evaluated.", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec" }, - "targetValue": { - "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "status": { + "description": "Status is filled in by the server and indicates the set of actions a user can perform.", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SelfSubjectRulesReview", + "version": "v1" + } + ] }, - "io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus": { - "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", + "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": { + "description": "SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.", "type": "object", - "required": [ - "metricName", - "currentValue" - ], "properties": { - "currentAverageValue": { - "description": "currentAverageValue is the current value of metric averaged over autoscaled pods.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "currentValue": { - "description": "currentValue is the current value of the metric (as a quantity)", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "metricName": { - "description": "metricName is the name of a metric used for autoscaling in metric system.", + "namespace": { + "description": "Namespace to evaluate rules for. Required.", "type": "string" - }, - "metricSelector": { - "description": "metricSelector is used to identify a specific time series within a given metric.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" } } }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": { - "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", + "io.k8s.api.authorization.v1.SubjectAccessReview": { + "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", "type": "object", + "required": [ + "spec" + ], "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", @@ -7844,58 +7739,181 @@ "type": "string" }, "metadata": { - "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec" + "description": "Spec holds information about the request being evaluated", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" }, "status": { - "description": "status is the current information about the autoscaler.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus" + "description": "Status is filled in by the server and indicates whether the request is allowed or not", + "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "autoscaling", - "kind": "HorizontalPodAutoscaler", - "version": "v2beta1" - } + "group": "authorization.k8s.io", + "kind": "SubjectAccessReview", + "version": "v1" + } ] }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition": { - "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", + "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": { + "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "type": "object", + "properties": { + "extra": { + "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "groups": { + "description": "Groups is the groups you're testing for.", + "type": "array", + "items": { + "type": "string" + } + }, + "nonResourceAttributes": { + "description": "NonResourceAttributes describes information for a non-resource access request", + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" + }, + "resourceAttributes": { + "description": "ResourceAuthorizationAttributes describes information for a resource access request", + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" + }, + "uid": { + "description": "UID information about the requesting user.", + "type": "string" + }, + "user": { + "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", + "type": "string" + } + } + }, + "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": { + "description": "SubjectAccessReviewStatus", "type": "object", "required": [ - "type", - "status" + "allowed" ], "properties": { - "lastTransitionTime": { - "description": "lastTransitionTime is the last time the condition transitioned from one status to another", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + "allowed": { + "description": "Allowed is required. True if the action would be allowed, false otherwise.", + "type": "boolean" }, - "message": { - "description": "message is a human-readable explanation containing details about the transition", + "denied": { + "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "type": "boolean" + }, + "evaluationError": { + "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": "string" }, "reason": { - "description": "reason is the reason for the condition's last transition.", + "description": "Reason is optional. It indicates why a request was allowed or denied.", + "type": "string" + } + } + }, + "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": { + "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "type": "object", + "required": [ + "resourceRules", + "nonResourceRules", + "incomplete" + ], + "properties": { + "evaluationError": { + "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", "type": "string" }, - "status": { - "description": "status is the status of the condition (True, False, Unknown)", + "incomplete": { + "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + "type": "boolean" + }, + "nonResourceRules": { + "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule" + } + }, + "resourceRules": { + "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule" + } + } + } + }, + "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": { + "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "type": "object", + "required": [ + "kind", + "name" + ], + "properties": { + "apiVersion": { + "description": "apiVersion is the API version of the referent", "type": "string" }, - "type": { - "description": "type describes the current condition", + "kind": { + "description": "kind is the 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 is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { + "description": "configuration of a horizontal pod autoscaler.", + "type": "object", + "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": { + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "spec defines the behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec" + }, + "status": { + "description": "status is the current information about the autoscaler.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + } + ] }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList": { - "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": { + "description": "list of horizontal pod autoscaler objects.", "type": "object", "required": [ "items" @@ -7909,7 +7927,7 @@ "description": "items is the list of horizontal pod autoscaler objects.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" } }, "kind": { @@ -7917,7 +7935,7 @@ "type": "string" }, "metadata": { - "description": "metadata is the standard list metadata.", + "description": "Standard list metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, @@ -7925,12 +7943,12 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", - "version": "v2beta1" + "version": "v1" } ] }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec": { - "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": { + "description": "specification of a horizontal pod autoscaler.", "type": "object", "required": [ "scaleTargetRef", @@ -7938,63 +7956,51 @@ ], "properties": { "maxReplicas": { - "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", + "description": "maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", "type": "integer", "format": "int32" }, - "metrics": { - "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec" - } - }, "minReplicas": { "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "type": "integer", "format": "int32" }, "scaleTargetRef": { - "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" + "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference" + }, + "targetCPUUtilizationPercentage": { + "description": "targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus": { - "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": { + "description": "current status of a horizontal pod autoscaler", "type": "object", "required": [ "currentReplicas", - "desiredReplicas", - "conditions" + "desiredReplicas" ], "properties": { - "conditions": { - "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition" - } - }, - "currentMetrics": { - "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus" - } + "currentCPUUtilizationPercentage": { + "description": "currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", + "type": "integer", + "format": "int32" }, "currentReplicas": { - "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", + "description": "currentReplicas is the current number of replicas of pods managed by this autoscaler.", "type": "integer", "format": "int32" }, "desiredReplicas": { - "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", + "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler.", "type": "integer", "format": "int32" }, "lastScaleTime": { - "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.", + "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "observedGeneration": { @@ -8004,224 +8010,69 @@ } } }, - "io.k8s.api.autoscaling.v2beta1.MetricSpec": { - "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", + "io.k8s.api.autoscaling.v1.Scale": { + "description": "Scale represents a scaling request for a resource.", "type": "object", - "required": [ - "type" - ], "properties": { - "containerResource": { - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource" - }, - "external": { - "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource" + "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" }, - "object": { - "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource" + "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" }, - "pods": { - "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource" + "metadata": { + "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "resource": { - "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource" + "spec": { + "description": "spec defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec" }, - "type": { - "description": "type is the type of metric source. It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", - "type": "string" + "status": { + "description": "status is the current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + } + ] + }, + "io.k8s.api.autoscaling.v1.ScaleSpec": { + "description": "ScaleSpec describes the attributes of a scale subresource.", + "type": "object", + "properties": { + "replicas": { + "description": "replicas is the desired number of instances for the scaled object.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.autoscaling.v2beta1.MetricStatus": { - "description": "MetricStatus describes the last-read state of a single metric.", + "io.k8s.api.autoscaling.v1.ScaleStatus": { + "description": "ScaleStatus represents the current status of a scale subresource.", "type": "object", "required": [ - "type" + "replicas" ], "properties": { - "containerResource": { - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus" - }, - "external": { - "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus" - }, - "object": { - "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus" - }, - "pods": { - "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus" - }, - "resource": { - "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus" - }, - "type": { - "description": "type is the type of metric source. It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", - "type": "string" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.ObjectMetricSource": { - "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", - "type": "object", - "required": [ - "target", - "metricName", - "targetValue" - ], - "properties": { - "averageValue": { - "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "metricName": { - "description": "metricName is the name of the metric in question.", - "type": "string" - }, - "selector": { - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "target": { - "description": "target is the described Kubernetes object.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" - }, - "targetValue": { - "description": "targetValue is the target value of the metric (as a quantity).", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus": { - "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", - "type": "object", - "required": [ - "target", - "metricName", - "currentValue" - ], - "properties": { - "averageValue": { - "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "currentValue": { - "description": "currentValue is the current value of the metric (as a quantity).", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "metricName": { - "description": "metricName is the name of the metric in question.", - "type": "string" - }, - "selector": { - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "target": { - "description": "target is the described Kubernetes object.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.PodsMetricSource": { - "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "type": "object", - "required": [ - "metricName", - "targetAverageValue" - ], - "properties": { - "metricName": { - "description": "metricName is the name of the metric in question", - "type": "string" - }, - "selector": { - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "targetAverageValue": { - "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.PodsMetricStatus": { - "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", - "type": "object", - "required": [ - "metricName", - "currentAverageValue" - ], - "properties": { - "currentAverageValue": { - "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "metricName": { - "description": "metricName is the name of the metric in question", - "type": "string" + "replicas": { + "description": "replicas is the actual number of observed instances of the scaled object.", + "type": "integer", + "format": "int32" }, "selector": { - "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": { - "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", - "type": "object", - "required": [ - "name" - ], - "properties": { - "name": { - "description": "name is the name of the resource in question.", - "type": "string" - }, - "targetAverageUtilization": { - "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", - "type": "integer", - "format": "int32" - }, - "targetAverageValue": { - "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - } - } - }, - "io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus": { - "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "type": "object", - "required": [ - "name", - "currentAverageValue" - ], - "properties": { - "currentAverageUtilization": { - "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", - "type": "integer", - "format": "int32" - }, - "currentAverageValue": { - "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - }, - "name": { - "description": "name is the name of the resource in question.", + "description": "selector is the label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/", "type": "string" } } }, - "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource": { + "io.k8s.api.autoscaling.v2.ContainerResourceMetricSource": { "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "type": "object", "required": [ @@ -8240,11 +8091,11 @@ }, "target": { "description": "target specifies the target value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget" } } }, - "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus": { + "io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus": { "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "type": "object", "required": [ @@ -8254,20 +8105,20 @@ ], "properties": { "container": { - "description": "Container is the name of the container in the pods of the scaling target", + "description": "container is the name of the container in the pods of the scaling target", "type": "string" }, "current": { "description": "current contains the current value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus" }, "name": { - "description": "Name is the name of the resource in question.", + "description": "name is the name of the resource in question.", "type": "string" } } }, - "io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference": { + "io.k8s.api.autoscaling.v2.CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "type": "object", "required": [ @@ -8276,20 +8127,20 @@ ], "properties": { "apiVersion": { - "description": "API version of the referent", + "description": "apiVersion is the 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\"", + "description": "kind is the 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 is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } } }, - "io.k8s.api.autoscaling.v2beta2.ExternalMetricSource": { + "io.k8s.api.autoscaling.v2.ExternalMetricSource": { "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", "type": "object", "required": [ @@ -8299,15 +8150,15 @@ "properties": { "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" }, "target": { "description": "target specifies the target value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget" } } }, - "io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus": { + "io.k8s.api.autoscaling.v2.ExternalMetricStatus": { "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", "type": "object", "required": [ @@ -8317,15 +8168,15 @@ "properties": { "current": { "description": "current contains the current value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus" }, "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" } } }, - "io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy": { + "io.k8s.api.autoscaling.v2.HPAScalingPolicy": { "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.", "type": "object", "required": [ @@ -8335,22 +8186,22 @@ ], "properties": { "periodSeconds": { - "description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", + "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", "type": "integer", "format": "int32" }, "type": { - "description": "Type is used to specify the scaling policy.", + "description": "type is used to specify the scaling policy.", "type": "string" }, "value": { - "description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero", + "description": "value contains the amount of change which is permitted by the policy. It must be greater than zero", "type": "integer", "format": "int32" } } }, - "io.k8s.api.autoscaling.v2beta2.HPAScalingRules": { + "io.k8s.api.autoscaling.v2.HPAScalingRules": { "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.", "type": "object", "properties": { @@ -8358,21 +8209,22 @@ "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy" - } + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingPolicy" + }, + "x-kubernetes-list-type": "atomic" }, "selectPolicy": { - "description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.", + "description": "selectPolicy is used to specify which policy should be used. If not set, the default value Max is used.", "type": "string" }, "stabilizationWindowSeconds": { - "description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", + "description": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", "type": "integer", "format": "int32" } } }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": { "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", "type": "object", "properties": { @@ -8390,36 +8242,36 @@ }, "spec": { "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec" }, "status": { "description": "status is the current information about the autoscaler.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", - "version": "v2beta2" + "version": "v2" } ] }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior": { "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).", "type": "object", "properties": { "scaleDown": { "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingRules" }, "scaleUp": { "description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HPAScalingRules" } } }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition": { "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", "type": "object", "required": [ @@ -8449,7 +8301,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList": { "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.", "type": "object", "required": [ @@ -8464,7 +8316,7 @@ "description": "items is the list of horizontal pod autoscaler objects.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" } }, "kind": { @@ -8480,11 +8332,11 @@ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", - "version": "v2beta2" + "version": "v2" } ] }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec": { "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", "type": "object", "required": [ @@ -8494,7 +8346,7 @@ "properties": { "behavior": { "description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior" }, "maxReplicas": { "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", @@ -8505,8 +8357,9 @@ "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricSpec" - } + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricSpec" + }, + "x-kubernetes-list-type": "atomic" }, "minReplicas": { "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", @@ -8515,32 +8368,37 @@ }, "scaleTargetRef": { "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" } } }, - "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus": { + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus": { "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", "type": "object", "required": [ - "currentReplicas", - "desiredReplicas", - "conditions" + "desiredReplicas" ], "properties": { "conditions": { "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition" - } + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, "currentMetrics": { "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricStatus" - } + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricStatus" + }, + "x-kubernetes-list-type": "atomic" }, "currentReplicas": { "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", @@ -8563,7 +8421,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.MetricIdentifier": { + "io.k8s.api.autoscaling.v2.MetricIdentifier": { "description": "MetricIdentifier defines the name and optionally selector for a metric", "type": "object", "required": [ @@ -8580,7 +8438,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.MetricSpec": { + "io.k8s.api.autoscaling.v2.MetricSpec": { "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", "type": "object", "required": [ @@ -8588,24 +8446,24 @@ ], "properties": { "containerResource": { - "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource" + "description": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ContainerResourceMetricSource" }, "external": { "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricSource" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ExternalMetricSource" }, "object": { "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricSource" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ObjectMetricSource" }, "pods": { "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricSource" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.PodsMetricSource" }, "resource": { "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricSource" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ResourceMetricSource" }, "type": { "description": "type is the type of metric source. It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", @@ -8613,7 +8471,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.MetricStatus": { + "io.k8s.api.autoscaling.v2.MetricStatus": { "description": "MetricStatus describes the last-read state of a single metric.", "type": "object", "required": [ @@ -8622,23 +8480,23 @@ "properties": { "containerResource": { "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus" }, "external": { "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ExternalMetricStatus" }, "object": { "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ObjectMetricStatus" }, "pods": { "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.PodsMetricStatus" }, "resource": { "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.ResourceMetricStatus" }, "type": { "description": "type is the type of metric source. It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", @@ -8646,7 +8504,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.MetricTarget": { + "io.k8s.api.autoscaling.v2.MetricTarget": { "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", "type": "object", "required": [ @@ -8672,7 +8530,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.MetricValueStatus": { + "io.k8s.api.autoscaling.v2.MetricValueStatus": { "description": "MetricValueStatus holds the current value for a metric", "type": "object", "properties": { @@ -8691,7 +8549,7 @@ } } }, - "io.k8s.api.autoscaling.v2beta2.ObjectMetricSource": { + "io.k8s.api.autoscaling.v2.ObjectMetricSource": { "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "type": "object", "required": [ @@ -8701,19 +8559,20 @@ ], "properties": { "describedObject": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference" + "description": "describedObject specifies the descriptions of a object,such as kind,name apiVersion", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" }, "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" }, "target": { "description": "target specifies the target value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget" } } }, - "io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus": { + "io.k8s.api.autoscaling.v2.ObjectMetricStatus": { "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "type": "object", "required": [ @@ -8724,18 +8583,19 @@ "properties": { "current": { "description": "current contains the current value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus" }, "describedObject": { - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference" + "description": "DescribedObject specifies the descriptions of a object,such as kind,name apiVersion", + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" }, "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" } } }, - "io.k8s.api.autoscaling.v2beta2.PodsMetricSource": { + "io.k8s.api.autoscaling.v2.PodsMetricSource": { "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", "type": "object", "required": [ @@ -8745,15 +8605,15 @@ "properties": { "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" }, "target": { "description": "target specifies the target value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget" } } }, - "io.k8s.api.autoscaling.v2beta2.PodsMetricStatus": { + "io.k8s.api.autoscaling.v2.PodsMetricStatus": { "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "type": "object", "required": [ @@ -8763,15 +8623,15 @@ "properties": { "current": { "description": "current contains the current value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus" }, "metric": { "description": "metric identifies the target metric by name and selector", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricIdentifier" } } }, - "io.k8s.api.autoscaling.v2beta2.ResourceMetricSource": { + "io.k8s.api.autoscaling.v2.ResourceMetricSource": { "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "type": "object", "required": [ @@ -8785,11 +8645,11 @@ }, "target": { "description": "target specifies the target value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricTarget" } } }, - "io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus": { + "io.k8s.api.autoscaling.v2.ResourceMetricStatus": { "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "type": "object", "required": [ @@ -8799,16 +8659,16 @@ "properties": { "current": { "description": "current contains the current value for the given metric", - "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus" + "$ref": "#/definitions/io.k8s.api.autoscaling.v2.MetricValueStatus" }, "name": { - "description": "Name is the name of the resource in question.", + "description": "name is the name of the resource in question.", "type": "string" } } }, - "io.k8s.api.batch.v1.Job": { - "description": "Job represents the configuration of a single job.", + "io.k8s.api.batch.v1.CronJob": { + "description": "CronJob represents the configuration of a single cron job.", "type": "object", "properties": { "apiVersion": { @@ -8824,58 +8684,24 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec" + "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobSpec" }, "status": { - "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus" + "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "Job", + "kind": "CronJob", "version": "v1" } ] }, - "io.k8s.api.batch.v1.JobCondition": { - "description": "JobCondition describes current state of a job.", - "type": "object", - "required": [ - "type", - "status" - ], - "properties": { - "lastProbeTime": { - "description": "Last time the condition was checked.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "lastTransitionTime": { - "description": "Last time the condition transit from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "Human readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "(brief) reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "Type of job condition, Complete or Failed.", - "type": "string" - } - } - }, - "io.k8s.api.batch.v1.JobList": { - "description": "JobList is a collection of jobs.", + "io.k8s.api.batch.v1.CronJobList": { + "description": "CronJobList is a collection of cron jobs.", "type": "object", "required": [ "items" @@ -8886,10 +8712,10 @@ "type": "string" }, "items": { - "description": "items is the list of Jobs.", + "description": "items is the list of CronJobs.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1.Job" + "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob" } }, "kind": { @@ -8904,97 +8730,80 @@ "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "JobList", + "kind": "CronJobList", "version": "v1" } ] }, - "io.k8s.api.batch.v1.JobSpec": { - "description": "JobSpec describes how the job execution will look like.", + "io.k8s.api.batch.v1.CronJobSpec": { + "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", "type": "object", "required": [ - "template" + "schedule", + "jobTemplate" ], "properties": { - "activeDeadlineSeconds": { - "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", - "type": "integer", - "format": "int64" + "concurrencyPolicy": { + "description": "Specifies how to treat concurrent executions of a Job. Valid values are:\n\n- \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "type": "string" }, - "backoffLimit": { - "description": "Specifies the number of retries before marking this job failed. Defaults to 6", + "failedJobsHistoryLimit": { + "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.", "type": "integer", "format": "int32" }, - "completions": { - "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", - "type": "integer", - "format": "int32" + "jobTemplate": { + "description": "Specifies the job that will be created when executing a CronJob.", + "$ref": "#/definitions/io.k8s.api.batch.v1.JobTemplateSpec" }, - "manualSelector": { - "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", - "type": "boolean" + "schedule": { + "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "type": "string" }, - "parallelism": { - "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "startingDeadlineSeconds": { + "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", "type": "integer", - "format": "int32" - }, - "selector": { - "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - }, - "template": { - "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", - "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" + "format": "int64" }, - "ttlSecondsAfterFinished": { - "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.", + "successfulJobsHistoryLimit": { + "description": "The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3.", "type": "integer", "format": "int32" + }, + "suspend": { + "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "type": "boolean" + }, + "timeZone": { + "description": "The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. If not specified, this will default to the time zone of the kube-controller-manager process. The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide time zone database can be found a bundled version of the database is used instead. If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone. More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones", + "type": "string" } } }, - "io.k8s.api.batch.v1.JobStatus": { - "description": "JobStatus represents the current state of a Job.", + "io.k8s.api.batch.v1.CronJobStatus": { + "description": "CronJobStatus represents the current state of a cron job.", "type": "object", "properties": { "active": { - "description": "The number of actively running pods.", - "type": "integer", - "format": "int32" - }, - "completionTime": { - "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "conditions": { - "description": "The latest available observations of an object's current state. When a job fails, one of the conditions will have type == \"Failed\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "description": "A list of pointers to currently running jobs.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition" + "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" + "x-kubernetes-list-type": "atomic" }, - "failed": { - "description": "The number of pods which reached phase Failed.", - "type": "integer", - "format": "int32" - }, - "startTime": { - "description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.", + "lastScheduleTime": { + "description": "Information when was the last time the job was successfully scheduled.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, - "succeeded": { - "description": "The number of pods which reached phase Succeeded.", - "type": "integer", - "format": "int32" + "lastSuccessfulTime": { + "description": "Information when was the last time the job successfully completed.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" } } }, - "io.k8s.api.batch.v1beta1.CronJob": { - "description": "CronJob represents the configuration of a single cron job.", + "io.k8s.api.batch.v1.Job": { + "description": "Job represents the configuration of a single job.", "type": "object", "properties": { "apiVersion": { @@ -9010,24 +8819,58 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec" + "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec" }, "status": { - "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus" + "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "CronJob", - "version": "v1beta1" + "kind": "Job", + "version": "v1" } ] }, - "io.k8s.api.batch.v1beta1.CronJobList": { - "description": "CronJobList is a collection of cron jobs.", + "io.k8s.api.batch.v1.JobCondition": { + "description": "JobCondition describes current state of a job.", + "type": "object", + "required": [ + "type", + "status" + ], + "properties": { + "lastProbeTime": { + "description": "Last time the condition was checked.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastTransitionTime": { + "description": "Last time the condition transit from one status to another.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Human readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "(brief) reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of job condition, Complete or Failed.", + "type": "string" + } + } + }, + "io.k8s.api.batch.v1.JobList": { + "description": "JobList is a collection of jobs.", "type": "object", "required": [ "items" @@ -9038,10 +8881,10 @@ "type": "string" }, "items": { - "description": "items is the list of CronJobs.", + "description": "items is the list of Jobs.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob" + "$ref": "#/definitions/io.k8s.api.batch.v1.Job" } }, "kind": { @@ -9056,70 +8899,145 @@ "x-kubernetes-group-version-kind": [ { "group": "batch", - "kind": "CronJobList", - "version": "v1beta1" + "kind": "JobList", + "version": "v1" } ] }, - "io.k8s.api.batch.v1beta1.CronJobSpec": { - "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "io.k8s.api.batch.v1.JobSpec": { + "description": "JobSpec describes how the job execution will look like.", "type": "object", "required": [ - "schedule", - "jobTemplate" + "template" ], "properties": { - "concurrencyPolicy": { - "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", - "type": "string" + "activeDeadlineSeconds": { + "description": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.", + "type": "integer", + "format": "int64" }, - "failedJobsHistoryLimit": { - "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "backoffLimit": { + "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "type": "integer", "format": "int32" }, - "jobTemplate": { - "description": "Specifies the job that will be created when executing a CronJob.", - "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec" + "backoffLimitPerIndex": { + "description": "Specifies the limit for the number of retries within an index before marking this index as failed. When enabled the number of failures per index is kept in the pod's batch.kubernetes.io/job-index-failure-count annotation. It can only be set when Job's completionMode=Indexed, and the Pod's restart policy is Never. The field is immutable. This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "type": "integer", + "format": "int32" }, - "schedule": { - "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "completionMode": { + "description": "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job.", "type": "string" }, - "startingDeadlineSeconds": { - "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + "completions": { + "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer", - "format": "int64" + "format": "int32" }, - "successfulJobsHistoryLimit": { - "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", + "manualSelector": { + "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", + "type": "boolean" + }, + "maxFailedIndexes": { + "description": "Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues execution of all of its indexes and is marked with the `Complete` Job condition. It can only be specified when backoffLimitPerIndex is set. It can be null or up to completions. It is required and must be less than or equal to 10^4 when is completions greater than 10^5. This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "type": "integer", + "format": "int32" + }, + "parallelism": { + "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer", "format": "int32" }, + "podFailurePolicy": { + "description": "Specifies the policy of handling failed pods. In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action. If empty, the default behaviour applies - the counter of failed pods, represented by the jobs's .status.failed field, is incremented and it is checked against the backoffLimit. This field cannot be used in combination with restartPolicy=OnFailure.\n\nThis field is beta-level. It can be used when the `JobPodFailurePolicy` feature gate is enabled (enabled by default).", + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicy" + }, + "podReplacementPolicy": { + "description": "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n Failed or Succeeded) before creating a replacement Pod.\n\nWhen using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle. This is on by default.", + "type": "string" + }, + "selector": { + "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, "suspend": { - "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "description": "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false.", "type": "boolean" + }, + "template": { + "description": "Describes the pod that will be created when executing a job. The only allowed template.spec.restartPolicy values are \"Never\" or \"OnFailure\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" + }, + "ttlSecondsAfterFinished": { + "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.batch.v1beta1.CronJobStatus": { - "description": "CronJobStatus represents the current state of a cron job.", + "io.k8s.api.batch.v1.JobStatus": { + "description": "JobStatus represents the current state of a Job.", "type": "object", "properties": { "active": { - "description": "A list of pointers to currently running jobs.", + "description": "The number of pending and running pods.", + "type": "integer", + "format": "int32" + }, + "completedIndexes": { + "description": "completedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".", + "type": "string" + }, + "completionTime": { + "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "conditions": { + "description": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" - } + "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition" + }, + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" }, - "lastScheduleTime": { - "description": "Information when was the last time the job was successfully scheduled.", + "failed": { + "description": "The number of pods which reached phase Failed.", + "type": "integer", + "format": "int32" + }, + "failedIndexes": { + "description": "FailedIndexes holds the failed indexes when backoffLimitPerIndex=true. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". This field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).", + "type": "string" + }, + "ready": { + "description": "The number of pods which have a Ready condition.", + "type": "integer", + "format": "int32" + }, + "startTime": { + "description": "Represents time when the job controller started processing a job. When a Job is created in the suspended state, this field is not set until the first time it is resumed. This field is reset every time a Job is resumed from suspension. It is represented in RFC3339 form and is in UTC.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "succeeded": { + "description": "The number of pods which reached phase Succeeded.", + "type": "integer", + "format": "int32" + }, + "terminating": { + "description": "The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp).\n\nThis field is beta-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default).", + "type": "integer", + "format": "int32" + }, + "uncountedTerminatedPods": { + "description": "uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer. 3. Remove the pod UID from the arrays while increasing the corresponding\n counter.\n\nOld jobs might not be tracked using this field, in which case the field remains null.", + "$ref": "#/definitions/io.k8s.api.batch.v1.UncountedTerminatedPods" } } }, - "io.k8s.api.batch.v1beta1.JobTemplateSpec": { + "io.k8s.api.batch.v1.JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job should have when created from a template", "type": "object", "properties": { @@ -9133,143 +9051,112 @@ } } }, - "io.k8s.api.batch.v2alpha1.CronJob": { - "description": "CronJob represents the configuration of a single cron job.", + "io.k8s.api.batch.v1.PodFailurePolicy": { + "description": "PodFailurePolicy describes how failed pods influence the backoffLimit.", "type": "object", + "required": [ + "rules" + ], "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", + "rules": { + "description": "A list of pod failure policy rules. The rules are evaluated in order. Once a rule matches a Pod failure, the remaining of the rules are ignored. When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit. At most 20 elements are allowed.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyRule" + }, + "x-kubernetes-list-type": "atomic" + } + } + }, + "io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement": { + "description": "PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement check.", + "type": "object", + "required": [ + "operator", + "values" + ], + "properties": { + "containerName": { + "description": "Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template.", "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", + "operator": { + "description": "Represents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is not in the set of specified values.\nAdditional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.", "type": "string" }, - "metadata": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec" - }, - "status": { - "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "batch", - "kind": "CronJob", - "version": "v2alpha1" + "values": { + "description": "Specifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed.", + "type": "array", + "items": { + "type": "integer", + "format": "int32" + }, + "x-kubernetes-list-type": "set" } - ] + } }, - "io.k8s.api.batch.v2alpha1.CronJobList": { - "description": "CronJobList is a collection of cron jobs.", + "io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern": { + "description": "PodFailurePolicyOnPodConditionsPattern describes a pattern for matching an actual pod condition type.", "type": "object", "required": [ - "items" + "type", + "status" ], "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", + "status": { + "description": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.", "type": "string" }, - "items": { - "description": "items is the list of CronJobs.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" - } - }, - "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": { + "description": "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.", "type": "string" - }, - "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "batch", - "kind": "CronJobList", - "version": "v2alpha1" } - ] + } }, - "io.k8s.api.batch.v2alpha1.CronJobSpec": { - "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "io.k8s.api.batch.v1.PodFailurePolicyRule": { + "description": "PodFailurePolicyRule describes how a pod failure is handled when the requirements are met. One of onExitCodes and onPodConditions, but not both, can be used in each rule.", "type": "object", "required": [ - "schedule", - "jobTemplate" + "action" ], "properties": { - "concurrencyPolicy": { - "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "action": { + "description": "Specifies the action taken on a pod failure when the requirements are satisfied. Possible values are:\n\n- FailJob: indicates that the pod's job is marked as Failed and all\n running pods are terminated.\n- FailIndex: indicates that the pod's index is marked as Failed and will\n not be restarted.\n This value is beta-level. It can be used when the\n `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).\n- Ignore: indicates that the counter towards the .backoffLimit is not\n incremented and a replacement pod is created.\n- Count: indicates that the pod is handled in the default way - the\n counter towards the .backoffLimit is incremented.\nAdditional values are considered to be added in the future. Clients should react to an unknown action by skipping the rule.", "type": "string" }, - "failedJobsHistoryLimit": { - "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", - "type": "integer", - "format": "int32" - }, - "jobTemplate": { - "description": "Specifies the job that will be created when executing a CronJob.", - "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec" - }, - "schedule": { - "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", - "type": "string" + "onExitCodes": { + "description": "Represents the requirement on the container exit codes.", + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement" }, - "startingDeadlineSeconds": { - "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", - "type": "integer", - "format": "int64" - }, - "successfulJobsHistoryLimit": { - "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", - "type": "integer", - "format": "int32" - }, - "suspend": { - "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", - "type": "boolean" - } - } - }, - "io.k8s.api.batch.v2alpha1.CronJobStatus": { - "description": "CronJobStatus represents the current state of a cron job.", - "type": "object", - "properties": { - "active": { - "description": "A list of pointers to currently running jobs.", + "onPodConditions": { + "description": "Represents the requirement on the pod conditions. The requirement is represented as a list of pod condition patterns. The requirement is satisfied if at least one pattern matches an actual pod condition. At most 20 elements are allowed.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" - } - }, - "lastScheduleTime": { - "description": "Information when was the last time the job was successfully scheduled.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + "$ref": "#/definitions/io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.batch.v2alpha1.JobTemplateSpec": { - "description": "JobTemplateSpec describes the data a Job should have when created from a template", + "io.k8s.api.batch.v1.UncountedTerminatedPods": { + "description": "UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.", "type": "object", "properties": { - "metadata": { - "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "failed": { + "description": "failed holds UIDs of failed Pods.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" }, - "spec": { - "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec" + "succeeded": { + "description": "succeeded holds UIDs of succeeded Pods.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, @@ -9292,7 +9179,7 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users.", + "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, expirationSeconds, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users.", "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestSpec" }, "status": { @@ -9384,6 +9271,11 @@ "signerName" ], "properties": { + "expirationSeconds": { + "description": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n 1. Old signer that is unaware of the field (such as the in-tree\n implementations prior to v1.22)\n 2. Signer whose configured maximum is shorter than the requested duration\n 3. Signer whose configured minimum is longer than the requested duration\n\nThe minimum valid value for expirationSeconds is 600, i.e. 10 minutes.", + "type": "integer", + "format": "int32" + }, "extra": { "description": "extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.", "type": "object", @@ -9453,9 +9345,12 @@ } } }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequest": { - "description": "Describes a certificate signing request", + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": { + "description": "ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root certificates).\n\nClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the `clusterTrustBundle` projection. All service accounts have read access to ClusterTrustBundles by default. Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to.\n\nIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer. Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle.", "type": "object", + "required": [ + "spec" + ], "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", @@ -9466,58 +9361,24 @@ "type": "string" }, "metadata": { + "description": "metadata contains the object metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "The certificate request itself and any additional information.", - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec" - }, - "status": { - "description": "Derived information about the request.", - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus" + "description": "spec contains the signer (if any) and trust anchors.", + "$ref": "#/definitions/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec" } }, "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", - "kind": "CertificateSigningRequest", - "version": "v1beta1" + "kind": "ClusterTrustBundle", + "version": "v1alpha1" } ] }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition": { - "type": "object", - "required": [ - "type" - ], - "properties": { - "lastTransitionTime": { - "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "lastUpdateTime": { - "description": "timestamp for the last update to this condition", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "human readable message with details about the request state", - "type": "string" - }, - "reason": { - "description": "brief reason for the request state", - "type": "string" - }, - "status": { - "description": "Status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\". Defaults to \"True\". If unset, should be treated as \"True\".", - "type": "string" - }, - "type": { - "description": "type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\".", - "type": "string" - } - } - }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList": { + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList": { + "description": "ClusterTrustBundleList is a collection of ClusterTrustBundle objects", "type": "object", "required": [ "items" @@ -9528,9 +9389,10 @@ "type": "string" }, "items": { + "description": "items is a collection of ClusterTrustBundle objects", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" + "$ref": "#/definitions/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" } }, "kind": { @@ -9538,92 +9400,35 @@ "type": "string" }, "metadata": { + "description": "metadata contains the list metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", - "kind": "CertificateSigningRequestList", - "version": "v1beta1" + "kind": "ClusterTrustBundleList", + "version": "v1alpha1" } ] }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec": { - "description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.", + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec": { + "description": "ClusterTrustBundleSpec contains the signer and trust anchors.", "type": "object", "required": [ - "request" + "trustBundle" ], "properties": { - "extra": { - "description": "Extra information about the requesting user. See user.Info interface for details.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "groups": { - "description": "Group information about the requesting user. See user.Info interface for details.", - "type": "array", - "items": { - "type": "string" - }, - "x-kubernetes-list-type": "atomic" - }, - "request": { - "description": "Base64-encoded PKCS#10 CSR data", - "type": "string", - "format": "byte", - "x-kubernetes-list-type": "atomic" - }, "signerName": { - "description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.", - "type": "string" - }, - "uid": { - "description": "UID information about the requesting user. See user.Info interface for details.", + "description": "signerName indicates the associated signer, if any.\n\nIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificates.k8s.io resource=signers resourceName=\u003cthe signer name\u003e verb=attest.\n\nIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `example.com:foo:abc` and `example.com:foo:v1`.\n\nIf signerName is empty, then the ClusterTrustBundle object's name must not have such a prefix.\n\nList/watch requests for ClusterTrustBundles can filter on this field using a `spec.signerName=NAME` field selector.", "type": "string" }, - "usages": { - "description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12\nValid values are:\n \"signing\",\n \"digital signature\",\n \"content commitment\",\n \"key encipherment\",\n \"key agreement\",\n \"data encipherment\",\n \"cert sign\",\n \"crl sign\",\n \"encipher only\",\n \"decipher only\",\n \"any\",\n \"server auth\",\n \"client auth\",\n \"code signing\",\n \"email protection\",\n \"s/mime\",\n \"ipsec end system\",\n \"ipsec tunnel\",\n \"ipsec user\",\n \"timestamping\",\n \"ocsp signing\",\n \"microsoft sgc\",\n \"netscape sgc\"", - "type": "array", - "items": { - "type": "string" - }, - "x-kubernetes-list-type": "atomic" - }, - "username": { - "description": "Information about the requesting user. See user.Info interface for details.", + "trustBundle": { + "description": "trustBundle contains the individual X.509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.\n\nThe data must consist only of PEM certificate blocks that parse as valid X.509 certificates. Each certificate must include a basic constraints extension with the CA bit set. The API server will reject objects that contain duplicate certificates, or that use PEM block headers.\n\nUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data.", "type": "string" } } }, - "io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus": { - "type": "object", - "properties": { - "certificate": { - "description": "If request was approved, the controller will place the issued certificate here.", - "type": "string", - "format": "byte", - "x-kubernetes-list-type": "atomic" - }, - "conditions": { - "description": "Conditions applied to the request, such as approval or denial.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition" - }, - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map" - } - } - }, "io.k8s.api.coordination.v1.Lease": { "description": "Lease defines a lease concept.", "type": "object", @@ -9641,7 +9446,7 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec" } }, @@ -9665,7 +9470,7 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "items is a list of schema objects.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease" @@ -9701,99 +9506,7 @@ "type": "string" }, "leaseDurationSeconds": { - "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", - "type": "integer", - "format": "int32" - }, - "leaseTransitions": { - "description": "leaseTransitions is the number of transitions of a lease between holders.", - "type": "integer", - "format": "int32" - }, - "renewTime": { - "description": "renewTime is a time when the current holder of a lease has last updated the lease.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" - } - } - }, - "io.k8s.api.coordination.v1beta1.Lease": { - "description": "Lease defines a lease concept.", - "type": "object", - "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": { - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseSpec" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "coordination.k8s.io", - "kind": "Lease", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.coordination.v1beta1.LeaseList": { - "description": "LeaseList is a list of Lease objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is a list of schema objects.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease" - } - }, - "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": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "coordination.k8s.io", - "kind": "LeaseList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.coordination.v1beta1.LeaseSpec": { - "description": "LeaseSpec is a specification of a Lease.", - "type": "object", - "properties": { - "acquireTime": { - "description": "acquireTime is a time when the current lease was acquired.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" - }, - "holderIdentity": { - "description": "holderIdentity contains the identity of the holder of a current lease.", - "type": "string" - }, - "leaseDurationSeconds": { - "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", + "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed renewTime.", "type": "integer", "format": "int32" }, @@ -9816,20 +9529,20 @@ ], "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { - "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer", "format": "int32" }, "readOnly": { - "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { - "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } } @@ -9879,27 +9592,27 @@ ], "properties": { "cachingMode": { - "description": "Host Caching mode: None, Read Only, Read Write.", + "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { - "description": "The Name of the data disk in the blob storage", + "description": "diskName is the Name of the data disk in the blob storage", "type": "string" }, "diskURI": { - "description": "The URI the data disk in the blob storage", + "description": "diskURI is the URI of data disk in the blob storage", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { - "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", + "description": "kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } } @@ -9913,19 +9626,19 @@ ], "properties": { "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { - "description": "the name of secret that contains Azure Storage Account Name and Key", + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { - "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", + "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { - "description": "Share Name", + "description": "shareName is the azure Share Name", "type": "string" } } @@ -9939,15 +9652,15 @@ ], "properties": { "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { - "description": "the name of secret that contains Azure Storage Account Name and Key", + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { - "description": "Share Name", + "description": "shareName is the azure share Name", "type": "string" } } @@ -9993,42 +9706,46 @@ ], "properties": { "controllerExpandSecretRef": { - "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "controllerPublishSecretRef": { - "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "driver": { - "description": "Driver is the name of the driver to use for this volume. Required.", + "description": "driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", + "description": "fsType to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, + "nodeExpandSecretRef": { + "description": "nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call. This field is optional, may be omitted if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" + }, "nodePublishSecretRef": { - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "nodeStageSecretRef": { - "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "readOnly": { - "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", + "description": "readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { - "description": "Attributes of the volume to publish.", + "description": "volumeAttributes of the volume to publish.", "type": "object", "additionalProperties": { "type": "string" } }, "volumeHandle": { - "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", + "description": "volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } } @@ -10041,23 +9758,23 @@ ], "properties": { "driver": { - "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", + "description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", + "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.", + "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "readOnly": { - "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", + "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { - "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", + "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object", "additionalProperties": { "type": "string" @@ -10093,30 +9810,30 @@ ], "properties": { "monitors": { - "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "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": "array", "items": { "type": "string" } }, "path": { - "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { - "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { - "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "user": { - "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "user is Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } } @@ -10129,30 +9846,30 @@ ], "properties": { "monitors": { - "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "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": "array", "items": { "type": "string" } }, "path": { - "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { - "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { - "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "user": { - "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } } @@ -10165,19 +9882,19 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "fsType Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { - "description": "Optional: points to a secret object containing parameters used to connect to OpenStack.", + "description": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "volumeID": { - "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } } @@ -10190,19 +9907,33 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { - "description": "Optional: points to a secret object containing parameters used to connect to OpenStack.", + "description": "secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "volumeID": { - "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "string" + } + } + }, + "io.k8s.api.core.v1.ClaimSource": { + "description": "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.", + "type": "object", + "properties": { + "resourceClaimName": { + "description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.", + "type": "string" + }, + "resourceClaimTemplateName": { + "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", "type": "string" } } @@ -10218,6 +9949,35 @@ } } }, + "io.k8s.api.core.v1.ClusterTrustBundleProjection": { + "description": "ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.", + "type": "object", + "required": [ + "path" + ], + "properties": { + "labelSelector": { + "description": "Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as \"match nothing\". If set but empty, interpreted as \"match everything\".", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "name": { + "description": "Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.", + "type": "string" + }, + "optional": { + "description": "If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.", + "type": "boolean" + }, + "path": { + "description": "Relative path from the volume root to write the bundle.", + "type": "string" + }, + "signerName": { + "description": "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.", + "type": "string" + } + } + }, "io.k8s.api.core.v1.ComponentCondition": { "description": "Information about the condition of a component.", "type": "object", @@ -10337,7 +10097,7 @@ } }, "immutable": { - "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is a beta field enabled by ImmutableEphemeralVolumes feature gate.", + "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", "type": "boolean" }, "kind": { @@ -10390,7 +10150,8 @@ "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ConfigMapList": { "description": "ConfigMapList is a resource containing a list of ConfigMap objects.", @@ -10428,7 +10189,7 @@ ] }, "io.k8s.api.core.v1.ConfigMapNodeConfigSource": { - "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", + "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration", "type": "object", "required": [ "namespace", @@ -10463,7 +10224,7 @@ "type": "object", "properties": { "items": { - "description": "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 '..'.", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" @@ -10474,7 +10235,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the ConfigMap or its keys must be defined", + "description": "optional specify whether the ConfigMap or its keys must be defined", "type": "boolean" } } @@ -10484,12 +10245,12 @@ "type": "object", "properties": { "defaultMode": { - "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer", "format": "int32" }, "items": { - "description": "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 '..'.", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" @@ -10500,7 +10261,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the ConfigMap or its keys must be defined", + "description": "optional specify whether the ConfigMap or its keys must be defined", "type": "boolean" } } @@ -10513,14 +10274,14 @@ ], "properties": { "args": { - "description": "Arguments to the entrypoint. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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": "array", "items": { "type": "string" } }, "command": { - "description": "Entrypoint array. Not executed within a shell. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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": "array", "items": { "type": "string" @@ -10543,7 +10304,7 @@ } }, "image": { - "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { @@ -10563,7 +10324,7 @@ "type": "string" }, "ports": { - "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", + "description": "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort" @@ -10580,12 +10341,24 @@ "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "$ref": "#/definitions/io.k8s.api.core.v1.Probe" }, - "resources": { - "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "resizePolicy": { + "description": "Resources resize policy for the container.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements" }, + "restartPolicy": { + "description": "RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \"Always\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \"Always\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \"Always\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \"sidecar\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.", + "type": "string" + }, "securityContext": { - "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/", + "description": "SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/", "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext" }, "startupProbe": { @@ -10639,12 +10412,9 @@ "io.k8s.api.core.v1.ContainerImage": { "description": "Describe a container image", "type": "object", - "required": [ - "names" - ], "properties": { "names": { - "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", + "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": "array", "items": { "type": "string" @@ -10688,6 +10458,24 @@ } } }, + "io.k8s.api.core.v1.ContainerResizePolicy": { + "description": "ContainerResizePolicy represents resource resize policy for the container.", + "type": "object", + "required": [ + "resourceName", + "restartPolicy" + ], + "properties": { + "resourceName": { + "description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.", + "type": "string" + }, + "restartPolicy": { + "description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.", + "type": "string" + } + } + }, "io.k8s.api.core.v1.ContainerState": { "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", "type": "object", @@ -10724,7 +10512,7 @@ ], "properties": { "containerID": { - "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'", + "description": "Container's ID in the format '\u003ctype\u003e://\u003ccontainer_id\u003e'", "type": "string" }, "exitCode": { @@ -10780,41 +10568,52 @@ "imageID" ], "properties": { + "allocatedResources": { + "description": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, "containerID": { - "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'.", + "description": "ContainerID is the ID of the container in the format '\u003ctype\u003e://\u003ccontainer_id\u003e'. Where type is a container runtime identifier, returned from Version call of CRI API (for example \"containerd\").", "type": "string" }, "image": { - "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", + "description": "Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.", "type": "string" }, "imageID": { - "description": "ImageID of the container's image.", + "description": "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.", "type": "string" }, "lastState": { - "description": "Details about the container's last termination condition.", + "description": "LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0.", "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState" }, "name": { - "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.", + "description": "Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.", "type": "string" }, "ready": { - "description": "Specifies whether the container has passed its readiness probe.", + "description": "Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field).\n\nThe value is typically used to determine whether a container is ready to accept traffic.", "type": "boolean" }, + "resources": { + "description": "Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized.", + "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements" + }, "restartCount": { - "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.", + "description": "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.", "type": "integer", "format": "int32" }, "started": { - "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", + "description": "Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.", "type": "boolean" }, "state": { - "description": "Details about the container's current condition.", + "description": "State holds details about the container's current condition.", "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState" } } @@ -10895,11 +10694,11 @@ "type": "object", "properties": { "medium": { - "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + "description": "medium represents what type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { - "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir", + "description": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" } } @@ -10916,7 +10715,7 @@ "type": "string" }, "ip": { - "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.", + "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).", "type": "string" }, "nodeName": { @@ -10927,7 +10726,8 @@ "description": "Reference to object providing the endpoint.", "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.EndpointPort": { "description": "EndpointPort is a tuple that describes a single port.", @@ -10937,7 +10737,7 @@ ], "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { @@ -10953,10 +10753,11 @@ "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.EndpointSubset": { - "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]", + "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n\n\t{\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t}\n\nThe resulting set of endpoints can be viewed as:\n\n\ta: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n\tb: [ 10.10.1.1:309, 10.10.2.2:309 ]", "type": "object", "properties": { "addresses": { @@ -10983,7 +10784,7 @@ } }, "io.k8s.api.core.v1.Endpoints": { - "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n Name: \"mysvc\",\n Subsets: [\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n },\n {\n Addresses: [{\"ip\": \"10.10.3.3\"}],\n Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n },\n ]", + "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n\n\t Name: \"mysvc\",\n\t Subsets: [\n\t {\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t },\n\t {\n\t Addresses: [{\"ip\": \"10.10.3.3\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n\t },\n\t]", "type": "object", "properties": { "apiVersion": { @@ -11079,7 +10880,7 @@ "type": "string" }, "value": { - "description": "Variable references $(VAR_NAME) are expanded using the previous 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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": { @@ -11111,21 +10912,21 @@ } }, "io.k8s.api.core.v1.EphemeralContainer": { - "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", + "description": "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.\n\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.", "type": "object", "required": [ "name" ], "properties": { "args": { - "description": "Arguments to the entrypoint. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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": "array", "items": { "type": "string" } }, "command": { - "description": "Entrypoint array. Not executed within a shell. The docker 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. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(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", + "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": "array", "items": { "type": "string" @@ -11148,7 +10949,7 @@ } }, "image": { - "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { @@ -11172,18 +10973,37 @@ "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort" - } + }, + "x-kubernetes-list-map-keys": [ + "containerPort", + "protocol" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "containerPort", + "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "description": "Probes are not allowed for ephemeral containers.", "$ref": "#/definitions/io.k8s.api.core.v1.Probe" }, + "resizePolicy": { + "description": "Resources resize policy for the container.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "x-kubernetes-list-type": "atomic" + }, "resources": { "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements" }, + "restartPolicy": { + "description": "Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers.", + "type": "string" + }, "securityContext": { - "description": "SecurityContext is not allowed for ephemeral containers.", + "description": "Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.", "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext" }, "startupProbe": { @@ -11199,7 +11019,7 @@ "type": "boolean" }, "targetContainerName": { - "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", + "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.", "type": "string" }, "terminationMessagePath": { @@ -11224,7 +11044,7 @@ "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { - "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", + "description": "Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount" @@ -11242,10 +11062,6 @@ "description": "Represents an ephemeral volume that is handled by a normal storage driver.", "type": "object", "properties": { - "readOnly": { - "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", - "type": "boolean" - }, "volumeClaimTemplate": { "description": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\u003cpod name\u003e-\u003cvolume name\u003e` where `\u003cvolume name\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been created.\n\nRequired, must not be nil.", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate" @@ -11420,27 +11236,27 @@ "type": "object", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { - "description": "Optional: FC target lun number", + "description": "lun is Optional: FC target lun number", "type": "integer", "format": "int32" }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { - "description": "Optional: FC target worldwide names (WWNs)", + "description": "targetWWNs is Optional: FC target worldwide names (WWNs)", "type": "array", "items": { "type": "string" } }, "wwids": { - "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", + "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": "array", "items": { "type": "string" @@ -11456,26 +11272,26 @@ ], "properties": { "driver": { - "description": "Driver is the name of the driver to use for this volume.", + "description": "driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "description": "fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { - "description": "Optional: Extra command options if any.", + "description": "options is Optional: this field holds extra command options if any.", "type": "object", "additionalProperties": { "type": "string" } }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.", + "description": "secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" } } @@ -11488,26 +11304,26 @@ ], "properties": { "driver": { - "description": "Driver is the name of the driver to use for this volume.", + "description": "driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { - "description": "Optional: Extra command options if any.", + "description": "options is Optional: this field holds extra command options if any.", "type": "object", "additionalProperties": { "type": "string" } }, "readOnly": { - "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.", + "description": "secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" } } @@ -11517,11 +11333,11 @@ "type": "object", "properties": { "datasetName": { - "description": "Name of the dataset stored as metadata -\u003e name on the dataset for Flocker should be considered as deprecated", + "description": "datasetName is Name of the dataset stored as metadata -\u003e name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { - "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", + "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } } @@ -11534,24 +11350,41 @@ ], "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { - "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer", "format": "int32" }, "pdName": { - "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } } }, + "io.k8s.api.core.v1.GRPCAction": { + "type": "object", + "required": [ + "port" + ], + "properties": { + "port": { + "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.", + "type": "integer", + "format": "int32" + }, + "service": { + "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.", + "type": "string" + } + } + }, "io.k8s.api.core.v1.GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "type": "object", @@ -11560,15 +11393,15 @@ ], "properties": { "directory": { - "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", + "description": "directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { - "description": "Repository URL", + "description": "repository is the URL", "type": "string" }, "revision": { - "description": "Commit hash for the specified revision.", + "description": "revision is the commit hash for the specified revision.", "type": "string" } } @@ -11582,19 +11415,19 @@ ], "properties": { "endpoints": { - "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { - "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { - "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } } @@ -11608,15 +11441,15 @@ ], "properties": { "endpoints": { - "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { - "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } } @@ -11662,7 +11495,7 @@ ], "properties": { "name": { - "description": "The header field name", + "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.", "type": "string" }, "value": { @@ -11671,24 +11504,6 @@ } } }, - "io.k8s.api.core.v1.Handler": { - "description": "Handler defines a specific action that should be taken", - "type": "object", - "properties": { - "exec": { - "description": "One and only one of the following should be specified. Exec specifies the action to take.", - "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction" - }, - "httpGet": { - "description": "HTTPGet specifies the http request to perform.", - "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction" - }, - "tcpSocket": { - "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported", - "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction" - } - } - }, "io.k8s.api.core.v1.HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "type": "object", @@ -11706,6 +11521,16 @@ } } }, + "io.k8s.api.core.v1.HostIP": { + "description": "HostIP represents a single IP address allocated to the host.", + "type": "object", + "properties": { + "ip": { + "description": "IP is the IP address assigned to the host", + "type": "string" + } + } + }, "io.k8s.api.core.v1.HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "type": "object", @@ -11714,11 +11539,11 @@ ], "properties": { "path": { - "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { - "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } } @@ -11733,51 +11558,51 @@ ], "properties": { "chapAuthDiscovery": { - "description": "whether support iSCSI Discovery CHAP authentication", + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { - "description": "whether support iSCSI Session CHAP authentication", + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { - "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", "type": "string" }, "iqn": { - "description": "Target iSCSI Qualified Name.", + "description": "iqn is Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { - "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { - "description": "iSCSI Target Lun number.", + "description": "lun is iSCSI Target Lun number.", "type": "integer", "format": "int32" }, "portals": { - "description": "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).", + "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": "array", "items": { "type": "string" } }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { - "description": "CHAP Secret for iSCSI target and initiator authentication", + "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "targetPortal": { - "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "description": "targetPortal is iSCSI Target Portal. 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" } } @@ -11792,51 +11617,51 @@ ], "properties": { "chapAuthDiscovery": { - "description": "whether support iSCSI Discovery CHAP authentication", + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { - "description": "whether support iSCSI Session CHAP authentication", + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { - "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.", "type": "string" }, "iqn": { - "description": "Target iSCSI Qualified Name.", + "description": "iqn is the target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { - "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { - "description": "iSCSI Target Lun number.", + "description": "lun represents iSCSI Target Lun number.", "type": "integer", "format": "int32" }, "portals": { - "description": "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).", + "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": "array", "items": { "type": "string" } }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { - "description": "CHAP Secret for iSCSI target and initiator authentication", + "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "targetPortal": { - "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "description": "targetPortal is iSCSI Target Portal. 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" } } @@ -11850,16 +11675,16 @@ ], "properties": { "key": { - "description": "The key to project.", + "description": "key is the key to project.", "type": "string" }, "mode": { - "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer", "format": "int32" }, "path": { - "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", + "description": "path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } } @@ -11870,11 +11695,33 @@ "properties": { "postStart": { "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", - "$ref": "#/definitions/io.k8s.api.core.v1.Handler" + "$ref": "#/definitions/io.k8s.api.core.v1.LifecycleHandler" }, "preStop": { - "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", - "$ref": "#/definitions/io.k8s.api.core.v1.Handler" + "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", + "$ref": "#/definitions/io.k8s.api.core.v1.LifecycleHandler" + } + } + }, + "io.k8s.api.core.v1.LifecycleHandler": { + "description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.", + "type": "object", + "properties": { + "exec": { + "description": "Exec specifies the action to take.", + "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction" + }, + "httpGet": { + "description": "HTTPGet specifies the http request to perform.", + "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction" + }, + "sleep": { + "description": "Sleep represents the duration that the container should sleep before being terminated.", + "$ref": "#/definitions/io.k8s.api.core.v1.SleepAction" + }, + "tcpSocket": { + "description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.", + "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction" } } }, @@ -11967,7 +11814,7 @@ "type": "string" }, "items": { - "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange" @@ -12018,6 +11865,10 @@ "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" }, + "ipMode": { + "description": "IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + "type": "string" + }, "ports": { "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", "type": "array", @@ -12049,7 +11900,8 @@ "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", @@ -12059,11 +11911,28 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", + "description": "fsType is the filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a filesystem if unspecified.", "type": "string" }, "path": { - "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", + "description": "path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", + "type": "string" + } + } + }, + "io.k8s.api.core.v1.ModifyVolumeStatus": { + "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation", + "type": "object", + "required": [ + "status" + ], + "properties": { + "status": { + "description": "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n the specified VolumeAttributesClass not existing.\n - InProgress\n InProgress indicates that the volume is being modified.\n - Infeasible\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.", + "type": "string" + }, + "targetVolumeAttributesClassName": { + "description": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled", "type": "string" } } @@ -12077,15 +11946,15 @@ ], "properties": { "path": { - "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { - "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } } @@ -12320,7 +12189,7 @@ } }, "io.k8s.api.core.v1.NodeConfigSource": { - "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", + "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22", "type": "object", "properties": { "configMap": { @@ -12410,7 +12279,8 @@ "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm" } } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", @@ -12455,14 +12325,15 @@ "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement" } } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.NodeSpec": { "description": "NodeSpec describes the attributes that a node is created with.", "type": "object", "properties": { "configSource": { - "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field", + "description": "Deprecated: Previously used to specify the source of the node's configuration for the DynamicKubeletConfig feature. This feature is removed.", "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource" }, "externalID": { @@ -12503,7 +12374,7 @@ "type": "object", "properties": { "addresses": { - "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.", + "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See https://pr.k8s.io/79391 for an example. Consumers should assume that addresses can change during the lifetime of a Node. However, there are some exceptions where this may not be possible, such as Pods that inherit a Node's address in its own status or consumers of the downward API (status.hostIP).", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress" @@ -12598,7 +12469,7 @@ "type": "string" }, "containerRuntimeVersion": { - "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", + "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).", "type": "string" }, "kernelVersion": { @@ -12646,7 +12517,8 @@ "description": "Path of the field to select in the specified API version.", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", @@ -12680,7 +12552,8 @@ "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.PersistentVolume": { "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", @@ -12699,11 +12572,11 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", + "description": "spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" }, "status": { - "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", + "description": "status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus" } }, @@ -12732,11 +12605,11 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec" }, "status": { - "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus" } }, @@ -12749,7 +12622,7 @@ ] }, "io.k8s.api.core.v1.PersistentVolumeClaimCondition": { - "description": "PersistentVolumeClaimCondition contails details about state of pvc", + "description": "PersistentVolumeClaimCondition contains details about state of pvc", "type": "object", "required": [ "type", @@ -12757,19 +12630,19 @@ ], "properties": { "lastProbeTime": { - "description": "Last time we probed the condition.", + "description": "lastProbeTime is the time we probed the condition.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "lastTransitionTime": { - "description": "Last time the condition transitioned from one status to another.", + "description": "lastTransitionTime is the time the condition transitioned from one status to another.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "message": { - "description": "Human-readable message indicating details about last transition.", + "description": "message is the human-readable message indicating details about last transition.", "type": "string" }, "reason": { - "description": "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 \"ResizeStarted\" that means the underlying persistent volume is being resized.", "type": "string" }, "status": { @@ -12792,7 +12665,7 @@ "type": "string" }, "items": { - "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "items is a list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" @@ -12820,26 +12693,34 @@ "type": "object", "properties": { "accessModes": { - "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + "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": "array", "items": { "type": "string" } }, "dataSource": { - "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.", + "description": "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.", "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" }, + "dataSourceRef": { + "description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", + "$ref": "#/definitions/io.k8s.api.core.v1.TypedObjectReference" + }, "resources": { - "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources", - "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements" + "description": "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources", + "$ref": "#/definitions/io.k8s.api.core.v1.VolumeResourceRequirements" }, "selector": { - "description": "A label query over volumes to consider for binding.", + "description": "selector is a label query over volumes to consider for binding.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, "storageClassName": { - "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + "type": "string" + }, + "volumeAttributesClassName": { + "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.", "type": "string" }, "volumeMode": { @@ -12847,7 +12728,7 @@ "type": "string" }, "volumeName": { - "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.", + "description": "volumeName is the binding reference to the PersistentVolume backing this claim.", "type": "string" } } @@ -12857,21 +12738,36 @@ "type": "object", "properties": { "accessModes": { - "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", + "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": "array", "items": { "type": "string" } }, + "allocatedResourceStatuses": { + "description": "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object", + "additionalProperties": { + "type": "string" + }, + "x-kubernetes-map-type": "granular" + }, + "allocatedResources": { + "description": "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, "capacity": { - "description": "Represents the actual resources of the underlying volume.", + "description": "capacity represents the actual resources of the underlying volume.", "type": "object", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" } }, "conditions": { - "description": "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 'ResizeStarted'.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition" @@ -12879,8 +12775,16 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentVolumeAttributesClassName": { + "description": "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature.", + "type": "string" + }, + "modifyVolumeStatus": { + "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is an alpha field and requires enabling VolumeAttributesClass feature.", + "$ref": "#/definitions/io.k8s.api.core.v1.ModifyVolumeStatus" + }, "phase": { - "description": "Phase represents the current phase of PersistentVolumeClaim.", + "description": "phase represents the current phase of PersistentVolumeClaim.", "type": "string" } } @@ -12910,11 +12814,11 @@ ], "properties": { "claimName": { - "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { - "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", + "description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } } @@ -12931,7 +12835,7 @@ "type": "string" }, "items": { - "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + "description": "items is a list of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume" @@ -12959,132 +12863,137 @@ "type": "object", "properties": { "accessModes": { - "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", + "description": "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "type": "array", "items": { "type": "string" } }, "awsElasticBlockStore": { - "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" }, "azureDisk": { - "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource" }, "azureFile": { - "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource" }, "capacity": { - "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + "description": "capacity is the description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" } }, "cephfs": { - "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime", "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource" }, "cinder": { - "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource" }, "claimRef": { - "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding", + "description": "claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding", + "x-kubernetes-map-type": "granular", "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, "csi": { - "description": "CSI represents storage that is handled by an external CSI driver (Beta feature).", + "description": "csi represents storage that is handled by an external CSI driver (Beta feature).", "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource" }, "fc": { - "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource" }, "flexVolume": { - "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", + "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource" }, "flocker": { - "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running", + "description": "flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running", "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource" }, "gcePersistentDisk": { - "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" }, "glusterfs": { - "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md", + "description": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource" }, "hostPath": { - "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource" }, "iscsi": { - "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.", + "description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.", "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource" }, "local": { - "description": "Local represents directly-attached storage with node affinity", + "description": "local represents directly-attached storage with node affinity", "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource" }, "mountOptions": { - "description": "A 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", + "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": "array", "items": { "type": "string" } }, "nfs": { - "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource" }, "nodeAffinity": { - "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.", + "description": "nodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.", "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", + "description": "persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { - "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" }, "portworxVolume": { - "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource" }, "quobyte": { - "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime", "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource" }, "rbd": { - "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md", + "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource" }, "scaleIO": { - "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", + "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { - "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md", + "description": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource" }, + "volumeAttributesClassName": { + "description": "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process. This is an alpha field and requires enabling VolumeAttributesClass feature.", + "type": "string" + }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { - "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" } } @@ -13093,16 +13002,20 @@ "description": "PersistentVolumeStatus is the current status of a persistent volume.", "type": "object", "properties": { + "lastPhaseTransitionTime": { + "description": "lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions. This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default).", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, "message": { - "description": "A human-readable message indicating details about why the volume is in this state.", + "description": "message is a human-readable message indicating details about why the volume is in this state.", "type": "string" }, "phase": { - "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + "description": "phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", "type": "string" }, "reason": { - "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", + "description": "reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", "type": "string" } } @@ -13115,11 +13028,11 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { - "description": "ID that identifies Photon Controller persistent disk", + "description": "pdID is the ID that identifies Photon Controller persistent disk", "type": "string" } } @@ -13185,11 +13098,31 @@ ], "properties": { "labelSelector": { - "description": "A label query over a set of resources, in this case pods.", + "description": "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "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.", + "type": "array", + "items": { + "type": "string" + }, + "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.", + "type": "array", + "items": { + "type": "string" + }, + "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.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, "namespaces": { - "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list 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\".", "type": "array", "items": { "type": "string" @@ -13296,11 +13229,11 @@ } }, "io.k8s.api.core.v1.PodIP": { - "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n IP: An IP address allocated to the pod. Routable at least within the cluster.", + "description": "PodIP represents a single IP address allocated to the pod.", "type": "object", "properties": { "ip": { - "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod", + "description": "IP is the IP address assigned to the pod", "type": "string" } } @@ -13340,6 +13273,19 @@ } ] }, + "io.k8s.api.core.v1.PodOS": { + "description": "PodOS defines the OS parameters of a pod.", + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null", + "type": "string" + } + } + }, "io.k8s.api.core.v1.PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "type": "object", @@ -13353,21 +13299,68 @@ } } }, + "io.k8s.api.core.v1.PodResourceClaim": { + "description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.", + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.", + "type": "string" + }, + "source": { + "description": "Source describes where to find the ResourceClaim.", + "$ref": "#/definitions/io.k8s.api.core.v1.ClaimSource" + } + } + }, + "io.k8s.api.core.v1.PodResourceClaimStatus": { + "description": "PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.", + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.", + "type": "string" + }, + "resourceClaimName": { + "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. It this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case.", + "type": "string" + } + } + }, + "io.k8s.api.core.v1.PodSchedulingGate": { + "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.", + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "Name of the scheduling gate. Each scheduling gate must have a unique name field.", + "type": "string" + } + } + }, "io.k8s.api.core.v1.PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "type": "object", "properties": { "fsGroup": { - "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", + "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.", "type": "integer", "format": "int64" }, "fsGroupChangePolicy": { - "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used.", + "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used. Note that this field cannot be set when spec.os.name is windows.", "type": "string" }, "runAsGroup": { - "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", "type": "integer", "format": "int64" }, @@ -13376,20 +13369,20 @@ "type": "boolean" }, "runAsUser": { - "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", "type": "integer", "format": "int64" }, "seLinuxOptions": { - "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions" }, "seccompProfile": { - "description": "The seccomp options to use by the containers in this pod.", + "description": "The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.", "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile" }, "supplementalGroups": { - "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", + "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": "array", "items": { "type": "integer", @@ -13397,14 +13390,14 @@ } }, "sysctls": { - "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl" } }, "windowsOptions": { - "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.", "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions" } } @@ -13451,7 +13444,7 @@ "type": "boolean" }, "ephemeralContainers": { - "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", + "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer" @@ -13480,12 +13473,16 @@ "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, + "hostUsers": { + "description": "Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for 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.", + "type": "boolean" + }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { - "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", + "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" @@ -13511,17 +13508,22 @@ "type": "object", "additionalProperties": { "type": "string" - } + }, + "x-kubernetes-map-type": "atomic" + }, + "os": { + "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", + "$ref": "#/definitions/io.k8s.api.core.v1.PodOS" }, "overhead": { - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", + "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md", "type": "object", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" } }, "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", + "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", "type": "string" }, "priority": { @@ -13534,24 +13536,50 @@ "type": "string" }, "readinessGates": { - "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/0007-pod-ready%2B%2B.md", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate" } }, + "resourceClaims": { + "description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodResourceClaim" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, "restartPolicy": { - "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", + "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { - "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", + "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, + "schedulingGates": { + "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.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodSchedulingGate" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, "securityContext": { "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.", "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext" @@ -13577,7 +13605,7 @@ "type": "string" }, "terminationGracePeriodSeconds": { - "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer", "format": "int64" }, @@ -13627,23 +13655,33 @@ "x-kubernetes-patch-strategy": "merge" }, "containerStatuses": { - "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus" } }, "ephemeralContainerStatuses": { - "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.", + "description": "Status for any ephemeral containers that have run in this pod.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus" } }, "hostIP": { - "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.", + "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 be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod", "type": "string" }, + "hostIPs": { + "description": "hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.HostIP" + }, + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge" + }, "initContainerStatuses": { "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": "array", @@ -13664,7 +13702,7 @@ "type": "string" }, "podIP": { - "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", + "description": "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", "type": "string" }, "podIPs": { @@ -13677,19 +13715,36 @@ "x-kubernetes-patch-strategy": "merge" }, "qosClass": { - "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md", + "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes", "type": "string" }, "reason": { "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", "type": "string" }, - "startTime": { - "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - } - } - }, + "resize": { + "description": "Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"", + "type": "string" + }, + "resourceClaimStatuses": { + "description": "Status of resource claims.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodResourceClaimStatus" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, + "startTime": { + "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + } + }, "io.k8s.api.core.v1.PodTemplate": { "description": "PodTemplate describes a template for creating copies of a predefined pod.", "type": "object", @@ -13798,15 +13853,15 @@ ], "properties": { "fsType": { - "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { - "description": "VolumeID uniquely identifies a Portworx volume", + "description": "volumeID uniquely identifies a Portworx volume", "type": "string" } } @@ -13835,7 +13890,7 @@ "type": "object", "properties": { "exec": { - "description": "One and only one of the following should be specified. Exec specifies the action to take.", + "description": "Exec specifies the action to take.", "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction" }, "failureThreshold": { @@ -13843,6 +13898,10 @@ "type": "integer", "format": "int32" }, + "grpc": { + "description": "GRPC specifies an action involving a GRPC port.", + "$ref": "#/definitions/io.k8s.api.core.v1.GRPCAction" + }, "httpGet": { "description": "HTTPGet specifies the http request to perform.", "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction" @@ -13863,9 +13922,14 @@ "format": "int32" }, "tcpSocket": { - "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported", + "description": "TCPSocket specifies an action involving a TCP port.", "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction" }, + "terminationGracePeriodSeconds": { + "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.", + "type": "integer", + "format": "int64" + }, "timeoutSeconds": { "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer", @@ -13878,12 +13942,12 @@ "type": "object", "properties": { "defaultMode": { - "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer", "format": "int32" }, "sources": { - "description": "list of volume projections", + "description": "sources is the list of volume projections", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection" @@ -13900,27 +13964,27 @@ ], "properties": { "group": { - "description": "Group to map volume access to Default is no group", + "description": "group to map volume access to Default is no group", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", + "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { - "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", + "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { - "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", + "description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { - "description": "User to map volume access to Defaults to serivceaccount user", + "description": "user to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { - "description": "Volume is a string that references an already created Quobyte volume by name.", + "description": "volume is a string that references an already created Quobyte volume by name.", "type": "string" } } @@ -13934,38 +13998,38 @@ ], "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { - "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { - "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { - "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "array", "items": { "type": "string" } }, "pool": { - "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { - "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "user": { - "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } } @@ -13979,38 +14043,38 @@ ], "properties": { "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { - "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { - "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { - "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "array", "items": { "type": "string" } }, "pool": { - "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { - "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { - "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "user": { - "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } } @@ -14132,10 +14196,11 @@ "type": "object", "additionalProperties": { "type": "string" - } + }, + "x-kubernetes-map-type": "atomic" }, "template": { - "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" } } @@ -14177,12 +14242,25 @@ "format": "int32" }, "replicas": { - "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", "type": "integer", "format": "int32" } } }, + "io.k8s.api.core.v1.ResourceClaim": { + "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.", + "type": "object", + "required": [ + "name" + ], + "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" + } + } + }, "io.k8s.api.core.v1.ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "type": "object", @@ -14202,7 +14280,8 @@ "description": "Required: resource to select", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ResourceQuota": { "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace", @@ -14320,15 +14399,26 @@ "description": "ResourceRequirements describes the compute resource requirements.", "type": "object", "properties": { + "claims": { + "description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.ResourceClaim" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" + }, "limits": { - "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", "type": "object", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" } }, "requests": { - "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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + "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", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" @@ -14368,43 +14458,43 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { - "description": "The host address of the ScaleIO API Gateway.", + "description": "gateway is the host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { - "description": "The name of the ScaleIO Protection Domain for the configured storage.", + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", + "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "sslEnabled": { - "description": "Flag to enable/disable SSL communication with Gateway, default false", + "description": "sslEnabled is the flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { - "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { - "description": "The ScaleIO Storage Pool associated with the protection domain.", + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { - "description": "The name of the storage system as configured in ScaleIO.", + "description": "system is the name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { - "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } } @@ -14419,43 +14509,43 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { - "description": "The host address of the ScaleIO API Gateway.", + "description": "gateway is the host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { - "description": "The name of the ScaleIO Protection Domain for the configured storage.", + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", + "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "sslEnabled": { - "description": "Flag to enable/disable SSL communication with Gateway, default false", + "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { - "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { - "description": "The ScaleIO Storage Pool associated with the protection domain.", + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { - "description": "The name of the storage system as configured in ScaleIO.", + "description": "system is the name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { - "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } } @@ -14471,7 +14561,8 @@ "$ref": "#/definitions/io.k8s.api.core.v1.ScopedResourceSelectorRequirement" } } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": { "description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.", @@ -14506,7 +14597,7 @@ ], "properties": { "localhostProfile": { - "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \"Localhost\".", + "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \"Localhost\". Must NOT be set for any other type.", "type": "string" }, "type": { @@ -14540,7 +14631,7 @@ } }, "immutable": { - "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is a beta field enabled by ImmutableEphemeralVolumes feature gate.", + "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", "type": "boolean" }, "kind": { @@ -14552,14 +14643,14 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "stringData": { - "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.", + "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { - "description": "Used to facilitate programmatic handling of secret data.", + "description": "Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types", "type": "string" } }, @@ -14604,7 +14695,8 @@ "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.SecretList": { "description": "SecretList is a list of Secret.", @@ -14646,7 +14738,7 @@ "type": "object", "properties": { "items": { - "description": "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 '..'.", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" @@ -14657,7 +14749,7 @@ "type": "string" }, "optional": { - "description": "Specify whether the Secret or its key must be defined", + "description": "optional field specify whether the Secret or its key must be defined", "type": "boolean" } } @@ -14667,37 +14759,38 @@ "type": "object", "properties": { "name": { - "description": "Name is unique within a namespace to reference a secret resource.", + "description": "name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { - "description": "Namespace defines the space within which the secret name must be unique.", + "description": "namespace defines the space within which the secret name must be unique.", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "type": "object", "properties": { "defaultMode": { - "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer", "format": "int32" }, "items": { - "description": "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 '..'.", + "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": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath" } }, "optional": { - "description": "Specify whether the Secret or its keys must be defined", + "description": "optional field specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { - "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + "description": "secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } } @@ -14707,27 +14800,27 @@ "type": "object", "properties": { "allowPrivilegeEscalation": { - "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", + "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "capabilities": { - "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.", + "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.", "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities" }, "privileged": { - "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", + "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "procMount": { - "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", + "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", "type": "string" }, "readOnlyRootFilesystem": { - "description": "Whether this container has a read-only root filesystem. Default is false.", + "description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", "type": "boolean" }, "runAsGroup": { - "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", "type": "integer", "format": "int64" }, @@ -14736,20 +14829,20 @@ "type": "boolean" }, "runAsUser": { - "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", "type": "integer", "format": "int64" }, "seLinuxOptions": { - "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions" }, "seccompProfile": { - "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod \u0026 container level, the container options override the pod options.", + "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod \u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.", "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile" }, "windowsOptions": { - "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.", "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions" } } @@ -14815,7 +14908,7 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "secrets": { - "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret", + "description": "Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use. Pods are only limited to this list if this service account has a \"kubernetes.io/enforce-mountable-secrets\" annotation set to \"true\". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" @@ -14875,16 +14968,16 @@ ], "properties": { "audience": { - "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", + "description": "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { - "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", + "description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer", "format": "int64" }, "path": { - "description": "Path is the path relative to the mount point of the file to project the token into.", + "description": "path is the path relative to the mount point of the file to project the token into.", "type": "string" } } @@ -14932,7 +15025,7 @@ ], "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { @@ -14964,7 +15057,7 @@ "type": "object", "properties": { "allocateLoadBalancerNodePorts": { - "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. allocateLoadBalancerNodePorts may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. This field is alpha-level and is only honored by servers that enable the ServiceLBNodePortControl feature.", + "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.", "type": "boolean" }, "clusterIP": { @@ -14972,7 +15065,7 @@ "type": "string" }, "clusterIPs": { - "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nUnless the \"IPv6DualStack\" feature gate is enabled, this field is limited to one value, which must be the same as the clusterIP field. If the feature gate is enabled, this field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nThis field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "type": "array", "items": { "type": "string" @@ -14987,20 +15080,24 @@ } }, "externalName": { - "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be", + "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \"ExternalName\".", "type": "string" }, "externalTrafficPolicy": { - "description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.", + "description": "externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \"externally-facing\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \"Local\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \"Cluster\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.", "type": "string" }, "healthCheckNodePort": { - "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type).", + "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set.", "type": "integer", "format": "int32" }, + "internalTrafficPolicy": { + "description": "InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \"Local\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).", + "type": "string" + }, "ipFamilies": { - "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service, and is gated by the \"IPv6DualStack\" feature gate. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \"IPv4\" and \"IPv6\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services. This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.", + "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \"IPv4\" and \"IPv6\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services. This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.", "type": "array", "items": { "type": "string" @@ -15008,15 +15105,19 @@ "x-kubernetes-list-type": "atomic" }, "ipFamilyPolicy": { - "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service, and is gated by the \"IPv6DualStack\" feature gate. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.", + "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.", + "type": "string" + }, + "loadBalancerClass": { + "description": "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.", "type": "string" }, "loadBalancerIP": { - "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", + "description": "Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.", "type": "string" }, "loadBalancerSourceRanges": { - "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/configure-cloud-provider-firewall/", + "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": "array", "items": { "type": "string" @@ -15045,7 +15146,8 @@ "type": "object", "additionalProperties": { "type": "string" - } + }, + "x-kubernetes-map-type": "atomic" }, "sessionAffinity": { "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", @@ -15055,13 +15157,6 @@ "description": "sessionAffinityConfig contains the configurations of session affinity.", "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig" }, - "topologyKeys": { - "description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied. This field is alpha-level and is only honored by servers that enable the ServiceTopology feature.", - "type": "array", - "items": { - "type": "string" - } - }, "type": { "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \"ExternalName\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types", "type": "string" @@ -15101,28 +15196,42 @@ } } }, + "io.k8s.api.core.v1.SleepAction": { + "description": "SleepAction describes a \"sleep\" action.", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "description": "Seconds is the number of seconds to sleep.", + "type": "integer", + "format": "int64" + } + } + }, "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "type": "object", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", + "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, "volumeName": { - "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { - "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } } @@ -15132,23 +15241,23 @@ "type": "object", "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { - "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { - "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", + "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference" }, "volumeName": { - "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { - "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } } @@ -15273,7 +15382,8 @@ "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorLabelRequirement" } } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.api.core.v1.TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", @@ -15288,17 +15398,38 @@ "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, + "matchLabelKeys": { + "description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.\n\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" + }, "maxSkew": { - "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", + "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer", "format": "int32" }, + "minDomains": { + "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).", + "type": "integer", + "format": "int32" + }, + "nodeAffinityPolicy": { + "description": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\n\nIf this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, + "nodeTaintsPolicy": { + "description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, "topologyKey": { - "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \u003ckey, value\u003e as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", + "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \u003ckey, value\u003e as a \"bucket\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \"kubernetes.io/hostname\", each Node is a domain of that topology. And, if TopologyKey is \"topology.kubernetes.io/zone\", each zone is a domain of that topology. It's a required field.", "type": "string" }, "whenUnsatisfiable": { - "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assigment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", + "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assignment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } } @@ -15323,6 +15454,32 @@ "description": "Name is the name of resource being referenced", "type": "string" } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.TypedObjectReference": { + "type": "object", + "required": [ + "kind", + "name" + ], + "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" + }, + "namespace": { + "description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", + "type": "string" + } } }, "io.k8s.api.core.v1.Volume": { @@ -15333,123 +15490,123 @@ ], "properties": { "awsElasticBlockStore": { - "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" }, "azureDisk": { - "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource" }, "azureFile": { - "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource" }, "cephfs": { - "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime", "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource" }, "cinder": { - "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource" }, "configMap": { - "description": "ConfigMap represents a configMap that should populate this volume", + "description": "configMap represents a configMap that should populate this volume", "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource" }, "csi": { - "description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).", + "description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).", "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource" }, "downwardAPI": { - "description": "DownwardAPI represents downward API about the pod that should populate this volume", + "description": "downwardAPI represents downward API about the pod that should populate this volume", "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource" }, "emptyDir": { - "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + "description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource" }, "ephemeral": { - "description": "Ephemeral represents a volume that is handled by a cluster storage driver (Alpha feature). The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time.", + "description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time.", "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource" }, "fc": { - "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource" }, "flexVolume": { - "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", + "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource" }, "flocker": { - "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running", + "description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running", "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource" }, "gcePersistentDisk": { - "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" }, "gitRepo": { - "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", + "description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource" }, "glusterfs": { - "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md", + "description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource" }, "hostPath": { - "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource" }, "iscsi": { - "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md", + "description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource" }, "name": { - "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { - "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource" }, "persistentVolumeClaim": { - "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource" }, "photonPersistentDisk": { - "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" }, "portworxVolume": { - "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource" }, "projected": { - "description": "Items for all in one resources secrets, configmaps, and downward API", + "description": "projected items for all in one resources secrets, configmaps, and downward API", "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource" }, "quobyte": { - "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime", "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource" }, "rbd": { - "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md", + "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md", "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource" }, "scaleIO": { - "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource" }, "secret": { - "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + "description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource" }, "storageos": { - "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.", + "description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.", "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource" }, "vsphereVolume": { - "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" } } @@ -15511,7 +15668,7 @@ "type": "object", "properties": { "required": { - "description": "Required specifies hard node constraints that must be met.", + "description": "required specifies hard node constraints that must be met.", "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector" } } @@ -15520,24 +15677,48 @@ "description": "Projection that may be projected along with other supported volume types", "type": "object", "properties": { + "clusterTrustBundle": { + "description": "ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file.\n\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\n\nClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector.\n\nKubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time.", + "$ref": "#/definitions/io.k8s.api.core.v1.ClusterTrustBundleProjection" + }, "configMap": { - "description": "information about the configMap data to project", + "description": "configMap information about the configMap data to project", "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection" }, "downwardAPI": { - "description": "information about the downwardAPI data to project", + "description": "downwardAPI information about the downwardAPI data to project", "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection" }, "secret": { - "description": "information about the secret data to project", + "description": "secret information about the secret data to project", "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection" }, "serviceAccountToken": { - "description": "information about the serviceAccountToken data to project", + "description": "serviceAccountToken is information about the serviceAccountToken data to project", "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection" } } }, + "io.k8s.api.core.v1.VolumeResourceRequirements": { + "description": "VolumeResourceRequirements describes the storage resource requirements for a volume.", + "type": "object", + "properties": { + "limits": { + "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, + "requests": { + "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", + "additionalProperties": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + } + } + }, "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "type": "object", @@ -15546,19 +15727,19 @@ ], "properties": { "fsType": { - "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { - "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", + "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { - "description": "Storage Policy Based Management (SPBM) profile name.", + "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { - "description": "Path that identifies vSphere volume vmdk", + "description": "volumePath is the path that identifies vSphere volume vmdk", "type": "string" } } @@ -15594,13 +15775,17 @@ "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, + "hostProcess": { + "description": "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.", + "type": "boolean" + }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } } }, - "io.k8s.api.discovery.v1beta1.Endpoint": { + "io.k8s.api.discovery.v1.Endpoint": { "description": "Endpoint represents a single logical \"backend\" implementing a service.", "type": "object", "required": [ @@ -15608,7 +15793,7 @@ ], "properties": { "addresses": { - "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.", + "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100. These are all assumed to be fungible and clients may choose to only use the first element. Refer to: https://issue.k8s.io/106267", "type": "array", "items": { "type": "string" @@ -15617,71 +15802,94 @@ }, "conditions": { "description": "conditions contains information about the current status of the endpoint.", - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointConditions" + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointConditions" + }, + "deprecatedTopology": { + "description": "deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24). While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.", + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "hints": { + "description": "hints contains information associated with how an endpoint should be consumed.", + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointHints" }, "hostname": { "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.", "type": "string" }, "nodeName": { - "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.", + "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node.", "type": "string" }, "targetRef": { "description": "targetRef is a reference to a Kubernetes object that represents this endpoint.", "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" }, - "topology": { - "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n where the endpoint is located. This should match the corresponding\n node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n endpoint is located. This should match the corresponding node label.\nThis field is deprecated and will be removed in future api versions.", - "type": "object", - "additionalProperties": { - "type": "string" - } + "zone": { + "description": "zone is the name of the Zone this endpoint exists in.", + "type": "string" } } }, - "io.k8s.api.discovery.v1beta1.EndpointConditions": { + "io.k8s.api.discovery.v1.EndpointConditions": { "description": "EndpointConditions represents the current condition of an endpoint.", "type": "object", "properties": { "ready": { - "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints.", + "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag.", "type": "boolean" }, "serving": { - "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.", + "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition.", "type": "boolean" }, "terminating": { - "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.", + "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating.", "type": "boolean" } } }, - "io.k8s.api.discovery.v1beta1.EndpointPort": { + "io.k8s.api.discovery.v1.EndpointHints": { + "description": "EndpointHints provides hints describing how an endpoint should be consumed.", + "type": "object", + "properties": { + "forZones": { + "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone" + }, + "x-kubernetes-list-type": "atomic" + } + } + }, + "io.k8s.api.discovery.v1.EndpointPort": { "description": "EndpointPort represents a Port used by an EndpointSlice", "type": "object", "properties": { "appProtocol": { - "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { - "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", + "description": "name represents the name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": "string" }, "port": { - "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", + "description": "port represents the port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "type": "integer", "format": "int32" }, "protocol": { - "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", + "description": "protocol represents the IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.discovery.v1beta1.EndpointSlice": { + "io.k8s.api.discovery.v1.EndpointSlice": { "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.", "type": "object", "required": [ @@ -15701,7 +15909,7 @@ "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.Endpoint" + "$ref": "#/definitions/io.k8s.api.discovery.v1.Endpoint" }, "x-kubernetes-list-type": "atomic" }, @@ -15717,7 +15925,7 @@ "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointPort" + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointPort" }, "x-kubernetes-list-type": "atomic" } @@ -15726,11 +15934,11 @@ { "group": "discovery.k8s.io", "kind": "EndpointSlice", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.api.discovery.v1beta1.EndpointSliceList": { + "io.k8s.api.discovery.v1.EndpointSliceList": { "description": "EndpointSliceList represents a list of endpoint slices", "type": "object", "required": [ @@ -15742,10 +15950,10 @@ "type": "string" }, "items": { - "description": "List of endpoint slices", + "description": "items is the list of endpoint slices", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice" + "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice" } }, "kind": { @@ -15761,15 +15969,27 @@ { "group": "discovery.k8s.io", "kind": "EndpointSliceList", - "version": "v1beta1" + "version": "v1" } ] }, + "io.k8s.api.discovery.v1.ForZone": { + "description": "ForZone provides information about which zones should consume this endpoint.", + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "description": "name represents the name of the zone.", + "type": "string" + } + } + }, "io.k8s.api.events.v1.Event": { "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", "type": "object", "required": [ - "metadata", "eventTime" ], "properties": { @@ -15807,6 +16027,7 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "note": { @@ -15904,93 +16125,96 @@ } } }, - "io.k8s.api.events.v1beta1.Event": { - "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", + "io.k8s.api.flowcontrol.v1.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", + "type": "object", + "properties": { + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "type": "integer", + "format": "int32" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "type": "integer", + "format": "int32" + } + } + }, + "io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod": { + "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", "type": "object", "required": [ - "metadata", - "eventTime" + "type" ], "properties": { - "action": { - "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.", + "type": { + "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", "type": "string" - }, + } + } + }, + "io.k8s.api.flowcontrol.v1.FlowSchema": { + "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "type": "object", + "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" }, - "deprecatedCount": { - "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.", - "type": "integer", - "format": "int32" - }, - "deprecatedFirstTimestamp": { - "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "deprecatedLastTimestamp": { - "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "deprecatedSource": { - "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.", - "$ref": "#/definitions/io.k8s.api.core.v1.EventSource" - }, - "eventTime": { - "description": "eventTime is the time when this Event was first observed. It is required.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" - }, "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": { + "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "note": { - "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.", + "spec": { + "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaSpec" + }, + "status": { + "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1" + } + ] + }, + "io.k8s.api.flowcontrol.v1.FlowSchemaCondition": { + "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "type": "object", + "properties": { + "lastTransitionTime": { + "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { - "description": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.", + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, - "regarding": { - "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.", - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" - }, - "related": { - "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.", - "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" - }, - "reportingController": { - "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.", - "type": "string" - }, - "reportingInstance": { - "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.", - "type": "string" - }, - "series": { - "description": "series is data about the Event series this event represents or nil if it's a singleton Event.", - "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries" + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" }, "type": { - "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.", + "description": "`type` is the type of the condition. Required.", "type": "string" } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "events.k8s.io", - "kind": "Event", - "version": "v1beta1" - } - ] + } }, - "io.k8s.api.events.v1beta1.EventList": { - "description": "EventList is a list of Event objects.", + "io.k8s.api.flowcontrol.v1.FlowSchemaList": { + "description": "FlowSchemaList is a list of FlowSchema objects.", "type": "object", "required": [ "items" @@ -16001,10 +16225,10 @@ "type": "string" }, "items": { - "description": "items is a list of schema objects.", + "description": "`items` is a list of FlowSchemas.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchema" } }, "kind": { @@ -16012,243 +16236,191 @@ "type": "string" }, "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "events.k8s.io", - "kind": "EventList", - "version": "v1beta1" + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchemaList", + "version": "v1" } ] }, - "io.k8s.api.events.v1beta1.EventSeries": { - "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", + "io.k8s.api.flowcontrol.v1.FlowSchemaSpec": { + "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", "type": "object", "required": [ - "count", - "lastObservedTime" + "priorityLevelConfiguration" ], "properties": { - "count": { - "description": "count is the number of occurrences in this series up to the last heartbeat time.", + "distinguisherMethod": { + "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod" + }, + "matchingPrecedence": { + "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", "type": "integer", "format": "int32" }, - "lastObservedTime": { - "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + "priorityLevelConfiguration": { + "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference" + }, + "rules": { + "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PolicyRulesWithSubjects" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.extensions.v1beta1.HTTPIngressPath": { - "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", + "io.k8s.api.flowcontrol.v1.FlowSchemaStatus": { + "description": "FlowSchemaStatus represents the current state of a FlowSchema.", "type": "object", - "required": [ - "backend" - ], "properties": { - "backend": { - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to.", - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend" - }, - "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", - "type": "string" - }, - "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", - "type": "string" + "conditions": { + "description": "`conditions` is a list of the current states of FlowSchema.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchemaCondition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue": { - "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + "io.k8s.api.flowcontrol.v1.GroupSubject": { + "description": "GroupSubject holds detailed information for group-kind subject.", "type": "object", "required": [ - "paths" + "name" ], "properties": { - "paths": { - "description": "A collection of paths that map requests to backends.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath" - } + "name": { + "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", + "type": "string" } } }, - "io.k8s.api.extensions.v1beta1.Ingress": { - "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.", + "io.k8s.api.flowcontrol.v1.LimitResponse": { + "description": "LimitResponse defines how to handle requests that can not be executed right now.", "type": "object", + "required": [ + "type" + ], "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" + "queuing": { + "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.QueuingConfiguration" }, - "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": { + "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", "type": "string" - }, - "metadata": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec" - }, - "status": { - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus" } }, - "x-kubernetes-group-version-kind": [ + "x-kubernetes-unions": [ { - "group": "extensions", - "kind": "Ingress", - "version": "v1beta1" + "discriminator": "type", + "fields-to-discriminateBy": { + "queuing": "Queuing" + } } ] }, - "io.k8s.api.extensions.v1beta1.IngressBackend": { - "description": "IngressBackend describes all endpoints for a given service and port.", + "io.k8s.api.flowcontrol.v1.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", "type": "object", "properties": { - "resource": { - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified.", - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "type": "integer", + "format": "int32" }, - "serviceName": { - "description": "Specifies the name of the referenced service.", - "type": "string" + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "type": "integer", + "format": "int32" }, - "servicePort": { - "description": "Specifies the port of the referenced service.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + "limitResponse": { + "description": "`limitResponse` indicates what to do with requests that can not be executed right now", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.LimitResponse" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level.\n\nIf not specified, this field defaults to a value of 30.\n\nSetting this field to zero supports the construction of a \"jail\" for this priority level that is used to hold some request(s)", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.extensions.v1beta1.IngressList": { - "description": "IngressList is a collection of Ingress.", + "io.k8s.api.flowcontrol.v1.NonResourcePolicyRule": { + "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "type": "object", "required": [ - "items" + "verbs", + "nonResourceURLs" ], "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" - }, - "items": { - "description": "Items is the list of Ingress.", + "nonResourceURLs": { + "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" - } - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "extensions", - "kind": "IngressList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.extensions.v1beta1.IngressRule": { - "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", - "type": "object", - "properties": { - "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", - "type": "string" + "type": "string" + }, + "x-kubernetes-list-type": "set" }, - "http": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue" + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, - "io.k8s.api.extensions.v1beta1.IngressSpec": { - "description": "IngressSpec describes the Ingress the user wishes to exist.", + "io.k8s.api.flowcontrol.v1.PolicyRulesWithSubjects": { + "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", "type": "object", + "required": [ + "subjects" + ], "properties": { - "backend": { - "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.", - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend" - }, - "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", - "type": "string" - }, - "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "nonResourceRules": { + "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule" - } + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.NonResourcePolicyRule" + }, + "x-kubernetes-list-type": "atomic" }, - "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + "resourceRules": { + "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS" - } - } - } - }, - "io.k8s.api.extensions.v1beta1.IngressStatus": { - "description": "IngressStatus describe the current state of the Ingress.", - "type": "object", - "properties": { - "loadBalancer": { - "description": "LoadBalancer contains the current status of the load-balancer.", - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" - } - } - }, - "io.k8s.api.extensions.v1beta1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", - "type": "object", - "properties": { - "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ResourcePolicyRule" + }, + "x-kubernetes-list-type": "atomic" + }, + "subjects": { + "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", "type": "array", "items": { - "type": "string" - } - }, - "secretName": { - "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", - "type": "string" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod": { - "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", - "type": "string" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.Subject" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchema": { - "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfiguration": { + "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "type": "object", "properties": { "apiVersion": { @@ -16264,24 +16436,24 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec" + "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationSpec" }, "status": { - "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus" + "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", - "kind": "FlowSchema", - "version": "v1alpha1" + "kind": "PriorityLevelConfiguration", + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition": { - "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationCondition": { + "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "type": "object", "properties": { "lastTransitionTime": { @@ -16306,260 +16478,7 @@ } } }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList": { - "description": "FlowSchemaList is a list of FlowSchema objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "`items` is a list of FlowSchemas.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema" - } - }, - "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": { - "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "FlowSchemaList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec": { - "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", - "type": "object", - "required": [ - "priorityLevelConfiguration" - ], - "properties": { - "distinguisherMethod": { - "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod" - }, - "matchingPrecedence": { - "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", - "type": "integer", - "format": "int32" - }, - "priorityLevelConfiguration": { - "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference" - }, - "rules": { - "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects" - }, - "x-kubernetes-list-type": "atomic" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus": { - "description": "FlowSchemaStatus represents the current state of a FlowSchema.", - "type": "object", - "properties": { - "conditions": { - "description": "`conditions` is a list of the current states of FlowSchema.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition" - }, - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.GroupSubject": { - "description": "GroupSubject holds detailed information for group-kind subject.", - "type": "object", - "required": [ - "name" - ], - "properties": { - "name": { - "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", - "type": "string" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.LimitResponse": { - "description": "LimitResponse defines how to handle requests that can not be executed right now.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "queuing": { - "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration" - }, - "type": { - "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", - "type": "string" - } - }, - "x-kubernetes-unions": [ - { - "discriminator": "type", - "fields-to-discriminateBy": { - "queuing": "Queuing" - } - } - ] - }, - "io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration": { - "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", - "type": "object", - "properties": { - "assuredConcurrencyShares": { - "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", - "type": "integer", - "format": "int32" - }, - "limitResponse": { - "description": "`limitResponse` indicates what to do with requests that can not be executed right now", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitResponse" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule": { - "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", - "type": "object", - "required": [ - "verbs", - "nonResourceURLs" - ], - "properties": { - "nonResourceURLs": { - "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", - "type": "array", - "items": { - "type": "string" - }, - "x-kubernetes-list-type": "set" - }, - "verbs": { - "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", - "type": "array", - "items": { - "type": "string" - }, - "x-kubernetes-list-type": "set" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects": { - "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", - "type": "object", - "required": [ - "subjects" - ], - "properties": { - "nonResourceRules": { - "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule" - }, - "x-kubernetes-list-type": "atomic" - }, - "resourceRules": { - "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule" - }, - "x-kubernetes-list-type": "atomic" - }, - "subjects": { - "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.Subject" - }, - "x-kubernetes-list-type": "atomic" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration": { - "description": "PriorityLevelConfiguration represents the configuration of a priority level.", - "type": "object", - "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": { - "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec" - }, - "status": { - "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "flowcontrol.apiserver.k8s.io", - "kind": "PriorityLevelConfiguration", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition": { - "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", - "type": "object", - "properties": { - "lastTransitionTime": { - "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "`message` is a human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", - "type": "string" - }, - "type": { - "description": "`type` is the type of the condition. Required.", - "type": "string" - } - } - }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList": { + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationList": { "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "type": "object", "required": [ @@ -16574,7 +16493,7 @@ "description": "`items` is a list of request-priorities.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfiguration" } }, "kind": { @@ -16590,11 +16509,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfigurationList", - "version": "v1alpha1" + "version": "v1" } ] }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference": { + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference": { "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", "type": "object", "required": [ @@ -16607,16 +16526,20 @@ } } }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec": { + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "type": "object", "required": [ "type" ], "properties": { + "exempt": { + "description": "`exempt` specifies how requests are handled for an exempt priority level. This field MUST be empty if `type` is `\"Limited\"`. This field MAY be non-empty if `type` is `\"Exempt\"`. If empty and `type` is `\"Exempt\"` then the default values for `ExemptPriorityLevelConfiguration` apply.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ExemptPriorityLevelConfiguration" + }, "limited": { "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.LimitedPriorityLevelConfiguration" }, "type": { "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", @@ -16627,12 +16550,13 @@ { "discriminator": "type", "fields-to-discriminateBy": { + "exempt": "Exempt", "limited": "Limited" } } ] }, - "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus": { + "io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "type": "object", "properties": { @@ -16640,16 +16564,18 @@ "description": "`conditions` is the current state of \"request-priority\".", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationCondition" }, "x-kubernetes-list-map-keys": [ "type" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration": { + "io.k8s.api.flowcontrol.v1.QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "type": "object", "properties": { @@ -16670,8 +16596,8 @@ } } }, - "io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule": { - "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.", + "io.k8s.api.flowcontrol.v1.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", "type": "object", "required": [ "verbs", @@ -16717,7 +16643,7 @@ } } }, - "io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject": { + "io.k8s.api.flowcontrol.v1.ServiceAccountSubject": { "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", "type": "object", "required": [ @@ -16735,7 +16661,7 @@ } } }, - "io.k8s.api.flowcontrol.v1alpha1.Subject": { + "io.k8s.api.flowcontrol.v1.Subject": { "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", "type": "object", "required": [ @@ -16743,17 +16669,20 @@ ], "properties": { "group": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.GroupSubject" + "description": "`group` matches based on user group name.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.GroupSubject" }, "kind": { - "description": "Required", + "description": "`kind` indicates which one of the other fields is non-empty. Required", "type": "string" }, "serviceAccount": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject" + "description": "`serviceAccount` matches ServiceAccounts.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.ServiceAccountSubject" }, "user": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.UserSubject" + "description": "`user` matches based on username.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.UserSubject" } }, "x-kubernetes-unions": [ @@ -16767,7 +16696,7 @@ } ] }, - "io.k8s.api.flowcontrol.v1alpha1.UserSubject": { + "io.k8s.api.flowcontrol.v1.UserSubject": { "description": "UserSubject holds detailed information for user-kind subject.", "type": "object", "required": [ @@ -16780,7 +16709,23 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod": { + "io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", + "type": "object", + "properties": { + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "type": "integer", + "format": "int32" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "type": "integer", + "format": "int32" + } + } + }, + "io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod": { "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", "type": "object", "required": [ @@ -16793,7 +16738,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchema": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchema": { "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", "type": "object", "properties": { @@ -16811,22 +16756,22 @@ }, "spec": { "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec" }, "status": { "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchema", - "version": "v1beta1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition": { "description": "FlowSchemaCondition describes conditions for a FlowSchema.", "type": "object", "properties": { @@ -16852,7 +16797,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaList": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaList": { "description": "FlowSchemaList is a list of FlowSchema objects.", "type": "object", "required": [ @@ -16867,7 +16812,7 @@ "description": "`items` is a list of FlowSchemas.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchema" } }, "kind": { @@ -16883,11 +16828,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchemaList", - "version": "v1beta1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec": { "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", "type": "object", "required": [ @@ -16896,7 +16841,7 @@ "properties": { "distinguisherMethod": { "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod" }, "matchingPrecedence": { "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", @@ -16905,19 +16850,19 @@ }, "priorityLevelConfiguration": { "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference" }, "rules": { "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects" }, "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus": { + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus": { "description": "FlowSchemaStatus represents the current state of a FlowSchema.", "type": "object", "properties": { @@ -16925,16 +16870,18 @@ "description": "`conditions` is a list of the current states of FlowSchema.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition" }, "x-kubernetes-list-map-keys": [ "type" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.api.flowcontrol.v1beta1.GroupSubject": { + "io.k8s.api.flowcontrol.v1beta3.GroupSubject": { "description": "GroupSubject holds detailed information for group-kind subject.", "type": "object", "required": [ @@ -16947,7 +16894,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.LimitResponse": { + "io.k8s.api.flowcontrol.v1beta3.LimitResponse": { "description": "LimitResponse defines how to handle requests that can not be executed right now.", "type": "object", "required": [ @@ -16956,7 +16903,7 @@ "properties": { "queuing": { "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration" }, "type": { "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", @@ -16972,22 +16919,32 @@ } ] }, - "io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration": { - "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", + "io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", "type": "object", "properties": { - "assuredConcurrencyShares": { - "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "type": "integer", + "format": "int32" + }, + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", "type": "integer", "format": "int32" }, "limitResponse": { "description": "`limitResponse` indicates what to do with requests that can not be executed right now", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitResponse" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.LimitResponse" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of 30.", + "type": "integer", + "format": "int32" } } }, - "io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule": { + "io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule": { "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "type": "object", "required": [ @@ -17013,7 +16970,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects": { + "io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects": { "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", "type": "object", "required": [ @@ -17024,7 +16981,7 @@ "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule" }, "x-kubernetes-list-type": "atomic" }, @@ -17032,7 +16989,7 @@ "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule" }, "x-kubernetes-list-type": "atomic" }, @@ -17040,13 +16997,13 @@ "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.Subject" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.Subject" }, "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration": { "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "type": "object", "properties": { @@ -17064,22 +17021,22 @@ }, "spec": { "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec" }, "status": { "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfiguration", - "version": "v1beta1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition": { "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "type": "object", "properties": { @@ -17105,7 +17062,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList": { "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "type": "object", "required": [ @@ -17120,7 +17077,7 @@ "description": "`items` is a list of request-priorities.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" } }, "kind": { @@ -17136,11 +17093,11 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfigurationList", - "version": "v1beta1" + "version": "v1beta3" } ] }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference": { "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", "type": "object", "required": [ @@ -17153,16 +17110,20 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "type": "object", "required": [ "type" ], "properties": { + "exempt": { + "description": "`exempt` specifies how requests are handled for an exempt priority level. This field MUST be empty if `type` is `\"Limited\"`. This field MAY be non-empty if `type` is `\"Exempt\"`. If empty and `type` is `\"Exempt\"` then the default values for `ExemptPriorityLevelConfiguration` apply.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration" + }, "limited": { "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`.", - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration" }, "type": { "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", @@ -17173,12 +17134,13 @@ { "discriminator": "type", "fields-to-discriminateBy": { + "exempt": "Exempt", "limited": "Limited" } } ] }, - "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus": { + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "type": "object", "properties": { @@ -17186,16 +17148,18 @@ "description": "`conditions` is the current state of \"request-priority\".", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition" + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition" }, "x-kubernetes-list-map-keys": [ "type" ], - "x-kubernetes-list-type": "map" + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration": { + "io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "type": "object", "properties": { @@ -17216,8 +17180,8 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule": { - "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.", + "io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", "type": "object", "required": [ "verbs", @@ -17263,7 +17227,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject": { + "io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject": { "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", "type": "object", "required": [ @@ -17281,7 +17245,7 @@ } } }, - "io.k8s.api.flowcontrol.v1beta1.Subject": { + "io.k8s.api.flowcontrol.v1beta3.Subject": { "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", "type": "object", "required": [ @@ -17289,17 +17253,20 @@ ], "properties": { "group": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.GroupSubject" + "description": "`group` matches based on user group name.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.GroupSubject" }, "kind": { - "description": "Required", + "description": "`kind` indicates which one of the other fields is non-empty. Required", "type": "string" }, "serviceAccount": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject" + "description": "`serviceAccount` matches ServiceAccounts.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject" }, "user": { - "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.UserSubject" + "description": "`user` matches based on username.", + "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta3.UserSubject" } }, "x-kubernetes-unions": [ @@ -17313,7 +17280,7 @@ } ] }, - "io.k8s.api.flowcontrol.v1beta1.UserSubject": { + "io.k8s.api.flowcontrol.v1beta3.UserSubject": { "description": "UserSubject holds detailed information for user-kind subject.", "type": "object", "required": [ @@ -17330,19 +17297,20 @@ "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "type": "object", "required": [ + "pathType", "backend" ], "properties": { "backend": { - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to.", + "description": "backend defines the referenced service endpoint to which the traffic will be forwarded to.", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend" }, "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", + "description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".", "type": "string" }, "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.", + "description": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.", "type": "string" } } @@ -17355,7 +17323,7 @@ ], "properties": { "paths": { - "description": "A collection of paths that map requests to backends.", + "description": "paths is a collection of paths that map requests to backends.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath" @@ -17365,18 +17333,18 @@ } }, "io.k8s.api.networking.v1.IPBlock": { - "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", + "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.0/24\",\"2001:db8::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", "type": "object", "required": [ "cidr" ], "properties": { "cidr": { - "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"", + "description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"", "type": "string" }, "except": { - "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range", + "description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range", "type": "array", "items": { "type": "string" @@ -17401,11 +17369,11 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "description": "spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec" }, "status": { - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "description": "status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus" } }, @@ -17422,11 +17390,11 @@ "type": "object", "properties": { "resource": { - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\".", + "description": "resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\".", "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" }, "service": { - "description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\".", + "description": "service references a service as a backend. This is a mutually exclusive setting with \"Resource\".", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend" } } @@ -17448,7 +17416,7 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "description": "spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec" } }, @@ -17472,7 +17440,7 @@ "type": "string" }, "items": { - "description": "Items is the list of IngressClasses.", + "description": "items is the list of IngressClasses.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass" @@ -17495,17 +17463,47 @@ } ] }, + "io.k8s.api.networking.v1.IngressClassParametersReference": { + "description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.", + "type": "object", + "required": [ + "kind", + "name" + ], + "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" + }, + "namespace": { + "description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".", + "type": "string" + }, + "scope": { + "description": "scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".", + "type": "string" + } + } + }, "io.k8s.api.networking.v1.IngressClassSpec": { "description": "IngressClassSpec provides information about the class of an Ingress.", "type": "object", "properties": { "controller": { - "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", + "description": "controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", "type": "string" }, "parameters": { - "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters.", - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" + "description": "parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters.", + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassParametersReference" } } }, @@ -17521,7 +17519,7 @@ "type": "string" }, "items": { - "description": "Items is the list of Ingress.", + "description": "items is the list of Ingress.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress" @@ -17544,12 +17542,70 @@ } ] }, + "io.k8s.api.networking.v1.IngressLoadBalancerIngress": { + "description": "IngressLoadBalancerIngress represents the status of a load-balancer ingress point.", + "type": "object", + "properties": { + "hostname": { + "description": "hostname is set for load-balancer ingress points that are DNS based.", + "type": "string" + }, + "ip": { + "description": "ip is set for load-balancer ingress points that are IP based.", + "type": "string" + }, + "ports": { + "description": "ports provides information about the ports exposed by this LoadBalancer.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressPortStatus" + }, + "x-kubernetes-list-type": "atomic" + } + } + }, + "io.k8s.api.networking.v1.IngressLoadBalancerStatus": { + "description": "IngressLoadBalancerStatus represents the status of a load-balancer.", + "type": "object", + "properties": { + "ingress": { + "description": "ingress is a list containing ingress points for the load-balancer.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerIngress" + } + } + } + }, + "io.k8s.api.networking.v1.IngressPortStatus": { + "description": "IngressPortStatus represents the error condition of a service port", + "type": "object", + "required": [ + "port", + "protocol" + ], + "properties": { + "error": { + "description": "error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.", + "type": "string" + }, + "port": { + "description": "port is the port number of the ingress port.", + "type": "integer", + "format": "int32" + }, + "protocol": { + "description": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"", + "type": "string" + } + } + }, "io.k8s.api.networking.v1.IngressRule": { "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "type": "object", "properties": { "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", + "description": "host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", "type": "string" }, "http": { @@ -17565,11 +17621,11 @@ ], "properties": { "name": { - "description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.", + "description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.", "type": "string" }, "port": { - "description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend.", + "description": "port of the referenced service. A port name or port number is required for a IngressServiceBackend.", "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort" } } @@ -17579,15 +17635,15 @@ "type": "object", "properties": { "defaultBackend": { - "description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller.", + "description": "defaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller.", "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend" }, "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", + "description": "ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -\u003e IngressClass -\u003e Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.", "type": "string" }, "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "description": "rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule" @@ -17595,7 +17651,7 @@ "x-kubernetes-list-type": "atomic" }, "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + "description": "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS" @@ -17609,17 +17665,17 @@ "type": "object", "properties": { "loadBalancer": { - "description": "LoadBalancer contains the current status of the load-balancer.", - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" + "description": "loadBalancer contains the current status of the load-balancer.", + "$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerStatus" } } }, "io.k8s.api.networking.v1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", + "description": "IngressTLS describes the transport layer security associated with an ingress.", "type": "object", "properties": { "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + "description": "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "type": "array", "items": { "type": "string" @@ -17627,7 +17683,7 @@ "x-kubernetes-list-type": "atomic" }, "secretName": { - "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", + "description": "secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the \"Host\" header is used for routing.", "type": "string" } } @@ -17649,7 +17705,7 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the desired behavior for this NetworkPolicy.", + "description": "spec represents the specification of the desired behavior for this NetworkPolicy.", "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec" } }, @@ -17666,14 +17722,14 @@ "type": "object", "properties": { "ports": { - "description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "description": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" } }, "to": { - "description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", + "description": "to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" @@ -17686,14 +17742,14 @@ "type": "object", "properties": { "from": { - "description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", + "description": "from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" } }, "ports": { - "description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "description": "ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" @@ -17713,7 +17769,7 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "items is a list of schema objects.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" @@ -17741,15 +17797,15 @@ "type": "object", "properties": { "ipBlock": { - "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.", + "description": "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.", "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock" }, "namespaceSelector": { - "description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.", + "description": "namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector. Otherwise it selects all pods in the namespaces selected by namespaceSelector.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, "podSelector": { - "description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.", + "description": "podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the pods matching podSelector in the policy's own namespace.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" } } @@ -17758,12 +17814,17 @@ "description": "NetworkPolicyPort describes a port to allow traffic on", "type": "object", "properties": { + "endPort": { + "description": "endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.", + "type": "integer", + "format": "int32" + }, "port": { - "description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.", + "description": "port represents the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, "protocol": { - "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", + "description": "protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", "type": "string" } } @@ -17776,25 +17837,25 @@ ], "properties": { "egress": { - "description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", + "description": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule" } }, "ingress": { - "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", + "description": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule" } }, "podSelector": { - "description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.", + "description": "podSelector selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" }, "policyTypes": { - "description": "List of rule types that the NetworkPolicy relates to. Valid options are \"Ingress\", \"Egress\", or \"Ingress,Egress\". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", + "description": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", "type": "array", "items": { "type": "string" @@ -17807,55 +17868,18 @@ "type": "object", "properties": { "name": { - "description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".", + "description": "name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".", "type": "string" }, "number": { - "description": "Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".", + "description": "number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".", "type": "integer", "format": "int32" } } }, - "io.k8s.api.networking.v1beta1.HTTPIngressPath": { - "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", - "type": "object", - "required": [ - "backend" - ], - "properties": { - "backend": { - "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to.", - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend" - }, - "path": { - "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", - "type": "string" - }, - "pathType": { - "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", - "type": "string" - } - } - }, - "io.k8s.api.networking.v1beta1.HTTPIngressRuleValue": { - "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://\u003chost\u003e/\u003cpath\u003e?\u003csearchpart\u003e -\u003e backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", - "type": "object", - "required": [ - "paths" - ], - "properties": { - "paths": { - "description": "A collection of paths that map requests to backends.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressPath" - } - } - } - }, - "io.k8s.api.networking.v1beta1.Ingress": { - "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", + "io.k8s.api.networking.v1alpha1.IPAddress": { + "description": "IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1", "type": "object", "properties": { "apiVersion": { @@ -17871,120 +17895,120 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressSpec" - }, - "status": { - "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressStatus" + "description": "spec is the desired state of the IPAddress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.IPAddressSpec" } }, "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "Ingress", - "version": "v1beta1" + "kind": "IPAddress", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1beta1.IngressBackend": { - "description": "IngressBackend describes all endpoints for a given service and port.", - "type": "object", - "properties": { - "resource": { - "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified.", - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" - }, - "serviceName": { - "description": "Specifies the name of the referenced service.", - "type": "string" - }, - "servicePort": { - "description": "Specifies the port of the referenced service.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" - } - } - }, - "io.k8s.api.networking.v1beta1.IngressClass": { - "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", + "io.k8s.api.networking.v1alpha1.IPAddressList": { + "description": "IPAddressList contains a list of IPAddress.", "type": "object", + "required": [ + "items" + ], "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" }, + "items": { + "description": "items is the list of IPAddresses.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, "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": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassSpec" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "IngressClass", - "version": "v1beta1" + "kind": "IPAddressList", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1beta1.IngressClassList": { - "description": "IngressClassList is a collection of IngressClasses.", + "io.k8s.api.networking.v1alpha1.IPAddressSpec": { + "description": "IPAddressSpec describe the attributes in an IP Address.", + "type": "object", + "properties": { + "parentRef": { + "description": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object.", + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ParentReference" + } + } + }, + "io.k8s.api.networking.v1alpha1.ParentReference": { + "description": "ParentReference describes a reference to a parent object.", + "type": "object", + "properties": { + "group": { + "description": "Group is the group of the object being referenced.", + "type": "string" + }, + "name": { + "description": "Name is the name of the object being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace is the namespace of the object being referenced.", + "type": "string" + }, + "resource": { + "description": "Resource is the resource of the object being referenced.", + "type": "string" + } + } + }, + "io.k8s.api.networking.v1alpha1.ServiceCIDR": { + "description": "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.", "type": "object", - "required": [ - "items" - ], "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" }, - "items": { - "description": "Items is the list of IngressClasses.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass" - } - }, "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": { - "description": "Standard list metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "spec is the desired state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDRSpec" + }, + "status": { + "description": "status represents the current state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDRStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "IngressClassList", - "version": "v1beta1" + "kind": "ServiceCIDR", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1beta1.IngressClassSpec": { - "description": "IngressClassSpec provides information about the class of an Ingress.", - "type": "object", - "properties": { - "controller": { - "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", - "type": "string" - }, - "parameters": { - "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters.", - "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference" - } - } - }, - "io.k8s.api.networking.v1beta1.IngressList": { - "description": "IngressList is a collection of Ingress.", + "io.k8s.api.networking.v1alpha1.ServiceCIDRList": { + "description": "ServiceCIDRList contains a list of ServiceCIDR objects.", "type": "object", "required": [ "items" @@ -17995,10 +18019,10 @@ "type": "string" }, "items": { - "description": "Items is the list of Ingress.", + "description": "items is the list of ServiceCIDRs.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress" + "$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ServiceCIDR" } }, "kind": { @@ -18013,76 +18037,40 @@ "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", - "kind": "IngressList", - "version": "v1beta1" + "kind": "ServiceCIDRList", + "version": "v1alpha1" } ] }, - "io.k8s.api.networking.v1beta1.IngressRule": { - "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", - "type": "object", - "properties": { - "host": { - "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", - "type": "string" - }, - "http": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressRuleValue" - } - } - }, - "io.k8s.api.networking.v1beta1.IngressSpec": { - "description": "IngressSpec describes the Ingress the user wishes to exist.", + "io.k8s.api.networking.v1alpha1.ServiceCIDRSpec": { + "description": "ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.", "type": "object", "properties": { - "backend": { - "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.", - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend" - }, - "ingressClassName": { - "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", - "type": "string" - }, - "rules": { - "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "cidrs": { + "description": "CIDRs defines the IP blocks in CIDR notation (e.g. \"192.168.0.0/24\" or \"2001:db8::/64\") from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family. This field is immutable.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressRule" - } - }, - "tls": { - "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressTLS" + "type": "string" } } } }, - "io.k8s.api.networking.v1beta1.IngressStatus": { - "description": "IngressStatus describe the current state of the Ingress.", - "type": "object", - "properties": { - "loadBalancer": { - "description": "LoadBalancer contains the current status of the load-balancer.", - "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" - } - } - }, - "io.k8s.api.networking.v1beta1.IngressTLS": { - "description": "IngressTLS describes the transport layer security associated with an Ingress.", + "io.k8s.api.networking.v1alpha1.ServiceCIDRStatus": { + "description": "ServiceCIDRStatus describes the current state of the ServiceCIDR.", "type": "object", "properties": { - "hosts": { - "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + "conditions": { + "description": "conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state", "type": "array", "items": { - "type": "string" - } - }, - "secretName": { - "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", - "type": "string" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" } } }, @@ -18091,7 +18079,7 @@ "type": "object", "properties": { "podFixed": { - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", + "description": "podFixed represents the fixed resource overhead associated with running a pod.", "type": "object", "additionalProperties": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" @@ -18111,7 +18099,7 @@ "type": "string" }, "handler": { - "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", + "description": "handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", "type": "string" }, "kind": { @@ -18123,11 +18111,11 @@ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "overhead": { - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/\nThis field is in beta starting v1.18 and is only honored by servers that enable the PodOverhead feature.", + "description": "overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/", "$ref": "#/definitions/io.k8s.api.node.v1.Overhead" }, "scheduling": { - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.", + "description": "scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.", "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling" } }, @@ -18151,7 +18139,7 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "items is a list of schema objects.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass" @@ -18183,7 +18171,8 @@ "type": "object", "additionalProperties": { "type": "string" - } + }, + "x-kubernetes-map-type": "atomic" }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", @@ -18195,25 +18184,38 @@ } } }, - "io.k8s.api.node.v1alpha1.Overhead": { - "description": "Overhead structure represents the resource overhead associated with running a pod.", + "io.k8s.api.policy.v1.Eviction": { + "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/\u003cpod name\u003e/evictions.", "type": "object", "properties": { - "podFixed": { - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" - } - } - } + "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" + }, + "deleteOptions": { + "description": "DeleteOptions may be provided", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "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": { + "description": "ObjectMeta describes the pod that is being evicted.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "policy", + "kind": "Eviction", + "version": "v1" + } + ] }, - "io.k8s.api.node.v1alpha1.RuntimeClass": { - "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", + "io.k8s.api.policy.v1.PodDisruptionBudget": { + "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", "type": "object", - "required": [ - "spec" - ], "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", @@ -18224,24 +18226,28 @@ "type": "string" }, "metadata": { - "description": "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", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec" + "description": "Specification of the desired behavior of the PodDisruptionBudget.", + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec" + }, + "status": { + "description": "Most recently observed status of the PodDisruptionBudget.", + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClass", - "version": "v1alpha1" + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" } ] }, - "io.k8s.api.node.v1alpha1.RuntimeClassList": { - "description": "RuntimeClassList is a list of RuntimeClass objects.", + "io.k8s.api.policy.v1.PodDisruptionBudgetList": { + "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", "type": "object", "required": [ "items" @@ -18252,10 +18258,10 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "Items is a list of PodDisruptionBudgets", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass" + "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget" } }, "kind": { @@ -18263,115 +18269,188 @@ "type": "string" }, "metadata": { - "description": "Standard list 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", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClassList", - "version": "v1alpha1" + "group": "policy", + "kind": "PodDisruptionBudgetList", + "version": "v1" } ] }, - "io.k8s.api.node.v1alpha1.RuntimeClassSpec": { - "description": "RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.", + "io.k8s.api.policy.v1.PodDisruptionBudgetSpec": { + "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", "type": "object", - "required": [ - "runtimeHandler" - ], "properties": { - "overhead": { - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature.", - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead" + "maxUnavailable": { + "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, - "runtimeHandler": { - "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", - "type": "string" + "minAvailable": { + "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" }, - "scheduling": { - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.", - "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Scheduling" + "selector": { + "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.", + "x-kubernetes-patch-strategy": "replace", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "unhealthyPodEvictionPolicy": { + "description": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy.\n\nIfHealthyBudget policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).", + "type": "string" } } }, - "io.k8s.api.node.v1alpha1.Scheduling": { - "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", + "io.k8s.api.policy.v1.PodDisruptionBudgetStatus": { + "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", "type": "object", + "required": [ + "disruptionsAllowed", + "currentHealthy", + "desiredHealthy", + "expectedPods" + ], "properties": { - "nodeSelector": { - "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", + "conditions": { + "description": "Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute\n the number of allowed disruptions. Therefore no disruptions are\n allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n required by the PodDisruptionBudget. No disruptions are\n allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n The condition will be True, and the number of allowed\n disruptions are provided by the disruptionsAllowed property.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentHealthy": { + "description": "current number of healthy pods", + "type": "integer", + "format": "int32" + }, + "desiredHealthy": { + "description": "minimum desired number of healthy pods", + "type": "integer", + "format": "int32" + }, + "disruptedPods": { + "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" } }, - "tolerations": { - "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", + "disruptionsAllowed": { + "description": "Number of pod disruptions that are currently allowed.", + "type": "integer", + "format": "int32" + }, + "expectedPods": { + "description": "total number of pods counted by this disruption budget", + "type": "integer", + "format": "int32" + }, + "observedGeneration": { + "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", + "type": "integer", + "format": "int64" + } + } + }, + "io.k8s.api.rbac.v1.AggregationRule": { + "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", + "type": "object", + "properties": { + "clusterRoleSelectors": { + "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" - }, - "x-kubernetes-list-type": "atomic" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + } } } }, - "io.k8s.api.node.v1beta1.Overhead": { - "description": "Overhead structure represents the resource overhead associated with running a pod.", + "io.k8s.api.rbac.v1.ClusterRole": { + "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", "type": "object", "properties": { - "podFixed": { - "description": "PodFixed represents the fixed resource overhead associated with running a pod.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + "aggregationRule": { + "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.", + "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule" + }, + "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": { + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "rules": { + "description": "Rules holds all the PolicyRules for this ClusterRole", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" } } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + } + ] }, - "io.k8s.api.node.v1beta1.RuntimeClass": { - "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", + "io.k8s.api.rbac.v1.ClusterRoleBinding": { + "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", "type": "object", "required": [ - "handler" + "roleRef" ], "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" }, - "handler": { - "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node \u0026 CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", - "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": { - "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "Standard object's metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "overhead": { - "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature.", - "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead" + "roleRef": { + "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. This field is immutable.", + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef" }, - "scheduling": { - "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.", - "$ref": "#/definitions/io.k8s.api.node.v1beta1.Scheduling" + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" + } } }, "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClass", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" } ] }, - "io.k8s.api.node.v1beta1.RuntimeClassList": { - "description": "RuntimeClassList is a list of RuntimeClass objects.", + "io.k8s.api.rbac.v1.ClusterRoleBindingList": { + "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", "type": "object", "required": [ "items" @@ -18382,10 +18461,10 @@ "type": "string" }, "items": { - "description": "Items is a list of schema objects.", + "description": "Items is a list of ClusterRoleBindings", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass" + "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" } }, "kind": { @@ -18393,168 +18472,317 @@ "type": "string" }, "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "Standard object's metadata.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "node.k8s.io", - "kind": "RuntimeClassList", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBindingList", + "version": "v1" } ] }, - "io.k8s.api.node.v1beta1.Scheduling": { - "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", + "io.k8s.api.rbac.v1.ClusterRoleList": { + "description": "ClusterRoleList is a collection of ClusterRoles", "type": "object", + "required": [ + "items" + ], "properties": { - "nodeSelector": { - "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", - "type": "object", - "additionalProperties": { - "type": "string" - } + "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" }, - "tolerations": { - "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", + "items": { + "description": "Items is a list of ClusterRoles", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" - }, - "x-kubernetes-list-type": "atomic" + "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "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": { + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleList", + "version": "v1" + } + ] }, - "io.k8s.api.policy.v1beta1.AllowedCSIDriver": { - "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.", + "io.k8s.api.rbac.v1.PolicyRule": { + "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "type": "object", "required": [ - "name" + "verbs" ], "properties": { - "name": { - "description": "Name is the registered name of the CSI driver", - "type": "string" - } + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.", + "type": "array", + "items": { + "type": "string" + } + }, + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", + "type": "array", + "items": { + "type": "string" + } + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "type": "array", + "items": { + "type": "string" + } + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. '*' represents all resources.", + "type": "array", + "items": { + "type": "string" + } + }, + "verbs": { + "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.", + "type": "array", + "items": { + "type": "string" + } + } } }, - "io.k8s.api.policy.v1beta1.AllowedFlexVolume": { - "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.", + "io.k8s.api.rbac.v1.Role": { + "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", "type": "object", - "required": [ - "driver" - ], "properties": { - "driver": { - "description": "driver is the name of the Flexvolume driver.", + "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": { + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "rules": { + "description": "Rules holds all the PolicyRules for this Role", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" + } } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + } + ] }, - "io.k8s.api.policy.v1beta1.AllowedHostPath": { - "description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.", + "io.k8s.api.rbac.v1.RoleBinding": { + "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", "type": "object", + "required": [ + "roleRef" + ], "properties": { - "pathPrefix": { - "description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`", + "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" }, - "readOnly": { - "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.", - "type": "boolean" + "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": { + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "roleRef": { + "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. This field is immutable.", + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef" + }, + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" + } } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + } + ] }, - "io.k8s.api.policy.v1beta1.Eviction": { - "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/\u003cpod name\u003e/evictions.", + "io.k8s.api.rbac.v1.RoleBindingList": { + "description": "RoleBindingList is a collection of RoleBindings", "type": "object", + "required": [ + "items" + ], "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" }, - "deleteOptions": { - "description": "DeleteOptions may be provided", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + "items": { + "description": "Items is a list of RoleBindings", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" + } }, "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": { - "description": "ObjectMeta describes the pod that is being evicted.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "Eviction", - "version": "v1beta1" + "group": "rbac.authorization.k8s.io", + "kind": "RoleBindingList", + "version": "v1" } ] }, - "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": { - "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", + "io.k8s.api.rbac.v1.RoleList": { + "description": "RoleList is a collection of Roles", "type": "object", + "required": [ + "items" + ], "properties": { - "ranges": { - "description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.", + "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" + }, + "items": { + "description": "Items is a list of Roles", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" + "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" } }, - "rule": { - "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", + "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": { + "description": "Standard object's metadata.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "RoleList", + "version": "v1" + } + ] }, - "io.k8s.api.policy.v1beta1.HostPortRange": { - "description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.", + "io.k8s.api.rbac.v1.RoleRef": { + "description": "RoleRef contains information that points to the role being used", "type": "object", "required": [ - "min", - "max" + "apiGroup", + "kind", + "name" ], "properties": { - "max": { - "description": "max is the end of the range, inclusive.", - "type": "integer", - "format": "int32" + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced", + "type": "string" }, - "min": { - "description": "min is the start of the range, inclusive.", - "type": "integer", - "format": "int32" + "kind": { + "description": "Kind is the type of resource being referenced", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced", + "type": "string" } - } + }, + "x-kubernetes-map-type": "atomic" }, - "io.k8s.api.policy.v1beta1.IDRange": { - "description": "IDRange provides a min/max of an allowed range of IDs.", + "io.k8s.api.rbac.v1.Subject": { + "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "type": "object", "required": [ - "min", - "max" + "kind", + "name" ], "properties": { - "max": { - "description": "max is the end of the range, inclusive.", - "type": "integer", - "format": "int64" + "apiGroup": { + "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + "type": "string" }, - "min": { - "description": "min is the start of the range, inclusive.", - "type": "integer", - "format": "int64" + "kind": { + "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + "type": "string" + }, + "name": { + "description": "Name of the object being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + "type": "string" + } + }, + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.resource.v1alpha2.AllocationResult": { + "description": "AllocationResult contains attributes of an allocated resource.", + "type": "object", + "properties": { + "availableOnNodes": { + "description": "This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaim.\n\nSetting this field is optional. If null, the resource is available everywhere.", + "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector" + }, + "resourceHandles": { + "description": "ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed.\n\nSetting this field is optional. It has a maximum size of 32 entries. If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached. The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceHandle" + }, + "x-kubernetes-list-type": "atomic" + }, + "shareable": { + "description": "Shareable determines whether the resource supports more than one consumer at a time.", + "type": "boolean" } } }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudget": { - "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", + "io.k8s.api.resource.v1alpha2.PodSchedulingContext": { + "description": "PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use \"WaitForFirstConsumer\" allocation mode.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", "type": "object", + "required": [ + "spec" + ], "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", @@ -18565,27 +18793,28 @@ "type": "string" }, "metadata": { + "description": "Standard object metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "Specification of the desired behavior of the PodDisruptionBudget.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec" + "description": "Spec describes where resources for the Pod are needed.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec" }, "status": { - "description": "Most recently observed status of the PodDisruptionBudget.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus" + "description": "Status describes where resources for the Pod can be allocated.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodDisruptionBudget", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": { - "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextList": { + "description": "PodSchedulingContextList is a collection of Pod scheduling objects.", "type": "object", "required": [ "items" @@ -18596,9 +18825,10 @@ "type": "string" }, "items": { + "description": "Items is the list of PodSchedulingContext objects.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.PodSchedulingContext" } }, "kind": { @@ -18606,82 +18836,59 @@ "type": "string" }, "metadata": { + "description": "Standard list metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodDisruptionBudgetList", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "PodSchedulingContextList", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": { - "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec": { + "description": "PodSchedulingContextSpec describes where resources for the Pod are needed.", "type": "object", "properties": { - "maxUnavailable": { - "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" - }, - "minAvailable": { - "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + "potentialNodes": { + "description": "PotentialNodes lists nodes where the Pod might be able to run.\n\nThe size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "atomic" }, - "selector": { - "description": "Label query over pods whose evictions are managed by the disruption budget.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + "selectedNode": { + "description": "SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use \"WaitForFirstConsumer\" allocation is to be attempted.", + "type": "string" } } }, - "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": { - "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", + "io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus": { + "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.", "type": "object", - "required": [ - "disruptionsAllowed", - "currentHealthy", - "desiredHealthy", - "expectedPods" - ], "properties": { - "currentHealthy": { - "description": "current number of healthy pods", - "type": "integer", - "format": "int32" - }, - "desiredHealthy": { - "description": "minimum desired number of healthy pods", - "type": "integer", - "format": "int32" - }, - "disruptedPods": { - "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - } - }, - "disruptionsAllowed": { - "description": "Number of pod disruptions that are currently allowed.", - "type": "integer", - "format": "int32" - }, - "expectedPods": { - "description": "total number of pods counted by this disruption budget", - "type": "integer", - "format": "int32" - }, - "observedGeneration": { - "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", - "type": "integer", - "format": "int64" + "resourceClaims": { + "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" } } }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicy": { - "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.", + "io.k8s.api.resource.v1alpha2.ResourceClaim": { + "description": "ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", "type": "object", + "required": [ + "spec" + ], "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", @@ -18692,24 +18899,55 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "Standard object metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { - "description": "spec defines the policy enforced.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec" + "description": "Spec describes the desired attributes of a resource that then needs to be allocated. It can only be set once when creating the ResourceClaim.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSpec" + }, + "status": { + "description": "Status describes whether the resource is available and with which attributes.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodSecurityPolicy", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": { - "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.", + "io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference": { + "description": "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.", + "type": "object", + "required": [ + "resource", + "name", + "uid" + ], + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" + }, + "resource": { + "description": "Resource is the type of resource being referenced, for example \"pods\".", + "type": "string" + }, + "uid": { + "description": "UID identifies exactly one incarnation of the resource.", + "type": "string" + } + } + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimList": { + "description": "ResourceClaimList is a collection of claims.", "type": "object", "required": [ "items" @@ -18720,10 +18958,10 @@ "type": "string" }, "items": { - "description": "items is a list of schema objects.", + "description": "Items is the list of resource claims.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaim" } }, "kind": { @@ -18731,274 +18969,115 @@ "type": "string" }, "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "description": "Standard list metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "policy", - "kind": "PodSecurityPolicyList", - "version": "v1beta1" + "group": "resource.k8s.io", + "kind": "ResourceClaimList", + "version": "v1alpha2" } ] }, - "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": { - "description": "PodSecurityPolicySpec defines the policy enforced.", - "type": "object", - "required": [ - "seLinux", - "runAsUser", - "supplementalGroups", - "fsGroup" - ], - "properties": { - "allowPrivilegeEscalation": { - "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.", - "type": "boolean" - }, - "allowedCSIDrivers": { - "description": "AllowedCSIDrivers is an allowlist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is a beta field, and is only honored if the API server enables the CSIInlineVolume feature gate.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver" - } - }, - "allowedCapabilities": { - "description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.", - "type": "array", - "items": { - "type": "string" - } - }, - "allowedFlexVolumes": { - "description": "allowedFlexVolumes is an allowlist of Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume" - } - }, - "allowedHostPaths": { - "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath" - } - }, - "allowedProcMountTypes": { - "description": "AllowedProcMountTypes is an allowlist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.", - "type": "array", - "items": { - "type": "string" - } - }, - "allowedUnsafeSysctls": { - "description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.", - "type": "array", - "items": { - "type": "string" - } - }, - "defaultAddCapabilities": { - "description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.", - "type": "array", - "items": { - "type": "string" - } - }, - "defaultAllowPrivilegeEscalation": { - "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.", - "type": "boolean" - }, - "forbiddenSysctls": { - "description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.", - "type": "array", - "items": { - "type": "string" - } - }, - "fsGroup": { - "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions" - }, - "hostIPC": { - "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.", - "type": "boolean" - }, - "hostNetwork": { - "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.", - "type": "boolean" - }, - "hostPID": { - "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.", - "type": "boolean" - }, - "hostPorts": { - "description": "hostPorts determines which host port ranges are allowed to be exposed.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange" - } - }, - "privileged": { - "description": "privileged determines if a pod can request to be run as privileged.", - "type": "boolean" - }, - "readOnlyRootFilesystem": { - "description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.", - "type": "boolean" - }, - "requiredDropCapabilities": { - "description": "requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.", - "type": "array", - "items": { - "type": "string" - } - }, - "runAsGroup": { - "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions" - }, - "runAsUser": { - "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions" - }, - "runtimeClass": { - "description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions" - }, - "seLinux": { - "description": "seLinux is the strategy that will dictate the allowable labels that may be set.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions" - }, - "supplementalGroups": { - "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.", - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions" - }, - "volumes": { - "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": { - "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.", + "io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference": { + "description": "ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim. The object must be in the same namespace as the ResourceClaim.", "type": "object", "required": [ - "rule" + "kind", + "name" ], "properties": { - "ranges": { - "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - } + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" }, - "rule": { - "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata, for example \"ConfigMap\".", "type": "string" - } - } - }, - "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": { - "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.", - "type": "object", - "required": [ - "rule" - ], - "properties": { - "ranges": { - "description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - } }, - "rule": { - "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.", + "name": { + "description": "Name is the name of resource being referenced.", "type": "string" } } }, - "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": { - "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.", + "io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus": { + "description": "ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with \"WaitForFirstConsumer\" allocation mode.", "type": "object", - "required": [ - "allowedRuntimeClassNames" - ], "properties": { - "allowedRuntimeClassNames": { - "description": "allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.", + "name": { + "description": "Name matches the pod.spec.resourceClaims[*].Name field.", + "type": "string" + }, + "unsuitableNodes": { + "description": "UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated for.\n\nThe size of this field is limited to 128, the same as for PodSchedulingSpec.PotentialNodes. This may get increased in the future, but not reduced.", "type": "array", "items": { "type": "string" - } - }, - "defaultRuntimeClassName": { - "description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.", - "type": "string" + }, + "x-kubernetes-list-type": "atomic" } } }, - "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": { - "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.", + "io.k8s.api.resource.v1alpha2.ResourceClaimSpec": { + "description": "ResourceClaimSpec defines how a resource is to be allocated.", "type": "object", "required": [ - "rule" + "resourceClassName" ], "properties": { - "rule": { - "description": "rule is the strategy that will dictate the allowable labels that may be set.", + "allocationMode": { + "description": "Allocation can start immediately or when a Pod wants to use the resource. \"WaitForFirstConsumer\" is the default.", "type": "string" }, - "seLinuxOptions": { - "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/", - "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions" - } - } - }, - "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": { - "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.", - "type": "object", - "properties": { - "ranges": { - "description": "ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" - } + "parametersRef": { + "description": "ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claim.\n\nThe object must be in the same namespace as the ResourceClaim.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference" }, - "rule": { - "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.", + "resourceClassName": { + "description": "ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment.", "type": "string" } } }, - "io.k8s.api.rbac.v1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", + "io.k8s.api.resource.v1alpha2.ResourceClaimStatus": { + "description": "ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are.", "type": "object", "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", + "allocation": { + "description": "Allocation is set by the resource driver once a resource or set of resources has been allocated successfully. If this is not specified, the resources have not been allocated yet.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.AllocationResult" + }, + "deallocationRequested": { + "description": "DeallocationRequested indicates that a ResourceClaim is to be deallocated.\n\nThe driver then must deallocate this claim and reset the field together with clearing the Allocation field.\n\nWhile DeallocationRequested is set, no new consumers may be added to ReservedFor.", + "type": "boolean" + }, + "driverName": { + "description": "DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.", + "type": "string" + }, + "reservedFor": { + "description": "ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.\n\nThere can be at most 32 such reservations. This may get increased in the future, but not reduced.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - } + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference" + }, + "x-kubernetes-list-map-keys": [ + "uid" + ], + "x-kubernetes-list-type": "map" } } }, - "io.k8s.api.rbac.v1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplate": { + "description": "ResourceClaimTemplate is used to produce ResourceClaim objects.", "type": "object", + "required": [ + "spec" + ], "properties": { - "aggregationRule": { - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.", - "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule" - }, "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" @@ -19008,101 +19087,116 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard object metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" - } + "spec": { + "description": "Describes the ResourceClaim that is to be generated.\n\nThis field is immutable. A ResourceClaim will get created by the control plane for a Pod when needed and then not get updated anymore.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1" + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" } ] }, - "io.k8s.api.rbac.v1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList": { + "description": "ResourceClaimTemplateList is a collection of claim templates.", "type": "object", "required": [ - "roleRef" + "items" ], "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" }, + "items": { + "description": "Items is the list of resource claim templates.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "roleRef": { - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef" - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" - } + "description": "Standard list metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", - "version": "v1" + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplateList", + "version": "v1alpha2" } ] }, - "io.k8s.api.rbac.v1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec": { + "description": "ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim.", "type": "object", "required": [ - "items" + "spec" + ], + "properties": { + "metadata": { + "description": "ObjectMeta may contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Spec for the ResourceClaim. The entire content is copied unchanged into the ResourceClaim that gets created from this template. The same fields as in a ResourceClaim are also valid here.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClaimSpec" + } + } + }, + "io.k8s.api.resource.v1alpha2.ResourceClass": { + "description": "ResourceClass is used by administrators to influence how resources are allocated.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", + "type": "object", + "required": [ + "driverName" ], "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" }, - "items": { - "description": "Items is a list of ClusterRoleBindings", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" - } + "driverName": { + "description": "DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.\n\nResource drivers have a unique name in forward domain order (acme.example.com).", + "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard object metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "parametersRef": { + "description": "ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec.", + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClassParametersReference" + }, + "suitableNodes": { + "description": "Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.\n\nSetting this field is optional. If null, all nodes are candidates.", + "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", - "version": "v1" + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" } ] }, - "io.k8s.api.rbac.v1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles", + "io.k8s.api.resource.v1alpha2.ResourceClassList": { + "description": "ResourceClassList is a collection of classes.", "type": "object", "required": [ "items" @@ -19113,10 +19207,10 @@ "type": "string" }, "items": { - "description": "Items is a list of ClusterRoles", + "description": "Items is the list of resource classes.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" + "$ref": "#/definitions/io.k8s.api.resource.v1alpha2.ResourceClass" } }, "kind": { @@ -19124,170 +19218,172 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard list metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", - "version": "v1" + "group": "resource.k8s.io", + "kind": "ResourceClassList", + "version": "v1alpha2" } ] }, - "io.k8s.api.rbac.v1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.resource.v1alpha2.ResourceClassParametersReference": { + "description": "ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass.", "type": "object", "required": [ - "verbs" + "kind", + "name" ], "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "type": "array", - "items": { - "type": "string" - } + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "type": "array", - "items": { - "type": "string" - } + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.", + "type": "string" }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "type": "array", - "items": { - "type": "string" - } + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" }, - "resources": { - "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", - "type": "array", - "items": { - "type": "string" - } + "namespace": { + "description": "Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.", + "type": "string" + } + } + }, + "io.k8s.api.resource.v1alpha2.ResourceHandle": { + "description": "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.", + "type": "object", + "properties": { + "data": { + "description": "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.\n\nThe maximum size of this field is 16KiB. This may get increased in the future, but not reduced.", + "type": "string" }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", - "type": "array", - "items": { - "type": "string" - } + "driverName": { + "description": "DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in.", + "type": "string" } } }, - "io.k8s.api.rbac.v1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + "io.k8s.api.scheduling.v1.PriorityClass": { + "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "type": "object", + "required": [ + "value" + ], "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" }, + "description": { + "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", + "type": "string" + }, + "globalDefault": { + "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", + "type": "boolean" + }, "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": { - "description": "Standard object's metadata.", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule" - } + "preemptionPolicy": { + "description": "preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", + "type": "string" + }, + "value": { + "description": "value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", + "type": "integer", + "format": "int32" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "Role", + "group": "scheduling.k8s.io", + "kind": "PriorityClass", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + "io.k8s.api.scheduling.v1.PriorityClassList": { + "description": "PriorityClassList is a collection of priority classes.", "type": "object", "required": [ - "roleRef" + "items" ], "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" }, + "items": { + "description": "items is the list of PriorityClasses", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass" + } + }, "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "roleRef": { - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef" - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject" - } + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", + "group": "scheduling.k8s.io", + "kind": "PriorityClassList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings", + "io.k8s.api.storage.v1.CSIDriver": { + "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", "type": "object", "required": [ - "items" + "spec" ], "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" }, - "items": { - "description": "Items is a list of RoleBindings", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" - } - }, "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "spec represents the specification of the CSI Driver.", + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", + "group": "storage.k8s.io", + "kind": "CSIDriver", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleList": { - "description": "RoleList is a collection of Roles", + "io.k8s.api.storage.v1.CSIDriverList": { + "description": "CSIDriverList is a collection of CSIDriver objects.", "type": "object", "required": [ "items" @@ -19298,10 +19394,10 @@ "type": "string" }, "items": { - "description": "Items is a list of Roles", + "description": "items is the list of CSIDriver", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver" } }, "kind": { @@ -19309,192 +19405,224 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", + "group": "storage.k8s.io", + "kind": "CSIDriverList", "version": "v1" } ] }, - "io.k8s.api.rbac.v1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", + "io.k8s.api.storage.v1.CSIDriverSpec": { + "description": "CSIDriverSpec is the specification of a CSIDriver.", "type": "object", - "required": [ - "apiGroup", - "kind", - "name" - ], "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", - "type": "string" + "attachRequired": { + "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", + "type": "boolean" }, - "kind": { - "description": "Kind is the type of resource being referenced", + "fsGroupPolicy": { + "description": "fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details.\n\nThis field is immutable.\n\nDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume. With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume's access mode contains ReadWriteOnce.", "type": "string" }, - "name": { - "description": "Name is the name of resource being referenced", - "type": "string" + "podInfoOnMount": { + "description": "podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false.\n\nThe CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext.\n\nThe following VolumeContext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field is immutable.", + "type": "boolean" + }, + "requiresRepublish": { + "description": "requiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.", + "type": "boolean" + }, + "seLinuxMount": { + "description": "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes. Kubernetes will call NodeStage / NodePublish with \"-o context=xyz\" mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context. In the future, it may be expanded to other volume AccessModes. In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux context.\n\nWhen \"false\", Kubernetes won't pass any special SELinux mount options to the driver. This is typical for volumes that represent subdirectories of a bigger shared filesystem.\n\nDefault is \"false\".", + "type": "boolean" + }, + "storageCapacity": { + "description": "storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field was immutable in Kubernetes \u003c= 1.22 and now is mutable.", + "type": "boolean" + }, + "tokenRequests": { + "description": "tokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest" + }, + "x-kubernetes-list-type": "atomic" + }, + "volumeLifecycleModes": { + "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.\n\nThis field is beta. This field is immutable.", + "type": "array", + "items": { + "type": "string" + }, + "x-kubernetes-list-type": "set" } } }, - "io.k8s.api.rbac.v1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + "io.k8s.api.storage.v1.CSINode": { + "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "type": "object", "required": [ - "kind", - "name" + "spec" ], "properties": { - "apiGroup": { - "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + "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 of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + "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" }, - "name": { - "description": "Name of the object being referenced.", - "type": "string" + "metadata": { + "description": "Standard object's metadata. metadata.name must be the Kubernetes node name.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" + "spec": { + "description": "spec is the specification of CSINode", + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + } + ] }, - "io.k8s.api.rbac.v1alpha1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", + "io.k8s.api.storage.v1.CSINodeDriver": { + "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", "type": "object", + "required": [ + "name", + "nodeID" + ], "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", + "allocatable": { + "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources" + }, + "name": { + "description": "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", + "type": "string" + }, + "nodeID": { + "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", + "type": "string" + }, + "topologyKeys": { + "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + "type": "string" } } } }, - "io.k8s.api.rbac.v1alpha1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.CSINodeList": { + "description": "CSINodeList is a collection of CSINode objects.", "type": "object", + "required": [ + "items" + ], "properties": { - "aggregationRule": { - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.", - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule" - }, "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" }, + "items": { + "description": "items is the list of CSINode", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode" + } + }, "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" - } + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "CSINodeList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.CSINodeSpec": { + "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", "type": "object", "required": [ - "roleRef" + "drivers" ], "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "roleRef": { - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef" - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", + "drivers": { + "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" - } - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", - "version": "v1alpha1" + "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver" + }, + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" } - ] + } }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.CSIStorageCapacity": { + "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity. If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node.", "type": "object", "required": [ - "items" + "storageClassName" ], "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" }, - "items": { - "description": "Items is a list of ClusterRoleBindings", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" - } + "capacity": { + "description": "capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThe semantic is currently (CSI spec 1.2) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes. If not set, that information is currently unavailable.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" }, "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" }, + "maximumVolumeSize": { + "description": "maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis is defined since CSI spec 1.4.0 as the largest size that may be used in a CreateVolumeRequest.capacity_range.required_bytes field to create a volume with the same parameters as those in GetCapacityRequest. The corresponding value in the Kubernetes API is ResourceRequirements.Requests in a volume claim.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, "metadata": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + "description": "Standard object's metadata. The name has no particular meaning. It must be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-\u003cuuid\u003e, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects are namespaced.\n\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "nodeTopology": { + "description": "nodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "storageClassName": { + "description": "storageClassName represents the name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.", + "type": "string" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.CSIStorageCapacityList": { + "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.", "type": "object", "required": [ "items" @@ -19505,77 +19633,52 @@ "type": "string" }, "items": { - "description": "Items is a list of ClusterRoles", + "description": "items is the list of CSIStorageCapacity objects.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" - } + "$ref": "#/definitions/io.k8s.api.storage.v1.CSIStorageCapacity" + }, + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" }, "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": { - "description": "Standard object's metadata.", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "CSIStorageCapacityList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.storage.v1.StorageClass": { + "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "type": "object", "required": [ - "verbs" + "provisioner" ], "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "type": "array", - "items": { - "type": "string" - } - }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "type": "array", - "items": { - "type": "string" - } - }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "type": "array", - "items": { - "type": "string" - } + "allowVolumeExpansion": { + "description": "allowVolumeExpansion shows whether the storage class allow volume expand.", + "type": "boolean" }, - "resources": { - "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", + "allowedTopologies": { + "description": "allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", "type": "array", "items": { - "type": "string" - } + "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" + }, + "x-kubernetes-list-type": "atomic" }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.rbac.v1alpha1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.", - "type": "object", - "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" @@ -19585,66 +19688,46 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", + "mountOptions": { + "description": "mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class. e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" + "type": "string" } - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "Role", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.", - "type": "object", - "required": [ - "roleRef" - ], - "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" + "parameters": { + "description": "parameters holds the parameters for the provisioner that should create volumes of this storage class.", + "type": "object", + "additionalProperties": { + "type": "string" + } }, - "metadata": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + "provisioner": { + "description": "provisioner indicates the type of the provisioner.", + "type": "string" }, - "roleRef": { - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef" + "reclaimPolicy": { + "description": "reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class. Defaults to Delete.", + "type": "string" }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" - } + "volumeBindingMode": { + "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", + "type": "string" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.StorageClassList": { + "description": "StorageClassList is a collection of storage classes.", "type": "object", "required": [ "items" @@ -19655,10 +19738,10 @@ "type": "string" }, "items": { - "description": "Items is a list of RoleBindings", + "description": "items is the list of StorageClasses", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" + "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" } }, "kind": { @@ -19666,156 +19749,41 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", - "version": "v1alpha1" + "group": "storage.k8s.io", + "kind": "StorageClassList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1alpha1.RoleList": { - "description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.TokenRequest": { + "description": "TokenRequest contains parameters of a service account token.", "type": "object", "required": [ - "items" + "audience" ], "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", + "audience": { + "description": "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", "type": "string" }, - "items": { - "description": "Items is a list of Roles", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role" - } - }, - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.rbac.v1alpha1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", - "type": "object", - "required": [ - "apiGroup", - "kind", - "name" - ], - "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", - "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" - } - } - }, - "io.k8s.api.rbac.v1alpha1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", - "type": "object", - "required": [ - "kind", - "name" - ], - "properties": { - "apiVersion": { - "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", - "type": "string" - }, - "kind": { - "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", - "type": "string" - }, - "name": { - "description": "Name of the object being referenced.", - "type": "string" - }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" - } - } - }, - "io.k8s.api.rbac.v1beta1.AggregationRule": { - "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", - "type": "object", - "properties": { - "clusterRoleSelectors": { - "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" - } + "expirationSeconds": { + "description": "expirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".", + "type": "integer", + "format": "int64" } } }, - "io.k8s.api.rbac.v1beta1.ClusterRole": { - "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.", - "type": "object", - "properties": { - "aggregationRule": { - "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.", - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule" - }, - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "rules": { - "description": "Rules holds all the PolicyRules for this ClusterRole", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" - } - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRole", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.ClusterRoleBinding": { - "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachment": { + "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "type": "object", "required": [ - "roleRef" + "spec" ], "properties": { "apiVersion": { @@ -19827,31 +19795,28 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, - "roleRef": { - "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef" + "spec": { + "description": "spec represents specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec" }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject" - } + "status": { + "description": "status represents status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBinding", - "version": "v1beta1" + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList": { - "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindingList, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachmentList": { + "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", "type": "object", "required": [ "items" @@ -19862,10 +19827,10 @@ "type": "string" }, "items": { - "description": "Items is a list of ClusterRoleBindings", + "description": "items is the list of VolumeAttachments", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" } }, "kind": { @@ -19873,2316 +19838,191 @@ "type": "string" }, "metadata": { - "description": "Standard object's metadata.", + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleBindingList", - "version": "v1beta1" + "group": "storage.k8s.io", + "kind": "VolumeAttachmentList", + "version": "v1" } ] }, - "io.k8s.api.rbac.v1beta1.ClusterRoleList": { - "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.", + "io.k8s.api.storage.v1.VolumeAttachmentSource": { + "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", + "type": "object", + "properties": { + "inlineVolumeSpec": { + "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is beta-level and is only honored by servers that enabled the CSIMigration feature.", + "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" + }, + "persistentVolumeName": { + "description": "persistentVolumeName represents the name of the persistent volume to attach.", + "type": "string" + } + } + }, + "io.k8s.api.storage.v1.VolumeAttachmentSpec": { + "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "type": "object", "required": [ - "items" + "attacher", + "source", + "nodeName" ], "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", + "attacher": { + "description": "attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, - "items": { - "description": "Items is a list of ClusterRoles", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" - } - }, - "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", + "nodeName": { + "description": "nodeName represents the node that the volume should be attached to.", "type": "string" }, - "metadata": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "ClusterRoleList", - "version": "v1beta1" + "source": { + "description": "source represents the volume that should be attached.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource" } - ] + } }, - "io.k8s.api.rbac.v1beta1.PolicyRule": { - "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "io.k8s.api.storage.v1.VolumeAttachmentStatus": { + "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "type": "object", "required": [ - "verbs" + "attached" ], "properties": { - "apiGroups": { - "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", - "type": "array", - "items": { - "type": "string" - } - }, - "nonResourceURLs": { - "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", - "type": "array", - "items": { - "type": "string" - } + "attachError": { + "description": "attachError represents the last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" }, - "resourceNames": { - "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", - "type": "array", - "items": { - "type": "string" - } + "attached": { + "description": "attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "boolean" }, - "resources": { - "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", - "type": "array", - "items": { + "attachmentMetadata": { + "description": "attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "object", + "additionalProperties": { "type": "string" } }, - "verbs": { - "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", - "type": "array", - "items": { - "type": "string" - } + "detachError": { + "description": "detachError represents the last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" } } }, - "io.k8s.api.rbac.v1beta1.Role": { - "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.", - "type": "object", - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "rules": { - "description": "Rules holds all the PolicyRules for this Role", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" - } - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "Role", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleBinding": { - "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.", - "type": "object", - "required": [ - "roleRef" - ], - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "roleRef": { - "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef" - }, - "subjects": { - "description": "Subjects holds references to the objects the role applies to.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject" - } - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBinding", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleBindingList": { - "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is a list of RoleBindings", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" - } - }, - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleBindingList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleList": { - "description": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is a list of Roles", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role" - } - }, - "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": { - "description": "Standard object's metadata.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "rbac.authorization.k8s.io", - "kind": "RoleList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.rbac.v1beta1.RoleRef": { - "description": "RoleRef contains information that points to the role being used", - "type": "object", - "required": [ - "apiGroup", - "kind", - "name" - ], - "properties": { - "apiGroup": { - "description": "APIGroup is the group for the resource being referenced", - "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" - } - } - }, - "io.k8s.api.rbac.v1beta1.Subject": { - "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", - "type": "object", - "required": [ - "kind", - "name" - ], - "properties": { - "apiGroup": { - "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", - "type": "string" - }, - "kind": { - "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", - "type": "string" - }, - "name": { - "description": "Name of the object being referenced.", - "type": "string" - }, - "namespace": { - "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", - "type": "string" - } - } - }, - "io.k8s.api.scheduling.v1.PriorityClass": { - "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "type": "object", - "required": [ - "value" - ], - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "type": "integer", - "format": "int32" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1" - } - ] - }, - "io.k8s.api.scheduling.v1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1" - } - ] - }, - "io.k8s.api.scheduling.v1alpha1.PriorityClass": { - "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "type": "object", - "required": [ - "value" - ], - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "type": "integer", - "format": "int32" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.scheduling.v1alpha1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.scheduling.v1beta1.PriorityClass": { - "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", - "type": "object", - "required": [ - "value" - ], - "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" - }, - "description": { - "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", - "type": "string" - }, - "globalDefault": { - "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", - "type": "boolean" - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "preemptionPolicy": { - "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.", - "type": "string" - }, - "value": { - "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", - "type": "integer", - "format": "int32" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClass", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.scheduling.v1beta1.PriorityClassList": { - "description": "PriorityClassList is a collection of priority classes.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of PriorityClasses", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "scheduling.k8s.io", - "kind": "PriorityClassList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriver": { - "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the CSI Driver.", - "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriver", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriverList": { - "description": "CSIDriverList is a collection of CSIDriver objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of CSIDriver", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriverList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSIDriverSpec": { - "description": "CSIDriverSpec is the specification of a CSIDriver.", - "type": "object", - "properties": { - "attachRequired": { - "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", - "type": "boolean" - }, - "fsGroupPolicy": { - "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.", - "type": "string" - }, - "podInfoOnMount": { - "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", - "type": "boolean" - }, - "requiresRepublish": { - "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "boolean" - }, - "storageCapacity": { - "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.", - "type": "boolean" - }, - "tokenRequests": { - "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest" - }, - "x-kubernetes-list-type": "atomic" - }, - "volumeLifecycleModes": { - "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. This field is beta.", - "type": "array", - "items": { - "type": "string" - }, - "x-kubernetes-list-type": "set" - } - } - }, - "io.k8s.api.storage.v1.CSINode": { - "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "metadata.name must be the Kubernetes node name.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "spec is the specification of CSINode", - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINode", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSINodeDriver": { - "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", - "type": "object", - "required": [ - "name", - "nodeID" - ], - "properties": { - "allocatable": { - "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources" - }, - "name": { - "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", - "type": "string" - }, - "nodeID": { - "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", - "type": "string" - }, - "topologyKeys": { - "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.storage.v1.CSINodeList": { - "description": "CSINodeList is a collection of CSINode objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of CSINode", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINodeList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.CSINodeSpec": { - "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", - "type": "object", - "required": [ - "drivers" - ], - "properties": { - "drivers": { - "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver" - }, - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" - } - } - }, - "io.k8s.api.storage.v1.StorageClass": { - "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", - "type": "object", - "required": [ - "provisioner" - ], - "properties": { - "allowVolumeExpansion": { - "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", - "type": "boolean" - }, - "allowedTopologies": { - "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" - } - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "mountOptions": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", - "type": "array", - "items": { - "type": "string" - } - }, - "parameters": { - "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "provisioner": { - "description": "Provisioner indicates the type of the provisioner.", - "type": "string" - }, - "reclaimPolicy": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", - "type": "string" - }, - "volumeBindingMode": { - "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "string" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClass", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.StorageClassList": { - "description": "StorageClassList is a collection of storage classes.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is the list of StorageClasses", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClassList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.TokenRequest": { - "description": "TokenRequest contains parameters of a service account token.", - "type": "object", - "required": [ - "audience" - ], - "properties": { - "audience": { - "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", - "type": "string" - }, - "expirationSeconds": { - "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".", - "type": "integer", - "format": "int64" - } - } - }, - "io.k8s.api.storage.v1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec" - }, - "status": { - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1" - } - ] - }, - "io.k8s.api.storage.v1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "type": "object", - "properties": { - "inlineVolumeSpec": { - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature.", - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - } - }, - "io.k8s.api.storage.v1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "type": "object", - "required": [ - "attacher", - "source", - "nodeName" - ], - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "description": "Source represents the volume that should be attached.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource" - } - } - }, - "io.k8s.api.storage.v1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "type": "object", - "required": [ - "attached" - ], - "properties": { - "attachError": { - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "detachError": { - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" - } - } - }, - "io.k8s.api.storage.v1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "type": "object", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "description": "Time the error was encountered.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - } - } - }, - "io.k8s.api.storage.v1.VolumeNodeResources": { - "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", - "type": "object", - "properties": { - "count": { - "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", - "type": "integer", - "format": "int32" - } - } - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec" - }, - "status": { - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1alpha1" - } - ] - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "type": "object", - "properties": { - "inlineVolumeSpec": { - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature.", - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - } - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "type": "object", - "required": [ - "attacher", - "source", - "nodeName" - ], - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "description": "Source represents the volume that should be attached.", - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource" - } - } - }, - "io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "type": "object", - "required": [ - "attached" - ], - "properties": { - "attachError": { - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError" - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "detachError": { - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError" - } - } - }, - "io.k8s.api.storage.v1alpha1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "type": "object", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "description": "Time the error was encountered.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - } - } - }, - "io.k8s.api.storage.v1beta1.CSIDriver": { - "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the CSI Driver.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverSpec" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriver", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSIDriverList": { - "description": "CSIDriverList is a collection of CSIDriver objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of CSIDriver", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSIDriverList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSIDriverSpec": { - "description": "CSIDriverSpec is the specification of a CSIDriver.", - "type": "object", - "properties": { - "attachRequired": { - "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", - "type": "boolean" - }, - "fsGroupPolicy": { - "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.", - "type": "string" - }, - "podInfoOnMount": { - "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", - "type": "boolean" - }, - "requiresRepublish": { - "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "boolean" - }, - "storageCapacity": { - "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.", - "type": "boolean" - }, - "tokenRequests": { - "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\u003caudience\u003e\": {\n \"token\": \u003ctoken\u003e,\n \"expirationTimestamp\": \u003cexpiration timestamp in RFC3339\u003e,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.TokenRequest" - }, - "x-kubernetes-list-type": "atomic" - }, - "volumeLifecycleModes": { - "description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.storage.v1beta1.CSINode": { - "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "metadata.name must be the Kubernetes node name.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "spec is the specification of CSINode", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeSpec" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINode", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSINodeDriver": { - "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", - "type": "object", - "required": [ - "name", - "nodeID" - ], - "properties": { - "allocatable": { - "description": "allocatable represents the volume resources of a node that are available for scheduling.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeNodeResources" - }, - "name": { - "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", - "type": "string" - }, - "nodeID": { - "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", - "type": "string" - }, - "topologyKeys": { - "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.api.storage.v1beta1.CSINodeList": { - "description": "CSINodeList is a collection of CSINode objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items is the list of CSINode", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "CSINodeList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.CSINodeSpec": { - "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", - "type": "object", - "required": [ - "drivers" - ], - "properties": { - "drivers": { - "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeDriver" - }, - "x-kubernetes-patch-merge-key": "name", - "x-kubernetes-patch-strategy": "merge" - } - } - }, - "io.k8s.api.storage.v1beta1.StorageClass": { - "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", - "type": "object", - "required": [ - "provisioner" - ], - "properties": { - "allowVolumeExpansion": { - "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", - "type": "boolean" - }, - "allowedTopologies": { - "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm" - } - }, - "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": { - "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "mountOptions": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", - "type": "array", - "items": { - "type": "string" - } - }, - "parameters": { - "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "provisioner": { - "description": "Provisioner indicates the type of the provisioner.", - "type": "string" - }, - "reclaimPolicy": { - "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", - "type": "string" - }, - "volumeBindingMode": { - "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", - "type": "string" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClass", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.StorageClassList": { - "description": "StorageClassList is a collection of storage classes.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is the list of StorageClasses", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "StorageClassList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.TokenRequest": { - "description": "TokenRequest contains parameters of a service account token.", - "type": "object", - "required": [ - "audience" - ], - "properties": { - "audience": { - "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", - "type": "string" - }, - "expirationSeconds": { - "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\"", - "type": "integer", - "format": "int64" - } - } - }, - "io.k8s.api.storage.v1beta1.VolumeAttachment": { - "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec" - }, - "status": { - "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachment", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentList": { - "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "Items is the list of VolumeAttachments", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" - } - }, - "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": { - "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "storage.k8s.io", - "kind": "VolumeAttachmentList", - "version": "v1beta1" - } - ] - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentSource": { - "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", - "type": "object", - "properties": { - "inlineVolumeSpec": { - "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature.", - "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" - }, - "persistentVolumeName": { - "description": "Name of the persistent volume to attach.", - "type": "string" - } - } - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentSpec": { - "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", - "type": "object", - "required": [ - "attacher", - "source", - "nodeName" - ], - "properties": { - "attacher": { - "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", - "type": "string" - }, - "nodeName": { - "description": "The node that the volume should be attached to.", - "type": "string" - }, - "source": { - "description": "Source represents the volume that should be attached.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource" - } - } - }, - "io.k8s.api.storage.v1beta1.VolumeAttachmentStatus": { - "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", - "type": "object", - "required": [ - "attached" - ], - "properties": { - "attachError": { - "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError" - }, - "attached": { - "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "boolean" - }, - "attachmentMetadata": { - "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "detachError": { - "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", - "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError" - } - } - }, - "io.k8s.api.storage.v1beta1.VolumeError": { - "description": "VolumeError captures an error encountered during a volume operation.", - "type": "object", - "properties": { - "message": { - "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", - "type": "string" - }, - "time": { - "description": "Time the error was encountered.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - } - } - }, - "io.k8s.api.storage.v1beta1.VolumeNodeResources": { - "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", - "type": "object", - "properties": { - "count": { - "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.", - "type": "integer", - "format": "int32" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": { - "description": "CustomResourceColumnDefinition specifies a column for server side printing.", - "type": "object", - "required": [ - "name", - "type", - "jsonPath" - ], - "properties": { - "description": { - "description": "description is a human readable description of this column.", - "type": "string" - }, - "format": { - "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", - "type": "string" - }, - "jsonPath": { - "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", - "type": "string" - }, - "name": { - "description": "name is a human readable name for the column.", - "type": "string" - }, - "priority": { - "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", - "type": "integer", - "format": "int32" - }, - "type": { - "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", - "type": "string" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": { - "description": "CustomResourceConversion describes how to convert different versions of a CR.", - "type": "object", - "required": [ - "strategy" - ], - "properties": { - "strategy": { - "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", - "type": "string" - }, - "webhook": { - "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { - "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e.", - "type": "object", - "required": [ - "spec" - ], - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "spec describes how the user wants the resources to appear", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec" - }, - "status": { - "description": "status indicates the actual state of the CustomResourceDefinition", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apiextensions.k8s.io", - "kind": "CustomResourceDefinition", - "version": "v1" - } - ] - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": { - "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", - "type": "object", - "required": [ - "type", - "status" - ], - "properties": { - "lastTransitionTime": { - "description": "lastTransitionTime last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "message is a human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "status is the status of the condition. Can be True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.", - "type": "string" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": { - "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "description": "items list individual CustomResourceDefinition objects", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" - } - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apiextensions.k8s.io", - "kind": "CustomResourceDefinitionList", - "version": "v1" - } - ] - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": { - "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", - "type": "object", - "required": [ - "plural", - "kind" - ], - "properties": { - "categories": { - "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.", - "type": "array", - "items": { - "type": "string" - } - }, - "kind": { - "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.", - "type": "string" - }, - "listKind": { - "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".", - "type": "string" - }, - "plural": { - "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/\u003cgroup\u003e/\u003cversion\u003e/.../\u003cplural\u003e`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`). Must be all lowercase.", - "type": "string" - }, - "shortNames": { - "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get \u003cshortname\u003e`. It must be all lowercase.", - "type": "array", - "items": { - "type": "string" - } - }, - "singular": { - "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.", - "type": "string" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": { - "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", - "type": "object", - "required": [ - "group", - "names", - "scope", - "versions" - ], - "properties": { - "conversion": { - "description": "conversion defines conversion settings for the CRD.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion" - }, - "group": { - "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/\u003cgroup\u003e/...`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`).", - "type": "string" - }, - "names": { - "description": "names specify the resource and kind names for the custom resource.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" - }, - "preserveUnknownFields": { - "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", - "type": "boolean" - }, - "scope": { - "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", - "type": "string" - }, - "versions": { - "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion" - } - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": { - "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", - "type": "object", - "properties": { - "acceptedNames": { - "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" - }, - "conditions": { - "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition" - } - }, - "storedVersions": { - "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": { - "description": "CustomResourceDefinitionVersion describes a version for CRD.", - "type": "object", - "required": [ - "name", - "served", - "storage" - ], - "properties": { - "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition" - } - }, - "deprecated": { - "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.", - "type": "boolean" - }, - "deprecationWarning": { - "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.", - "type": "string" - }, - "name": { - "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/\u003cgroup\u003e/\u003cversion\u003e/...` if `served` is true.", - "type": "string" - }, - "schema": { - "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation" - }, - "served": { - "description": "served is a flag enabling/disabling this version from being served via REST APIs", - "type": "boolean" - }, - "storage": { - "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", - "type": "boolean" - }, - "subresources": { - "description": "subresources specify what subresources this version of the defined custom resource have.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": { - "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", - "type": "object", - "required": [ - "specReplicasPath", - "statusReplicasPath" - ], - "properties": { - "labelSelectorPath": { - "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", - "type": "string" - }, - "specReplicasPath": { - "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", - "type": "string" - }, - "statusReplicasPath": { - "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", - "type": "string" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": { - "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", - "type": "object" - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": { - "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", - "type": "object", - "properties": { - "scale": { - "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale" - }, - "status": { - "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": { - "description": "CustomResourceValidation is a list of validation methods for CustomResources.", - "type": "object", - "properties": { - "openAPIV3Schema": { - "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": { - "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", - "type": "object", - "properties": { - "description": { - "type": "string" - }, - "url": { - "type": "string" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": { - "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": { - "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", - "type": "object", - "properties": { - "$ref": { - "type": "string" - }, - "$schema": { - "type": "string" - }, - "additionalItems": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" - }, - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" - }, - "allOf": { - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "anyOf": { - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "default": { - "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" - }, - "definitions": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "dependencies": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray" - } - }, - "description": { - "type": "string" - }, - "enum": { - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" - } - }, - "example": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" - }, - "exclusiveMaximum": { - "type": "boolean" - }, - "exclusiveMinimum": { - "type": "boolean" - }, - "externalDocs": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation" - }, - "format": { - "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", - "type": "string" - }, - "id": { - "type": "string" - }, - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray" - }, - "maxItems": { - "type": "integer", - "format": "int64" - }, - "maxLength": { - "type": "integer", - "format": "int64" - }, - "maxProperties": { - "type": "integer", - "format": "int64" - }, - "maximum": { - "type": "number", - "format": "double" - }, - "minItems": { - "type": "integer", - "format": "int64" - }, - "minLength": { - "type": "integer", - "format": "int64" - }, - "minProperties": { - "type": "integer", - "format": "int64" - }, - "minimum": { - "type": "number", - "format": "double" - }, - "multipleOf": { - "type": "number", - "format": "double" - }, - "not": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - }, - "nullable": { - "type": "boolean" - }, - "oneOf": { - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "pattern": { - "type": "string" - }, - "patternProperties": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "properties": { - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" - } - }, - "required": { - "type": "array", - "items": { - "type": "string" - } - }, - "title": { - "type": "string" - }, - "type": { - "type": "string" - }, - "uniqueItems": { - "type": "boolean" - }, - "x-kubernetes-embedded-resource": { - "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", - "type": "boolean" - }, - "x-kubernetes-int-or-string": { - "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", - "type": "boolean" - }, - "x-kubernetes-list-map-keys": { - "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", - "type": "array", - "items": { - "type": "string" - } - }, - "x-kubernetes-list-type": { - "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", - "type": "string" - }, - "x-kubernetes-map-type": { - "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", - "type": "string" - }, - "x-kubernetes-preserve-unknown-fields": { - "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", - "type": "boolean" - } - } - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": { - "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": { - "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": { - "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." - }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "io.k8s.api.storage.v1.VolumeError": { + "description": "VolumeError captures an error encountered during a volume operation.", "type": "object", - "required": [ - "namespace", - "name" - ], "properties": { - "name": { - "description": "name is the name of the service. Required", - "type": "string" - }, - "namespace": { - "description": "namespace is the namespace of the service. Required", - "type": "string" - }, - "path": { - "description": "path is an optional URL path at which the webhook will be contacted.", + "message": { + "description": "message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": "string" }, - "port": { - "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", + "time": { + "description": "time represents the time the error was encountered.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + } + }, + "io.k8s.api.storage.v1.VolumeNodeResources": { + "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", + "type": "object", + "properties": { + "count": { + "description": "count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", "type": "integer", "format": "int32" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": { - "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", + "io.k8s.api.storage.v1alpha1.VolumeAttributesClass": { + "description": "VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.", "type": "object", + "required": [ + "driverName" + ], "properties": { - "caBundle": { - "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", - "type": "string", - "format": "byte" + "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" }, - "service": { - "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference" + "driverName": { + "description": "Name of the CSI driver This field is immutable.", + "type": "string" }, - "url": { - "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "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": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "parameters": { + "description": "parameters hold volume attributes defined by the CSI driver. These values are opaque to the Kubernetes and are passed directly to the CSI driver. The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable. To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClass.\n\nThis field is required and must contain at least one key/value pair. The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K. If the CSI driver rejects invalid parameters, the target PersistentVolumeClaim will be set to an \"Infeasible\" state in the modifyVolumeStatus field.", + "type": "object", + "additionalProperties": { + "type": "string" + } } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttributesClass", + "version": "v1alpha1" + } + ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": { - "description": "WebhookConversion describes how to call a conversion webhook", + "io.k8s.api.storage.v1alpha1.VolumeAttributesClassList": { + "description": "VolumeAttributesClassList is a collection of VolumeAttributesClass objects.", "type": "object", "required": [ - "conversionReviewVersions" + "items" ], "properties": { - "clientConfig": { - "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig" + "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" }, - "conversionReviewVersions": { - "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", + "items": { + "description": "items is the list of VolumeAttributesClass objects.", "type": "array", "items": { - "type": "string" + "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttributesClass" } + }, + "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": { + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttributesClassList", + "version": "v1alpha1" + } + ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "type": "object", "required": [ "name", "type", - "JSONPath" + "jsonPath" ], "properties": { - "JSONPath": { - "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", - "type": "string" - }, "description": { "description": "description is a human readable description of this column.", "type": "string" @@ -22191,6 +20031,10 @@ "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, + "jsonPath": { + "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", + "type": "string" + }, "name": { "description": "name is a human readable name for the column.", "type": "string" @@ -22206,32 +20050,25 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": { "description": "CustomResourceConversion describes how to convert different versions of a CR.", "type": "object", "required": [ "strategy" ], "properties": { - "conversionReviewVersions": { - "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.", - "type": "array", - "items": { - "type": "string" - } - }, "strategy": { - "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.", + "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `\"None\"`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `\"Webhook\"`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", "type": "string" }, - "webhookClientConfig": { - "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig" + "webhook": { + "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `\"Webhook\"`.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": { - "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e. Deprecated in v1.16, planned for removal in v1.22. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.", + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { + "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format \u003c.spec.name\u003e.\u003c.spec.group\u003e.", "type": "object", "required": [ "spec" @@ -22246,26 +20083,27 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "spec describes how the user wants the resources to appear", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec" }, "status": { "description": "status indicates the actual state of the CustomResourceDefinition", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus" } }, "x-kubernetes-group-version-kind": [ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinition", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": { "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", "type": "object", "required": [ @@ -22295,7 +20133,7 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": { "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", "type": "object", "required": [ @@ -22310,7 +20148,7 @@ "description": "items list individual CustomResourceDefinition objects", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" } }, "kind": { @@ -22318,6 +20156,7 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, @@ -22325,11 +20164,11 @@ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinitionList", - "version": "v1beta1" + "version": "v1" } ] }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": { "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", "type": "object", "required": [ @@ -22369,25 +20208,19 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": { "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", "type": "object", "required": [ "group", "names", - "scope" + "scope", + "versions" ], "properties": { - "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" - } - }, "conversion": { "description": "conversion defines conversion settings for the CRD.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion" }, "group": { "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/\u003cgroup\u003e/...`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`).", @@ -22395,51 +20228,43 @@ }, "names": { "description": "names specify the resource and kind names for the custom resource.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", + "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.", "type": "boolean" }, "scope": { - "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.", - "type": "string" - }, - "subresources": { - "description": "subresources specify what subresources the defined custom resource has. If present, this field configures subresources for all versions. Top-level and per-version subresources are mutually exclusive.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources" - }, - "validation": { - "description": "validation describes the schema used for validation and pruning of the custom resource. If present, this validation schema is used to validate all versions. Top-level and per-version schemas are mutually exclusive.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation" - }, - "version": { - "description": "version is the API version of the defined custom resource. The custom resources are served under `/apis/\u003cgroup\u003e/\u003cversion\u003e/...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead.", + "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", "type": "string" }, "versions": { - "description": "versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", + "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion" } } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": { "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", "type": "object", "properties": { "acceptedNames": { "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" }, "conditions": { "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition" - } + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition" + }, + "x-kubernetes-list-map-keys": [ + "type" + ], + "x-kubernetes-list-type": "map" }, "storedVersions": { "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", @@ -22450,7 +20275,7 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": { "description": "CustomResourceDefinitionVersion describes a version for CRD.", "type": "object", "required": [ @@ -22460,10 +20285,10 @@ ], "properties": { "additionalPrinterColumns": { - "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", + "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition" } }, "deprecated": { @@ -22479,8 +20304,8 @@ "type": "string" }, "schema": { - "description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead).", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation" + "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation" }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", @@ -22491,12 +20316,12 @@ "type": "boolean" }, "subresources": { - "description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead).", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources" + "description": "subresources specify what subresources this version of the defined custom resource have.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "type": "object", "required": [ @@ -22518,35 +20343,35 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "type": "object", "properties": { "scale": { "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale" }, "status": { "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "type": "object", "properties": { "openAPIV3Schema": { "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "type": "object", "properties": { @@ -22558,10 +20383,10 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "type": "object", "properties": { @@ -22572,37 +20397,37 @@ "type": "string" }, "additionalItems": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" }, "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" }, "allOf": { "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "anyOf": { "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "default": { - "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" + "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" }, "definitions": { "type": "object", "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "dependencies": { "type": "object", "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray" } }, "description": { @@ -22611,11 +20436,11 @@ "enum": { "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" } }, "example": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" }, "exclusiveMaximum": { "type": "boolean" @@ -22624,7 +20449,7 @@ "type": "boolean" }, "externalDocs": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", @@ -22634,7 +20459,7 @@ "type": "string" }, "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray" }, "maxItems": { "type": "integer", @@ -22673,7 +20498,7 @@ "format": "double" }, "not": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" }, "nullable": { "type": "boolean" @@ -22681,7 +20506,7 @@ "oneOf": { "type": "array", "items": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "pattern": { @@ -22690,13 +20515,13 @@ "patternProperties": { "type": "object", "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "properties": { "type": "object", "additionalProperties": { - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" } }, "required": { @@ -22740,19 +20565,32 @@ "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" + }, + "x-kubernetes-validations": { + "description": "x-kubernetes-validations describes a list of validation rules written in the CEL expression language. This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule" + }, + "x-kubernetes-list-map-keys": [ + "rule" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "rule", + "x-kubernetes-patch-strategy": "merge" } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "type": "object", "required": [ @@ -22779,7 +20617,40 @@ } } }, - "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": { + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule": { + "description": "ValidationRule describes a validation rule written in the CEL expression language.", + "type": "object", + "required": [ + "rule" + ], + "properties": { + "fieldPath": { + "description": "fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo` If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList` It does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info. Numeric index of array is not supported. For field name which contains special characters, use `['specialName']` to refer the field name. e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`", + "type": "string" + }, + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\"", + "type": "string" + }, + "messageExpression": { + "description": "MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: \"x must be less than max (\"+string(self.max)+\")\"", + "type": "string" + }, + "optionalOldSelf": { + "description": "optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value.\n\nWhen enabled `oldSelf` will be a CEL optional whose value will be `None` if there is no old value, or when the object is initially created.\n\nYou may check for presence of oldSelf using `oldSelf.hasValue()` and unwrap it after checking using `oldSelf.value()`. Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes\n\nMay not be set unless `oldSelf` is used in `rule`.", + "type": "boolean" + }, + "reason": { + "description": "reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: \"FieldValueInvalid\", \"FieldValueForbidden\", \"FieldValueRequired\", \"FieldValueDuplicate\". If not set, default to use \"FieldValueInvalid\". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.", + "type": "string" + }, + "rule": { + "description": "Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {\"rule\": \"self.status.actual \u003c= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is bound to the scalar value. Examples: - Rule scoped to a map of objects: {\"rule\": \"self.components['Widget'].priority \u003c 10\"} - Rule scoped to a list of integers: {\"rule\": \"self.values.all(value, value \u003e= 0 \u0026\u0026 value \u003c 100)\"} - Rule scoped to a string value: {\"rule\": \"self.startsWith('kube')\"}\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.\n\nUnknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an \"unknown type\". An \"unknown type\" is recursively defined as:\n - A schema with no type and x-kubernetes-preserve-unknown-fields set to true\n - An array where the items schema is of an \"unknown type\"\n - An object where the additionalProperties schema is of an \"unknown type\"\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Rule accessing a property named \"namespace\": {\"rule\": \"self.__namespace__ \u003e 0\"}\n - Rule accessing a property named \"x-prop\": {\"rule\": \"self.x__dash__prop \u003e 0\"}\n - Rule accessing a property named \"redact__d\": {\"rule\": \"self.redact__underscores__d \u003e 0\"}\n\nEquality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\n\nIf `rule` makes use of the `oldSelf` variable it is implicitly a `transition rule`.\n\nBy default, the `oldSelf` variable is the same type as `self`. When `optionalOldSelf` is true, the `oldSelf` variable is a CEL optional\n variable whose value() is the same type as `self`.\nSee the documentation for the `optionalOldSelf` field for details.\n\nTransition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting `optionalOldSelf` to true.", + "type": "string" + } + } + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", "type": "object", "properties": { @@ -22790,7 +20661,7 @@ }, "service": { "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.", - "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference" + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference" }, "url": { "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", @@ -22798,8 +20669,28 @@ } } }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": { + "description": "WebhookConversion describes how to call a conversion webhook", + "type": "object", + "required": [ + "conversionReviewVersions" + ], + "properties": { + "clientConfig": { + "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig" + }, + "conversionReviewVersions": { + "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, "io.k8s.apimachinery.pkg.api.resource.Quantity": { - "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n\u003cquantity\u003e ::= \u003csignedNumber\u003e\u003csuffix\u003e\n (Note that \u003csuffix\u003e may be empty, from the \"\" case in \u003cdecimalSI\u003e.)\n\u003cdigit\u003e ::= 0 | 1 | ... | 9 \u003cdigits\u003e ::= \u003cdigit\u003e | \u003cdigit\u003e\u003cdigits\u003e \u003cnumber\u003e ::= \u003cdigits\u003e | \u003cdigits\u003e.\u003cdigits\u003e | \u003cdigits\u003e. | .\u003cdigits\u003e \u003csign\u003e ::= \"+\" | \"-\" \u003csignedNumber\u003e ::= \u003cnumber\u003e | \u003csign\u003e\u003cnumber\u003e \u003csuffix\u003e ::= \u003cbinarySI\u003e | \u003cdecimalExponent\u003e | \u003cdecimalSI\u003e \u003cbinarySI\u003e ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\u003cdecimalSI\u003e ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\u003cdecimalExponent\u003e ::= \"e\" \u003csignedNumber\u003e | \"E\" \u003csignedNumber\u003e\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n a. No precision is lost\n b. No fractional digits will be emitted\n c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n 1.5 will be serialized as \"1500m\"\n 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` \u003cquantity\u003e ::= \u003csignedNumber\u003e\u003csuffix\u003e\n\n\t(Note that \u003csuffix\u003e may be empty, from the \"\" case in \u003cdecimalSI\u003e.)\n\n\u003cdigit\u003e ::= 0 | 1 | ... | 9 \u003cdigits\u003e ::= \u003cdigit\u003e | \u003cdigit\u003e\u003cdigits\u003e \u003cnumber\u003e ::= \u003cdigits\u003e | \u003cdigits\u003e.\u003cdigits\u003e | \u003cdigits\u003e. | .\u003cdigits\u003e \u003csign\u003e ::= \"+\" | \"-\" \u003csignedNumber\u003e ::= \u003cnumber\u003e | \u003csign\u003e\u003cnumber\u003e \u003csuffix\u003e ::= \u003cbinarySI\u003e | \u003cdecimalExponent\u003e | \u003cdecimalSI\u003e \u003cbinarySI\u003e ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n\u003cdecimalSI\u003e ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n\u003cdecimalExponent\u003e ::= \"e\" \u003csignedNumber\u003e | \"E\" \u003csignedNumber\u003e ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", "type": "string" }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": { @@ -23113,6 +21004,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "admissionregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", @@ -23158,6 +21054,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "authentication.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", @@ -23176,7 +21077,12 @@ { "group": "autoscaling", "kind": "DeleteOptions", - "version": "v1" + "version": "v1" + }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v2" }, { "group": "autoscaling", @@ -23199,14 +21105,14 @@ "version": "v1beta1" }, { - "group": "batch", + "group": "certificates.k8s.io", "kind": "DeleteOptions", - "version": "v2alpha1" + "version": "v1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", - "version": "v1" + "version": "v1alpha1" }, { "group": "certificates.k8s.io", @@ -23226,7 +21132,7 @@ { "group": "discovery.k8s.io", "kind": "DeleteOptions", - "version": "v1alpha1" + "version": "v1" }, { "group": "discovery.k8s.io", @@ -23251,13 +21157,23 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", - "version": "v1alpha1" + "version": "v1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta3" + }, { "group": "imagepolicy.k8s.io", "kind": "DeleteOptions", @@ -23273,6 +21189,11 @@ "kind": "DeleteOptions", "version": "v1" }, + { + "group": "networking.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "networking.k8s.io", "kind": "DeleteOptions", @@ -23293,6 +21214,11 @@ "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "policy", + "kind": "DeleteOptions", + "version": "v1" + }, { "group": "policy", "kind": "DeleteOptions", @@ -23313,6 +21239,11 @@ "kind": "DeleteOptions", "version": "v1beta1" }, + { + "group": "resource.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha2" + }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", @@ -23398,9 +21329,7 @@ "properties": { "key": { "description": "key is the label key that the selector applies to.", - "type": "string", - "x-kubernetes-patch-merge-key": "key", - "x-kubernetes-patch-strategy": "merge" + "type": "string" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", @@ -23433,7 +21362,7 @@ "type": "string" }, "selfLink": { - "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" } } @@ -23462,8 +21391,12 @@ "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, + "subresource": { + "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.", + "type": "string" + }, "time": { - "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'", + "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" } } @@ -23478,16 +21411,12 @@ "type": "object", "properties": { "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", + "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", "additionalProperties": { "type": "string" } }, - "clusterName": { - "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", - "type": "string" - }, "creationTimestamp": { "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" @@ -23510,7 +21439,7 @@ "x-kubernetes-patch-strategy": "merge" }, "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\nIf 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\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", + "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\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { @@ -23519,7 +21448,7 @@ "format": "int64" }, "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", + "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", "type": "object", "additionalProperties": { "type": "string" @@ -23533,11 +21462,11 @@ } }, "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", + "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#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\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", + "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\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces", "type": "string" }, "ownerReferences": { @@ -23554,11 +21483,11 @@ "type": "string" }, "selfLink": { - "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" }, "uid": { - "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", "type": "string" } } @@ -23578,7 +21507,7 @@ "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. 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": { @@ -23590,14 +21519,15 @@ "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" } - } + }, + "x-kubernetes-map-type": "atomic" }, "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", @@ -23678,6 +21608,11 @@ "group": "", "kind": "Status", "version": "v1" + }, + { + "group": "resource.k8s.io", + "kind": "Status", + "version": "v1alpha2" } ] }, @@ -23728,7 +21663,7 @@ "format": "int32" }, "uid": { - "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + "description": "UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", "type": "string" } } @@ -23775,6 +21710,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "admissionregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", @@ -23820,6 +21760,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "authentication.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "WatchEvent", @@ -23840,6 +21785,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v2" + }, { "group": "autoscaling", "kind": "WatchEvent", @@ -23861,14 +21811,14 @@ "version": "v1beta1" }, { - "group": "batch", + "group": "certificates.k8s.io", "kind": "WatchEvent", - "version": "v2alpha1" + "version": "v1" }, { "group": "certificates.k8s.io", "kind": "WatchEvent", - "version": "v1" + "version": "v1alpha1" }, { "group": "certificates.k8s.io", @@ -23888,7 +21838,7 @@ { "group": "discovery.k8s.io", "kind": "WatchEvent", - "version": "v1alpha1" + "version": "v1" }, { "group": "discovery.k8s.io", @@ -23913,13 +21863,23 @@ { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", - "version": "v1alpha1" + "version": "v1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta3" + }, { "group": "imagepolicy.k8s.io", "kind": "WatchEvent", @@ -23935,6 +21895,11 @@ "kind": "WatchEvent", "version": "v1" }, + { + "group": "networking.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "networking.k8s.io", "kind": "WatchEvent", @@ -23955,6 +21920,11 @@ "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "policy", + "kind": "WatchEvent", + "version": "v1" + }, { "group": "policy", "kind": "WatchEvent", @@ -23975,6 +21945,11 @@ "kind": "WatchEvent", "version": "v1beta1" }, + { + "group": "resource.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha2" + }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", @@ -24008,7 +21983,7 @@ ] }, "io.k8s.apimachinery.pkg.runtime.RawExtension": { - "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", + "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", "type": "object" }, "io.k8s.apimachinery.pkg.util.intstr.IntOrString": { @@ -24073,6 +22048,7 @@ "type": "string" }, "metadata": { + "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { @@ -24134,6 +22110,7 @@ "type": "string" }, "items": { + "description": "Items is the list of APIService", "type": "array", "items": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" @@ -24144,6 +22121,7 @@ "type": "string" }, "metadata": { + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, @@ -24174,7 +22152,7 @@ "type": "string" }, "groupPriorityMinimum": { - "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", + "description": "GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "type": "integer", "format": "int32" }, @@ -24234,181 +22212,6 @@ "format": "int32" } } - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService": { - "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", - "type": "object", - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" - }, - "spec": { - "description": "Spec contains information for locating and communicating with a server", - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec" - }, - "status": { - "description": "Status contains derived information about an API server", - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apiregistration.k8s.io", - "kind": "APIService", - "version": "v1beta1" - } - ] - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition": { - "description": "APIServiceCondition describes the state of an APIService at a particular point", - "type": "object", - "required": [ - "type", - "status" - ], - "properties": { - "lastTransitionTime": { - "description": "Last time the condition transitioned from one status to another.", - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" - }, - "message": { - "description": "Human-readable message indicating details about last transition.", - "type": "string" - }, - "reason": { - "description": "Unique, one-word, CamelCase reason for the condition's last transition.", - "type": "string" - }, - "status": { - "description": "Status is the status of the condition. Can be True, False, Unknown.", - "type": "string" - }, - "type": { - "description": "Type is the type of the condition.", - "type": "string" - } - } - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList": { - "description": "APIServiceList is a list of APIService objects.", - "type": "object", - "required": [ - "items" - ], - "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" - }, - "items": { - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" - } - }, - "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": { - "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "apiregistration.k8s.io", - "kind": "APIServiceList", - "version": "v1beta1" - } - ] - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec": { - "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", - "type": "object", - "required": [ - "groupPriorityMinimum", - "versionPriority" - ], - "properties": { - "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", - "type": "string", - "format": "byte", - "x-kubernetes-list-type": "atomic" - }, - "group": { - "description": "Group is the API group name this server hosts", - "type": "string" - }, - "groupPriorityMinimum": { - "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", - "type": "integer", - "format": "int32" - }, - "insecureSkipTLSVerify": { - "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", - "type": "boolean" - }, - "service": { - "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.", - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference" - }, - "version": { - "description": "Version is the API version this server hosts. For example, \"v1\"", - "type": "string" - }, - "versionPriority": { - "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA \u003e beta \u003e alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", - "type": "integer", - "format": "int32" - } - } - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": { - "description": "APIServiceStatus contains derived information about an API server", - "type": "object", - "properties": { - "conditions": { - "description": "Current service state of apiService.", - "type": "array", - "items": { - "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition" - }, - "x-kubernetes-list-map-keys": [ - "type" - ], - "x-kubernetes-list-type": "map", - "x-kubernetes-patch-merge-key": "type", - "x-kubernetes-patch-strategy": "merge" - } - } - }, - "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference": { - "description": "ServiceReference holds a reference to Service.legacy.k8s.io", - "type": "object", - "properties": { - "name": { - "description": "Name is the name of the service", - "type": "string" - }, - "namespace": { - "description": "Namespace is the namespace of the service", - "type": "string" - }, - "port": { - "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", - "type": "integer", - "format": "int32" - } - } } } } \ No newline at end of file diff --git a/common/string_keyed_map.go b/common/string_keyed_map.go index 1a48ff0adb..1c230b0b15 100644 --- a/common/string_keyed_map.go +++ b/common/string_keyed_map.go @@ -24,8 +24,8 @@ func (sm *StringKeyedMap[T]) Store(key string, item T) { func (sm *StringKeyedMap[T]) Load(key string) (T, bool) { sm.lock.RLock() defer sm.lock.RUnlock() - ok, item := sm.items[key] - return ok, item + item, ok := sm.items[key] + return item, ok } func (sm *StringKeyedMap[T]) Delete(key string) { diff --git a/common/viper.go b/common/viper.go index 188d814e33..134c790a33 100644 --- a/common/viper.go +++ b/common/viper.go @@ -17,10 +17,10 @@ limitations under the License. package common import ( + "log/slog" "os" "github.com/spf13/viper" - "golang.org/x/exp/slog" ) func ViperWithLogging() *viper.Viper { diff --git a/controllers/cmd/start.go b/controllers/cmd/start.go index ef6847b8f4..927db0add1 100644 --- a/controllers/cmd/start.go +++ b/controllers/cmd/start.go @@ -9,6 +9,7 @@ import ( corev1 "k8s.io/api/core/v1" "k8s.io/client-go/kubernetes" ctrl "sigs.k8s.io/controller-runtime" + "sigs.k8s.io/controller-runtime/pkg/cache" "sigs.k8s.io/controller-runtime/pkg/controller" "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/healthz" @@ -25,6 +26,7 @@ import ( eventbusv1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1" eventsourcev1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1" sensorv1alpha1 "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1" + metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server" ) const ( @@ -57,11 +59,17 @@ func Start(eventsOpts ArgoEventsControllerOpts) { logger.Fatalf("required environment variable '%s' not defined", imageEnvVar) } opts := ctrl.Options{ - MetricsBindAddress: fmt.Sprintf(":%d", eventsOpts.MetricsPort), + Metrics: metricsserver.Options{ + BindAddress: fmt.Sprintf(":%d", eventsOpts.MetricsPort), + }, HealthProbeBindAddress: fmt.Sprintf(":%d", eventsOpts.HealthPort), } if eventsOpts.Namespaced { - opts.Namespace = eventsOpts.ManagedNamespace + opts.Cache = cache.Options{ + DefaultNamespaces: map[string]cache.Config{ + eventsOpts.ManagedNamespace: {}, + }, + } } if eventsOpts.LeaderElection { opts.LeaderElection = true @@ -70,30 +78,30 @@ func Start(eventsOpts ArgoEventsControllerOpts) { restConfig := ctrl.GetConfigOrDie() mgr, err := ctrl.NewManager(restConfig, opts) if err != nil { - logger.Fatalw("unable to get a controller-runtime manager", zap.Error(err)) + logger.Fatalw("Unable to get a controller-runtime manager", zap.Error(err)) } kubeClient := kubernetes.NewForConfigOrDie(restConfig) // Readyness probe if err := mgr.AddReadyzCheck("readiness", healthz.Ping); err != nil { - logger.Fatalw("unable add a readiness check", zap.Error(err)) + logger.Fatalw("Unable add a readiness check", zap.Error(err)) } // Liveness probe if err := mgr.AddHealthzCheck("liveness", healthz.Ping); err != nil { - logger.Fatalw("unable add a health check", zap.Error(err)) + logger.Fatalw("Unable add a health check", zap.Error(err)) } if err := eventbusv1alpha1.AddToScheme(mgr.GetScheme()); err != nil { - logger.Fatalw("unable to add scheme", zap.Error(err)) + logger.Fatalw("Unable to add scheme", zap.Error(err)) } if err := eventsourcev1alpha1.AddToScheme(mgr.GetScheme()); err != nil { - logger.Fatalw("unable to add EventSource scheme", zap.Error(err)) + logger.Fatalw("Unable to add EventSource scheme", zap.Error(err)) } if err := sensorv1alpha1.AddToScheme(mgr.GetScheme()); err != nil { - logger.Fatalw("unable to add Sensor scheme", zap.Error(err)) + logger.Fatalw("Unable to add Sensor scheme", zap.Error(err)) } // EventBus controller @@ -101,31 +109,37 @@ func Start(eventsOpts ArgoEventsControllerOpts) { Reconciler: eventbus.NewReconciler(mgr.GetClient(), kubeClient, mgr.GetScheme(), config, logger), }) if err != nil { - logger.Fatalw("unable to set up EventBus controller", zap.Error(err)) + logger.Fatalw("Unable to set up EventBus controller", zap.Error(err)) } // Watch EventBus and enqueue EventBus object key - if err := eventBusController.Watch(&source.Kind{Type: &eventbusv1alpha1.EventBus{}}, &handler.EnqueueRequestForObject{}, + if err := eventBusController.Watch(source.Kind(mgr.GetCache(), &eventbusv1alpha1.EventBus{}), &handler.EnqueueRequestForObject{}, predicate.Or( predicate.GenerationChangedPredicate{}, predicate.LabelChangedPredicate{}, )); err != nil { - logger.Fatalw("unable to watch EventBus", zap.Error(err)) + logger.Fatalw("Unable to watch EventBus", zap.Error(err)) } // Watch ConfigMaps and enqueue owning EventBus key - if err := eventBusController.Watch(&source.Kind{Type: &corev1.ConfigMap{}}, &handler.EnqueueRequestForOwner{OwnerType: &eventbusv1alpha1.EventBus{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch ConfigMaps", zap.Error(err)) + if err := eventBusController.Watch(source.Kind(mgr.GetCache(), &corev1.ConfigMap{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &eventbusv1alpha1.EventBus{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch ConfigMaps", zap.Error(err)) } // Watch StatefulSets and enqueue owning EventBus key - if err := eventBusController.Watch(&source.Kind{Type: &appv1.StatefulSet{}}, &handler.EnqueueRequestForOwner{OwnerType: &eventbusv1alpha1.EventBus{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch StatefulSets", zap.Error(err)) + if err := eventBusController.Watch(source.Kind(mgr.GetCache(), &appv1.StatefulSet{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &eventbusv1alpha1.EventBus{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch StatefulSets", zap.Error(err)) } // Watch Services and enqueue owning EventBus key - if err := eventBusController.Watch(&source.Kind{Type: &corev1.Service{}}, &handler.EnqueueRequestForOwner{OwnerType: &eventbusv1alpha1.EventBus{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch Services", zap.Error(err)) + if err := eventBusController.Watch(source.Kind(mgr.GetCache(), &corev1.Service{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &eventbusv1alpha1.EventBus{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch Services", zap.Error(err)) } // EventSource controller @@ -133,26 +147,30 @@ func Start(eventsOpts ArgoEventsControllerOpts) { Reconciler: eventsource.NewReconciler(mgr.GetClient(), mgr.GetScheme(), imageName, logger), }) if err != nil { - logger.Fatalw("unable to set up EventSource controller", zap.Error(err)) + logger.Fatalw("Unable to set up EventSource controller", zap.Error(err)) } // Watch EventSource and enqueue EventSource object key - if err := eventSourceController.Watch(&source.Kind{Type: &eventsourcev1alpha1.EventSource{}}, &handler.EnqueueRequestForObject{}, + if err := eventSourceController.Watch(source.Kind(mgr.GetCache(), &eventsourcev1alpha1.EventSource{}), &handler.EnqueueRequestForObject{}, predicate.Or( predicate.GenerationChangedPredicate{}, predicate.LabelChangedPredicate{}, )); err != nil { - logger.Fatalw("unable to watch EventSources", zap.Error(err)) + logger.Fatalw("Unable to watch EventSources", zap.Error(err)) } // Watch Deployments and enqueue owning EventSource key - if err := eventSourceController.Watch(&source.Kind{Type: &appv1.Deployment{}}, &handler.EnqueueRequestForOwner{OwnerType: &eventsourcev1alpha1.EventSource{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch Deployments", zap.Error(err)) + if err := eventSourceController.Watch(source.Kind(mgr.GetCache(), &appv1.Deployment{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &eventsourcev1alpha1.EventSource{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch Deployments", zap.Error(err)) } // Watch Services and enqueue owning EventSource key - if err := eventSourceController.Watch(&source.Kind{Type: &corev1.Service{}}, &handler.EnqueueRequestForOwner{OwnerType: &eventsourcev1alpha1.EventSource{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch Services", zap.Error(err)) + if err := eventSourceController.Watch(source.Kind(mgr.GetCache(), &corev1.Service{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &eventsourcev1alpha1.EventSource{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch Services", zap.Error(err)) } // Sensor controller @@ -160,25 +178,27 @@ func Start(eventsOpts ArgoEventsControllerOpts) { Reconciler: sensor.NewReconciler(mgr.GetClient(), mgr.GetScheme(), imageName, logger), }) if err != nil { - logger.Fatalw("unable to set up Sensor controller", zap.Error(err)) + logger.Fatalw("Unable to set up Sensor controller", zap.Error(err)) } // Watch Sensor and enqueue Sensor object key - if err := sensorController.Watch(&source.Kind{Type: &sensorv1alpha1.Sensor{}}, &handler.EnqueueRequestForObject{}, + if err := sensorController.Watch(source.Kind(mgr.GetCache(), &sensorv1alpha1.Sensor{}), &handler.EnqueueRequestForObject{}, predicate.Or( predicate.GenerationChangedPredicate{}, predicate.LabelChangedPredicate{}, )); err != nil { - logger.Fatalw("unable to watch Sensors", zap.Error(err)) + logger.Fatalw("Unable to watch Sensors", zap.Error(err)) } // Watch Deployments and enqueue owning Sensor key - if err := sensorController.Watch(&source.Kind{Type: &appv1.Deployment{}}, &handler.EnqueueRequestForOwner{OwnerType: &sensorv1alpha1.Sensor{}, IsController: true}, predicate.GenerationChangedPredicate{}); err != nil { - logger.Fatalw("unable to watch Deployments", zap.Error(err)) + if err := sensorController.Watch(source.Kind(mgr.GetCache(), &appv1.Deployment{}), + handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetRESTMapper(), &sensorv1alpha1.Sensor{}, handler.OnlyControllerOwner()), + predicate.GenerationChangedPredicate{}); err != nil { + logger.Fatalw("Unable to watch Deployments", zap.Error(err)) } - logger.Infow("starting controller manager", "version", argoevents.GetVersion()) + logger.Infow("Starting controller manager", "version", argoevents.GetVersion()) if err := mgr.Start(signals.SetupSignalHandler()); err != nil { - logger.Fatalw("unable to run eventbus controller", zap.Error(err)) + logger.Fatalw("Unable to start controller manager", zap.Error(err)) } } diff --git a/controllers/eventbus/installer/jetstream.go b/controllers/eventbus/installer/jetstream.go index 5df15d528e..0d97d88584 100644 --- a/controllers/eventbus/installer/jetstream.go +++ b/controllers/eventbus/installer/jetstream.go @@ -466,7 +466,7 @@ func (r *jetStreamInstaller) buildStatefulSetSpec(jsVersion *controllers.JetStre }, VolumeMode: &volMode, StorageClassName: js.Persistence.StorageClassName, - Resources: corev1.ResourceRequirements{ + Resources: corev1.VolumeResourceRequirements{ Requests: corev1.ResourceList{ corev1.ResourceStorage: volSize, }, diff --git a/controllers/eventbus/installer/nats.go b/controllers/eventbus/installer/nats.go index f33929fe4f..c6ca852d32 100644 --- a/controllers/eventbus/installer/nats.go +++ b/controllers/eventbus/installer/nats.go @@ -785,7 +785,7 @@ func (i *natsInstaller) buildStatefulSetSpec(serviceName, configmapName, authSec }, VolumeMode: &volMode, StorageClassName: i.eventBus.Spec.NATS.Native.Persistence.StorageClassName, - Resources: corev1.ResourceRequirements{ + Resources: corev1.VolumeResourceRequirements{ Requests: corev1.ResourceList{ corev1.ResourceStorage: volSize, }, diff --git a/controllers/eventbus/validate_test.go b/controllers/eventbus/validate_test.go index 2a28229aa6..1e952a35a0 100644 --- a/controllers/eventbus/validate_test.go +++ b/controllers/eventbus/validate_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/utils/pointer" + "k8s.io/utils/ptr" "github.com/argoproj/argo-events/common" "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1" @@ -132,7 +132,7 @@ func TestValidate(t *testing.T) { t.Run("test js eventbus replica", func(t *testing.T) { eb := testJetStreamEventBus.DeepCopy() - eb.Spec.JetStream.Replicas = pointer.Int32(3) + eb.Spec.JetStream.Replicas = ptr.To[int32](3) err := ValidateEventBus(eb) assert.NoError(t, err) eb.Spec.JetStream.Replicas = nil diff --git a/eventsources/sources/resource/start.go b/eventsources/sources/resource/start.go index 90a8cb9fef..301333fe7f 100644 --- a/eventsources/sources/resource/start.go +++ b/eventsources/sources/resource/start.go @@ -227,7 +227,9 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt } sharedInformer := informer.Informer() - sharedInformer.AddEventHandler(handlerFuncs) + if _, err := sharedInformer.AddEventHandler(handlerFuncs); err != nil { + return fmt.Errorf("failed to add event handler, %w", err) + } doneCh := make(chan struct{}) diff --git a/go.mod b/go.mod index c127aeaac0..404d32b8aa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/argoproj/argo-events -go 1.20 +go 1.21 retract v1.15.1 // Contains retractions only. @@ -29,6 +29,7 @@ require ( github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 github.com/cloudevents/sdk-go/v2 v2.15.2 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 + github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 github.com/eclipse/paho.mqtt.golang v1.4.3 github.com/emitter-io/go/v2 v2.0.9 github.com/fsnotify/fsnotify v1.7.0 @@ -75,107 +76,40 @@ require ( github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 github.com/xanzy/go-gitlab v0.102.0 + github.com/xdg-go/scram v1.1.2 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 golang.org/x/crypto v0.22.0 - golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 + golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f google.golang.org/api v0.172.0 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 - k8s.io/api v0.24.3 - k8s.io/apimachinery v0.24.3 - k8s.io/client-go v0.24.3 - k8s.io/code-generator v0.23.5 - k8s.io/gengo v0.0.0-20211115164449-b448ea381d54 - k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8 - sigs.k8s.io/controller-runtime v0.11.2 + k8s.io/api v0.29.2 + k8s.io/apimachinery v0.29.2 + k8s.io/client-go v0.29.0 + k8s.io/code-generator v0.29.2 + k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 + k8s.io/klog/v2 v2.110.1 + k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 + k8s.io/utils v0.0.0-20230726121419-3b25d923346b + sigs.k8s.io/controller-runtime v0.17.2 sigs.k8s.io/controller-tools v0.8.0 sigs.k8s.io/yaml v1.4.0 ) require ( + cloud.google.com/go v0.112.1 // indirect cloud.google.com/go/compute v1.24.0 // indirect + cloud.google.com/go/iam v1.1.6 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect + github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect - github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect - github.com/DataDog/zstd v1.5.0 // indirect - github.com/PagerDuty/go-pagerduty v1.6.0 // indirect - github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect - github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 // indirect - github.com/andybalholm/brotli v1.0.4 // indirect - github.com/benbjohnson/clock v1.3.0 // indirect - github.com/bits-and-blooms/bitset v1.4.0 // indirect - github.com/cloudflare/circl v1.3.7 // indirect - github.com/cyphar/filepath-securejoin v0.2.4 // indirect - github.com/danieljoos/wincred v1.1.2 // indirect - github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect - github.com/dvsekhvalnov/jose2go v1.6.0 // indirect - github.com/emicklei/go-restful/v3 v3.8.0 // indirect - github.com/felixge/httpsnoop v1.0.4 // indirect - github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/spec v0.20.8 // indirect - github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect - github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect - github.com/golang-jwt/jwt v3.2.2+incompatible // indirect - github.com/golang-jwt/jwt/v5 v5.2.1 // indirect - github.com/google/gnostic v0.5.7-v3refs // indirect - github.com/google/go-github/v41 v41.0.0 // indirect - github.com/google/go-github/v60 v60.0.0 // indirect - github.com/google/s2a-go v0.1.7 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/gregdel/pushover v1.1.0 // indirect - github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect - github.com/hashicorp/errwrap v1.0.0 // indirect - github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/klauspost/cpuid/v2 v2.2.6 // indirect - github.com/kr/fs v0.1.0 // indirect - github.com/kylelemons/godebug v1.1.0 // indirect - github.com/linkedin/goavro/v2 v2.11.1 // indirect - github.com/mitchellh/go-wordwrap v1.0.1 // indirect - github.com/mtibben/percent v0.2.1 // indirect - github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect - github.com/oklog/ulid v1.3.1 // indirect - github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect - github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect - github.com/pelletier/go-toml/v2 v2.1.0 // indirect - github.com/pierrec/lz4/v4 v4.1.21 // indirect - github.com/pjbgf/sha1cd v0.3.0 // indirect - github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect - github.com/pkg/errors v0.9.1 // indirect - github.com/sagikazarmark/locafero v0.4.0 // indirect - github.com/sagikazarmark/slog-shim v0.1.0 // indirect - github.com/sanity-io/litter v1.5.5 // indirect - github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect - github.com/skeema/knownhosts v1.2.2 // indirect - github.com/sourcegraph/conc v0.3.0 // indirect - github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect - github.com/xdg-go/pbkdf2 v1.0.0 // indirect - github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect - go.opentelemetry.io/otel v1.24.0 // indirect - go.opentelemetry.io/otel/metric v1.24.0 // indirect - go.opentelemetry.io/otel/trace v1.24.0 // indirect - gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect - gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect - gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect - gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect - moul.io/http2curl/v2 v2.3.0 // indirect - sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect -) - -require ( - cloud.google.com/go v0.112.1 // indirect - cloud.google.com/go/iam v1.1.6 // indirect - github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.28 // indirect @@ -185,52 +119,82 @@ require ( github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect github.com/Azure/go-autorest/logger v0.2.1 // indirect github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect + github.com/DataDog/zstd v1.5.0 // indirect github.com/Masterminds/goutils v1.1.1 // indirect github.com/Masterminds/semver/v3 v3.2.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect + github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/ProtonMail/go-crypto v1.0.0 // indirect + github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect + github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 // indirect github.com/ajg/form v1.5.1 // indirect + github.com/andybalholm/brotli v1.0.4 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71 // indirect + github.com/benbjohnson/clock v1.3.0 // indirect github.com/beorn7/perks v1.0.1 // indirect + github.com/bits-and-blooms/bitset v1.4.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 // indirect + github.com/cyphar/filepath-securejoin v0.2.4 // indirect + github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/devigned/tab v0.1.1 // indirect - github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/dustin/go-humanize v1.0.1 // indirect + github.com/dvsekhvalnov/jose2go v1.6.0 // indirect github.com/eapache/go-resiliency v1.6.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect github.com/eapache/queue v1.1.0 // indirect + github.com/emicklei/go-restful/v3 v3.11.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/evanphx/json-patch v5.6.0+incompatible // indirect + github.com/evanphx/json-patch/v5 v5.8.0 // indirect github.com/fatih/color v1.15.0 // indirect github.com/fatih/structs v1.1.0 // indirect + github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect github.com/go-logr/logr v1.4.1 // indirect + github.com/go-logr/stdr v1.2.2 // indirect github.com/go-openapi/analysis v0.21.4 // indirect github.com/go-openapi/errors v0.20.3 // indirect - github.com/go-openapi/jsonpointer v0.19.5 // indirect - github.com/go-openapi/jsonreference v0.20.0 // indirect + github.com/go-openapi/jsonpointer v0.19.6 // indirect + github.com/go-openapi/jsonreference v0.20.2 // indirect github.com/go-openapi/loads v0.21.2 // indirect github.com/go-openapi/runtime v0.25.0 // indirect + github.com/go-openapi/spec v0.20.8 // indirect github.com/go-openapi/strfmt v0.21.3 // indirect github.com/go-openapi/swag v0.22.3 // indirect github.com/go-openapi/validate v0.22.0 // indirect + github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/gobuffalo/flect v0.2.3 // indirect + github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect + github.com/golang-jwt/jwt v3.2.2+incompatible // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect + github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/golang/glog v1.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/snappy v0.0.4 // indirect + github.com/google/gnostic-models v0.6.8 // indirect + github.com/google/go-github/v41 v41.0.0 // indirect + github.com/google/go-github/v60 v60.0.0 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect + github.com/google/s2a-go v0.1.7 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/googleapis/gax-go/v2 v2.12.3 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect + github.com/gregdel/pushover v1.1.0 // indirect + github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-retryablehttp v0.7.2 // indirect github.com/hashicorp/go-uuid v1.0.3 // indirect github.com/hashicorp/hcl v1.0.0 // indirect @@ -253,8 +217,12 @@ require ( github.com/jtolds/gls v4.20.0+incompatible // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/cpuid/v2 v2.2.6 // indirect + github.com/kr/fs v0.1.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect + github.com/kylelemons/godebug v1.1.0 // indirect + github.com/linkedin/goavro/v2 v2.11.1 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-colorable v0.1.13 // indirect @@ -262,17 +230,29 @@ require ( github.com/minio/md5-simd v1.1.2 // indirect github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect + github.com/mitchellh/go-wordwrap v1.0.1 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/moby/spdystream v0.2.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/mtibben/percent v0.2.1 // indirect + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect + github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect github.com/nats-io/nats-server/v2 v2.9.23 // indirect github.com/nats-io/nats-streaming-server v0.24.3 // indirect github.com/nats-io/nkeys v0.4.7 // indirect github.com/nats-io/nuid v1.0.1 // indirect github.com/nicksnyder/go-i18n v1.10.1-0.20190510212457-b280125b035a // indirect + github.com/oklog/ulid v1.3.1 // indirect + github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect + github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect github.com/pelletier/go-toml v1.9.5 // indirect + github.com/pelletier/go-toml/v2 v2.1.0 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect + github.com/pierrec/lz4/v4 v4.1.21 // indirect + github.com/pjbgf/sha1cd v0.3.0 // indirect + github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect + github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.48.0 // indirect @@ -281,10 +261,16 @@ require ( github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/rs/xid v1.5.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/sagikazarmark/locafero v0.4.0 // indirect + github.com/sagikazarmark/slog-shim v0.1.0 // indirect + github.com/sanity-io/litter v1.5.5 // indirect + github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/shopspring/decimal v1.2.0 // indirect github.com/sirupsen/logrus v1.9.3 // indirect + github.com/skeema/knownhosts v1.2.2 // indirect github.com/smartystreets/assertions v1.2.0 // indirect + github.com/sourcegraph/conc v0.3.0 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect github.com/spf13/afero v1.11.0 // indirect github.com/spf13/cast v1.6.0 // indirect @@ -295,8 +281,10 @@ require ( github.com/toqueteos/webbrowser v1.2.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.34.0 // indirect + github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect - github.com/xdg-go/scram v1.1.2 + github.com/xdg-go/pbkdf2 v1.0.0 // indirect + github.com/xdg-go/stringprep v1.0.4 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect github.com/xeipuuv/gojsonschema v1.2.0 // indirect @@ -305,21 +293,32 @@ require ( github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect go.mongodb.org/mongo-driver v1.11.1 // indirect go.opencensus.io v0.24.0 // indirect - go.uber.org/atomic v1.9.0 // indirect - go.uber.org/multierr v1.10.0 // indirect - golang.org/x/mod v0.16.0 // indirect - golang.org/x/net v0.23.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect + go.opentelemetry.io/otel v1.24.0 // indirect + go.opentelemetry.io/otel/metric v1.24.0 // indirect + go.opentelemetry.io/otel/trace v1.24.0 // indirect + go.uber.org/atomic v1.10.0 // indirect + go.uber.org/multierr v1.11.0 // indirect + golang.org/x/mod v0.17.0 // indirect + golang.org/x/net v0.24.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect - golang.org/x/sync v0.6.0 // indirect + golang.org/x/sync v0.7.0 // indirect golang.org/x/sys v0.19.0 // indirect golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect - golang.org/x/tools v0.19.0 // indirect - gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect + golang.org/x/tools v0.20.0 // indirect + gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect + gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect + gomodules.xyz/notify v0.1.1 // indirect google.golang.org/appengine v1.6.8 // indirect google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect google.golang.org/protobuf v1.33.0 // indirect + gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect + gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect @@ -329,10 +328,10 @@ require ( gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/apiextensions-apiserver v0.23.5 // indirect - k8s.io/component-base v0.23.5 // indirect + k8s.io/apiextensions-apiserver v0.29.0 // indirect + k8s.io/component-base v0.29.0 // indirect k8s.io/klog v1.0.0 // indirect - k8s.io/klog/v2 v2.60.1 - k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 - sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect + moul.io/http2curl/v2 v2.3.0 // indirect + sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect ) diff --git a/go.sum b/go.sum index 3c440feece..4b01e4bdc0 100644 --- a/go.sum +++ b/go.sum @@ -277,7 +277,6 @@ cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCV cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= @@ -339,6 +338,7 @@ cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8 cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= cloud.google.com/go/kms v1.15.7 h1:7caV9K3yIxvlQPAcaFffhlT7d1qpxjB1wHBtjWa13SM= +cloud.google.com/go/kms v1.15.7/go.mod h1:ub54lbsa6tDkUwnu4W7Yt1aAIFLnspgh0kPGToDukeI= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= @@ -636,21 +636,19 @@ github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTH github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0/go.mod h1:GfT0aGew8Qj5yiQVqOO5v7N8fanbJGyUoHqXg56qcVY= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= github.com/Azure/go-amqp v1.0.5/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= -github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest v0.11.18/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= github.com/Azure/go-autorest/autorest v0.11.28 h1:ndAExarwr5Y+GaHE6VCaY1kyS/HwwGGyuimVhWsHOEM= github.com/Azure/go-autorest/autorest v0.11.28/go.mod h1:MrkzG3Y3AH668QyF9KRk5neJnGgmhQ6krbhR8Q5eMvA= github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= -github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= github.com/Azure/go-autorest/autorest/adal v0.9.18/go.mod h1:XVVeme+LZwABT8K5Lc3hA4nAe8LDBVle26gTrguhhPQ= github.com/Azure/go-autorest/autorest/adal v0.9.21 h1:jjQnVFXPfekaqb8vIsv2G1lxshoW+oGv4MDlhRtnYZk= github.com/Azure/go-autorest/autorest/adal v0.9.21/go.mod h1:zua7mBUaCc5YnSLKYgGJR/w5ePdMDA6H56upLsHzA9U= github.com/Azure/go-autorest/autorest/azure/auth v0.4.2 h1:iM6UAvjR97ZIeR93qTcwpKNMpV+/FTWjwEbuPD495Tk= +github.com/Azure/go-autorest/autorest/azure/auth v0.4.2/go.mod h1:90gmfKdlmKgfjUpnCEpOJzsUEjrWDSLwHIG73tSXddM= github.com/Azure/go-autorest/autorest/azure/cli v0.3.1 h1:LXl088ZQlP0SBppGFsRZonW6hSvwgL5gRByMbvUbx8U= +github.com/Azure/go-autorest/autorest/azure/cli v0.3.1/go.mod h1:ZG5p860J94/0kI9mNJVoIoLgXcirM2gF5i2kWloofxw= github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= github.com/Azure/go-autorest/autorest/date v0.3.0 h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw= github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= @@ -693,7 +691,6 @@ github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/PagerDuty/go-pagerduty v1.6.0 h1:am81SzvG5Pw+s3JZ5yEy6kGvsXXklTNRrGr3d8WKpsU= github.com/PagerDuty/go-pagerduty v1.6.0/go.mod h1:7eaBLzsDpK7VUvU0SJ5mohczQkoWrrr5CjDaw5gh1as= @@ -716,18 +713,13 @@ github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY= github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/andygrunwald/go-gerrit v0.0.0-20230325081502-da63a5c62d80 h1:7GeFYBed/nHbicP+zd2xzKHUjJnTyn3Ljgme8FXJykQ= github.com/andygrunwald/go-gerrit v0.0.0-20230325081502-da63a5c62d80/go.mod h1:SeP12EkHZxEVjuJ2HZET304NBtHGG2X6w2Gzd0QXAZw= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= +github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e/go.mod h1:F7bn7fEU90QkQ3tnmaTx3LTKLEDqnwWODIYppRQ5hnY= github.com/antonmedv/expr v1.15.5 h1:y0Iz3cEwmpRz5/r3w4qQR0MfIqJGdGM1zbhD/v0G5Vg= github.com/antonmedv/expr v1.15.5/go.mod h1:0E/6TxnOlRNp81GMzX9QfDPAmHo2Phg00y4JUv1ihsE= github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= @@ -745,14 +737,12 @@ github.com/argoproj/notifications-engine v0.4.0 h1:XyE4jAw0oeRQKL9vlDQBnycmqhN7E github.com/argoproj/notifications-engine v0.4.0/go.mod h1:uGas18+DbCCwjif1zSwWWuwR0xJ18FXF+c2dkhPbF2k= github.com/argoproj/pkg v0.13.6 h1:36WPD9MNYECHcO1/R1pj6teYspiK7uMQLCgLGft2abM= github.com/argoproj/pkg v0.13.6/go.mod h1:I698DoJBKuvNFaixh4vFl2C88cNIT1WS7KCbz5ewyF8= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/armon/go-metrics v0.4.1 h1:hR91U9KYmb6bLBYLQjyM+3j+rcd/UhE+G78SFnF8gJA= +github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d h1:Byv0BzEl3/e6D5CLfI0j/7hiIEtvGVFPCZ7Ei2oq8iQ= github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= @@ -763,20 +753,14 @@ github.com/aws/aws-sdk-go v1.44.39/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4 github.com/aws/aws-sdk-go v1.44.209 h1:wZuiaA4eaqYZmoZXqGgNHqVD7y7kUGFvACDGBgowTps= github.com/aws/aws-sdk-go v1.44.209/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/beevik/ntp v0.2.0/go.mod h1:hIHWr+l3+/clUnF44zdK+CWW7fO8dR5cIylAQ76NRpg= -github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM= -github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bits-and-blooms/bitset v1.4.0 h1:+YZ8ePm+He2pU3dZlIZiOeAKfrBkXi1lSrXJ/Xzgbu8= github.com/bits-and-blooms/bitset v1.4.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= -github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= -github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 h1:mV+hh0rMjzrhg7Jc/GKwpa+y/0BMHGOHdM9yY1GYyFI= github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9/go.mod h1:nDeXEIaeDV+mAK1gBD3/RJH67DYPC0GdaznWN7sB07s= github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= @@ -790,8 +774,6 @@ github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QH github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/certifi/gocertifi v0.0.0-20191021191039-0944d244cd40/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= -github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= @@ -822,25 +804,13 @@ github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWH github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= -github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= -github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27/go.mod h1:VQx0hjo2oUeQkQUET7wRwradO6f+fN5jzXgB/zROxxE= github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 h1:N98Et5DzDoJ1IO1cd8cZkXXT81W5+CR5S8rDU2I0HnM= github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9/go.mod h1:0DumPviB681UcSuJErAbDIOx6SIaJWj463TymfZG02I= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= -github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg= github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= @@ -858,11 +828,12 @@ github.com/devigned/tab v0.1.1/go.mod h1:XG9mPq0dFghrYvoBF3xdRrJzSTX1b7IQrvaL9mz github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dimchansky/utfbom v1.1.0 h1:FcM3g+nofKgUteL8dm/UpdRXNC9KmADgTpLKsu0TRo4= +github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= github.com/dimfeld/httptreemux v5.0.1+incompatible h1:Qj3gVcDNoOthBAqftuD596rm4wg/adLLz5xh5CmpiCA= github.com/dimfeld/httptreemux v5.0.1+incompatible/go.mod h1:rbUlSV+CCpv/SuqUTP/8Bk2O3LyUV436/yaRGkhP6Z0= 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/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 h1:7nllYTGLnq4CqBL27lV6oNfXzM2tJ2mrKF8E+aBXOV0= @@ -882,12 +853,11 @@ github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7j github.com/eclipse/paho.mqtt.golang v1.4.3 h1:2kwcUGn8seMUfWndX0hGbvH8r7crgcJguQNCyp70xik= github.com/eclipse/paho.mqtt.golang v1.4.3/go.mod h1:CSYvoAlsMkhYOXh/oKyxa8EcBci6dVkLCbo5tTC1RIE= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a h1:mATvB/9r/3gvcejNsXKSkQ6lcIaNec2nyfOdlTBR2lU= +github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful/v3 v3.8.0 h1:eCZ8ulSerjdAiaNpF7GxXIE7ZCMo1moN1qX+S609eVw= -github.com/emicklei/go-restful/v3 v3.8.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= +github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g= +github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= github.com/emitter-io/go/v2 v2.0.9 h1:qA+cnG3kS2uLzo5ETFY6zbHBGl+FmNj0cGf3da7foA4= @@ -907,11 +877,11 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7 github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/evanphx/json-patch/v5 v5.8.0 h1:lRj6N9Nci7MvzrXuX6HFzU8XjmhPiXPlsKEy1u0KQro= +github.com/evanphx/json-patch/v5 v5.8.0/go.mod h1:VNkHZ/282BpEyt/tObQO8s5CMPmYYq14uClGH4abBuQ= github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg= github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= @@ -926,18 +896,16 @@ github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2 github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= +github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= github.com/gavv/httpexpect/v2 v2.16.0 h1:Ty2favARiTYTOkCRZGX7ojXXjGyNAIohM1lZ3vqaEwI= github.com/gavv/httpexpect/v2 v2.16.0/go.mod h1:uJLaO+hQ25ukBJtQi750PsztObHybNllN+t+MbbW8PY= -github.com/getkin/kin-openapi v0.76.0/go.mod h1:660oXbgy5JFMKreazJaQTw7o+X00qeSyhcnluiMv+Xg= -github.com/getsentry/raven-go v0.2.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ= github.com/gfleury/go-bitbucket-v1 v0.0.0-20210707202713-7d616f7c18ac h1:XrZTje1i6Q8Y03z5AApzVTwn1rkPKYp5iyEEAhd0CV8= github.com/gfleury/go-bitbucket-v1 v0.0.0-20210707202713-7d616f7c18ac/go.mod h1:LB3osS9X2JMYmTzcCArHHLrndBAfcVLQAvUddfs+ONs= github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= @@ -946,6 +914,7 @@ github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 h1:Mn26/9ZMNWSw9C9ER github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32/go.mod h1:GIjDIg/heH5DOkXY3YJ/wNhfHsQHoXGjl8G8amsYQ1I= github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY= github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE= +github.com/gliderlabs/ssh v0.3.7/go.mod h1:zpHEXBstFnQYtGnB8k8kQLol82umzn/2/snG7alWVD8= github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= @@ -956,30 +925,25 @@ github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmS github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= +github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-logr/zapr v1.2.0 h1:n4JnPI1T3Qq1SFEi/F8rwLrZERp2bso19PJZDB9dayk= -github.com/go-logr/zapr v1.2.0/go.mod h1:Qa4Bsj2Vb+FAVeAKsLD8RLQ+YRJB8YDmOAKxaBQf7Ro= +github.com/go-logr/zapr v1.3.0 h1:XGdV8XW8zdwFiwOA2Dryh1gj2KRQyOOoNmBy4EplIcQ= +github.com/go-logr/zapr v1.3.0/go.mod h1:YKepepNBd1u/oyhd/yQmtjVXmm9uML4IXUgMOwR8/Gg= github.com/go-openapi/analysis v0.21.2/go.mod h1:HZwRk4RRisyG8vx2Oe6aqeSQcoxRp47Xkp3+K6q+LdY= github.com/go-openapi/analysis v0.21.4 h1:ZDFLvSNxpDaomuCueM0BlSXxpANBlFYiBvr+GXrvIHc= github.com/go-openapi/analysis v0.21.4/go.mod h1:4zQ35W4neeZTqh3ol0rv/O8JBbka9QyAgQRPp9y3pfo= @@ -992,14 +956,14 @@ github.com/go-openapi/inflect v0.21.0 h1:FoBjBTQEcbg2cJUWX6uwL9OyIW8eqc9k4KhN4lf github.com/go-openapi/inflect v0.21.0/go.mod h1:INezMuUu7SJQc2AyR3WO0DqqYUJSj8Kb4hBd7WtjlAw= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5 h1:gZr+CIYByUqjcgeLXnQu2gHYQC9o73G2XUeOFYEICuY= github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= +github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= -github.com/go-openapi/jsonreference v0.19.5/go.mod h1:RdybgQwPxbL4UEjuAruzK1x3nE69AqPYEJeo/TWfEeg= github.com/go-openapi/jsonreference v0.19.6/go.mod h1:diGHMEHg2IqXZGKxqyvWdfWU/aim5Dprw5bqpKkTvns= -github.com/go-openapi/jsonreference v0.20.0 h1:MYlu0sBgChmCfJxxUKZ8g1cPWFOB37YSZqewK7OKeyA= github.com/go-openapi/jsonreference v0.20.0/go.mod h1:Ag74Ico3lPc+zR+qjn4XBUmXymS4zJbYVCZmcgkasdo= +github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= github.com/go-openapi/loads v0.21.1/go.mod h1:/DtAMXXneXFjbQMGEtbamCZb+4x7eGwkvZCvBmwUG+g= github.com/go-openapi/loads v0.21.2 h1:r2a/xFIYeZ4Qd2TnGpWDIQNcP80dIaZgf704za8enro= github.com/go-openapi/loads v0.21.2/go.mod h1:Jq58Os6SSGz0rzh62ptiu8Z31I+OTHqmULx5e/gJbNw= @@ -1016,7 +980,6 @@ github.com/go-openapi/strfmt v0.21.3 h1:xwhj5X6CjXEZZHMWy1zKJxvW9AfHC9pkyUjLvHtK github.com/go-openapi/strfmt v0.21.3/go.mod h1:k+RzNO0Da+k3FrrynSNN8F7n/peCmQQqbbXjtDfvmGg= github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.14/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= @@ -1035,6 +998,9 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/go-swagger/go-swagger v0.30.4 h1:cPrWLSXY6ZdcgfRicOj0lANg72TkTHz6uv/OlUdzO5U= github.com/go-swagger/go-swagger v0.30.4/go.mod h1:YM5D5kR9c1ft3ynMXvDk2uo/7UZHKFEqKXcAL9f4Phc= github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013 h1:l9rI6sNaZgNC0LnF3MiE+qTmyBA/tZAg1rtyrGbUMK0= +github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013/go.mod h1:b65mBPzqzZWxOZGxSWrqs4GInLIn+u99Q9q7p+GKni0= +github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= +github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 h1:wG8n/XJQ07TmjbITcGiUaOtXxdrINDz1b0J1w0SzqDc= github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1/go.mod h1:A2S0CWkNylc2phvKXWBBdD3K0iGnDBGbzRpISP2zBl8= github.com/go-test/deep v1.0.4 h1:u2CU3YKy9I2pmu9pX0eq50wCgjfGIt539SqR7FbHiho= @@ -1070,11 +1036,7 @@ github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe/go.mod h1:d3Ez4x06l9 github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= -github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= @@ -1136,12 +1098,9 @@ github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= -github.com/google/cel-go v0.9.0/go.mod h1:U7ayypeSkw23szu4GaQTPJGx66c20mx8JklMSxrmI1w= -github.com/google/cel-spec v0.6.0/go.mod h1:Nwjgxy5CbjlPrtCWjeDjUyKMl8w41YBYGjsyDdqk0xA= github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/gnostic v0.5.7-v3refs h1:FhTMOKj2VhjpouxvWJAV1TL304uMlb9zcDqkl6cEI54= -github.com/google/gnostic v0.5.7-v3refs/go.mod h1:73MKFl6jIHelAJNaBGFzt3SPtZULs9dYrGFt8OiIsHQ= +github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= +github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -1191,6 +1150,7 @@ github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= @@ -1227,8 +1187,6 @@ github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5i github.com/googleapis/gax-go/v2 v2.12.3 h1:5/zPPDvw8Q1SuXjrqrZslrqT7dL/uJT2CQii/cLCKqA= github.com/googleapis/gax-go/v2 v2.12.3/go.mod h1:AKloxT6GtNbaLm8QTNSidHUVsHYcBHwWRvkNFJUQcS4= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= -github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= -github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopackage/ddp v0.0.0-20170117053602-652027933df4 h1:4EZlYQIiyecYJlUbVkFXCXHz1QPhVXcHnQKAzBTPfQo= @@ -1240,7 +1198,6 @@ github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORR github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= -github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= @@ -1252,10 +1209,6 @@ github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/ad github.com/gregdel/pushover v1.1.0 h1:dwHyvrcpZCOS9V1fAnKPaGRRI5OC55cVaKhMybqNsKQ= github.com/gregdel/pushover v1.1.0/go.mod h1:EcaO66Nn1StkpEm1iKtBTV3d2A16SoMsVER1PthX7to= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= @@ -1264,21 +1217,19 @@ github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8 github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/hamba/avro v1.8.0 h1:eCVrLX7UYThA3R3yBZ+rpmafA5qTc3ZjpTz6gYJoVGU= github.com/hamba/avro v1.8.0/go.mod h1:NiGUcrLLT+CKfGu5REWQtD9OVPPYUGMVFiC+DE0lQfY= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v1.1.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v1.5.0 h1:bI2ocEMgcVlz55Oj1xZNBsVi900c7II+fWDyV9o+13c= +github.com/hashicorp/go-hclog v1.5.0/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= +github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-msgpack v1.1.5 h1:9byZdVjKTe5mce63pRVNP1L7UAmdHOTEMGehn6KvJWs= github.com/hashicorp/go-msgpack v1.1.5/go.mod h1:gWVc3sv/wbDmR3rQsj1CAktEZzoz1YNK9NfGLXJ69/4= @@ -1289,26 +1240,18 @@ github.com/hashicorp/go-retryablehttp v0.5.1/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= github.com/hashicorp/go-retryablehttp v0.7.2 h1:AcYqCvkpalPnPF2pn0KamgwamS42TqUDDYFRKq/RAd0= github.com/hashicorp/go-retryablehttp v0.7.2/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= -github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= +github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= -github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/raft v1.3.6 h1:v5xW5KzByoerQlN/o31VJrFNiozgzGyDoMgDJgXpsto= github.com/hashicorp/raft v1.3.6/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= -github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f h1:7LYC+Yfkj3CTRcShK0KOL/w6iTiKyqqBA9a41Wnggw8= github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f/go.mod h1:pFlLw2CfqZiIBOx6BuCeRLCrfxBJipTY0nIOF/VbGcI= github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c/go.mod h1:lADxMC39cJJqL93Duh1xhAs4I2Zs8mKS89XWXFGp9cs= @@ -1349,7 +1292,6 @@ github.com/jcmturner/gokrb5/v8 v8.4.4 h1:x1Sv4HaTpepFkXbt2IkL29DXRf8sOfZXo8eRKh6 github.com/jcmturner/gokrb5/v8 v8.4.4/go.mod h1:1btQEpgT6k+unzCwX1KdWMEwPPkkgBtP+F6aCACiMrs= github.com/jcmturner/rpc/v2 v2.0.3 h1:7FXXj8Ti1IaVFpSAziCZWNzbNuZmnvw/i6CqLNdWfZY= github.com/jcmturner/rpc/v2 v2.0.3/go.mod h1:VUJYCIDm3PVOEHw8sgt091/20OJjskO/YJki3ELg/Hc= -github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc= github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4= github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= @@ -1359,8 +1301,7 @@ github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGw github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= +github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 h1:ct2XA1aDw8A07Dr8gtrrZgIgLKcZNAl2o9nn0WRMK4Y= github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0/go.mod h1:DFXrEwSRX0p/aSvxE21319menCBFeQO0jXpRj7LEZUA= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= @@ -1369,16 +1310,12 @@ github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2E github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= @@ -1389,7 +1326,6 @@ github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0Lh github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= @@ -1410,10 +1346,8 @@ github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/4 github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0 h1:Jskdu9ieNAYnjxsi0LbQp1ulIKZV1LAFgK1tWhpZgl8= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= @@ -1439,8 +1373,6 @@ github.com/lusis/slack-test v0.0.0-20190426140909-c40012f20018/go.mod h1:sFlOUpQ github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mailgun/mailgun-go v2.0.0+incompatible/go.mod h1:NWTyU+O4aczg/nsGhQnvHL6v2n5Gy6Sv5tNDVvC6FbU= @@ -1470,8 +1402,6 @@ github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/minio/highwayhash v1.0.1/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLTk+kldvVxY= @@ -1490,19 +1420,14 @@ github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceT github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= -github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0= github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= -github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/hashstructure/v2 v2.0.2 h1:vGKWl0YJqUNxE8d+h8f6NJLcCJrgbhC4NcD46KavDd4= github.com/mitchellh/hashstructure/v2 v2.0.2/go.mod h1:MG3aRVU/N29oo/V/IhBX8GR/zz4kQkprJgF2EVszyDE= -github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -1513,7 +1438,6 @@ github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zx github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/moby/spdystream v0.2.0 h1:cjW1zVyyoiM0T7b6UoySUFqzXMoqRckQtXwGPiBhOM8= github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= -github.com/moby/term v0.0.0-20210610120745-9d4ed1856297/go.mod h1:vgPCkQMyxTZ7IDy8SXRufE172gr8+K/JE/7hHFxHW3A= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -1528,13 +1452,13 @@ github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ib github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f h1:UE9EK14XcoK/PmGqPtVWlrdMoPzBwJyzTCWEJ+cW7DI= github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f/go.mod h1:FDlTkeZBkKG5O+8RL3R0Q3gyhhHwG5sxcXcV7Lnx9x4= github.com/nats-io/jwt/v2 v2.2.1-0.20220113022732-58e87895b296/go.mod h1:0tqz9Hlu6bCBFLWAASKhE5vUA4c24L9KPUUgvwumE/k= github.com/nats-io/jwt/v2 v2.5.0 h1:WQQ40AAlqqfx+f6ku+i0pOVm+ASirD4fUh+oQsiE9Ak= +github.com/nats-io/jwt/v2 v2.5.0/go.mod h1:24BeQtRwxRV8ruvC4CojXlx/WQ/VjuwlYiH+vu/+ibI= github.com/nats-io/nats-server/v2 v2.7.2/go.mod h1:tckmrt0M6bVaDT3kmh9UrIq/CBOBBse+TpXQi5ldaa8= github.com/nats-io/nats-server/v2 v2.7.4/go.mod h1:1vZ2Nijh8tcyNe8BDVyTviCd9NYzRbubQYiEHsvOQWc= github.com/nats-io/nats-server/v2 v2.9.23 h1:6Wj6H6QpP9FMlpCyWUaNu2yeZ/qGj+mdRkZ1wbikExU= @@ -1564,6 +1488,7 @@ github.com/nsqio/go-nsq v1.1.0 h1:PQg+xxiUjA7V+TLdXw7nVrJ5Jbl3sN86EhGCQj4+FYE= github.com/nsqio/go-nsq v1.1.0/go.mod h1:vKq36oyeVXgsS5Q8YEO7WghqidAVXQlcFxzQbQTuDEY= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= +github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= @@ -1574,25 +1499,24 @@ github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/ginkgo v1.14.1/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= -github.com/onsi/ginkgo/v2 v2.1.4 h1:GNapqRSid3zijZ9H77KrgVG4/8KqiyRsxcSxe+7ApXY= +github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= +github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY= +github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/onsi/gomega v1.10.2/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI= -github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= +github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 h1:AnS8ZCC5dle8P4X4FZ+IOlX9v0jAkCMiZDIzRnYwBbs= github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5/go.mod h1:f0ezb0R/mrB9Hpm5RrIS6EX3ydjsR2nAB88nYYXZcNY= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= -github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= @@ -1625,41 +1549,22 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.28.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rabbitmq/amqp091-go v1.8.1 h1:RejT1SBUim5doqcL6s7iN6SBmsQqyTgXb1xMlH0h1hA= github.com/rabbitmq/amqp091-go v1.8.1/go.mod h1:+jPrT9iY2eLjRaMSRHUhc3z14E/l85kv/f+6luSD3pc= github.com/radovskyb/watcher v1.0.7 h1:AYePLih6dpmS32vlHfhCeli8127LzkIgwJGcwwe8tUE= @@ -1671,7 +1576,6 @@ github.com/riferrei/srclient v0.5.4 h1:dfwyR5u23QF7beuVl2WemUY2KXh5+Sc4DHKyPXBNY github.com/riferrei/srclient v0.5.4/go.mod h1:vbkLmWcgYa7JgfPvuy/+K8fTS0p1bApqadxrxi/S1MI= github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= @@ -1688,7 +1592,6 @@ github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ= github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4= github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE= @@ -1697,18 +1600,15 @@ github.com/sanity-io/litter v1.5.5 h1:iE+sBxPBzoK6uaEP5Lt3fHNgpKcHXc/A2HGETy0uJQ github.com/sanity-io/litter v1.5.5/go.mod h1:9gzJgR2i4ZpjZHsKvUXIRQVk7P+yM3e+jAF7bU2UI5U= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 h1:TToq11gyfNlrMFZiYujSekIsPd9AmsA2Bj/iv+s4JHE= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0/go.mod h1:FKdcjfQW6rpZSnxxUvEA5H/cDPdvJ/SZJQLWWXWGrZ0= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= @@ -1724,8 +1624,6 @@ github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod h1:s github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/smartystreets/goconvey v1.7.2 h1:9RBaZCeXEQ3UselpuwUQHltGVXvdwm6cv1hgR6gDIPg= github.com/smartystreets/goconvey v1.7.2/go.mod h1:Vw0tHAZW6lzCRk3xgdin6fKYcG+G3Pg9vgXWeJpQFMM= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/soheilhy/cmux v0.1.5/go.mod h1:T7TcVDs9LWfQgPlPsdngu6I6QIoyIFZDDC6sNE1GqG0= github.com/sony/sonyflake v1.0.0 h1:MpU6Ro7tfXwgn2l5eluf9xQvQJDROTBImNCfRXn/YeM= github.com/sony/sonyflake v1.0.0/go.mod h1:Jv3cfhf/UFtolOTTRd3q4Nl6ENqM+KfyZ5PseKfZGF4= github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= @@ -1733,35 +1631,26 @@ github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIK github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= -github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk= github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0= github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/spf13/viper v1.18.2 h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ= github.com/spf13/viper v1.18.2/go.mod h1:EKmWIqdnk5lOcmR72yw6hS+8OPYcwD0jteitLMVB+yk= github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf/go.mod h1:RJID2RhlZKId02nZ62WenDCkgHFerpIOmW0iT7GKmXM= -github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= @@ -1785,7 +1674,6 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/stripe/stripe-go v70.15.0+incompatible h1:hNML7M1zx8RgtepEMlxyu/FpVPrP7KZm1gPFQquJQvM= github.com/stripe/stripe-go v70.15.0+incompatible/go.mod h1:A1dQZmO/QypXmsL0T8axYZkSN/uA/T/A64pfKdBAMiY= -github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/tailscale/depaware v0.0.0-20210622194025-720c4b409502/go.mod h1:p9lPsd+cx33L3H9nNoecRRxPssFKUwwI50I3pZ0yT+8= @@ -1799,8 +1687,6 @@ github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs= github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tidwall/sjson v1.2.4 h1:cuiLzLnaMeBhRmEv00Lpk3tkYrcxpmbU81tAY4Dw0tc= github.com/tidwall/sjson v1.2.4/go.mod h1:098SZ494YoMWPmMO6ct4dcFnqxwj9r/gF0Etp19pSNM= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/toqueteos/webbrowser v1.2.0 h1:tVP/gpK69Fx+qMJKsLE7TD8LuGWPnEV71wBN9rrstGQ= github.com/toqueteos/webbrowser v1.2.0/go.mod h1:XWoZq4cyp9WeUeak7w7LXRUQf1F1ATJMir8RTqb4ayM= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= @@ -1833,7 +1719,6 @@ github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHo github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 h1:6fRhSjgLCkTD3JnJxvaJ4Sj+TYblw757bqYgZaOq5ZY= github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= @@ -1842,12 +1727,12 @@ github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FB github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 h1:BHyfKlQyqbsFN5p3IfnEUduWvb9is428/nNb5L3U01M= github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= github.com/yudai/pp v2.0.1+incompatible h1:Q4//iY4pNF6yPLZIigmvcl7k/bPgrcTPIFIcmawg5bI= +github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M= @@ -1855,16 +1740,10 @@ github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7 github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.einride.tech/aip v0.66.0 h1:XfV+NQX6L7EOYK11yoHHFtndeaWh3KbD9/cN/6iWEt8= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= +go.einride.tech/aip v0.66.0/go.mod h1:qAhMsfT7plxBX+Oy7Huol6YUvZ0ZzdUz26yZsQwfl1M= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= -go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= -go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= -go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= -go.etcd.io/etcd/client/v3 v3.5.0/go.mod h1:AIKXXVX/DQXtfTEqBryiLTUXwON+GuvO6Z7lLS/oTh0= -go.etcd.io/etcd/pkg/v3 v3.5.0/go.mod h1:UzJGatBQ1lXChBkQF0AuAtkRQMYnHubxAEYIrC3MSsE= -go.etcd.io/etcd/raft/v3 v3.5.0/go.mod h1:UFOHSIvO/nKwd4lhkwabrTD3cqW5yVyYYf/KlD00Szc= -go.etcd.io/etcd/server/v3 v3.5.0/go.mod h1:3Ah5ruV+M+7RZr0+Y/5mNLwC+eQlni+mQmOVdCRJoS4= +go.etcd.io/bbolt v1.3.8 h1:xs88BrvEv273UsB79e0hcVrlUWmS0a8upikMFhSyAtA= +go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= go.mongodb.org/mongo-driver v1.7.3/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg= go.mongodb.org/mongo-driver v1.7.5/go.mod h1:VXEWRZ6URJIkUq2SCAyapmhH0ZLRBP+FT4xhp5Zvxng= go.mongodb.org/mongo-driver v1.10.0/go.mod h1:wsihk0Kdgv8Kqu1Anit4sfK+22vSFbUrAVEYRhCXrA8= @@ -1879,52 +1758,34 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= -go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= -go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= -go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= -go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= -go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= -go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= -go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= -go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= +go.opentelemetry.io/otel/sdk v1.22.0/go.mod h1:iu7luyVGYovrRpe2fmj3CVKouQNdTOkxtLzPvPz1DOc= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= -go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= +go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= +go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= -go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= +go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= +go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/ratelimit v0.3.1 h1:K4qVE+byfv/B3tC+4nYWP7v/6SimcO7HzHekoMNBma0= go.uber.org/ratelimit v0.3.1/go.mod h1:6euWsTB6U/Nb3X++xEUXA8ciPJvr19Q/0h1+oDcJhRk= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= -go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -1938,7 +1799,6 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= @@ -1978,8 +1838,8 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200908183739-ae8ad444f925/go.mod h1:1phAWC201xIgDyaFpmDeZkgf70Q4Pd/CNqfRtVPtxNw= golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 h1:6R2FC06FonbXQ8pK11/PDFY6N6LWlf9KlzibaCapmqc= -golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81/go.mod h1:CQ1k9gNrJ50XIzaKCRR2hssIjF07kZFEiieALBM/ARQ= +golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f h1:99ci1mjWVBWwJiEKYY6jWa4d2nTQVIEhZIptnrVb1XY= +golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -2023,17 +1883,14 @@ golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91 golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.16.0 h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic= -golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180921000356-2f5d2388922f/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -2042,11 +1899,9 @@ golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190607181551-461777fb6f67/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -2067,7 +1922,6 @@ golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= @@ -2076,14 +1930,10 @@ golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLd golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= @@ -2107,8 +1957,8 @@ golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2120,7 +1970,6 @@ golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= @@ -2160,17 +2009,14 @@ golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= -golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181019160139-8e24a49d80f8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190124100055-b90733256f2e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190130150945-aca44879d564/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2196,7 +2042,6 @@ golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2211,10 +2056,8 @@ golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2230,23 +2073,19 @@ golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -2286,7 +2125,6 @@ golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= @@ -2322,16 +2160,12 @@ golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= 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-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -2353,14 +2187,11 @@ golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBn golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -2403,14 +2234,13 @@ golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.6-0.20210820212750-d4cc65f0b2ff/go.mod h1:YD9qOF0M9xpSpdWTBbzEl5e/RnCefISl8E5Noe10jFM= golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.19.0 h1:tfGCXNR1OsFG+sVdLAitlpjAvD/I6dHDKnYrpEZUHkw= -golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc= +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/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= @@ -2421,8 +2251,8 @@ golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNq golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 h1:juzzlx91nWAOsHuOVfXZPMXHtJEKouZvY9bBbwlOeYs= gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45/go.mod h1:41y72mzHT7+jFNgyBpJRrZWuZJcLmLrTpq6iGgOFJMQ= -gomodules.xyz/jsonpatch/v2 v2.2.0 h1:4pT439QV83L+G9FkcCriY6EkpcK6r6bK+A5FBUMI7qY= -gomodules.xyz/jsonpatch/v2 v2.2.0/go.mod h1:WXp+iVDkoLQqPudfQ9GBlwB2eZ5DKOnjQZCYdOS8GPY= +gomodules.xyz/jsonpatch/v2 v2.4.0 h1:Ci3iUJyx9UeRx7CeFN8ARgGbkESwJK+KB9lLcWxY/Zw= +gomodules.xyz/jsonpatch/v2 v2.4.0/go.mod h1:AH3dM2RI6uoBZxn3LVrfvJ3E0/9dG4cSrbuBJT4moAY= gomodules.xyz/notify v0.1.1 h1:1tTuoyswmPvzqPCTEDQK8SZ3ukCxLsonAAwst2+y1a0= gomodules.xyz/notify v0.1.1/go.mod h1:QgQyU4xEA/plJcDeT66J2Go2V7U4c0pD9wjo7HfFil4= gomodules.xyz/version v0.1.0/go.mod h1:Y8xuV02mL/45psyPKG3NCVOwvAOy6T5Kx0l3rCjKSjU= @@ -2455,7 +2285,6 @@ google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34q google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.44.0/go.mod h1:EBOGZqzyhtvMDoxwS97ctnh0zUmYY6CxqXsc1AvkYD8= google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= @@ -2528,7 +2357,6 @@ google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= @@ -2539,8 +2367,6 @@ google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201102152239-715cce707fb0/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= @@ -2724,7 +2550,6 @@ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -2740,9 +2565,7 @@ gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df h1:n7WqCuqOuCbNr617RXOY0AW gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.57.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/jcmturner/aescts.v1 v1.0.1 h1:cVVZBK2b1zY26haWB4vbBiZrfFQnfbTVrE3xZq6hrEw= @@ -2756,14 +2579,11 @@ gopkg.in/jcmturner/gokrb5.v5 v5.3.0/go.mod h1:oQz8Wc5GsctOTgCVyKad1Vw4TCWz5G6gfI gopkg.in/jcmturner/rpc.v0 v0.0.2 h1:wBTgrbL1qmLBUPsYVCqdJiI5aJgQhexmK+JkTHPUNJI= gopkg.in/jcmturner/rpc.v0 v0.0.2/go.mod h1:NzMq6cRzR9lipgw7WxRBHNx5N8SifBuaCQsOT1kWY/E= gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= gopkg.in/square/go-jose.v2 v2.4.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= @@ -2779,8 +2599,6 @@ gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= -gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -2790,50 +2608,39 @@ honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= k8s.io/api v0.17.8/go.mod h1:N++Llhs8kCixMUoCaXXAyMMPbo8dDVnh+IQ36xZV2/0= -k8s.io/api v0.23.5/go.mod h1:Na4XuKng8PXJ2JsploYYrivXrINeTaycCGcYgF91Xm8= -k8s.io/api v0.24.3 h1:tt55QEmKd6L2k5DP6G/ZzdMQKvG5ro4H4teClqm0sTY= -k8s.io/api v0.24.3/go.mod h1:elGR/XSZrS7z7cSZPzVWaycpJuGIw57j9b95/1PdJNI= -k8s.io/apiextensions-apiserver v0.23.5 h1:5SKzdXyvIJKu+zbfPc3kCbWpbxi+O+zdmAJBm26UJqI= -k8s.io/apiextensions-apiserver v0.23.5/go.mod h1:ntcPWNXS8ZPKN+zTXuzYMeg731CP0heCTl6gYBxLcuQ= +k8s.io/api v0.29.2 h1:hBC7B9+MU+ptchxEqTNW2DkUosJpp1P+Wn6YncZ474A= +k8s.io/api v0.29.2/go.mod h1:sdIaaKuU7P44aoyyLlikSLayT6Vb7bvJNCX105xZXY0= +k8s.io/apiextensions-apiserver v0.29.0 h1:0VuspFG7Hj+SxyF/Z/2T0uFbI5gb5LRgEyUVE3Q4lV0= +k8s.io/apiextensions-apiserver v0.29.0/go.mod h1:TKmpy3bTS0mr9pylH0nOt/QzQRrW7/h7yLdRForMZwc= k8s.io/apimachinery v0.17.8/go.mod h1:Lg8zZ5iC/O8UjCqW6DNhcQG2m4TdjF9kwG3891OWbbA= -k8s.io/apimachinery v0.23.5/go.mod h1:BEuFMMBaIbcOqVIJqNZJXGFTP4W6AycEpb5+m/97hrM= -k8s.io/apimachinery v0.24.3 h1:hrFiNSA2cBZqllakVYyH/VyEh4B581bQRmqATJSeQTg= -k8s.io/apimachinery v0.24.3/go.mod h1:82Bi4sCzVBdpYjyI4jY6aHX+YCUchUIrZrXKedjd2UM= -k8s.io/apiserver v0.23.5/go.mod h1:7wvMtGJ42VRxzgVI7jkbKvMbuCbVbgsWFT7RyXiRNTw= +k8s.io/apimachinery v0.29.2 h1:EWGpfJ856oj11C52NRCHuU7rFDwxev48z+6DSlGNsV8= +k8s.io/apimachinery v0.29.2/go.mod h1:6HVkd1FwxIagpYrHSwJlQqZI3G9LfYWRPAkUvLnXTKU= k8s.io/client-go v0.17.8/go.mod h1:SJsDS64AAtt9VZyeaQMb4Ck5etCitZ/FwajWdzua5eY= -k8s.io/client-go v0.23.5/go.mod h1:flkeinTO1CirYgzMPRWxUCnV0G4Fbu2vLhYCObnt/r4= -k8s.io/client-go v0.24.3 h1:Nl1840+6p4JqkFWEW2LnMKU667BUxw03REfLAVhuKQY= -k8s.io/client-go v0.24.3/go.mod h1:AAovolf5Z9bY1wIg2FZ8LPQlEdKHjLI7ZD4rw920BJw= -k8s.io/code-generator v0.23.5 h1:xn3a6J5pUL49AoH6SPrOFtnB5cvdMl76f/bEY176R3c= -k8s.io/code-generator v0.23.5/go.mod h1:S0Q1JVA+kSzTI1oUvbKAxZY/DYbA/ZUb4Uknog12ETk= -k8s.io/component-base v0.23.5 h1:8qgP5R6jG1BBSXmRYW+dsmitIrpk8F/fPEvgDenMCCE= -k8s.io/component-base v0.23.5/go.mod h1:c5Nq44KZyt1aLl0IpHX82fhsn84Sb0jjzwjpcA42bY0= +k8s.io/client-go v0.29.0 h1:KmlDtFcrdUzOYrBhXHgKw5ycWzc3ryPX5mQe0SkG3y8= +k8s.io/client-go v0.29.0/go.mod h1:yLkXH4HKMAywcrD82KMSmfYg2DlE8mepPR4JGSo5n38= +k8s.io/code-generator v0.29.2 h1:c9/iw2KnNpw2IRV+wwuG/Wns2TjPSgjWzbbjTevyiHI= +k8s.io/code-generator v0.29.2/go.mod h1:FwFi3C9jCrmbPjekhaCYcYG1n07CYiW1+PAPCockaos= +k8s.io/component-base v0.29.0 h1:T7rjd5wvLnPBV1vC4zWd/iWRbV8Mdxs+nGaoaFzGw3s= +k8s.io/component-base v0.29.0/go.mod h1:sADonFTQ9Zc9yFLghpDpmNXEdHyQmFIGbiuZbqAXQ1M= k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= k8s.io/gengo v0.0.0-20201203183100-97869a43a9d9/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/gengo v0.0.0-20210813121822-485abfe95c7c/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/gengo v0.0.0-20211115164449-b448ea381d54 h1:LTfmarWsAxo+qlLq6d4FunAM9ZQSq8i6QI+/btzVk+U= -k8s.io/gengo v0.0.0-20211115164449-b448ea381d54/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= +k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 h1:pWEwq4Asjm4vjW7vcsmijwBhOr1/shsbSYiWXmNGlks= +k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/klog v0.2.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/klog v1.0.0 h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8= k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= -k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= k8s.io/klog/v2 v2.5.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= -k8s.io/klog/v2 v2.30.0/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/klog/v2 v2.60.1 h1:VW25q3bZx9uE3vvdL6M8ezOX79vA2Aq1nEWLqNQclHc= -k8s.io/klog/v2 v2.60.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= +k8s.io/klog/v2 v2.110.1 h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0= +k8s.io/klog/v2 v2.110.1/go.mod h1:YGtd1984u+GgbuZ7e08/yBuAfKLSO0+uR1Fhi6ExXjo= k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29/go.mod h1:F+5wygcW0wmRTnM3cOgIqGivxkwSWIWT5YdsDbeAOaU= -k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65/go.mod h1:sX9MT8g7NVZM5lVL/j8QyCCJe8YSMW30QvGZWaCIDIk= -k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42/go.mod h1:Z/45zLw8lUo4wdiUkI+v/ImEGAvu3WatcZl3lPMR4Rk= -k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8 h1:yEQKdMCjzAOvGeiTwG4hO/hNVNtDOuUFvMUZ0OlaIzs= -k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8/go.mod h1:mbJ+NSUoAhuR14N0S63bPkh8MGVSo3VYSGZtH/mfMe0= +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/AuzbMm96cd3YHRTU83I780= +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA= k8s.io/utils v0.0.0-20191114184206-e782cd3c129f/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= -k8s.io/utils v0.0.0-20210802155522-efc7438f0176/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20211116205334-6203023598ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 h1:HNSDgDCrr/6Ly3WEGKZftiE7IY19Vz2GdbOCyI4qqhc= -k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= +k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI= +k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= @@ -2871,22 +2678,20 @@ modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs= moul.io/http2curl/v2 v2.3.0/go.mod h1:RW4hyBjTWSYDOxapodpNEtX0g5Eb16sxklBqmd2RHcE= nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q= +nhooyr.io/websocket v1.8.10/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.30/go.mod h1:fEO7lRTdivWO2qYVCVG7dEADOMo/MLDCVr8So2g88Uw= -sigs.k8s.io/controller-runtime v0.11.2 h1:H5GTxQl0Mc9UjRJhORusqfJCIjBO8UtUxGggCwL1rLA= -sigs.k8s.io/controller-runtime v0.11.2/go.mod h1:P6QCzrEjLaZGqHsfd+os7JQ+WFZhvB8MRFsn4dWF7O4= +sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= +sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= sigs.k8s.io/controller-tools v0.8.0 h1:uUkfTGEwrguqYYfcI2RRGUnC8mYdCFDqfwPKUcNJh1o= sigs.k8s.io/controller-tools v0.8.0/go.mod h1:qE2DXhVOiEq5ijmINcFbqi9GZrrUjzB1TuJU0xa6eoY= -sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6/go.mod h1:p4QtZmO4uMYipTQNzagwnNoseA6OxSUutVw05NhYDRs= -sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 h1:kDi4JBNAsJWfz1aEXhO8Jg87JJaPNLh5tIzYHgStQ9Y= -sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2/go.mod h1:B+TnT182UBxE84DiCz4CVE26eOSDAeYCpfDnC2kdKMY= +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/structured-merge-diff/v2 v2.0.1/go.mod h1:Wb7vfKAodbKgf6tn1Kl0VvGj7mRH6DGaRcixXEJXTsE= -sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.2.1 h1:bKCqE9GvQ5tiVHn5rfn1r+yao3aLQEaLzkkmAkf+A6Y= -sigs.k8s.io/structured-merge-diff/v4 v4.2.1/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4= +sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4= +sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= diff --git a/hack/update-codegen.sh b/hack/update-codegen.sh index 8419ab150c..c6d4d34fe5 100755 --- a/hack/update-codegen.sh +++ b/hack/update-codegen.sh @@ -17,6 +17,8 @@ cd "${FAKE_REPOPATH}" CODEGEN_PKG=${CODEGEN_PKG:-$(cd "${FAKE_REPOPATH}"; ls -d -1 ./vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)} +chmod +x ${CODEGEN_PKG}/*.sh + subheader "running codegen for sensor" bash -x ${CODEGEN_PKG}/generate-groups.sh "deepcopy,client,informer,lister" \ github.com/argoproj/argo-events/pkg/client/sensor github.com/argoproj/argo-events/pkg/apis \ diff --git a/hack/update-swagger.sh b/hack/update-swagger.sh index ef33383e98..1b523d2acb 100755 --- a/hack/update-swagger.sh +++ b/hack/update-swagger.sh @@ -20,7 +20,7 @@ if [ "`command -v swagger`" = "" ]; then go install -mod=vendor ./vendor/github.com/go-swagger/go-swagger/cmd/swagger fi -curl -Ls https://raw.githubusercontent.com/kubernetes/kubernetes/release-1.20/api/openapi-spec/swagger.json -o ${k8s_swagger} +curl -Ls https://raw.githubusercontent.com/kubernetes/kubernetes/release-1.29/api/openapi-spec/swagger.json -o ${k8s_swagger} go run ./hack/gen-openapi-spec/main.go ${VERSION} ${k8s_swagger} ${kubeified_swagger} diff --git a/pkg/apis/common/generated.pb.go b/pkg/apis/common/generated.pb.go index fce2283ea2..817e9cb863 100644 --- a/pkg/apis/common/generated.pb.go +++ b/pkg/apis/common/generated.pb.go @@ -519,97 +519,97 @@ func init() { } var fileDescriptor_02aae6165a434fa7 = []byte{ - // 1434 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x80, 0x4d, 0xcb, 0x96, 0xc5, 0xe3, 0x6b, 0x26, 0x5e, 0x08, 0x02, 0x22, 0x19, 0xfc, 0xf1, - 0x17, 0x4e, 0x9b, 0x50, 0xc8, 0x05, 0x6d, 0x92, 0x02, 0x69, 0x45, 0xc7, 0x41, 0x9d, 0xd8, 0x4d, - 0x30, 0x8c, 0xbd, 0x48, 0x7a, 0xc1, 0x98, 0x1a, 0x49, 0x8c, 0x44, 0x52, 0x20, 0x87, 0x4e, 0xb4, - 0x6b, 0xd1, 0x07, 0x68, 0xdf, 0xa0, 0x4f, 0x50, 0xa0, 0xaf, 0xd0, 0x5d, 0x96, 0x41, 0x37, 0xc9, - 0x4a, 0x68, 0xd8, 0x87, 0x68, 0x91, 0x55, 0x31, 0x17, 0x52, 0x94, 0xe2, 0xa2, 0xa5, 0xd1, 0x1d, - 0x79, 0xe6, 0x9c, 0xef, 0xcc, 0x9c, 0xdb, 0x0c, 0x7c, 0xd2, 0x75, 0x59, 0x2f, 0x3e, 0x36, 0x9d, - 0xc0, 0x6b, 0x92, 0xb0, 0x1b, 0x0c, 0xc3, 0xe0, 0xa9, 0xf8, 0xb8, 0x4c, 0x4f, 0xa8, 0xcf, 0xa2, - 0xe6, 0xb0, 0xdf, 0x6d, 0x92, 0xa1, 0x1b, 0x35, 0x9d, 0xc0, 0xf3, 0x02, 0xbf, 0xd9, 0xa5, 0x3e, - 0x0d, 0x09, 0xa3, 0x6d, 0x73, 0x18, 0x06, 0x2c, 0x40, 0xcd, 0x09, 0xc0, 0x4c, 0x01, 0xe2, 0xe3, - 0x6b, 0x09, 0x30, 0x87, 0xfd, 0xae, 0xc9, 0x01, 0xa6, 0x04, 0xd4, 0x2e, 0xe7, 0x3c, 0x76, 0x83, - 0x6e, 0xd0, 0x14, 0x9c, 0xe3, 0xb8, 0x23, 0xfe, 0xc4, 0x8f, 0xf8, 0x92, 0xfc, 0x9a, 0xd1, 0xbf, - 0x11, 0x99, 0x6e, 0xc0, 0xf7, 0xd0, 0x74, 0x82, 0x90, 0x36, 0x4f, 0xae, 0xcc, 0xee, 0xa1, 0x76, - 0x7d, 0xa2, 0xe3, 0x11, 0xa7, 0xe7, 0xfa, 0x34, 0x1c, 0x4d, 0x36, 0xee, 0x51, 0x46, 0x4e, 0xb1, - 0x32, 0x2e, 0x42, 0xb9, 0xe5, 0x05, 0xb1, 0xcf, 0x50, 0x03, 0x16, 0x4f, 0xc8, 0x20, 0xa6, 0x55, - 0x6d, 0x4b, 0xdb, 0x5e, 0xb1, 0xf4, 0x64, 0xdc, 0x58, 0x3c, 0xe2, 0x02, 0x2c, 0xe5, 0xc6, 0xaf, - 0xf3, 0xb0, 0x64, 0x11, 0xa7, 0x1f, 0x74, 0x3a, 0xa8, 0x07, 0x95, 0x76, 0x1c, 0x12, 0xe6, 0x06, - 0xbe, 0xd0, 0x5f, 0xbe, 0x7a, 0xdb, 0x2c, 0x18, 0x03, 0x73, 0xcf, 0x67, 0x1f, 0x5e, 0x7f, 0x10, - 0xda, 0x2c, 0x74, 0xfd, 0xae, 0xb5, 0x92, 0x8c, 0x1b, 0x95, 0x3b, 0x8a, 0x89, 0x33, 0x3a, 0x7a, - 0x02, 0xe5, 0x0e, 0x71, 0x58, 0x10, 0x56, 0xe7, 0x85, 0x9f, 0x8f, 0x0a, 0xfb, 0x91, 0xe7, 0xb3, - 0x20, 0x19, 0x37, 0xca, 0x77, 0x05, 0x0a, 0x2b, 0x24, 0x87, 0x3f, 0x75, 0x19, 0xa3, 0x61, 0xb5, - 0xf4, 0x1f, 0xc0, 0xef, 0x09, 0x14, 0x56, 0x48, 0xf4, 0x3f, 0x58, 0x8c, 0x18, 0x1d, 0x46, 0xd5, - 0x85, 0x2d, 0x6d, 0x7b, 0xd1, 0x5a, 0x7d, 0x31, 0x6e, 0xcc, 0xf1, 0xa0, 0xda, 0x5c, 0x88, 0xe5, - 0x9a, 0xf1, 0x93, 0x06, 0xba, 0x45, 0x22, 0xd7, 0x69, 0xc5, 0xac, 0x87, 0x1e, 0x40, 0x25, 0x8e, - 0x68, 0xe8, 0x13, 0x8f, 0xaa, 0xb0, 0xfe, 0xdf, 0x94, 0x69, 0xe5, 0x4e, 0x4d, 0x9e, 0x7a, 0xf3, - 0xe4, 0x8a, 0x69, 0x53, 0x27, 0xa4, 0xec, 0x3e, 0x1d, 0xd9, 0x74, 0x40, 0xf9, 0x41, 0x64, 0xf4, - 0x0e, 0x95, 0x29, 0xce, 0x20, 0x1c, 0x38, 0x24, 0x51, 0xf4, 0x2c, 0x08, 0xdb, 0x2a, 0x7e, 0x45, - 0x80, 0x0f, 0x95, 0x29, 0xce, 0x20, 0xc6, 0xab, 0x79, 0xd0, 0x77, 0x02, 0xbf, 0xed, 0x8a, 0xe4, - 0x5c, 0x81, 0x05, 0x36, 0x1a, 0xca, 0xbd, 0xea, 0xd6, 0x05, 0x75, 0xc2, 0x85, 0x47, 0xa3, 0x21, - 0x7d, 0x3b, 0x6e, 0xac, 0x66, 0x8a, 0x5c, 0x80, 0x85, 0x2a, 0xda, 0x87, 0x72, 0xc4, 0x08, 0x8b, - 0x23, 0xb1, 0x1f, 0xdd, 0xba, 0xae, 0x8c, 0xca, 0xb6, 0x90, 0xbe, 0x1d, 0x37, 0x4e, 0x29, 0x76, - 0x33, 0x23, 0x49, 0x2d, 0xac, 0x18, 0xe8, 0x04, 0xd0, 0x80, 0x44, 0xec, 0x51, 0x48, 0xfc, 0x48, - 0x7a, 0x72, 0x3d, 0xaa, 0x92, 0xf9, 0x7e, 0xee, 0xa4, 0x59, 0x47, 0x4c, 0x12, 0xc8, 0x3b, 0x82, - 0x9f, 0x9d, 0x5b, 0x58, 0x35, 0xb5, 0x0b, 0xb4, 0xff, 0x0e, 0x0d, 0x9f, 0xe2, 0x01, 0xbd, 0x07, - 0xe5, 0x90, 0x92, 0x28, 0xf0, 0x45, 0x72, 0x75, 0x6b, 0x2d, 0x3d, 0x05, 0x16, 0x52, 0xac, 0x56, - 0xd1, 0x45, 0x58, 0xf2, 0x68, 0x14, 0x91, 0x2e, 0xad, 0x2e, 0x0a, 0xc5, 0x75, 0xa5, 0xb8, 0x74, - 0x20, 0xc5, 0x38, 0x5d, 0x37, 0xbe, 0xd7, 0x60, 0x75, 0xaa, 0x25, 0xd0, 0x76, 0x2e, 0xba, 0x25, - 0x6b, 0x73, 0x26, 0xba, 0x0b, 0xb9, 0xa0, 0x5e, 0x82, 0x8a, 0xcb, 0x4d, 0x8f, 0xc8, 0x40, 0x84, - 0xb5, 0x64, 0x6d, 0x28, 0xed, 0xca, 0x9e, 0x92, 0xe3, 0x4c, 0x83, 0x6f, 0x3e, 0x62, 0x21, 0xd7, - 0x2d, 0x4d, 0x6f, 0xde, 0x16, 0x52, 0xac, 0x56, 0x8d, 0x3f, 0xe7, 0xa1, 0x72, 0x40, 0x19, 0x69, - 0x13, 0x46, 0xd0, 0xb7, 0x1a, 0x2c, 0x13, 0xdf, 0x0f, 0x98, 0x68, 0xcb, 0xa8, 0xaa, 0x6d, 0x95, - 0xb6, 0x97, 0xaf, 0xde, 0x2b, 0xdc, 0x30, 0x29, 0xd0, 0x6c, 0x4d, 0x60, 0xbb, 0x3e, 0x0b, 0x47, - 0xd6, 0x79, 0xb5, 0x8d, 0xe5, 0xdc, 0x0a, 0xce, 0xfb, 0x44, 0x1e, 0x94, 0x07, 0xe4, 0x98, 0x0e, - 0x78, 0xed, 0x70, 0xef, 0xbb, 0x67, 0xf7, 0xbe, 0x2f, 0x38, 0xd2, 0x71, 0x76, 0x7e, 0x29, 0xc4, - 0xca, 0x49, 0xed, 0x36, 0x6c, 0xcc, 0x6e, 0x12, 0x6d, 0x40, 0xa9, 0x4f, 0x47, 0xb2, 0xe0, 0x31, - 0xff, 0x44, 0x9b, 0xe9, 0xdc, 0x14, 0xf5, 0xac, 0x86, 0xe5, 0xad, 0xf9, 0x1b, 0x5a, 0xed, 0x26, - 0x2c, 0xe7, 0xdc, 0x14, 0x31, 0x35, 0x3e, 0x80, 0x0a, 0xa6, 0x51, 0x10, 0x87, 0x0e, 0xfd, 0xe7, - 0xc1, 0xfc, 0x73, 0x19, 0xc0, 0xbe, 0xd6, 0x0a, 0x99, 0xcb, 0xc7, 0x1a, 0x2f, 0x06, 0xea, 0xb7, - 0x87, 0x81, 0xeb, 0x33, 0xd5, 0x98, 0x59, 0x31, 0xec, 0x2a, 0x39, 0xce, 0x34, 0xd0, 0x97, 0x50, - 0x3e, 0x8e, 0x9d, 0x3e, 0x65, 0x6a, 0x3e, 0xdc, 0x2c, 0x1c, 0x53, 0xfb, 0x9a, 0x25, 0x00, 0x72, - 0x08, 0xca, 0x6f, 0xac, 0xa0, 0xb2, 0x51, 0xba, 0xfc, 0x9a, 0x28, 0xcd, 0x36, 0x0a, 0x97, 0x62, - 0xb5, 0x2a, 0x2b, 0x38, 0xa2, 0x4e, 0x1c, 0x52, 0xd1, 0x52, 0x95, 0x7c, 0x05, 0x4b, 0x39, 0xce, - 0x34, 0x10, 0x06, 0x9d, 0x38, 0x0e, 0x8d, 0xa2, 0xfb, 0x74, 0x24, 0x1a, 0xeb, 0x5f, 0xcf, 0xb5, - 0xd5, 0x64, 0xdc, 0xd0, 0x5b, 0xa9, 0x2d, 0x9e, 0x60, 0x38, 0x33, 0x4a, 0xd5, 0xab, 0xe5, 0xc2, - 0xcc, 0x4c, 0x8c, 0x27, 0x18, 0x64, 0x40, 0x59, 0x06, 0xad, 0xba, 0xb4, 0x55, 0xda, 0xd6, 0x65, - 0x84, 0x76, 0x85, 0x04, 0xab, 0x15, 0x9e, 0x80, 0x8e, 0x3b, 0xe0, 0x77, 0x50, 0xe5, 0xcc, 0x09, - 0xb8, 0x2b, 0x00, 0xea, 0x8a, 0x13, 0xdf, 0x58, 0x41, 0xd1, 0x33, 0xa8, 0x78, 0xaa, 0xe8, 0xab, - 0xba, 0xe8, 0x9a, 0xbd, 0x33, 0x38, 0x48, 0x8b, 0x2b, 0x6b, 0x20, 0xd9, 0x39, 0x59, 0x8e, 0x52, - 0x31, 0xce, 0x9c, 0xa1, 0xaf, 0x60, 0xd5, 0x21, 0x3b, 0x94, 0x1b, 0xba, 0x0e, 0x61, 0xb4, 0x0a, - 0x45, 0x62, 0x7a, 0x2e, 0xe1, 0xf7, 0x47, 0x2b, 0x67, 0x8f, 0xa7, 0x71, 0xb5, 0x8f, 0x61, 0x75, - 0x6a, 0x33, 0x85, 0xfa, 0xeb, 0x3e, 0x54, 0xd2, 0xb2, 0x45, 0x17, 0x72, 0x76, 0xd6, 0xb2, 0x3a, - 0x51, 0x89, 0x67, 0x52, 0x40, 0xb6, 0x60, 0x41, 0xdc, 0xc7, 0xf2, 0xba, 0x5a, 0x49, 0xa7, 0xf0, - 0xe7, 0xfc, 0xa2, 0x15, 0x2b, 0xc6, 0x63, 0x0e, 0x93, 0x61, 0xe7, 0xf5, 0x3e, 0x0c, 0x69, 0xc7, - 0x7d, 0xae, 0x78, 0x59, 0xbd, 0x3f, 0x14, 0x52, 0xac, 0x56, 0xc5, 0x0c, 0x8e, 0x3b, 0x5c, 0x6f, - 0x7e, 0x66, 0x06, 0x0b, 0x29, 0x56, 0xab, 0xc6, 0x1f, 0x1a, 0x80, 0xdd, 0xb2, 0xf7, 0x77, 0x02, - 0xbf, 0xe3, 0x76, 0x51, 0x13, 0x74, 0x8f, 0x3a, 0x3d, 0xe2, 0xbb, 0x91, 0xa7, 0x3c, 0x9c, 0x53, - 0x96, 0xfa, 0x41, 0xba, 0x80, 0x27, 0x3a, 0xe8, 0x10, 0x80, 0x3f, 0x06, 0x64, 0x80, 0x8b, 0x3d, - 0x01, 0xd6, 0x92, 0x71, 0x03, 0x0e, 0x33, 0x63, 0x9c, 0x03, 0x21, 0x02, 0x6b, 0xe9, 0x93, 0x40, - 0xa1, 0x4b, 0x45, 0xd0, 0x28, 0x19, 0x37, 0xd6, 0x1e, 0x4e, 0x01, 0xf0, 0x0c, 0xd0, 0xf8, 0x45, - 0x83, 0x4d, 0xdb, 0xe9, 0x51, 0x8f, 0xf0, 0x51, 0x11, 0xb1, 0x70, 0xa4, 0x62, 0x70, 0x01, 0x4a, - 0x71, 0x38, 0x98, 0xcd, 0xd7, 0x21, 0xde, 0xc7, 0x5c, 0xce, 0x27, 0x49, 0x24, 0xcc, 0xf6, 0xe4, - 0x93, 0x67, 0x71, 0x52, 0xa5, 0x12, 0xb7, 0x77, 0x07, 0x67, 0x1a, 0xe8, 0x0b, 0x58, 0x20, 0x31, - 0xeb, 0xa9, 0xed, 0xdf, 0x2a, 0xdc, 0x1a, 0xd9, 0xdb, 0x6d, 0x52, 0x19, 0xfc, 0x0f, 0x0b, 0xaa, - 0xf1, 0xa3, 0x06, 0x2b, 0xb6, 0x18, 0x59, 0x9f, 0x51, 0xd2, 0xa6, 0x61, 0x56, 0x4c, 0xda, 0xdf, - 0x15, 0x13, 0xf2, 0x40, 0x17, 0x65, 0x7a, 0x37, 0x0c, 0x3c, 0x95, 0xaf, 0x4f, 0x0b, 0xef, 0xea, - 0x28, 0x25, 0xd8, 0xe2, 0x0a, 0x91, 0x13, 0x2a, 0x13, 0xe2, 0x89, 0x07, 0xe3, 0x39, 0xa8, 0x87, - 0x17, 0xf2, 0x01, 0x9c, 0xf4, 0x95, 0x95, 0x5e, 0xef, 0xc5, 0xe3, 0x91, 0x3d, 0xd4, 0x2c, 0xa4, - 0x0e, 0x07, 0x99, 0x28, 0xc2, 0x39, 0x0f, 0xc6, 0x77, 0x25, 0xd0, 0x1f, 0xed, 0xdb, 0x2a, 0xa9, - 0x4f, 0x60, 0x45, 0xb6, 0xb7, 0x2a, 0xa7, 0x42, 0xaf, 0xdf, 0x8d, 0x64, 0xdc, 0x58, 0x91, 0xc3, - 0x42, 0x15, 0xd3, 0x14, 0x0c, 0x75, 0x61, 0xc3, 0x19, 0xb8, 0xd4, 0x67, 0x39, 0x07, 0x85, 0x5a, - 0x61, 0x33, 0x19, 0x37, 0x36, 0x76, 0x66, 0x10, 0xf8, 0x1d, 0x28, 0x6a, 0xc3, 0xba, 0x94, 0x09, - 0xe3, 0xe2, 0x7d, 0x71, 0x3e, 0x19, 0x37, 0xd6, 0x77, 0xa6, 0x09, 0x78, 0x16, 0x89, 0xee, 0x01, - 0x4a, 0x6f, 0x42, 0xbb, 0xef, 0x0e, 0x8f, 0x68, 0xe8, 0x76, 0x46, 0xea, 0xd6, 0xcc, 0x1e, 0xb2, - 0x7b, 0xef, 0x68, 0xe0, 0x53, 0xac, 0x8c, 0x57, 0x1a, 0xac, 0xcf, 0x54, 0x0b, 0xcf, 0x45, 0x76, - 0x85, 0x61, 0xda, 0x39, 0x43, 0x2e, 0xec, 0x9c, 0x39, 0x9e, 0x82, 0xa1, 0x2e, 0xac, 0x3b, 0x22, - 0xe5, 0x07, 0x64, 0xa8, 0xf8, 0x32, 0x15, 0xdb, 0xa7, 0xf1, 0x77, 0x72, 0xaa, 0x33, 0x51, 0x9a, - 0x86, 0xe0, 0x59, 0xaa, 0x75, 0xe9, 0xc5, 0x9b, 0xfa, 0xdc, 0xcb, 0x37, 0xf5, 0xb9, 0xd7, 0x6f, - 0xea, 0x73, 0xdf, 0x24, 0x75, 0xed, 0x45, 0x52, 0xd7, 0x5e, 0x26, 0x75, 0xed, 0x75, 0x52, 0xd7, - 0x7e, 0x4b, 0xea, 0xda, 0x0f, 0xbf, 0xd7, 0xe7, 0x1e, 0x97, 0x65, 0xdd, 0xfe, 0x15, 0x00, 0x00, - 0xff, 0xff, 0xce, 0x9f, 0x3a, 0x1a, 0x03, 0x10, 0x00, 0x00, + // 1435 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x97, 0xcd, 0x6e, 0xdb, 0x46, + 0x10, 0x80, 0x4d, 0xcb, 0x96, 0xc5, 0xf1, 0x6f, 0x36, 0x3e, 0x08, 0x02, 0x22, 0x19, 0x2c, 0x5a, + 0x38, 0x6d, 0x43, 0x21, 0x3f, 0x68, 0x93, 0x14, 0x48, 0x2b, 0x3a, 0x0e, 0xea, 0xc4, 0x6e, 0x82, + 0x65, 0xec, 0x43, 0xd2, 0x1f, 0xac, 0xa9, 0x95, 0xc4, 0x48, 0x24, 0x05, 0x72, 0xe9, 0x44, 0xb7, + 0x16, 0x7d, 0x80, 0xf6, 0x0d, 0xfa, 0x04, 0x05, 0xfa, 0x0a, 0xbd, 0xe5, 0x18, 0xf4, 0x92, 0x9c, + 0x84, 0x86, 0x7d, 0x88, 0x16, 0x39, 0x15, 0xfb, 0x43, 0x8a, 0x52, 0x5c, 0xb4, 0x34, 0x7a, 0xa3, + 0x66, 0x67, 0xbe, 0xd9, 0x9d, 0xbf, 0x5d, 0xc1, 0xa7, 0x5d, 0x97, 0xf5, 0xe2, 0x63, 0xd3, 0x09, + 0xbc, 0x26, 0x09, 0xbb, 0xc1, 0x30, 0x0c, 0x9e, 0x88, 0x8f, 0x4b, 0xf4, 0x84, 0xfa, 0x2c, 0x6a, + 0x0e, 0xfb, 0xdd, 0x26, 0x19, 0xba, 0x51, 0xd3, 0x09, 0x3c, 0x2f, 0xf0, 0x9b, 0x5d, 0xea, 0xd3, + 0x90, 0x30, 0xda, 0x36, 0x87, 0x61, 0xc0, 0x02, 0xd4, 0x9c, 0x00, 0xcc, 0x14, 0x20, 0x3e, 0xbe, + 0x91, 0x00, 0x73, 0xd8, 0xef, 0x9a, 0x1c, 0x60, 0x4a, 0x40, 0xed, 0x52, 0xce, 0x63, 0x37, 0xe8, + 0x06, 0x4d, 0xc1, 0x39, 0x8e, 0x3b, 0xe2, 0x97, 0xf8, 0x21, 0xbe, 0x24, 0xbf, 0x66, 0xf4, 0xaf, + 0x47, 0xa6, 0x1b, 0xf0, 0x3d, 0x34, 0x9d, 0x20, 0xa4, 0xcd, 0x93, 0xcb, 0xb3, 0x7b, 0xa8, 0x5d, + 0x9b, 0xe8, 0x78, 0xc4, 0xe9, 0xb9, 0x3e, 0x0d, 0x47, 0x93, 0x8d, 0x7b, 0x94, 0x91, 0x53, 0xac, + 0x8c, 0x8b, 0x50, 0x6e, 0x79, 0x41, 0xec, 0x33, 0xd4, 0x80, 0xc5, 0x13, 0x32, 0x88, 0x69, 0x55, + 0xdb, 0xd2, 0xb6, 0x57, 0x2c, 0x3d, 0x19, 0x37, 0x16, 0x8f, 0xb8, 0x00, 0x4b, 0xb9, 0xf1, 0xdb, + 0x3c, 0x2c, 0x59, 0xc4, 0xe9, 0x07, 0x9d, 0x0e, 0xea, 0x41, 0xa5, 0x1d, 0x87, 0x84, 0xb9, 0x81, + 0x2f, 0xf4, 0x97, 0xaf, 0xdc, 0x32, 0x0b, 0xc6, 0xc0, 0xdc, 0xf3, 0xd9, 0x47, 0xd7, 0xee, 0x87, + 0x36, 0x0b, 0x5d, 0xbf, 0x6b, 0xad, 0x24, 0xe3, 0x46, 0xe5, 0xb6, 0x62, 0xe2, 0x8c, 0x8e, 0x1e, + 0x43, 0xb9, 0x43, 0x1c, 0x16, 0x84, 0xd5, 0x79, 0xe1, 0xe7, 0xe3, 0xc2, 0x7e, 0xe4, 0xf9, 0x2c, + 0x48, 0xc6, 0x8d, 0xf2, 0x1d, 0x81, 0xc2, 0x0a, 0xc9, 0xe1, 0x4f, 0x5c, 0xc6, 0x68, 0x58, 0x2d, + 0xfd, 0x0f, 0xf0, 0xbb, 0x02, 0x85, 0x15, 0x12, 0xbd, 0x03, 0x8b, 0x11, 0xa3, 0xc3, 0xa8, 0xba, + 0xb0, 0xa5, 0x6d, 0x2f, 0x5a, 0xab, 0xcf, 0xc7, 0x8d, 0x39, 0x1e, 0x54, 0x9b, 0x0b, 0xb1, 0x5c, + 0x33, 0x7e, 0xd6, 0x40, 0xb7, 0x48, 0xe4, 0x3a, 0xad, 0x98, 0xf5, 0xd0, 0x7d, 0xa8, 0xc4, 0x11, + 0x0d, 0x7d, 0xe2, 0x51, 0x15, 0xd6, 0x77, 0x4d, 0x99, 0x56, 0xee, 0xd4, 0xe4, 0xa9, 0x37, 0x4f, + 0x2e, 0x9b, 0x36, 0x75, 0x42, 0xca, 0xee, 0xd1, 0x91, 0x4d, 0x07, 0x94, 0x1f, 0x44, 0x46, 0xef, + 0x50, 0x99, 0xe2, 0x0c, 0xc2, 0x81, 0x43, 0x12, 0x45, 0x4f, 0x83, 0xb0, 0xad, 0xe2, 0x57, 0x04, + 0xf8, 0x40, 0x99, 0xe2, 0x0c, 0x62, 0xbc, 0x9c, 0x07, 0x7d, 0x27, 0xf0, 0xdb, 0xae, 0x48, 0xce, + 0x65, 0x58, 0x60, 0xa3, 0xa1, 0xdc, 0xab, 0x6e, 0x5d, 0x50, 0x27, 0x5c, 0x78, 0x38, 0x1a, 0xd2, + 0x37, 0xe3, 0xc6, 0x6a, 0xa6, 0xc8, 0x05, 0x58, 0xa8, 0xa2, 0x7d, 0x28, 0x47, 0x8c, 0xb0, 0x38, + 0x12, 0xfb, 0xd1, 0xad, 0x6b, 0xca, 0xa8, 0x6c, 0x0b, 0xe9, 0x9b, 0x71, 0xe3, 0x94, 0x62, 0x37, + 0x33, 0x92, 0xd4, 0xc2, 0x8a, 0x81, 0x4e, 0x00, 0x0d, 0x48, 0xc4, 0x1e, 0x86, 0xc4, 0x8f, 0xa4, + 0x27, 0xd7, 0xa3, 0x2a, 0x99, 0xef, 0xe7, 0x4e, 0x9a, 0x75, 0xc4, 0x24, 0x81, 0xbc, 0x23, 0xf8, + 0xd9, 0xb9, 0x85, 0x55, 0x53, 0xbb, 0x40, 0xfb, 0x6f, 0xd1, 0xf0, 0x29, 0x1e, 0xd0, 0x7b, 0x50, + 0x0e, 0x29, 0x89, 0x02, 0x5f, 0x24, 0x57, 0xb7, 0xd6, 0xd2, 0x53, 0x60, 0x21, 0xc5, 0x6a, 0x15, + 0x5d, 0x84, 0x25, 0x8f, 0x46, 0x11, 0xe9, 0xd2, 0xea, 0xa2, 0x50, 0x5c, 0x57, 0x8a, 0x4b, 0x07, + 0x52, 0x8c, 0xd3, 0x75, 0xe3, 0x07, 0x0d, 0x56, 0xa7, 0x5a, 0x02, 0x6d, 0xe7, 0xa2, 0x5b, 0xb2, + 0x36, 0x67, 0xa2, 0xbb, 0x90, 0x0b, 0xea, 0x87, 0x50, 0x71, 0xb9, 0xe9, 0x11, 0x19, 0x88, 0xb0, + 0x96, 0xac, 0x0d, 0xa5, 0x5d, 0xd9, 0x53, 0x72, 0x9c, 0x69, 0xf0, 0xcd, 0x47, 0x2c, 0xe4, 0xba, + 0xa5, 0xe9, 0xcd, 0xdb, 0x42, 0x8a, 0xd5, 0xaa, 0xf1, 0xd7, 0x3c, 0x54, 0x0e, 0x28, 0x23, 0x6d, + 0xc2, 0x08, 0xfa, 0x4e, 0x83, 0x65, 0xe2, 0xfb, 0x01, 0x13, 0x6d, 0x19, 0x55, 0xb5, 0xad, 0xd2, + 0xf6, 0xf2, 0x95, 0xbb, 0x85, 0x1b, 0x26, 0x05, 0x9a, 0xad, 0x09, 0x6c, 0xd7, 0x67, 0xe1, 0xc8, + 0x3a, 0xaf, 0xb6, 0xb1, 0x9c, 0x5b, 0xc1, 0x79, 0x9f, 0xc8, 0x83, 0xf2, 0x80, 0x1c, 0xd3, 0x01, + 0xaf, 0x1d, 0xee, 0x7d, 0xf7, 0xec, 0xde, 0xf7, 0x05, 0x47, 0x3a, 0xce, 0xce, 0x2f, 0x85, 0x58, + 0x39, 0xa9, 0xdd, 0x82, 0x8d, 0xd9, 0x4d, 0xa2, 0x0d, 0x28, 0xf5, 0xe9, 0x48, 0x16, 0x3c, 0xe6, + 0x9f, 0x68, 0x33, 0x9d, 0x9b, 0xa2, 0x9e, 0xd5, 0xb0, 0xbc, 0x39, 0x7f, 0x5d, 0xab, 0xdd, 0x80, + 0xe5, 0x9c, 0x9b, 0x22, 0xa6, 0xc6, 0x07, 0x50, 0xc1, 0x34, 0x0a, 0xe2, 0xd0, 0xa1, 0xff, 0x3e, + 0x98, 0x7f, 0x29, 0x03, 0xd8, 0x57, 0x5b, 0x21, 0x73, 0xf9, 0x58, 0xe3, 0xc5, 0x40, 0xfd, 0xf6, + 0x30, 0x70, 0x7d, 0xa6, 0x1a, 0x33, 0x2b, 0x86, 0x5d, 0x25, 0xc7, 0x99, 0x06, 0xfa, 0x0a, 0xca, + 0xc7, 0xb1, 0xd3, 0xa7, 0x4c, 0xcd, 0x87, 0x1b, 0x85, 0x63, 0x6a, 0x5f, 0xb5, 0x04, 0x40, 0x0e, + 0x41, 0xf9, 0x8d, 0x15, 0x54, 0x36, 0x4a, 0x97, 0x5f, 0x13, 0xa5, 0xd9, 0x46, 0xe1, 0x52, 0xac, + 0x56, 0x65, 0x05, 0x47, 0xd4, 0x89, 0x43, 0x2a, 0x5a, 0xaa, 0x92, 0xaf, 0x60, 0x29, 0xc7, 0x99, + 0x06, 0xc2, 0xa0, 0x13, 0xc7, 0xa1, 0x51, 0x74, 0x8f, 0x8e, 0x44, 0x63, 0xfd, 0xe7, 0xb9, 0xb6, + 0x9a, 0x8c, 0x1b, 0x7a, 0x2b, 0xb5, 0xc5, 0x13, 0x0c, 0x67, 0x46, 0xa9, 0x7a, 0xb5, 0x5c, 0x98, + 0x99, 0x89, 0xf1, 0x04, 0x83, 0x0c, 0x28, 0xcb, 0xa0, 0x55, 0x97, 0xb6, 0x4a, 0xdb, 0xba, 0x8c, + 0xd0, 0xae, 0x90, 0x60, 0xb5, 0xc2, 0x13, 0xd0, 0x71, 0x07, 0xfc, 0x0e, 0xaa, 0x9c, 0x39, 0x01, + 0x77, 0x04, 0x40, 0x5d, 0x71, 0xe2, 0x1b, 0x2b, 0x28, 0x7a, 0x0a, 0x15, 0x4f, 0x15, 0x7d, 0x55, + 0x17, 0x5d, 0xb3, 0x77, 0x06, 0x07, 0x69, 0x71, 0x65, 0x0d, 0x24, 0x3b, 0x27, 0xcb, 0x51, 0x2a, + 0xc6, 0x99, 0x33, 0xf4, 0x35, 0xac, 0x3a, 0x64, 0x87, 0x72, 0x43, 0xd7, 0x21, 0x8c, 0x56, 0xa1, + 0x48, 0x4c, 0xcf, 0x25, 0xfc, 0xfe, 0x68, 0xe5, 0xec, 0xf1, 0x34, 0xae, 0xf6, 0x09, 0xac, 0x4e, + 0x6d, 0xa6, 0x50, 0x7f, 0xdd, 0x83, 0x4a, 0x5a, 0xb6, 0xe8, 0x42, 0xce, 0xce, 0x5a, 0x56, 0x27, + 0x2a, 0xf1, 0x4c, 0x0a, 0xc8, 0x16, 0x2c, 0x88, 0xfb, 0x58, 0x5e, 0x57, 0x2b, 0xe9, 0x14, 0xfe, + 0x82, 0x5f, 0xb4, 0x62, 0xc5, 0x78, 0xc4, 0x61, 0x32, 0xec, 0xbc, 0xde, 0x87, 0x21, 0xed, 0xb8, + 0xcf, 0x14, 0x2f, 0xab, 0xf7, 0x07, 0x42, 0x8a, 0xd5, 0xaa, 0x98, 0xc1, 0x71, 0x87, 0xeb, 0xcd, + 0xcf, 0xcc, 0x60, 0x21, 0xc5, 0x6a, 0xd5, 0xf8, 0x53, 0x03, 0xb0, 0x5b, 0xf6, 0xfe, 0x4e, 0xe0, + 0x77, 0xdc, 0x2e, 0x6a, 0x82, 0xee, 0x51, 0xa7, 0x47, 0x7c, 0x37, 0xf2, 0x94, 0x87, 0x73, 0xca, + 0x52, 0x3f, 0x48, 0x17, 0xf0, 0x44, 0x07, 0x1d, 0x02, 0xf0, 0xc7, 0x80, 0x0c, 0x70, 0xb1, 0x27, + 0xc0, 0x5a, 0x32, 0x6e, 0xc0, 0x61, 0x66, 0x8c, 0x73, 0x20, 0x44, 0x60, 0x2d, 0x7d, 0x12, 0x28, + 0x74, 0xa9, 0x08, 0x1a, 0x25, 0xe3, 0xc6, 0xda, 0x83, 0x29, 0x00, 0x9e, 0x01, 0x1a, 0xbf, 0x6a, + 0xb0, 0x69, 0x3b, 0x3d, 0xea, 0x11, 0x3e, 0x2a, 0x22, 0x16, 0x8e, 0x54, 0x0c, 0x2e, 0x40, 0x29, + 0x0e, 0x07, 0xb3, 0xf9, 0x3a, 0xc4, 0xfb, 0x98, 0xcb, 0xf9, 0x24, 0x89, 0x84, 0xd9, 0x9e, 0x7c, + 0xf2, 0x2c, 0x4e, 0xaa, 0x54, 0xe2, 0xf6, 0x6e, 0xe3, 0x4c, 0x03, 0x7d, 0x09, 0x0b, 0x24, 0x66, + 0x3d, 0xb5, 0xfd, 0x9b, 0x85, 0x5b, 0x23, 0x7b, 0xbb, 0x4d, 0x2a, 0x83, 0xff, 0xc2, 0x82, 0x6a, + 0xfc, 0xa4, 0xc1, 0x8a, 0x2d, 0x46, 0xd6, 0xe7, 0x94, 0xb4, 0x69, 0x98, 0x15, 0x93, 0xf6, 0x4f, + 0xc5, 0x84, 0x3c, 0xd0, 0x45, 0x99, 0xde, 0x09, 0x03, 0x4f, 0xe5, 0xeb, 0xb3, 0xc2, 0xbb, 0x3a, + 0x4a, 0x09, 0xb6, 0xb8, 0x42, 0xe4, 0x84, 0xca, 0x84, 0x78, 0xe2, 0xc1, 0x78, 0x06, 0xea, 0xe1, + 0x85, 0x7c, 0x00, 0x27, 0x7d, 0x65, 0xa5, 0xd7, 0x7b, 0xf1, 0x78, 0x64, 0x0f, 0x35, 0x0b, 0xa9, + 0xc3, 0x41, 0x26, 0x8a, 0x70, 0xce, 0x83, 0xf1, 0x7d, 0x09, 0xf4, 0x87, 0xfb, 0xb6, 0x4a, 0xea, + 0x63, 0x58, 0x91, 0xed, 0xad, 0xca, 0xa9, 0xd0, 0xeb, 0x77, 0x23, 0x19, 0x37, 0x56, 0xe4, 0xb0, + 0x50, 0xc5, 0x34, 0x05, 0x43, 0x5d, 0xd8, 0x70, 0x06, 0x2e, 0xf5, 0x59, 0xce, 0x41, 0xa1, 0x56, + 0xd8, 0x4c, 0xc6, 0x8d, 0x8d, 0x9d, 0x19, 0x04, 0x7e, 0x0b, 0x8a, 0xda, 0xb0, 0x2e, 0x65, 0xc2, + 0xb8, 0x78, 0x5f, 0x9c, 0x4f, 0xc6, 0x8d, 0xf5, 0x9d, 0x69, 0x02, 0x9e, 0x45, 0xa2, 0xbb, 0x80, + 0xd2, 0x9b, 0xd0, 0xee, 0xbb, 0xc3, 0x23, 0x1a, 0xba, 0x9d, 0x91, 0xba, 0x35, 0xb3, 0x87, 0xec, + 0xde, 0x5b, 0x1a, 0xf8, 0x14, 0x2b, 0xe3, 0xa5, 0x06, 0xeb, 0x33, 0xd5, 0xc2, 0x73, 0x91, 0x5d, + 0x61, 0x98, 0x76, 0xce, 0x90, 0x0b, 0x3b, 0x67, 0x8e, 0xa7, 0x60, 0xa8, 0x0b, 0xeb, 0x8e, 0x48, + 0xf9, 0x01, 0x19, 0x2a, 0xbe, 0x4c, 0xc5, 0xf6, 0x69, 0xfc, 0x9d, 0x9c, 0xea, 0x4c, 0x94, 0xa6, + 0x21, 0x78, 0x96, 0x6a, 0x1d, 0x3e, 0x7f, 0x5d, 0x9f, 0x7b, 0xf1, 0xba, 0x3e, 0xf7, 0xea, 0x75, + 0x7d, 0xee, 0xdb, 0xa4, 0xae, 0x3d, 0x4f, 0xea, 0xda, 0x8b, 0xa4, 0xae, 0xbd, 0x4a, 0xea, 0xda, + 0xef, 0x49, 0x5d, 0xfb, 0xf1, 0x8f, 0xfa, 0xdc, 0xa3, 0x66, 0xc1, 0xbf, 0xfe, 0x7f, 0x07, 0x00, + 0x00, 0xff, 0xff, 0xdd, 0x9f, 0xa2, 0xd6, 0x2c, 0x10, 0x00, 0x00, } func (m *Amount) Marshal() (dAtA []byte, err error) { diff --git a/pkg/apis/common/generated.proto b/pkg/apis/common/generated.proto index fc92a60066..5936197ab9 100644 --- a/pkg/apis/common/generated.proto +++ b/pkg/apis/common/generated.proto @@ -24,7 +24,7 @@ import "k8s.io/api/core/v1/generated.proto"; import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto"; // Package-wide variables from generator "generated". -option go_package = "common"; +option go_package = "github.com/argoproj/argo-events/pkg/apis/common"; // Amount represent a numeric amount. message Amount { diff --git a/pkg/apis/common/openapi_generated.go b/pkg/apis/common/openapi_generated.go index 51e53d9bba..54ad14508c 100644 --- a/pkg/apis/common/openapi_generated.go +++ b/pkg/apis/common/openapi_generated.go @@ -154,7 +154,6 @@ func schema_argo_events_pkg_apis_common_Condition(ref common.ReferenceCallback) "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "Last time the condition transitioned from one status to another.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, diff --git a/pkg/apis/eventbus/v1alpha1/generated.pb.go b/pkg/apis/eventbus/v1alpha1/generated.pb.go index 94552b2303..13c7289e33 100644 --- a/pkg/apis/eventbus/v1alpha1/generated.pb.go +++ b/pkg/apis/eventbus/v1alpha1/generated.pb.go @@ -464,14 +464,14 @@ func init() { } var fileDescriptor_871e47633eb7aad4 = []byte{ - // 2035 bytes of a gzipped FileDescriptorProto + // 2037 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0x4f, 0x6f, 0x1b, 0xc7, 0x15, 0xd7, 0x8a, 0x94, 0x44, 0x0e, 0x29, 0x51, 0x1c, 0x29, 0xcd, 0x5a, 0x88, 0x49, 0x83, 0x41, 0x0a, 0x17, 0x89, 0x97, 0x75, 0x91, 0xb6, 0xae, 0x7b, 0x70, 0xb9, 0x8a, 0x62, 0xcb, 0x16, 0x65, - 0x75, 0x28, 0x1b, 0x48, 0x1a, 0xd4, 0x1d, 0xad, 0x46, 0xd4, 0x4a, 0xfb, 0x87, 0xdd, 0x99, 0x25, + 0x75, 0x28, 0x1b, 0x48, 0x1a, 0xd4, 0x19, 0xad, 0x46, 0xd4, 0x4a, 0xfb, 0x87, 0xdd, 0x99, 0x25, 0xc4, 0x9e, 0x8a, 0xf6, 0x50, 0xa0, 0xa7, 0xa0, 0x28, 0x8a, 0x7e, 0x83, 0x02, 0xbd, 0xb7, 0xdf, 0xa0, 0xa8, 0x0f, 0x3d, 0x04, 0xbd, 0x34, 0x87, 0x82, 0x88, 0x19, 0xf4, 0x4b, 0xf8, 0x54, 0xcc, - 0xec, 0xec, 0x1f, 0xee, 0x52, 0xb6, 0x64, 0xd2, 0x35, 0x7a, 0xdb, 0x79, 0xef, 0xcd, 0xef, 0xbd, + 0xec, 0xec, 0x1f, 0xee, 0x52, 0xb1, 0x64, 0xd2, 0x35, 0x72, 0xdb, 0x79, 0xef, 0xcd, 0xef, 0xbd, 0x37, 0x7f, 0xde, 0xfb, 0x0d, 0x09, 0xee, 0x77, 0x4d, 0x76, 0xec, 0x1f, 0x68, 0x86, 0x6b, 0x37, 0xb1, 0xd7, 0x75, 0x7b, 0x9e, 0x7b, 0x22, 0x3e, 0x6e, 0x90, 0x3e, 0x71, 0x18, 0x6d, 0xf6, 0x4e, 0xbb, 0x4d, 0xdc, 0x33, 0x69, 0x53, 0x8c, 0x0f, 0x7c, 0xda, 0xec, 0xdf, 0xc4, 0x56, 0xef, 0x18, @@ -480,119 +480,119 @@ var fileDescriptor_871e47633eb7aad4 = []byte{ 0xb4, 0x10, 0x6b, 0xe3, 0xce, 0x85, 0xe3, 0x30, 0x5c, 0xdb, 0x76, 0x9d, 0xb4, 0xf3, 0x8d, 0x1b, 0x09, 0x80, 0xae, 0xdb, 0x75, 0x9b, 0x42, 0x7c, 0xe0, 0x1f, 0x89, 0x91, 0x18, 0x88, 0x2f, 0x69, 0xde, 0x38, 0xbd, 0x45, 0x35, 0xd3, 0xe5, 0x90, 0x4d, 0xc3, 0xf5, 0x48, 0xb3, 0x9f, 0xc9, 0x67, - 0xe3, 0xc3, 0xd8, 0xc6, 0xc6, 0xc6, 0xb1, 0xe9, 0x10, 0x6f, 0x10, 0xc6, 0xd1, 0xf4, 0x08, 0x75, + 0xe3, 0xfd, 0xd8, 0xc6, 0xc6, 0xc6, 0xb1, 0xe9, 0x10, 0x6f, 0x10, 0xc6, 0xd1, 0xf4, 0x08, 0x75, 0x7d, 0xcf, 0x20, 0x97, 0x9a, 0x45, 0x9b, 0x36, 0x61, 0x78, 0x92, 0xaf, 0xe6, 0x79, 0xb3, 0x3c, - 0xdf, 0x61, 0xa6, 0x9d, 0x75, 0xf3, 0xbd, 0x97, 0x4d, 0xa0, 0xc6, 0x31, 0xb1, 0x71, 0x7a, 0x5e, - 0xe3, 0x9f, 0xf3, 0xa0, 0xa8, 0xfb, 0x74, 0xd3, 0x75, 0x8e, 0xcc, 0x2e, 0x3c, 0x04, 0x79, 0x07, - 0x33, 0xaa, 0x2a, 0xd7, 0x94, 0xeb, 0xa5, 0xef, 0x7c, 0xac, 0xbd, 0xfa, 0x0e, 0x6a, 0xbb, 0xad, + 0xdf, 0x61, 0xa6, 0x9d, 0x75, 0xf3, 0x83, 0x17, 0x4d, 0xa0, 0xc6, 0x31, 0xb1, 0x71, 0x7a, 0x5e, + 0xe3, 0x5f, 0xf3, 0xa0, 0xa8, 0xfb, 0x74, 0xd3, 0x75, 0x8e, 0xcc, 0x2e, 0x3c, 0x04, 0x79, 0x07, + 0x33, 0xaa, 0x2a, 0xd7, 0x94, 0xeb, 0xa5, 0xef, 0x7d, 0xa8, 0xbd, 0xfc, 0x0e, 0x6a, 0xbb, 0xad, 0xfd, 0x4e, 0x80, 0xaa, 0x17, 0x46, 0xc3, 0x7a, 0x9e, 0x8f, 0x91, 0x40, 0x87, 0x67, 0xa0, 0x78, 0x42, 0x18, 0x65, 0x1e, 0xc1, 0xb6, 0x3a, 0x2f, 0x5c, 0x3d, 0x98, 0xc6, 0xd5, 0x7d, 0xc2, 0x3a, 0x02, 0x4c, 0xfa, 0x5b, 0x1e, 0x0d, 0xeb, 0xc5, 0x48, 0x88, 0x62, 0x67, 0x90, 0x80, 0x85, 0x53, - 0x7c, 0x74, 0x8a, 0xd5, 0x9c, 0xf0, 0xfa, 0xd1, 0x34, 0x5e, 0x1f, 0x70, 0x20, 0xdd, 0xa7, 0x7a, - 0x71, 0x34, 0xac, 0x2f, 0x88, 0x11, 0x0a, 0xd0, 0x1b, 0x7f, 0x9d, 0x07, 0xd5, 0x4d, 0xd7, 0x61, - 0x98, 0x6f, 0xc3, 0x3e, 0xb1, 0x7b, 0x16, 0x66, 0x04, 0x7e, 0x02, 0x8a, 0xe1, 0x29, 0x09, 0x57, + 0x7c, 0x74, 0x8a, 0xd5, 0x9c, 0xf0, 0xfa, 0xc1, 0x34, 0x5e, 0x1f, 0x70, 0x20, 0xdd, 0xa7, 0x7a, + 0x71, 0x34, 0xac, 0x2f, 0x88, 0x11, 0x0a, 0xd0, 0x1b, 0x7f, 0x9b, 0x07, 0xd5, 0x4d, 0xd7, 0x61, + 0x98, 0x6f, 0xc3, 0x3e, 0xb1, 0x7b, 0x16, 0x66, 0x04, 0x7e, 0x04, 0x8a, 0xe1, 0x29, 0x09, 0x57, 0xf8, 0xba, 0x16, 0x6c, 0x1b, 0xf7, 0xa1, 0xf1, 0x73, 0xa7, 0xf5, 0x6f, 0x6a, 0x48, 0x1a, 0x21, - 0xf2, 0x73, 0xdf, 0xf4, 0x88, 0xcd, 0x03, 0xd1, 0xab, 0x4f, 0x87, 0xf5, 0x39, 0x9e, 0x57, 0xa8, + 0xf2, 0x0b, 0xdf, 0xf4, 0x88, 0xcd, 0x03, 0xd1, 0xab, 0x4f, 0x87, 0xf5, 0x39, 0x9e, 0x57, 0xa8, 0xa5, 0x28, 0x46, 0x83, 0x07, 0xa0, 0x62, 0xda, 0xb8, 0x4b, 0xf6, 0x7c, 0xcb, 0xda, 0x73, 0x2d, 0xd3, 0x18, 0x88, 0x75, 0x2d, 0xea, 0xb7, 0xe4, 0xb4, 0xca, 0xf6, 0xb8, 0xfa, 0xf9, 0xb0, 0x7e, 0x35, 0x7b, 0xe4, 0xb5, 0xd8, 0x00, 0xa5, 0x01, 0xb9, 0x0f, 0x4a, 0x0c, 0xdf, 0x33, 0xd9, 0x80, - 0xe7, 0x46, 0xce, 0x98, 0x5c, 0xc5, 0x77, 0x27, 0x25, 0xd1, 0x19, 0x37, 0xd5, 0xd7, 0x78, 0x10, - 0x29, 0x21, 0x4a, 0x03, 0x36, 0xfe, 0x31, 0x0f, 0x0a, 0x5b, 0x7c, 0xa5, 0x75, 0x9f, 0xc2, 0x9f, - 0x81, 0x02, 0xbf, 0x1e, 0x87, 0x98, 0x61, 0xb9, 0x5c, 0xdf, 0x4e, 0x78, 0x8a, 0x4e, 0x79, 0xbc, - 0x47, 0xdc, 0x9a, 0xfb, 0x7e, 0x78, 0x70, 0x42, 0x0c, 0xd6, 0x26, 0x0c, 0xeb, 0x50, 0xe6, 0x0f, - 0x62, 0x19, 0x8a, 0x50, 0xe1, 0x09, 0xc8, 0xd3, 0x1e, 0x31, 0xe4, 0x19, 0xbc, 0x37, 0xcd, 0x69, - 0x08, 0xa3, 0xee, 0xf4, 0x88, 0xa1, 0x97, 0xa5, 0xd7, 0x3c, 0x1f, 0x21, 0xe1, 0x03, 0x7a, 0x60, - 0x91, 0x32, 0xcc, 0x7c, 0x2a, 0x57, 0xed, 0xfe, 0x4c, 0xbc, 0x09, 0x44, 0x7d, 0x45, 0xfa, 0x5b, - 0x0c, 0xc6, 0x48, 0x7a, 0x6a, 0xfc, 0x4b, 0x01, 0xe5, 0xd0, 0x74, 0xc7, 0xa4, 0x0c, 0x7e, 0x96, - 0x59, 0x52, 0xed, 0x62, 0x4b, 0xca, 0x67, 0x8b, 0x05, 0x5d, 0x95, 0xae, 0x0a, 0xa1, 0x24, 0xb1, - 0x9c, 0x26, 0x58, 0x30, 0x19, 0xb1, 0xa9, 0x3a, 0x7f, 0x2d, 0x37, 0xed, 0xed, 0x0a, 0xc3, 0xd6, - 0x97, 0xa5, 0xc3, 0x85, 0x6d, 0x0e, 0x8d, 0x02, 0x0f, 0x8d, 0x7f, 0xe7, 0xe2, 0xcc, 0xf8, 0x22, - 0x43, 0x3c, 0x56, 0xb9, 0x36, 0xa7, 0xad, 0x5c, 0xdc, 0x73, 0xba, 0x6c, 0xf9, 0xd9, 0xb2, 0x75, - 0x6f, 0x26, 0x65, 0x4b, 0xa4, 0xf9, 0x86, 0x6b, 0x16, 0xfc, 0xad, 0x02, 0x2a, 0x91, 0xd3, 0xad, - 0x33, 0x97, 0x99, 0x86, 0x9a, 0x9f, 0x7d, 0x6d, 0x16, 0x75, 0x20, 0x12, 0x06, 0x7e, 0x50, 0xda, - 0x71, 0xe3, 0x2b, 0x05, 0xac, 0x8c, 0x9f, 0x71, 0xf8, 0x24, 0xba, 0x3f, 0xc1, 0x16, 0x7f, 0xff, - 0xe2, 0x51, 0x05, 0x14, 0x41, 0x7b, 0xf1, 0x65, 0x81, 0x36, 0x58, 0x34, 0x44, 0x8c, 0x72, 0x6f, - 0xb7, 0xa6, 0x49, 0x3b, 0x6a, 0xa9, 0xb1, 0xbb, 0x60, 0x8c, 0xa4, 0x93, 0xc6, 0xaf, 0x57, 0x40, - 0x39, 0x79, 0x02, 0xe0, 0xb7, 0xc0, 0x52, 0x9f, 0x78, 0xd4, 0x74, 0x1d, 0x91, 0x61, 0x51, 0xaf, + 0xe7, 0x46, 0xce, 0x98, 0x5c, 0xc5, 0xb7, 0x27, 0x25, 0xd1, 0x19, 0x37, 0xd5, 0xd7, 0x78, 0x10, + 0x29, 0x21, 0x4a, 0x03, 0x36, 0xfe, 0x39, 0x0f, 0x0a, 0x5b, 0x7c, 0xa5, 0x75, 0x9f, 0xc2, 0x4f, + 0x41, 0x81, 0x5f, 0x8f, 0x43, 0xcc, 0xb0, 0x5c, 0xae, 0xef, 0x26, 0x3c, 0x45, 0xa7, 0x3c, 0xde, + 0x23, 0x6e, 0xcd, 0x7d, 0x3f, 0x3c, 0x38, 0x21, 0x06, 0x6b, 0x13, 0x86, 0x75, 0x28, 0xf3, 0x07, + 0xb1, 0x0c, 0x45, 0xa8, 0xf0, 0x04, 0xe4, 0x69, 0x8f, 0x18, 0xf2, 0x0c, 0xde, 0x9b, 0xe6, 0x34, + 0x84, 0x51, 0x77, 0x7a, 0xc4, 0xd0, 0xcb, 0xd2, 0x6b, 0x9e, 0x8f, 0x90, 0xf0, 0x01, 0x3d, 0xb0, + 0x48, 0x19, 0x66, 0x3e, 0x95, 0xab, 0x76, 0x7f, 0x26, 0xde, 0x04, 0xa2, 0xbe, 0x22, 0xfd, 0x2d, + 0x06, 0x63, 0x24, 0x3d, 0x35, 0xfe, 0xad, 0x80, 0x72, 0x68, 0xba, 0x63, 0x52, 0x06, 0x3f, 0xc9, + 0x2c, 0xa9, 0x76, 0xb1, 0x25, 0xe5, 0xb3, 0xc5, 0x82, 0xae, 0x4a, 0x57, 0x85, 0x50, 0x92, 0x58, + 0x4e, 0x13, 0x2c, 0x98, 0x8c, 0xd8, 0x54, 0x9d, 0xbf, 0x96, 0x9b, 0xf6, 0x76, 0x85, 0x61, 0xeb, + 0xcb, 0xd2, 0xe1, 0xc2, 0x36, 0x87, 0x46, 0x81, 0x87, 0xc6, 0x7f, 0x72, 0x71, 0x66, 0x7c, 0x91, + 0x21, 0x1e, 0xab, 0x5c, 0x9b, 0xd3, 0x56, 0x2e, 0xee, 0x39, 0x5d, 0xb6, 0xfc, 0x6c, 0xd9, 0xba, + 0x37, 0x93, 0xb2, 0x25, 0xd2, 0x7c, 0xcd, 0x35, 0x0b, 0xfe, 0x4e, 0x01, 0x95, 0xc8, 0xe9, 0xd6, + 0x99, 0xcb, 0x4c, 0x43, 0xcd, 0xcf, 0xbe, 0x36, 0x8b, 0x3a, 0x10, 0x09, 0x03, 0x3f, 0x28, 0xed, + 0xb8, 0xf1, 0xa5, 0x02, 0x56, 0xc6, 0xcf, 0x38, 0x7c, 0x12, 0xdd, 0x9f, 0x60, 0x8b, 0x7f, 0x78, + 0xf1, 0xa8, 0x02, 0x8a, 0xa0, 0x7d, 0xfd, 0x65, 0x81, 0x36, 0x58, 0x34, 0x44, 0x8c, 0x72, 0x6f, + 0xb7, 0xa6, 0x49, 0x3b, 0x6a, 0xa9, 0xb1, 0xbb, 0x60, 0x8c, 0xa4, 0x93, 0xc6, 0x6f, 0x56, 0x40, + 0x39, 0x79, 0x02, 0xe0, 0x77, 0xc0, 0x52, 0x9f, 0x78, 0xd4, 0x74, 0x1d, 0x91, 0x61, 0x51, 0xaf, 0xc8, 0x99, 0x4b, 0x8f, 0x03, 0x31, 0x0a, 0xf5, 0xf0, 0x3a, 0x28, 0x78, 0xa4, 0x67, 0x99, 0x06, - 0xa6, 0x22, 0xd8, 0x05, 0xbd, 0xcc, 0xaf, 0x24, 0x92, 0x32, 0x14, 0x69, 0xe1, 0xef, 0x14, 0x50, - 0x35, 0xd2, 0x9d, 0x48, 0x9e, 0xa4, 0xf6, 0x34, 0x09, 0x66, 0xda, 0x9b, 0xfe, 0xd6, 0x68, 0x58, - 0xcf, 0x76, 0x3d, 0x94, 0x75, 0x0f, 0xff, 0xac, 0x80, 0x2b, 0x1e, 0xb1, 0x5c, 0x7c, 0x48, 0xbc, + 0xa6, 0x22, 0xd8, 0x05, 0xbd, 0xcc, 0xaf, 0x24, 0x92, 0x32, 0x14, 0x69, 0xe1, 0xef, 0x15, 0x50, + 0x35, 0xd2, 0x9d, 0x48, 0x9e, 0xa4, 0xf6, 0x34, 0x09, 0x66, 0xda, 0x9b, 0xfe, 0xc6, 0x68, 0x58, + 0xcf, 0x76, 0x3d, 0x94, 0x75, 0x0f, 0xff, 0xa2, 0x80, 0x2b, 0x1e, 0xb1, 0x5c, 0x7c, 0x48, 0xbc, 0xcc, 0x04, 0x79, 0xe8, 0x66, 0x1c, 0xdc, 0xd5, 0xd1, 0xb0, 0x7e, 0x05, 0x9d, 0xe7, 0x13, 0x9d, - 0x1f, 0x0e, 0xfc, 0x93, 0x02, 0x54, 0x9b, 0x30, 0xcf, 0x34, 0x68, 0x36, 0xd6, 0x85, 0xd7, 0x11, - 0xeb, 0x3b, 0xa3, 0x61, 0x5d, 0x6d, 0x9f, 0xe3, 0x12, 0x9d, 0x1b, 0x0c, 0xfc, 0x95, 0x02, 0x4a, + 0x1f, 0x0e, 0xfc, 0xb3, 0x02, 0x54, 0x9b, 0x30, 0xcf, 0x34, 0x68, 0x36, 0xd6, 0x85, 0x57, 0x11, + 0xeb, 0x5b, 0xa3, 0x61, 0x5d, 0x6d, 0x9f, 0xe3, 0x12, 0x9d, 0x1b, 0x0c, 0xfc, 0xb5, 0x02, 0x4a, 0x3d, 0x7e, 0x42, 0x28, 0x23, 0x8e, 0x41, 0xd4, 0x45, 0x11, 0xdc, 0xc3, 0x69, 0x82, 0xdb, 0x8b, 0xe1, 0x3a, 0x8c, 0xd3, 0xc6, 0xee, 0x40, 0xaf, 0x8c, 0x86, 0xf5, 0x52, 0x42, 0x81, 0x92, 0x4e, - 0xa1, 0x91, 0xe8, 0x30, 0x4b, 0x22, 0x80, 0x1f, 0x5c, 0xfa, 0xa2, 0xb6, 0x25, 0x40, 0x70, 0xaa, - 0xc3, 0x51, 0xa2, 0xd1, 0xfc, 0x5e, 0x01, 0x65, 0xc7, 0x3d, 0x24, 0x1d, 0x62, 0x11, 0x83, 0xb9, - 0x9e, 0x5a, 0x10, 0x0d, 0xe7, 0xd3, 0x59, 0x55, 0x63, 0x6d, 0x37, 0x01, 0xbe, 0xe5, 0x30, 0x6f, + 0xa1, 0x91, 0xe8, 0x30, 0x4b, 0x22, 0x80, 0x1f, 0x5d, 0xfa, 0xa2, 0xb6, 0x25, 0x40, 0x70, 0xaa, + 0xc3, 0x51, 0xa2, 0xd1, 0xfc, 0x41, 0x01, 0x65, 0xc7, 0x3d, 0x24, 0x1d, 0x62, 0x11, 0x83, 0xb9, + 0x9e, 0x5a, 0x10, 0x0d, 0xe7, 0xe3, 0x59, 0x55, 0x63, 0x6d, 0x37, 0x01, 0xbe, 0xe5, 0x30, 0x6f, 0xa0, 0xaf, 0xcb, 0xcb, 0x58, 0x4e, 0xaa, 0xd0, 0x58, 0x14, 0xf0, 0x11, 0x28, 0x31, 0xd7, 0xe2, 0xf4, 0xda, 0x74, 0x1d, 0xaa, 0x16, 0x45, 0x50, 0xb5, 0x49, 0xec, 0x68, 0x3f, 0x32, 0xd3, 0xd7, - 0x24, 0x70, 0x29, 0x96, 0x51, 0x94, 0xc4, 0x81, 0x24, 0x4b, 0xbc, 0x80, 0x58, 0xd9, 0x6f, 0x4e, - 0x82, 0xde, 0x73, 0x0f, 0x5f, 0x89, 0x7b, 0x41, 0x07, 0xac, 0x46, 0x94, 0xaf, 0x43, 0x0c, 0x8f, + 0x24, 0x70, 0x29, 0x96, 0x51, 0x94, 0xc4, 0x81, 0x24, 0x4b, 0xbc, 0x80, 0x58, 0xd9, 0x6f, 0x4f, + 0x82, 0xde, 0x73, 0x0f, 0x5f, 0x8a, 0x7b, 0x41, 0x07, 0xac, 0x46, 0x94, 0xaf, 0x43, 0x0c, 0x8f, 0x30, 0xaa, 0x96, 0x44, 0x0a, 0x13, 0x59, 0xea, 0x8e, 0x6b, 0x60, 0x2b, 0x60, 0x55, 0x88, 0x1c, 0x11, 0x8f, 0xef, 0xbe, 0xae, 0xca, 0x64, 0x56, 0xb7, 0x53, 0x48, 0x28, 0x83, 0x0d, 0xef, 0x82, 0x6a, 0xcf, 0x33, 0x5d, 0x11, 0x82, 0x85, 0x29, 0xdd, 0xc5, 0x36, 0x51, 0xcb, 0xa2, 0xf2, 0x5d, 0x91, 0x30, 0xd5, 0xbd, 0xb4, 0x01, 0xca, 0xce, 0xe1, 0xd5, 0x30, 0x14, 0xaa, 0xcb, 0x71, 0x35, - 0x0c, 0xe7, 0xa2, 0x48, 0x0b, 0x3f, 0x06, 0x05, 0x7c, 0x74, 0x64, 0x3a, 0xdc, 0x72, 0x45, 0x2c, - 0xe1, 0x3b, 0x93, 0x52, 0x6b, 0x49, 0x9b, 0x00, 0x27, 0x1c, 0xa1, 0x68, 0x2e, 0xbc, 0x0f, 0x20, + 0x0c, 0xe7, 0xa2, 0x48, 0x0b, 0x3f, 0x04, 0x05, 0x7c, 0x74, 0x64, 0x3a, 0xdc, 0x72, 0x45, 0x2c, + 0xe1, 0x5b, 0x93, 0x52, 0x6b, 0x49, 0x9b, 0x00, 0x27, 0x1c, 0xa1, 0x68, 0x2e, 0xbc, 0x0f, 0x20, 0x25, 0x5e, 0xdf, 0x34, 0x48, 0xcb, 0x30, 0x5c, 0xdf, 0x61, 0x22, 0xf6, 0x8a, 0x88, 0x7d, 0x43, 0xc6, 0x0e, 0x3b, 0x19, 0x0b, 0x34, 0x61, 0x16, 0x8f, 0x9e, 0x12, 0xc6, 0x4c, 0xa7, 0x4b, 0xd5, - 0x55, 0x81, 0x20, 0xbc, 0x76, 0xa4, 0x0c, 0x45, 0x5a, 0xf8, 0x3e, 0x28, 0x52, 0x86, 0x3d, 0xd6, + 0x55, 0x81, 0x20, 0xbc, 0x76, 0xa4, 0x0c, 0x45, 0x5a, 0xf8, 0x2e, 0x28, 0x52, 0x86, 0x3d, 0xd6, 0xf2, 0xba, 0x54, 0xad, 0x5e, 0xcb, 0x5d, 0x2f, 0x06, 0xac, 0xa1, 0x13, 0x0a, 0x51, 0xac, 0x87, - 0x1f, 0x82, 0x32, 0x4d, 0xf4, 0x5d, 0x15, 0x0a, 0xe8, 0x55, 0x7e, 0x82, 0x93, 0xfd, 0x18, 0x8d, + 0xef, 0x83, 0x32, 0x4d, 0xf4, 0x5d, 0x15, 0x0a, 0xe8, 0x55, 0x7e, 0x82, 0x93, 0xfd, 0x18, 0x8d, 0x59, 0x41, 0x0d, 0x00, 0x1b, 0x9f, 0xed, 0xe1, 0x01, 0xaf, 0x86, 0xea, 0x9a, 0x98, 0xb3, 0xc2, 0xe9, 0x73, 0x3b, 0x92, 0xa2, 0x84, 0xc5, 0xc6, 0x1d, 0x50, 0xcd, 0x5c, 0x15, 0xb8, 0x0a, 0x72, 0xa7, 0x64, 0x10, 0x34, 0x31, 0xc4, 0x3f, 0xe1, 0x3a, 0x58, 0xe8, 0x63, 0xcb, 0x27, 0xc1, 0xa3, - 0x04, 0x05, 0x83, 0xdb, 0xf3, 0xb7, 0x94, 0xc6, 0xdf, 0x15, 0x50, 0x49, 0x51, 0x04, 0x78, 0x15, + 0x04, 0x05, 0x83, 0xdb, 0xf3, 0xb7, 0x94, 0xc6, 0x3f, 0x14, 0x50, 0x49, 0x51, 0x04, 0x78, 0x15, 0xe4, 0x7c, 0xcf, 0x92, 0x4d, 0xb0, 0x24, 0x97, 0x33, 0xf7, 0x08, 0xed, 0x20, 0x2e, 0x87, 0x3f, - 0x01, 0x65, 0x6c, 0x18, 0x84, 0xd2, 0xe0, 0x20, 0xc9, 0x6e, 0xfd, 0xde, 0x39, 0x8f, 0x10, 0x8f, + 0x03, 0x65, 0x6c, 0x18, 0x84, 0xd2, 0xe0, 0x20, 0xc9, 0x6e, 0xfd, 0xce, 0x39, 0x8f, 0x10, 0x8f, 0xb0, 0x07, 0x64, 0x10, 0x06, 0x18, 0x2c, 0x40, 0x2b, 0x31, 0x1d, 0x8d, 0x81, 0xc1, 0x5b, 0xa9, - 0x65, 0xcb, 0x89, 0x20, 0xa2, 0xcb, 0x7f, 0xfe, 0xd2, 0x35, 0xfe, 0x92, 0x03, 0x85, 0x90, 0x5e, - 0xbd, 0x2c, 0x85, 0x77, 0xc1, 0x02, 0x73, 0x7b, 0xa6, 0x21, 0x1f, 0x69, 0x11, 0xc5, 0xdd, 0xe7, - 0x42, 0x14, 0xe8, 0x92, 0x7c, 0x20, 0xf7, 0x12, 0x3e, 0xf0, 0x08, 0xe4, 0x98, 0x45, 0x65, 0xe7, + 0x65, 0xcb, 0x89, 0x20, 0xa2, 0xcb, 0x7f, 0xfe, 0xd2, 0x35, 0xfe, 0x9a, 0x03, 0x85, 0x90, 0x5e, + 0xbd, 0x28, 0x85, 0xb7, 0xc1, 0x02, 0x73, 0x7b, 0xa6, 0x21, 0x1f, 0x69, 0x11, 0xc5, 0xdd, 0xe7, + 0x42, 0x14, 0xe8, 0x92, 0x7c, 0x20, 0xf7, 0x02, 0x3e, 0xf0, 0x08, 0xe4, 0x98, 0x45, 0x65, 0xe7, 0xbc, 0x7d, 0xe9, 0x7a, 0xbb, 0xbf, 0x13, 0xbe, 0xd4, 0x97, 0x78, 0x98, 0xfb, 0x3b, 0x1d, 0xc4, - 0xf1, 0xe0, 0x27, 0x20, 0x4f, 0x31, 0xb5, 0x64, 0x97, 0xfb, 0xe1, 0xe5, 0x09, 0x57, 0xab, 0xb3, - 0x93, 0xfc, 0x09, 0x80, 0x8f, 0x91, 0x80, 0x84, 0xbf, 0x51, 0xc0, 0xb2, 0xe1, 0x3a, 0xd4, 0xb7, + 0xf1, 0xe0, 0x47, 0x20, 0x4f, 0x31, 0xb5, 0x64, 0x97, 0xfb, 0xf1, 0xe5, 0x09, 0x57, 0xab, 0xb3, + 0x93, 0xfc, 0x09, 0x80, 0x8f, 0x91, 0x80, 0x84, 0xbf, 0x55, 0xc0, 0xb2, 0xe1, 0x3a, 0xd4, 0xb7, 0x89, 0x77, 0xd7, 0x73, 0xfd, 0x9e, 0xec, 0x56, 0xbb, 0x53, 0xb3, 0xdb, 0xcd, 0x24, 0xaa, 0x5e, - 0x1d, 0x0d, 0xeb, 0xcb, 0x63, 0x22, 0x34, 0xee, 0xb7, 0xf1, 0x37, 0x05, 0xc0, 0xec, 0x44, 0xd8, + 0x1d, 0x0d, 0xeb, 0xcb, 0x63, 0x22, 0x34, 0xee, 0xb7, 0xf1, 0x77, 0x05, 0xc0, 0xec, 0x44, 0xd8, 0x04, 0xc5, 0x2e, 0xff, 0x10, 0x37, 0x3b, 0xd8, 0xc7, 0xe8, 0x09, 0x7e, 0x37, 0x54, 0xa0, 0xd8, 0x86, 0x97, 0x33, 0x8f, 0x1c, 0x60, 0x0b, 0x27, 0x7a, 0xa5, 0xdc, 0xdf, 0xa8, 0x9c, 0xa1, 0xb4, - 0x01, 0xca, 0xce, 0x81, 0xdf, 0x05, 0x25, 0x71, 0x8d, 0x1f, 0x5a, 0x87, 0x84, 0x06, 0x6f, 0xec, - 0x42, 0xdc, 0x25, 0x3a, 0xb1, 0x0a, 0x25, 0xed, 0x1a, 0xff, 0x51, 0xc0, 0x92, 0x7c, 0xb9, 0x40, + 0x01, 0xca, 0xce, 0x81, 0xdf, 0x07, 0x25, 0x71, 0x8d, 0x1f, 0x5a, 0x87, 0x84, 0x06, 0x6f, 0xec, + 0x42, 0xdc, 0x25, 0x3a, 0xb1, 0x0a, 0x25, 0xed, 0x1a, 0xff, 0x55, 0xc0, 0x92, 0x7c, 0xb9, 0x40, 0x07, 0x2c, 0x3a, 0x98, 0x99, 0x7d, 0x22, 0xb9, 0xf2, 0x54, 0x6f, 0xcd, 0x5d, 0x81, 0x14, 0xb5, 0x7f, 0xc0, 0xb9, 0x6c, 0x20, 0x43, 0xd2, 0x0b, 0x3c, 0x01, 0x8b, 0x24, 0x78, 0x31, 0xcc, 0xcf, - 0xf4, 0x87, 0x23, 0xe1, 0x4b, 0xbe, 0x11, 0xa4, 0x87, 0xc6, 0xd7, 0x0a, 0x00, 0xb1, 0xc9, 0xcb, - 0x6e, 0xda, 0xfb, 0xa0, 0x68, 0x58, 0x3e, 0x65, 0xc4, 0xdb, 0xfe, 0x28, 0xbc, 0x6d, 0x7c, 0x0b, - 0x37, 0x43, 0x21, 0x8a, 0xf5, 0xf0, 0x03, 0x90, 0xc7, 0x3e, 0x3b, 0x96, 0xd7, 0x4d, 0xe5, 0x47, + 0xf4, 0x87, 0x23, 0xe1, 0x4b, 0xbe, 0x11, 0xa4, 0x87, 0xc6, 0x57, 0x0a, 0x00, 0xb1, 0xc9, 0x8b, + 0x6e, 0xda, 0xbb, 0xa0, 0x68, 0x58, 0x3e, 0x65, 0xc4, 0xdb, 0xfe, 0x20, 0xbc, 0x6d, 0x7c, 0x0b, + 0x37, 0x43, 0x21, 0x8a, 0xf5, 0xf0, 0x3d, 0x90, 0xc7, 0x3e, 0x3b, 0x96, 0xd7, 0x4d, 0xe5, 0x47, 0xb6, 0xe5, 0xb3, 0xe3, 0xe7, 0xbc, 0x64, 0xf8, 0xec, 0x38, 0xda, 0x34, 0x61, 0x95, 0xa9, 0x43, - 0xf9, 0x19, 0xd6, 0xa1, 0xc6, 0xe7, 0x15, 0xb0, 0x32, 0xbe, 0xf0, 0xf0, 0x83, 0x04, 0xe9, 0x57, + 0xf9, 0x19, 0xd6, 0xa1, 0xc6, 0x67, 0x15, 0xb0, 0x32, 0xbe, 0xf0, 0xf0, 0xbd, 0x04, 0xe9, 0x57, 0x44, 0x9b, 0x8b, 0xde, 0xe2, 0x13, 0x88, 0x7f, 0x98, 0xcb, 0xfc, 0x85, 0x72, 0x49, 0x53, 0xc7, - 0xdc, 0x9b, 0xa0, 0x8e, 0x93, 0xdf, 0x2a, 0xf9, 0x37, 0xfb, 0x56, 0xf9, 0xff, 0xa1, 0xff, 0x7f, - 0x48, 0x93, 0xe2, 0x45, 0x41, 0xde, 0x3e, 0x9b, 0xdd, 0xdd, 0x9f, 0x0d, 0x2d, 0x5e, 0x9a, 0x11, - 0x2d, 0x4e, 0xbe, 0x34, 0x0a, 0xaf, 0xeb, 0xa5, 0x31, 0x81, 0x7b, 0x17, 0x5f, 0x03, 0xf7, 0x6e, - 0x80, 0x45, 0x1b, 0x9f, 0xb5, 0xba, 0x44, 0x30, 0xfb, 0x62, 0x50, 0xf8, 0xda, 0x42, 0x82, 0xa4, - 0xe6, 0x7f, 0xce, 0xcf, 0x27, 0x93, 0xdc, 0xf2, 0x2b, 0x91, 0xdc, 0x89, 0x5c, 0x7f, 0x79, 0x4a, - 0xae, 0xbf, 0x72, 0x61, 0xae, 0x5f, 0x99, 0x82, 0xeb, 0xbf, 0x07, 0x96, 0x6c, 0x7c, 0xd6, 0xa6, - 0x92, 0x9e, 0xe7, 0xf5, 0x12, 0xa7, 0x60, 0xed, 0x40, 0x84, 0x42, 0x1d, 0x0f, 0xcc, 0xc6, 0x67, - 0xfa, 0x80, 0x11, 0xce, 0xcd, 0x23, 0x1a, 0xdf, 0x96, 0x32, 0x14, 0x69, 0x25, 0x60, 0xc7, 0x3f, - 0xa0, 0x82, 0x94, 0xc7, 0x80, 0x5c, 0x84, 0x42, 0xdd, 0x65, 0xa9, 0x38, 0xdc, 0x01, 0xeb, 0x1e, - 0x3e, 0x62, 0xf7, 0x08, 0xf6, 0xd8, 0x01, 0xc1, 0x6c, 0xdf, 0xb4, 0x89, 0xeb, 0x33, 0x75, 0x3d, - 0x6a, 0x00, 0xeb, 0x68, 0x82, 0x1e, 0x4d, 0x9c, 0x05, 0xb7, 0xc1, 0x1a, 0x97, 0x6f, 0xf1, 0x2b, - 0x6c, 0xba, 0x4e, 0x08, 0xf6, 0x96, 0x00, 0x7b, 0x7b, 0x34, 0xac, 0xaf, 0xa1, 0xac, 0x1a, 0x4d, - 0x9a, 0x03, 0x7f, 0x04, 0x56, 0xb9, 0x78, 0x87, 0x60, 0x4a, 0x42, 0x9c, 0x6f, 0x04, 0xb4, 0x9a, - 0x9f, 0x44, 0x94, 0xd2, 0xa1, 0x8c, 0x35, 0xdc, 0x04, 0x55, 0x2e, 0xdb, 0x74, 0x6d, 0xdb, 0x8c, - 0xf2, 0x7a, 0x5b, 0x40, 0x88, 0x42, 0x8e, 0xd2, 0x4a, 0x94, 0xb5, 0x9f, 0xfe, 0xa9, 0xf2, 0xc7, - 0x79, 0xb0, 0x36, 0xa1, 0xa9, 0xf1, 0xfc, 0x28, 0x73, 0x3d, 0xdc, 0x25, 0xf1, 0xd1, 0x56, 0xe2, - 0xfc, 0x3a, 0x29, 0x1d, 0xca, 0x58, 0xc3, 0x27, 0x00, 0x04, 0xcd, 0xbf, 0xed, 0x1e, 0x4a, 0xc7, - 0xfa, 0x1d, 0xbe, 0xd5, 0xad, 0x48, 0xfa, 0x7c, 0x58, 0xbf, 0x31, 0xe9, 0xff, 0x9a, 0x30, 0x1e, - 0xf6, 0xd8, 0xb5, 0x7c, 0x9b, 0xc4, 0x13, 0x50, 0x02, 0x12, 0xfe, 0x14, 0x80, 0xbe, 0xd0, 0x77, - 0xcc, 0x5f, 0x84, 0xcd, 0xfd, 0x85, 0x3f, 0xfc, 0x6b, 0xe1, 0x5f, 0x4b, 0xda, 0x8f, 0x7d, 0xec, - 0x30, 0x7e, 0x3f, 0xc4, 0xd9, 0x7b, 0x1c, 0xa1, 0xa0, 0x04, 0xa2, 0xae, 0x3d, 0x7d, 0x56, 0x9b, - 0xfb, 0xe2, 0x59, 0x6d, 0xee, 0xcb, 0x67, 0xb5, 0xb9, 0x5f, 0x8e, 0x6a, 0xca, 0xd3, 0x51, 0x4d, - 0xf9, 0x62, 0x54, 0x53, 0xbe, 0x1c, 0xd5, 0x94, 0xaf, 0x46, 0x35, 0xe5, 0xf3, 0xaf, 0x6b, 0x73, - 0x9f, 0x16, 0xc2, 0xb6, 0xf2, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x55, 0xad, 0xa0, 0x66, - 0x1e, 0x00, 0x00, + 0xdc, 0xeb, 0xa0, 0x8e, 0x93, 0xdf, 0x2a, 0xf9, 0xd7, 0xfb, 0x56, 0xf9, 0xe6, 0xd0, 0xff, 0x3f, + 0xa6, 0x49, 0xf1, 0xa2, 0x20, 0x6f, 0x9f, 0xcc, 0xee, 0xee, 0xcf, 0x86, 0x16, 0x2f, 0xcd, 0x88, + 0x16, 0x27, 0x5f, 0x1a, 0x85, 0x57, 0xf5, 0xd2, 0x98, 0xc0, 0xbd, 0x8b, 0xaf, 0x80, 0x7b, 0x37, + 0xc0, 0xa2, 0x8d, 0xcf, 0x5a, 0x5d, 0x22, 0x98, 0x7d, 0x31, 0x28, 0x7c, 0x6d, 0x21, 0x41, 0x52, + 0xf3, 0x7f, 0xe7, 0xe7, 0x93, 0x49, 0x6e, 0xf9, 0xa5, 0x48, 0xee, 0x44, 0xae, 0xbf, 0x3c, 0x25, + 0xd7, 0x5f, 0xb9, 0x30, 0xd7, 0xaf, 0x4c, 0xc1, 0xf5, 0xdf, 0x01, 0x4b, 0x36, 0x3e, 0x6b, 0x53, + 0x49, 0xcf, 0xf3, 0x7a, 0x89, 0x53, 0xb0, 0x76, 0x20, 0x42, 0xa1, 0x8e, 0x07, 0x66, 0xe3, 0x33, + 0x7d, 0xc0, 0x08, 0xe7, 0xe6, 0x11, 0x8d, 0x6f, 0x4b, 0x19, 0x8a, 0xb4, 0x12, 0xb0, 0xe3, 0x1f, + 0x50, 0x41, 0xca, 0x63, 0x40, 0x2e, 0x42, 0xa1, 0xee, 0xb2, 0x54, 0x1c, 0xee, 0x80, 0x75, 0x0f, + 0x1f, 0xb1, 0x7b, 0x04, 0x7b, 0xec, 0x80, 0x60, 0xb6, 0x6f, 0xda, 0xc4, 0xf5, 0x99, 0xba, 0x1e, + 0x35, 0x80, 0x75, 0x34, 0x41, 0x8f, 0x26, 0xce, 0x82, 0xdb, 0x60, 0x8d, 0xcb, 0xb7, 0xf8, 0x15, + 0x36, 0x5d, 0x27, 0x04, 0x7b, 0x43, 0x80, 0xbd, 0x39, 0x1a, 0xd6, 0xd7, 0x50, 0x56, 0x8d, 0x26, + 0xcd, 0x81, 0x3f, 0x01, 0xab, 0x5c, 0xbc, 0x43, 0x30, 0x25, 0x21, 0xce, 0xb7, 0x02, 0x5a, 0xcd, + 0x4f, 0x22, 0x4a, 0xe9, 0x50, 0xc6, 0x1a, 0x6e, 0x82, 0x2a, 0x97, 0x6d, 0xba, 0xb6, 0x6d, 0x46, + 0x79, 0xbd, 0x29, 0x20, 0x44, 0x21, 0x47, 0x69, 0x25, 0xca, 0xda, 0x4f, 0xff, 0x54, 0xf9, 0xd3, + 0x3c, 0x58, 0x9b, 0xd0, 0xd4, 0x78, 0x7e, 0x94, 0xb9, 0x1e, 0xee, 0x92, 0xf8, 0x68, 0x2b, 0x71, + 0x7e, 0x9d, 0x94, 0x0e, 0x65, 0xac, 0xe1, 0x13, 0x00, 0x82, 0xe6, 0xdf, 0x76, 0x0f, 0xa5, 0x63, + 0xfd, 0x0e, 0xdf, 0xea, 0x56, 0x24, 0x7d, 0x3e, 0xac, 0xdf, 0x98, 0xf4, 0x7f, 0x4d, 0x18, 0x0f, + 0x7b, 0xec, 0x5a, 0xbe, 0x4d, 0xe2, 0x09, 0x28, 0x01, 0x09, 0x7f, 0x0e, 0x40, 0x5f, 0xe8, 0x3b, + 0xe6, 0x2f, 0xc3, 0xe6, 0xfe, 0xb5, 0x3f, 0xfc, 0x6b, 0xe1, 0x5f, 0x4b, 0xda, 0x4f, 0x7d, 0xec, + 0x30, 0x7e, 0x3f, 0xc4, 0xd9, 0x7b, 0x1c, 0xa1, 0xa0, 0x04, 0xa2, 0xfe, 0xe9, 0xd3, 0x67, 0xb5, + 0xb9, 0xcf, 0x9f, 0xd5, 0xe6, 0xbe, 0x78, 0x56, 0x9b, 0xfb, 0xd5, 0xa8, 0xa6, 0x3c, 0x1d, 0xd5, + 0x94, 0xcf, 0x47, 0x35, 0xe5, 0x8b, 0x51, 0x4d, 0xf9, 0x72, 0x54, 0x53, 0x3e, 0xfb, 0xaa, 0x36, + 0xf7, 0xf1, 0xed, 0x97, 0xff, 0x6f, 0xf9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x06, 0x32, + 0xa6, 0x98, 0x1e, 0x00, 0x00, } func (m *BusConfig) Marshal() (dAtA []byte, err error) { diff --git a/pkg/apis/eventbus/v1alpha1/generated.proto b/pkg/apis/eventbus/v1alpha1/generated.proto index 6e44617e2b..d05cb3d67a 100644 --- a/pkg/apis/eventbus/v1alpha1/generated.proto +++ b/pkg/apis/eventbus/v1alpha1/generated.proto @@ -28,7 +28,7 @@ import "k8s.io/apimachinery/pkg/runtime/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; // Package-wide variables from generator "generated". -option go_package = "v1alpha1"; +option go_package = "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1"; // BusConfig has the finalized configuration for EventBus message BusConfig { diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index aeace11892..aa9bbeda68 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1770,464 +1770,466 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7308 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0xc7, - 0x71, 0xb0, 0x96, 0xbb, 0x5c, 0xee, 0xd6, 0xf2, 0xb7, 0xef, 0x74, 0x5a, 0xd1, 0xba, 0x9f, 0x8f, - 0x82, 0x0f, 0xd2, 0xf7, 0xc9, 0xe4, 0xa7, 0x4b, 0x1c, 0xcb, 0x52, 0x2c, 0x63, 0x97, 0x3c, 0xde, - 0x51, 0x47, 0xf2, 0x96, 0x3d, 0x3c, 0xe9, 0x64, 0x59, 0x92, 0x87, 0xb3, 0xcd, 0xe5, 0x98, 0xb3, - 0x33, 0xcb, 0x99, 0xd9, 0xbb, 0xe3, 0x01, 0xb1, 0x0d, 0x03, 0x4e, 0x6c, 0xfd, 0xd8, 0x56, 0x12, - 0x27, 0x41, 0x02, 0x03, 0x71, 0x12, 0x38, 0x0f, 0x09, 0xf2, 0x16, 0x23, 0xaf, 0x41, 0xf2, 0x60, - 0x24, 0x79, 0x70, 0xf2, 0xe4, 0xd8, 0xc0, 0xc1, 0x66, 0x90, 0xb7, 0xbc, 0x04, 0x7e, 0x4a, 0x9e, - 0x82, 0xfe, 0x99, 0x9e, 0x9e, 0x9f, 0xe5, 0x71, 0xb9, 0xb3, 0xe4, 0x9d, 0x91, 0x27, 0x72, 0xbb, - 0xaa, 0xab, 0x6a, 0x7a, 0xaa, 0xaa, 0xab, 0xab, 0xbb, 0x6b, 0x60, 0xad, 0x65, 0xfa, 0x3b, 0xdd, - 0xad, 0x79, 0xc3, 0x69, 0x2f, 0xe8, 0x6e, 0xcb, 0xe9, 0xb8, 0xce, 0x17, 0xd9, 0x3f, 0x9f, 0x20, - 0x77, 0x88, 0xed, 0x7b, 0x0b, 0x9d, 0xdd, 0xd6, 0x82, 0xde, 0x31, 0xbd, 0x05, 0xfe, 0xdb, 0xe9, - 0xba, 0x06, 0x59, 0xb8, 0xf3, 0xa2, 0x6e, 0x75, 0x76, 0xf4, 0x17, 0x17, 0x5a, 0xc4, 0x26, 0xae, - 0xee, 0x93, 0xe6, 0x7c, 0xc7, 0x75, 0x7c, 0x07, 0x7d, 0x26, 0x24, 0x37, 0x1f, 0x90, 0x63, 0xff, - 0xbc, 0xcb, 0xbb, 0xcf, 0x77, 0x76, 0x5b, 0xf3, 0x94, 0xdc, 0xbc, 0x42, 0x6e, 0x3e, 0x20, 0x37, - 0xfb, 0xd9, 0x23, 0x4b, 0x63, 0x38, 0xed, 0xb6, 0x63, 0xc7, 0xf9, 0xcf, 0x7e, 0x42, 0x21, 0xd0, - 0x72, 0x5a, 0xce, 0x02, 0x6b, 0xde, 0xea, 0x6e, 0xb3, 0x5f, 0xec, 0x07, 0xfb, 0x4f, 0xa0, 0xcf, - 0xed, 0xbe, 0xe4, 0xcd, 0x9b, 0x0e, 0x25, 0xb9, 0x60, 0x38, 0x2e, 0x7d, 0xb0, 0x04, 0xc9, 0x5f, - 0x0d, 0x71, 0xda, 0xba, 0xb1, 0x63, 0xda, 0xc4, 0xdd, 0x0f, 0xe5, 0x68, 0x13, 0x5f, 0x4f, 0xeb, - 0xb5, 0xd0, 0xab, 0x97, 0xdb, 0xb5, 0x7d, 0xb3, 0x4d, 0x12, 0x1d, 0x7e, 0xed, 0x61, 0x1d, 0x3c, - 0x63, 0x87, 0xb4, 0xf5, 0x78, 0xbf, 0xb9, 0xff, 0xca, 0xc1, 0x4c, 0x6d, 0x6d, 0xa3, 0xb1, 0xe8, - 0xd8, 0x5e, 0xb7, 0x4d, 0x16, 0x1d, 0x7b, 0xdb, 0x6c, 0xa1, 0x4f, 0x42, 0xc5, 0xe0, 0x0d, 0xee, - 0xa6, 0xde, 0xaa, 0xe6, 0x2e, 0xe5, 0x9e, 0x2b, 0xd7, 0xcf, 0xfc, 0xf0, 0xc1, 0xc5, 0x27, 0x0e, - 0x1e, 0x5c, 0xac, 0x2c, 0x86, 0x20, 0xac, 0xe2, 0xa1, 0xe7, 0x61, 0x4c, 0xef, 0xfa, 0x4e, 0xcd, - 0xd8, 0xad, 0x8e, 0x5c, 0xca, 0x3d, 0x57, 0xaa, 0x4f, 0x89, 0x2e, 0x63, 0x35, 0xde, 0x8c, 0x03, - 0x38, 0x5a, 0x80, 0x32, 0xb9, 0x67, 0x58, 0x5d, 0xcf, 0xbc, 0x43, 0xaa, 0x79, 0x86, 0x3c, 0x23, - 0x90, 0xcb, 0x57, 0x03, 0x00, 0x0e, 0x71, 0x28, 0x6d, 0xdb, 0x59, 0x75, 0x0c, 0xdd, 0xaa, 0x16, - 0xa2, 0xb4, 0xd7, 0x79, 0x33, 0x0e, 0xe0, 0xe8, 0x32, 0x14, 0x6d, 0xe7, 0x0d, 0xdd, 0xf4, 0xab, - 0xa3, 0x0c, 0x73, 0x52, 0x60, 0x16, 0xd7, 0x59, 0x2b, 0x16, 0xd0, 0xb9, 0xff, 0xa8, 0xc0, 0x14, - 0x7d, 0xf6, 0xab, 0x54, 0x39, 0x34, 0xa6, 0x4b, 0xe8, 0x3c, 0xe4, 0xbb, 0xae, 0x25, 0x9e, 0xb8, - 0x22, 0x3a, 0xe6, 0x6f, 0xe1, 0x55, 0x4c, 0xdb, 0xd1, 0x4b, 0x30, 0x4e, 0xee, 0x19, 0x3b, 0xba, - 0xdd, 0x22, 0xeb, 0x7a, 0x9b, 0xb0, 0xc7, 0x2c, 0xd7, 0xcf, 0x0a, 0xbc, 0xf1, 0xab, 0x0a, 0x0c, - 0x47, 0x30, 0xd5, 0x9e, 0x9b, 0xfb, 0x1d, 0xfe, 0xcc, 0x29, 0x3d, 0x29, 0x0c, 0x47, 0x30, 0xd1, - 0x15, 0x00, 0xd7, 0xe9, 0xfa, 0xa6, 0xdd, 0xba, 0x41, 0xf6, 0xd9, 0xc3, 0x97, 0xeb, 0x48, 0xf4, - 0x03, 0x2c, 0x21, 0x58, 0xc1, 0x42, 0xbf, 0x01, 0x33, 0x86, 0x63, 0xdb, 0xc4, 0xf0, 0x4d, 0xc7, - 0xae, 0xeb, 0xc6, 0xae, 0xb3, 0xbd, 0xcd, 0x46, 0xa3, 0x72, 0xe5, 0xa5, 0xf9, 0x23, 0x1b, 0x19, - 0xb7, 0x92, 0x79, 0xd1, 0xbf, 0xfe, 0xe4, 0xc1, 0x83, 0x8b, 0x33, 0x8b, 0x71, 0xb2, 0x38, 0xc9, - 0x09, 0xbd, 0x00, 0xa5, 0x2f, 0x7a, 0x8e, 0x5d, 0x77, 0x9a, 0xfb, 0xd5, 0x22, 0x7b, 0x07, 0xd3, - 0x42, 0xe0, 0xd2, 0x6b, 0xda, 0xcd, 0x75, 0xda, 0x8e, 0x25, 0x06, 0xba, 0x05, 0x79, 0xdf, 0xf2, - 0xaa, 0x63, 0x4c, 0xbc, 0x97, 0xfb, 0x16, 0x6f, 0x73, 0x55, 0xe3, 0x6a, 0x5b, 0x1f, 0xa3, 0xef, - 0x6a, 0x73, 0x55, 0xc3, 0x94, 0x1e, 0x7a, 0x2f, 0x07, 0x25, 0x6a, 0x5f, 0x4d, 0xdd, 0xd7, 0xab, - 0xa5, 0x4b, 0xf9, 0xe7, 0x2a, 0x57, 0x3e, 0x3f, 0x3f, 0x90, 0x83, 0x99, 0x8f, 0x69, 0xcb, 0xfc, - 0x9a, 0x20, 0x7f, 0xd5, 0xf6, 0xdd, 0xfd, 0xf0, 0x19, 0x83, 0x66, 0x2c, 0xf9, 0xa3, 0xdf, 0xcf, - 0xc1, 0x54, 0xf0, 0x56, 0x97, 0x88, 0x61, 0xe9, 0x2e, 0xa9, 0x96, 0xd9, 0x03, 0xdf, 0xce, 0x42, - 0xa6, 0x28, 0x65, 0x31, 0x1c, 0x67, 0x0e, 0x1e, 0x5c, 0x9c, 0x8a, 0x81, 0x70, 0x5c, 0x0a, 0xf4, - 0x7e, 0x0e, 0xc6, 0xf7, 0xba, 0xa4, 0x2b, 0xc5, 0x02, 0x26, 0xd6, 0xad, 0x0c, 0xc4, 0xda, 0x50, - 0xc8, 0x0a, 0x99, 0xa6, 0xa9, 0xb2, 0xab, 0xed, 0x38, 0xc2, 0x1c, 0x7d, 0x19, 0xca, 0xec, 0x77, - 0xdd, 0xb4, 0x9b, 0xd5, 0x0a, 0x93, 0x04, 0x67, 0x25, 0x09, 0xa5, 0x29, 0xc4, 0x98, 0xa0, 0x7e, - 0x46, 0x36, 0xe2, 0x90, 0x27, 0xba, 0x0b, 0x63, 0xc2, 0xa5, 0x55, 0xc7, 0x19, 0xfb, 0x46, 0x06, - 0xec, 0x23, 0xde, 0xb5, 0x5e, 0xa1, 0x5e, 0x4b, 0x34, 0xe1, 0x80, 0x1b, 0xba, 0x0d, 0x05, 0xbd, - 0xeb, 0xef, 0x54, 0x27, 0x8e, 0x69, 0x06, 0x75, 0xdd, 0x33, 0x8d, 0x5a, 0xd7, 0xdf, 0xa9, 0x97, - 0x0e, 0x1e, 0x5c, 0x2c, 0xd0, 0xff, 0x30, 0xa3, 0x88, 0x30, 0x94, 0xbb, 0xae, 0xa5, 0x11, 0xc3, - 0x25, 0x7e, 0x75, 0x92, 0x91, 0xff, 0xf8, 0x3c, 0x9f, 0x2f, 0x28, 0x85, 0x79, 0x3a, 0x75, 0xcd, - 0xdf, 0x79, 0x71, 0x9e, 0x63, 0xdc, 0x20, 0xfb, 0x1a, 0xb1, 0x88, 0xe1, 0x3b, 0x2e, 0x1f, 0xa6, - 0x5b, 0x78, 0x95, 0x43, 0x70, 0x48, 0x06, 0xf9, 0x50, 0xdc, 0x36, 0x2d, 0x9f, 0xb8, 0xd5, 0xa9, - 0x4c, 0x46, 0x49, 0xb1, 0xaa, 0x65, 0x46, 0xb7, 0x0e, 0xd4, 0x63, 0xf3, 0xff, 0xb1, 0xe0, 0x35, - 0xfb, 0x0a, 0x4c, 0x44, 0x4c, 0x0e, 0x4d, 0x43, 0x7e, 0x97, 0xec, 0x73, 0x77, 0x8d, 0xe9, 0xbf, - 0xe8, 0x2c, 0x8c, 0xde, 0xd1, 0xad, 0xae, 0x70, 0xcd, 0x98, 0xff, 0x78, 0x79, 0xe4, 0xa5, 0xdc, - 0xdc, 0x8f, 0x72, 0xf0, 0x74, 0x4f, 0x63, 0xa1, 0xf3, 0x4b, 0xb3, 0xeb, 0xea, 0x5b, 0x16, 0x61, - 0xd4, 0x94, 0xf9, 0x65, 0x89, 0x37, 0xe3, 0x00, 0x4e, 0x1d, 0x32, 0x9d, 0xc6, 0x96, 0x88, 0x45, - 0x7c, 0x22, 0x66, 0x3a, 0xe9, 0x90, 0x6b, 0x12, 0x82, 0x15, 0x2c, 0xea, 0x11, 0x4d, 0xdb, 0x27, - 0xae, 0xad, 0x5b, 0x62, 0xba, 0x93, 0xde, 0x62, 0x45, 0xb4, 0x63, 0x89, 0xa1, 0xcc, 0x60, 0x85, - 0x43, 0x67, 0xb0, 0xcf, 0xc0, 0x99, 0x14, 0xed, 0x56, 0xba, 0xe7, 0x0e, 0xed, 0xfe, 0xa7, 0x23, - 0x70, 0x2e, 0xdd, 0x4e, 0xd1, 0x25, 0x28, 0xd8, 0x74, 0x82, 0xe3, 0x13, 0xe1, 0xb8, 0x20, 0x50, - 0x60, 0x13, 0x1b, 0x83, 0xa8, 0x03, 0x36, 0xd2, 0xd7, 0x80, 0xe5, 0x8f, 0x34, 0x60, 0x91, 0x00, - 0xa1, 0x70, 0x84, 0x00, 0xe1, 0x88, 0xb3, 0x3e, 0x25, 0xac, 0xbb, 0xad, 0x6e, 0x9b, 0x2a, 0x21, - 0x9b, 0x9c, 0xca, 0x21, 0xe1, 0x5a, 0x00, 0xc0, 0x21, 0xce, 0xdc, 0x7b, 0xa3, 0xf0, 0x74, 0xed, - 0x7e, 0xd7, 0x25, 0x4c, 0x47, 0xbd, 0xeb, 0xdd, 0x2d, 0x35, 0x60, 0xb8, 0x04, 0x85, 0xed, 0xbd, - 0xa6, 0x1d, 0x1f, 0xa8, 0xe5, 0x8d, 0xa5, 0x75, 0xcc, 0x20, 0xa8, 0x03, 0x67, 0xbc, 0x1d, 0xdd, - 0x25, 0xcd, 0x9a, 0x61, 0x10, 0xcf, 0xbb, 0x41, 0xf6, 0x65, 0xe8, 0x70, 0x64, 0x43, 0x7c, 0xea, - 0xe0, 0xc1, 0xc5, 0x33, 0x5a, 0x92, 0x0a, 0x4e, 0x23, 0x8d, 0x9a, 0x30, 0x15, 0x6b, 0x66, 0x83, - 0x7e, 0x64, 0x6e, 0x6c, 0xe2, 0x88, 0x71, 0xc3, 0x71, 0x92, 0x54, 0x01, 0x76, 0xba, 0x5b, 0xec, - 0x59, 0x78, 0x50, 0x22, 0x15, 0xe0, 0x3a, 0x6f, 0xc6, 0x01, 0x1c, 0xfd, 0xae, 0x3a, 0x15, 0x8f, - 0xb2, 0xa9, 0x78, 0x7b, 0x50, 0xb7, 0xda, 0xeb, 0x8d, 0xf4, 0x31, 0x29, 0x87, 0x4e, 0xac, 0xf8, - 0xb8, 0x38, 0xb1, 0x3f, 0x2e, 0xc2, 0x33, 0xec, 0xd1, 0x99, 0xcd, 0x6a, 0xbe, 0xe3, 0xea, 0x2d, - 0xa2, 0xea, 0xe3, 0x6b, 0x80, 0x3c, 0xde, 0x5a, 0x33, 0x0c, 0xa7, 0x6b, 0xfb, 0xeb, 0xa1, 0x19, - 0xcf, 0x8a, 0xb1, 0x40, 0x5a, 0x02, 0x03, 0xa7, 0xf4, 0x42, 0x2d, 0x98, 0x0e, 0x63, 0x3b, 0xcd, - 0x77, 0x4d, 0xbb, 0xd5, 0x9f, 0xda, 0x9e, 0x3d, 0x78, 0x70, 0x71, 0x7a, 0x31, 0x46, 0x02, 0x27, - 0x88, 0x52, 0x9b, 0x64, 0x33, 0x30, 0x93, 0x35, 0x1f, 0xb5, 0xc9, 0x8d, 0x00, 0x80, 0x43, 0x9c, - 0x48, 0x80, 0x59, 0x78, 0x68, 0x80, 0x79, 0x1e, 0xf2, 0x4d, 0x6b, 0x4f, 0xf8, 0x05, 0x19, 0xd4, - 0x2f, 0xad, 0x6e, 0x60, 0xda, 0x4e, 0x63, 0xb3, 0x50, 0x3b, 0x8b, 0x4c, 0x3b, 0xcd, 0x2c, 0xb4, - 0xb3, 0xc7, 0x2b, 0x3a, 0x96, 0x82, 0x8e, 0x9d, 0x9c, 0x82, 0xa2, 0x57, 0x60, 0xa2, 0x49, 0x0c, - 0xa7, 0x49, 0xd6, 0x88, 0xe7, 0xe9, 0x2d, 0x52, 0x2d, 0xb1, 0x81, 0x7b, 0x52, 0x08, 0x3a, 0xb1, - 0xa4, 0x02, 0x71, 0x14, 0x17, 0x2d, 0xc2, 0xcc, 0x5d, 0xdd, 0xf4, 0x37, 0xcd, 0x36, 0x59, 0xb1, - 0x35, 0x62, 0x38, 0x76, 0xd3, 0x63, 0x91, 0xee, 0x28, 0x5f, 0x3f, 0xbc, 0x11, 0x07, 0xe2, 0x24, - 0xfe, 0x60, 0x26, 0xf2, 0xe3, 0x22, 0xcc, 0xb2, 0xf1, 0xd7, 0x88, 0x7b, 0xc7, 0x34, 0x48, 0xbd, - 0xeb, 0xa9, 0x06, 0x92, 0xa6, 0xd4, 0xb9, 0xa1, 0x2b, 0xf5, 0xc8, 0x11, 0x94, 0x7a, 0x01, 0xca, - 0xbe, 0xd3, 0x31, 0x8d, 0x34, 0x2b, 0xd8, 0x0c, 0x00, 0x38, 0xc4, 0x41, 0x4b, 0x30, 0xed, 0x75, - 0xb7, 0x3c, 0xc3, 0x35, 0x3b, 0x94, 0xaf, 0xe2, 0x8a, 0xab, 0xa2, 0xdf, 0xb4, 0x16, 0x83, 0xe3, - 0x44, 0x8f, 0x60, 0xf9, 0x35, 0x9a, 0xf1, 0xf2, 0xab, 0xbf, 0x35, 0xe0, 0x77, 0x54, 0x1b, 0x1c, - 0x63, 0x36, 0xd8, 0xca, 0xc2, 0x06, 0x53, 0x75, 0xe0, 0x58, 0x16, 0x58, 0x3a, 0x41, 0x0b, 0x7c, - 0x13, 0x9e, 0xda, 0xee, 0x5a, 0xd6, 0xfe, 0x46, 0x57, 0xb7, 0xcc, 0x6d, 0x93, 0x34, 0xe9, 0x8b, - 0xf2, 0x3a, 0xba, 0xc1, 0x17, 0x8d, 0xe5, 0xfa, 0x45, 0x21, 0xf2, 0x53, 0xcb, 0xe9, 0x68, 0xb8, - 0x57, 0xff, 0xc1, 0x4c, 0xeb, 0x27, 0x39, 0x98, 0xa8, 0x9b, 0xfe, 0x56, 0xd7, 0xd8, 0x25, 0x3e, - 0x5d, 0x61, 0x20, 0x17, 0x46, 0xb7, 0xe8, 0xc2, 0x43, 0x98, 0xd0, 0xc6, 0x80, 0xc3, 0x23, 0x89, - 0x87, 0xab, 0x99, 0xf2, 0xc1, 0x83, 0x8b, 0xa3, 0xec, 0x27, 0xe6, 0xac, 0xd0, 0x2d, 0x00, 0x87, - 0x2e, 0x6c, 0x36, 0x9d, 0x5d, 0x62, 0xf7, 0x37, 0x21, 0x4d, 0xd2, 0x88, 0xf3, 0x66, 0x2d, 0xe8, - 0x8c, 0x15, 0x42, 0x73, 0x3f, 0xc8, 0x01, 0x4a, 0xf2, 0x47, 0x37, 0xa1, 0xd4, 0xf5, 0x68, 0x58, - 0x2e, 0xa6, 0xd1, 0x23, 0xf3, 0x1a, 0xa7, 0x2a, 0x75, 0x4b, 0x74, 0xc5, 0x92, 0x08, 0x25, 0xd8, - 0xd1, 0x3d, 0xef, 0xae, 0xe3, 0x36, 0xfb, 0x13, 0x9e, 0x11, 0x6c, 0x88, 0xae, 0x58, 0x12, 0x99, - 0xfb, 0xc5, 0x18, 0x9c, 0x95, 0x82, 0xc7, 0x62, 0x81, 0x26, 0x8b, 0xa6, 0xaf, 0x3b, 0xce, 0xee, - 0x4d, 0x7b, 0xd9, 0xb4, 0x4d, 0x6f, 0x47, 0xac, 0x09, 0x64, 0x2c, 0xb0, 0x94, 0xc0, 0xc0, 0x29, - 0xbd, 0xd0, 0xb7, 0x54, 0x03, 0x1d, 0x61, 0x06, 0xaa, 0x67, 0xf5, 0xb2, 0x8f, 0x6b, 0x9a, 0x63, - 0x77, 0xc9, 0xd6, 0x8e, 0xe3, 0xec, 0x8a, 0xe8, 0x76, 0x6d, 0x40, 0x79, 0xde, 0xe0, 0xd4, 0x16, - 0x1d, 0xdb, 0x27, 0xf7, 0x7c, 0xbe, 0x4c, 0x17, 0x6d, 0x38, 0x60, 0x85, 0xbe, 0x28, 0x96, 0xe9, - 0x05, 0xc6, 0x72, 0x35, 0xab, 0x21, 0x48, 0x5d, 0xb8, 0xcf, 0x41, 0x91, 0xf7, 0x62, 0x31, 0x73, - 0x99, 0xbb, 0x0a, 0x1e, 0xf3, 0x62, 0x01, 0x41, 0x9f, 0x80, 0x51, 0xe7, 0xae, 0x2d, 0x42, 0xd8, - 0x72, 0xfd, 0x29, 0x31, 0x60, 0x53, 0x4b, 0xa4, 0xe3, 0x12, 0x43, 0xf7, 0x49, 0xf3, 0x26, 0x05, - 0x63, 0x8e, 0x85, 0x7e, 0x1d, 0x80, 0x8a, 0x48, 0x0c, 0xaa, 0x59, 0x2c, 0xaa, 0x28, 0xd7, 0x9f, - 0x11, 0x7d, 0xce, 0x86, 0x7d, 0x1a, 0x12, 0x07, 0x2b, 0xf8, 0xe8, 0x3a, 0x4c, 0xba, 0xa4, 0xe3, - 0x78, 0xa6, 0xef, 0xb8, 0xfb, 0x9a, 0xd5, 0x6d, 0x31, 0xaf, 0x58, 0xae, 0x5f, 0x12, 0x14, 0xaa, - 0x21, 0x05, 0x1c, 0xc1, 0xc3, 0xb1, 0x7e, 0xe8, 0x83, 0x1c, 0x8c, 0xcb, 0x26, 0x93, 0xd0, 0x10, - 0x21, 0x9f, 0x41, 0xae, 0x47, 0x8e, 0x67, 0xc8, 0x3e, 0xcc, 0xb1, 0x62, 0x85, 0x1f, 0x8e, 0x70, - 0x57, 0xdc, 0x3c, 0x3c, 0x2e, 0x2b, 0x81, 0xfb, 0x70, 0x26, 0xe5, 0x69, 0xd1, 0xb3, 0x81, 0x3e, - 0xf0, 0x90, 0x7f, 0x42, 0x3c, 0xfc, 0x68, 0x44, 0x0b, 0x5e, 0x4d, 0xbc, 0x47, 0x1e, 0x9f, 0x9c, - 0x13, 0xd8, 0x93, 0x87, 0xbf, 0xbd, 0xb9, 0x3f, 0xaf, 0xc0, 0xac, 0x64, 0x4e, 0xa7, 0x58, 0xe2, - 0xaa, 0x7e, 0x47, 0xb1, 0xcc, 0xdc, 0xc9, 0x59, 0x66, 0x54, 0xb5, 0x47, 0x06, 0x56, 0xed, 0xfc, - 0x31, 0x55, 0xfb, 0x39, 0x28, 0x09, 0xba, 0x5e, 0xb5, 0xc0, 0xec, 0x96, 0x3b, 0x6e, 0xd1, 0x86, - 0x25, 0x14, 0xfd, 0x76, 0xdc, 0x08, 0xf8, 0xd2, 0xf8, 0x76, 0x56, 0x46, 0xc0, 0xdf, 0x4c, 0x9f, - 0xa6, 0x10, 0x3a, 0x9d, 0x62, 0x4f, 0xa7, 0xb3, 0x0b, 0xe7, 0xbd, 0x5d, 0xb3, 0x53, 0x77, 0x75, - 0xdb, 0xd8, 0xc1, 0x64, 0xdb, 0x5b, 0x64, 0x19, 0xb5, 0xe6, 0x4d, 0xfb, 0x66, 0x87, 0xd8, 0x0d, - 0xcc, 0x1c, 0x4b, 0xa9, 0xfe, 0x71, 0xc1, 0xee, 0xbc, 0x76, 0x18, 0x32, 0x3e, 0x9c, 0x16, 0xba, - 0x0d, 0x15, 0x9d, 0x25, 0x1d, 0xf8, 0x7c, 0x5f, 0xea, 0x67, 0xca, 0x9c, 0x3a, 0x78, 0x70, 0xb1, - 0x52, 0x0b, 0x7b, 0x63, 0x95, 0x14, 0x7a, 0x07, 0x26, 0x84, 0xf2, 0x88, 0xe4, 0x68, 0xb9, 0x1f, - 0xda, 0x33, 0x74, 0x2d, 0xf4, 0x86, 0xda, 0x1f, 0x47, 0xc9, 0xa1, 0xd7, 0xe1, 0xdc, 0x56, 0xf0, - 0x2e, 0x3c, 0xf6, 0x2e, 0xea, 0xba, 0x47, 0x6e, 0xe1, 0x55, 0xe6, 0x65, 0xca, 0xf5, 0x0b, 0x62, - 0x7c, 0xce, 0xc5, 0xde, 0x98, 0xc0, 0xc2, 0x3d, 0x7a, 0xf7, 0x98, 0xd7, 0x2b, 0xc7, 0x9a, 0xd7, - 0x23, 0x81, 0xf7, 0x78, 0x26, 0x81, 0x77, 0x6f, 0xcf, 0x70, 0xac, 0xc0, 0x7b, 0xe2, 0x04, 0x03, - 0x6f, 0xb1, 0x16, 0x9a, 0xcc, 0x78, 0x2d, 0xf4, 0x0a, 0x4c, 0x18, 0x3b, 0xc4, 0xd8, 0x65, 0xa9, - 0xde, 0x3b, 0xba, 0xc5, 0x92, 0xe6, 0xe5, 0x70, 0x45, 0xbd, 0xa8, 0x02, 0x71, 0x14, 0x77, 0xb0, - 0x59, 0xe2, 0x5b, 0x39, 0x78, 0xba, 0xa7, 0x3f, 0x40, 0x57, 0x22, 0x2e, 0x33, 0x17, 0xdd, 0x5a, - 0xec, 0xe1, 0x28, 0x07, 0x9d, 0x3b, 0xfe, 0x6c, 0x14, 0xce, 0x2c, 0xea, 0x16, 0xb1, 0x9b, 0x7a, - 0x64, 0xd2, 0x78, 0x01, 0x4a, 0x9e, 0xb1, 0x43, 0x9a, 0x5d, 0x2b, 0x48, 0x57, 0x49, 0xf5, 0xd0, - 0x44, 0x3b, 0x96, 0x18, 0x32, 0x9f, 0x4e, 0x07, 0x73, 0x24, 0x8a, 0x2d, 0xc7, 0x51, 0x62, 0xa0, - 0x97, 0x61, 0x52, 0x24, 0x8a, 0x1d, 0x7b, 0x49, 0xf7, 0x89, 0x57, 0xcd, 0x33, 0xdf, 0x86, 0xa8, - 0xbc, 0x57, 0x23, 0x10, 0x1c, 0xc3, 0xa4, 0x9c, 0x7c, 0xb3, 0x4d, 0xee, 0x3b, 0x76, 0xb0, 0xb8, - 0x96, 0x9c, 0x36, 0x45, 0x3b, 0x96, 0x18, 0xe8, 0x9b, 0xc9, 0x4c, 0xe7, 0x17, 0x06, 0xd4, 0xdc, - 0x94, 0xc1, 0xea, 0xc3, 0x8e, 0xbe, 0x9a, 0x83, 0x4a, 0x87, 0xb8, 0x9e, 0xe9, 0xf9, 0xc4, 0x36, - 0x88, 0xc8, 0x74, 0xde, 0xcc, 0xc2, 0x9a, 0x1a, 0x21, 0x59, 0xee, 0x68, 0x95, 0x06, 0xac, 0x32, - 0x3d, 0x9d, 0x55, 0xf4, 0x60, 0x86, 0x73, 0x0f, 0xce, 0x2e, 0xea, 0xbe, 0xb1, 0xd3, 0xed, 0x70, - 0x8b, 0xee, 0xba, 0xba, 0x6f, 0x3a, 0x36, 0x7a, 0x1e, 0xc6, 0x88, 0xad, 0x6f, 0x59, 0xa4, 0x19, - 0xdf, 0x27, 0xba, 0xca, 0x9b, 0x71, 0x00, 0x47, 0x9f, 0x84, 0x4a, 0x5b, 0xbf, 0xb7, 0x24, 0x7a, - 0x0a, 0x35, 0x95, 0xa7, 0x28, 0xd6, 0x42, 0x10, 0x56, 0xf1, 0xe6, 0xbe, 0x04, 0x67, 0x39, 0xcb, - 0x35, 0xbd, 0xa3, 0x8c, 0xe8, 0x11, 0xb6, 0x64, 0x96, 0x60, 0xda, 0x70, 0x89, 0xee, 0x93, 0x95, - 0xed, 0x75, 0xc7, 0xbf, 0x7a, 0xcf, 0xf4, 0x7c, 0xb1, 0x37, 0x23, 0xf3, 0x41, 0x8b, 0x31, 0x38, - 0x4e, 0xf4, 0x98, 0xfb, 0xf6, 0x18, 0xa0, 0xab, 0x6d, 0xd3, 0xf7, 0xa3, 0x41, 0xdd, 0x65, 0x28, - 0x6e, 0xb9, 0xce, 0xae, 0x8c, 0x2c, 0xe5, 0xfe, 0x4a, 0x9d, 0xb5, 0x62, 0x01, 0xa5, 0x3e, 0xc5, - 0xd8, 0xd1, 0x6d, 0x9b, 0x58, 0x61, 0x18, 0x26, 0x7d, 0xca, 0xa2, 0x84, 0x60, 0x05, 0x8b, 0x9d, - 0x37, 0xe1, 0xbf, 0x94, 0xdc, 0x57, 0x78, 0xde, 0x24, 0x04, 0x61, 0x15, 0x2f, 0xb2, 0x34, 0x2f, - 0x64, 0xbd, 0x34, 0x1f, 0xcd, 0x60, 0x69, 0x9e, 0x7e, 0x0e, 0xa3, 0x78, 0x2a, 0xe7, 0x30, 0xc6, - 0x8e, 0x7a, 0x0e, 0xa3, 0x94, 0xf1, 0xe4, 0xf7, 0xa1, 0xea, 0x12, 0xf9, 0x32, 0xef, 0xdd, 0x41, - 0xed, 0x3f, 0xa1, 0x9e, 0xc7, 0x8a, 0x2c, 0x1e, 0x9b, 0xb5, 0xde, 0x47, 0x23, 0x30, 0x1d, 0x77, - 0xb9, 0xe8, 0x3e, 0x8c, 0x19, 0xdc, 0x43, 0x89, 0x55, 0x96, 0x36, 0xf0, 0x44, 0x93, 0xf4, 0x77, - 0xe2, 0xb0, 0x02, 0x87, 0xe0, 0x80, 0x21, 0xfa, 0x4a, 0x0e, 0xca, 0x46, 0xe0, 0xa4, 0x44, 0x16, - 0x6b, 0x60, 0xf6, 0x29, 0x4e, 0x8f, 0x9f, 0x40, 0x90, 0x10, 0x1c, 0x32, 0x9d, 0xfb, 0xe9, 0x08, - 0x54, 0x54, 0xff, 0xf4, 0x05, 0x45, 0xcb, 0xf8, 0x78, 0xfc, 0x7f, 0xc5, 0x76, 0xe5, 0xa1, 0xb8, - 0x50, 0x08, 0x8a, 0x4d, 0xad, 0xf9, 0xe6, 0x16, 0x0d, 0x6d, 0xe8, 0xcb, 0x09, 0xfd, 0x54, 0xd8, - 0xa6, 0x28, 0x4e, 0x07, 0x0a, 0x5e, 0x87, 0x18, 0xe2, 0x71, 0xd7, 0xb3, 0x53, 0x1b, 0xad, 0x43, - 0x8c, 0xd0, 0xa1, 0xd3, 0x5f, 0x98, 0x71, 0x42, 0xf7, 0xa0, 0xe8, 0xf9, 0xba, 0xdf, 0xf5, 0x44, - 0x86, 0x2b, 0x43, 0x55, 0xd5, 0x18, 0xdd, 0xd0, 0x8b, 0xf3, 0xdf, 0x58, 0xf0, 0x9b, 0xbb, 0x06, - 0x33, 0x09, 0xbd, 0xa6, 0xae, 0x9d, 0xdc, 0xeb, 0xb8, 0xc4, 0xa3, 0xd1, 0x51, 0x3c, 0x5c, 0xbc, - 0x2a, 0x21, 0x58, 0xc1, 0x9a, 0xfb, 0x59, 0x0e, 0xa6, 0x14, 0x4a, 0xab, 0xa6, 0xe7, 0xa3, 0xcf, - 0x27, 0x5e, 0xd5, 0xfc, 0xd1, 0x5e, 0x15, 0xed, 0xcd, 0x5e, 0x94, 0xb4, 0xef, 0xa0, 0x45, 0x79, - 0x4d, 0x0e, 0x8c, 0x9a, 0x3e, 0x69, 0x7b, 0x22, 0x4b, 0xf9, 0x5a, 0x76, 0x63, 0x16, 0x66, 0x53, - 0x56, 0x28, 0x03, 0xcc, 0xf9, 0xcc, 0xfd, 0xdd, 0x72, 0xe4, 0x11, 0xe9, 0xfb, 0x63, 0xc7, 0xfd, - 0x68, 0x53, 0xbd, 0xeb, 0x29, 0x1b, 0xb0, 0xe1, 0x71, 0x3f, 0x05, 0x86, 0x23, 0x98, 0x68, 0x0f, - 0x4a, 0x3e, 0x69, 0x77, 0x2c, 0xdd, 0x0f, 0xce, 0x08, 0x5c, 0x1b, 0xf0, 0x09, 0x36, 0x05, 0x39, - 0x3e, 0x4b, 0x05, 0xbf, 0xb0, 0x64, 0x83, 0xda, 0x30, 0xe6, 0xf1, 0x7d, 0x12, 0xa1, 0x67, 0xcb, - 0x03, 0x72, 0x0c, 0x76, 0x5d, 0x98, 0xf3, 0x10, 0x3f, 0x70, 0xc0, 0x03, 0x7d, 0x09, 0x46, 0xdb, - 0xa6, 0x6d, 0x3a, 0x2c, 0x3b, 0x52, 0xb9, 0xf2, 0x66, 0xb6, 0x86, 0x34, 0xbf, 0x46, 0x69, 0xf3, - 0x69, 0x40, 0xbe, 0x2f, 0xd6, 0x86, 0x39, 0x5b, 0x76, 0x30, 0xd0, 0x10, 0x41, 0xb5, 0x88, 0xd1, - 0x3f, 0x9f, 0xb1, 0x0c, 0x32, 0x66, 0x8f, 0xce, 0x46, 0x41, 0x33, 0x96, 0xfc, 0xd1, 0x7d, 0x28, - 0x6c, 0x9b, 0x16, 0x11, 0xfb, 0xce, 0xb7, 0x33, 0x96, 0x63, 0xd9, 0xb4, 0x08, 0x97, 0x21, 0x3c, - 0x99, 0x62, 0x5a, 0x04, 0x33, 0x9e, 0x6c, 0x20, 0x5c, 0xc2, 0x69, 0x88, 0x4d, 0xb7, 0xac, 0x07, - 0x02, 0x0b, 0xf2, 0xb1, 0x81, 0x08, 0x9a, 0xb1, 0xe4, 0x8f, 0x7e, 0x33, 0x17, 0x66, 0x0d, 0xf9, - 0x69, 0xcd, 0xb7, 0x32, 0x96, 0x45, 0xe4, 0x6a, 0xb8, 0x28, 0x32, 0x6c, 0x4f, 0xe4, 0x11, 0xef, - 0x43, 0x41, 0x6f, 0xef, 0x75, 0x44, 0xa8, 0x92, 0xf5, 0x1b, 0xa9, 0xb5, 0xf7, 0x3a, 0xb1, 0x37, - 0x52, 0x5b, 0xdb, 0x68, 0x60, 0xc6, 0x93, 0x9a, 0xc6, 0xae, 0xbe, 0xbd, 0xab, 0x57, 0x61, 0x28, - 0xa6, 0x71, 0x83, 0xd2, 0x8e, 0x99, 0x06, 0x6b, 0xc3, 0x9c, 0x2d, 0x7d, 0xf6, 0xf6, 0x9e, 0xef, - 0x57, 0x2b, 0x43, 0x79, 0xf6, 0xb5, 0x3d, 0xdf, 0x8f, 0x3d, 0xfb, 0xda, 0xc6, 0xe6, 0x26, 0x66, - 0x3c, 0x29, 0x6f, 0x5b, 0xf7, 0x3d, 0x91, 0x84, 0xca, 0x9a, 0xf7, 0xba, 0xee, 0x7b, 0x31, 0xde, - 0xeb, 0xb5, 0x4d, 0x0d, 0x33, 0x9e, 0xe8, 0x0e, 0xe4, 0x3d, 0xdb, 0xab, 0x4e, 0x30, 0xd6, 0x6f, - 0x64, 0xcc, 0x5a, 0xb3, 0x05, 0x67, 0x79, 0xf4, 0x44, 0x5b, 0xd7, 0x30, 0x65, 0xc8, 0xf8, 0xee, - 0x79, 0xd5, 0xc9, 0xe1, 0xf0, 0xdd, 0x4b, 0xf0, 0xdd, 0xa0, 0x7c, 0xf7, 0x3c, 0xf4, 0xd5, 0x1c, - 0x14, 0x3b, 0xdd, 0x2d, 0xad, 0xbb, 0x55, 0x9d, 0x62, 0xbc, 0x3f, 0x97, 0x31, 0xef, 0x06, 0x23, - 0xce, 0xd9, 0xcb, 0x18, 0x83, 0x37, 0x62, 0xc1, 0x99, 0x09, 0xc1, 0xb9, 0x56, 0xa7, 0x87, 0x22, - 0xc4, 0x35, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0xc4, 0x82, 0x73, 0x20, 0x84, 0xa5, 0x6f, 0x55, 0x67, - 0x86, 0x25, 0x84, 0xa5, 0xa7, 0x08, 0x61, 0xe9, 0x5c, 0x08, 0x4b, 0xdf, 0xa2, 0xaa, 0xbf, 0xd3, - 0xdc, 0xf6, 0xaa, 0x68, 0x28, 0xaa, 0x7f, 0xbd, 0xb9, 0x1d, 0x57, 0xfd, 0xeb, 0x4b, 0xcb, 0x1a, - 0x66, 0x3c, 0xa9, 0xcb, 0xf1, 0x2c, 0xdd, 0xd8, 0xad, 0x9e, 0x19, 0x8a, 0xcb, 0xd1, 0x28, 0xed, - 0x98, 0xcb, 0x61, 0x6d, 0x98, 0xb3, 0x45, 0xbf, 0x97, 0x83, 0x8a, 0x38, 0x7b, 0x76, 0xcd, 0x35, - 0x9b, 0xd5, 0xb3, 0xd9, 0xac, 0x10, 0xe3, 0x62, 0x84, 0x1c, 0xb8, 0x30, 0x32, 0xbb, 0xa0, 0x40, - 0xb0, 0x2a, 0x08, 0xfa, 0x93, 0x1c, 0x4c, 0xea, 0x91, 0x53, 0x86, 0xd5, 0x27, 0x99, 0x6c, 0x5b, - 0x59, 0x4f, 0x09, 0xd1, 0xa3, 0x8c, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x02, 0x71, 0x4c, 0x22, 0xa6, - 0xbe, 0x9e, 0xef, 0x9a, 0x1d, 0x52, 0x3d, 0x37, 0x14, 0xf5, 0xd5, 0x18, 0xf1, 0x98, 0xfa, 0xf2, - 0x46, 0x2c, 0x38, 0xb3, 0xa9, 0x9b, 0xf0, 0x25, 0x79, 0xf5, 0xa9, 0xa1, 0x4c, 0xdd, 0xc1, 0x82, - 0x3f, 0x3a, 0x75, 0x8b, 0x56, 0x1c, 0x30, 0xa7, 0xba, 0xec, 0x92, 0xa6, 0xe9, 0x55, 0xab, 0x43, - 0xd1, 0x65, 0x4c, 0x69, 0xc7, 0x74, 0x99, 0xb5, 0x61, 0xce, 0x96, 0xba, 0x73, 0xdb, 0xdb, 0xab, - 0x3e, 0x3d, 0x14, 0x77, 0xbe, 0xee, 0xed, 0xc5, 0xdc, 0xf9, 0xba, 0xb6, 0x81, 0x29, 0x43, 0xe1, - 0xce, 0x2d, 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, 0xd3, 0x46, 0x2c, - 0x38, 0x33, 0x2d, 0x60, 0xd7, 0xcb, 0x4c, 0xa3, 0xfa, 0xb1, 0xa1, 0x68, 0xc1, 0x35, 0x4e, 0x3d, - 0xa6, 0x05, 0xa2, 0x15, 0x07, 0xcc, 0xd1, 0x73, 0x34, 0xaa, 0xed, 0x58, 0xa6, 0xa1, 0x7b, 0xd5, - 0x67, 0xd8, 0xc9, 0xc3, 0x71, 0x1e, 0x73, 0xf2, 0x36, 0x2c, 0xa1, 0xe8, 0xfb, 0x39, 0x98, 0x8a, - 0xed, 0xb1, 0x55, 0xcf, 0x33, 0xd1, 0x8d, 0x8c, 0x45, 0xaf, 0x47, 0xb9, 0xf0, 0x47, 0x90, 0x87, - 0x35, 0xe2, 0x3b, 0x34, 0x71, 0xa1, 0xd0, 0x37, 0x73, 0x50, 0x96, 0x6d, 0xd5, 0x0b, 0x4c, 0xc4, - 0xb7, 0x87, 0x25, 0x22, 0x17, 0x4e, 0x1e, 0x3d, 0x0c, 0x4f, 0x19, 0x84, 0x22, 0x30, 0xaf, 0xcd, - 0x74, 0x5e, 0xf3, 0x5d, 0xa2, 0xb7, 0xab, 0x17, 0x87, 0xe2, 0xb5, 0x71, 0xc8, 0x21, 0xe6, 0xb5, - 0x15, 0x08, 0x56, 0x05, 0x61, 0xaf, 0x54, 0x8f, 0x9e, 0xfc, 0xab, 0x5e, 0x1a, 0xca, 0x2b, 0x8d, - 0x9f, 0x2f, 0x8c, 0xbe, 0xd2, 0x18, 0x14, 0xc7, 0x85, 0x42, 0x7f, 0x95, 0x83, 0x19, 0x3d, 0x7e, - 0x4c, 0xb8, 0xfa, 0x7f, 0x98, 0xa8, 0x64, 0x18, 0xa2, 0x46, 0x8e, 0x23, 0x33, 0x61, 0x9f, 0x16, - 0xc2, 0xce, 0x24, 0xe0, 0x38, 0x29, 0x1a, 0x0d, 0x52, 0xbc, 0x6d, 0xbf, 0x53, 0x9d, 0x1b, 0x4a, - 0x90, 0xa2, 0x6d, 0xfb, 0xf1, 0x75, 0x91, 0xb6, 0xbc, 0xd9, 0xc0, 0x8c, 0x27, 0x8f, 0xd2, 0x88, - 0xeb, 0x9a, 0x7e, 0xf5, 0xd9, 0xe1, 0x44, 0x69, 0x8c, 0x78, 0x3c, 0x4a, 0x63, 0x8d, 0x58, 0x70, - 0x9e, 0xed, 0x02, 0x84, 0xb9, 0x85, 0x94, 0xfc, 0xed, 0x86, 0x9a, 0xbf, 0xad, 0x5c, 0x79, 0xa5, - 0xef, 0x0c, 0xba, 0xf6, 0x2b, 0x35, 0xd7, 0x37, 0xb7, 0x75, 0xc3, 0x57, 0x92, 0xbf, 0xb3, 0xdf, - 0xca, 0xc1, 0x44, 0x24, 0x9f, 0x90, 0xc2, 0x7a, 0x27, 0xca, 0x1a, 0x67, 0xbf, 0xe5, 0xa8, 0x4a, - 0xf4, 0x5b, 0x39, 0x28, 0xcb, 0xcc, 0x42, 0x8a, 0x34, 0xcd, 0xa8, 0x34, 0x83, 0x66, 0x4a, 0x19, - 0xab, 0x74, 0x49, 0xe8, 0xd8, 0x44, 0x52, 0x0c, 0xc3, 0x1f, 0x1b, 0xc9, 0x2e, 0x5d, 0xa2, 0x0f, - 0x73, 0x30, 0xae, 0x26, 0x1a, 0x52, 0x04, 0x6a, 0x45, 0x05, 0xda, 0xc8, 0xe6, 0x70, 0xd4, 0x21, - 0xef, 0x4a, 0xe6, 0x1c, 0x86, 0xff, 0xae, 0x62, 0x37, 0x64, 0x55, 0x49, 0xbe, 0x91, 0x03, 0x08, - 0x13, 0x10, 0x29, 0xa2, 0x90, 0xa8, 0x28, 0x83, 0xee, 0x51, 0x73, 0x5e, 0xbd, 0x47, 0x45, 0x66, - 0x23, 0x86, 0x3f, 0x2a, 0x6b, 0x1b, 0x9b, 0x9b, 0x3d, 0x24, 0xf9, 0x7a, 0x0e, 0xca, 0x32, 0x37, - 0x31, 0xfc, 0x41, 0x59, 0xaf, 0x6d, 0x6a, 0x7c, 0xf5, 0x90, 0x14, 0xe5, 0x6b, 0x39, 0x28, 0x05, - 0xb9, 0x8a, 0x14, 0x49, 0x8c, 0xa8, 0x24, 0x83, 0x9e, 0xe9, 0xd3, 0xd6, 0xb5, 0x1e, 0x43, 0xc2, - 0xe4, 0xd8, 0x3b, 0x31, 0x39, 0x36, 0x7a, 0xc9, 0xf1, 0x7e, 0x0e, 0x2a, 0x4a, 0x1e, 0x23, 0x45, - 0x94, 0xed, 0xa8, 0x28, 0x83, 0x6e, 0xcf, 0x08, 0x66, 0xbd, 0xa5, 0x51, 0x12, 0x1a, 0xc3, 0x97, - 0x46, 0x30, 0x3b, 0x54, 0x9a, 0x20, 0xb3, 0x71, 0x22, 0xd2, 0x50, 0x66, 0xbd, 0xcd, 0x59, 0x66, - 0x39, 0x86, 0x6f, 0xce, 0xd7, 0x97, 0x96, 0xb5, 0x43, 0x9c, 0x5c, 0x98, 0xf2, 0x18, 0xbe, 0x3d, - 0x73, 0x5e, 0xe9, 0xb2, 0x7c, 0x27, 0x07, 0xd3, 0xf1, 0xbc, 0x47, 0x8a, 0x44, 0xbb, 0x51, 0x89, - 0x06, 0xbd, 0xf8, 0xaf, 0x72, 0x4c, 0x97, 0xeb, 0x8f, 0x72, 0x70, 0x26, 0x25, 0xe7, 0x91, 0x22, - 0x9a, 0x1d, 0x15, 0xed, 0xf6, 0xb0, 0xee, 0x8c, 0xc6, 0x35, 0x5b, 0x49, 0x7a, 0x0c, 0x5f, 0xb3, - 0x05, 0xb3, 0xde, 0xe1, 0x84, 0x9a, 0xfc, 0x18, 0x7e, 0x38, 0x91, 0x3c, 0x5b, 0x11, 0xd7, 0xef, - 0x30, 0x0d, 0x32, 0x7c, 0xfd, 0xe6, 0xbc, 0x7a, 0xcf, 0x13, 0x41, 0x52, 0x64, 0xf8, 0xf3, 0xc4, - 0xba, 0xb6, 0x71, 0xe8, 0x3c, 0x21, 0x13, 0x24, 0x27, 0x31, 0x4f, 0x30, 0x66, 0xbd, 0x35, 0x46, - 0x4d, 0x94, 0x0c, 0x5f, 0x63, 0x02, 0x6e, 0xe9, 0xf2, 0x7c, 0x37, 0xa7, 0xdc, 0x4e, 0x52, 0xb2, - 0x1f, 0x29, 0x72, 0x39, 0x51, 0xb9, 0xde, 0x1c, 0xda, 0x39, 0x64, 0x55, 0xbe, 0x8f, 0x72, 0x30, - 0x19, 0x4d, 0x7d, 0xa4, 0x48, 0x66, 0x46, 0x25, 0xd3, 0x86, 0x70, 0xf3, 0x29, 0xee, 0xb9, 0xe3, - 0xb9, 0x8f, 0xe1, 0x7b, 0x6e, 0x95, 0x63, 0xef, 0x77, 0x99, 0x96, 0xf6, 0x18, 0xfe, 0xbb, 0xec, - 0x7d, 0x99, 0x53, 0x95, 0xef, 0x7b, 0x39, 0x38, 0x97, 0x9e, 0xeb, 0x48, 0x91, 0x70, 0x2f, 0x2a, - 0xe1, 0x5b, 0x43, 0xbc, 0xf2, 0x1d, 0x8f, 0x55, 0x64, 0xb2, 0x63, 0xf8, 0xb1, 0x8a, 0xb6, 0xbc, - 0xd9, 0x38, 0x2c, 0x86, 0x0b, 0xf3, 0x1e, 0x27, 0x10, 0xc3, 0x71, 0x66, 0xa9, 0xd2, 0xcc, 0xf9, - 0x91, 0x13, 0x47, 0xfc, 0x38, 0x12, 0x7a, 0x57, 0x1e, 0x80, 0xe2, 0xe7, 0x84, 0x3e, 0xd5, 0x7f, - 0x4e, 0xe5, 0xf0, 0x73, 0x4e, 0x7f, 0x5b, 0x80, 0xa9, 0x58, 0x7e, 0x81, 0x95, 0x1e, 0xa1, 0x3f, - 0x59, 0x9d, 0xae, 0x5c, 0xf4, 0x1e, 0xf6, 0xd5, 0x00, 0x80, 0x43, 0x1c, 0xf4, 0x51, 0x0e, 0xa6, - 0xee, 0xea, 0xbe, 0xb1, 0xd3, 0xd0, 0xfd, 0x1d, 0x7e, 0x58, 0x2d, 0xa3, 0xb7, 0xf7, 0x46, 0x94, - 0x6a, 0x98, 0x5e, 0x8c, 0x01, 0x70, 0x9c, 0x3f, 0x7a, 0x1e, 0xc6, 0x3a, 0x8e, 0x65, 0x99, 0x76, - 0x4b, 0x14, 0x5c, 0x91, 0xf9, 0xf2, 0x06, 0x6f, 0xc6, 0x01, 0x3c, 0x5a, 0x28, 0xab, 0x90, 0xc9, - 0x31, 0x90, 0xd8, 0x90, 0x1e, 0xeb, 0x74, 0xe6, 0xe8, 0xe3, 0x72, 0x3a, 0xf3, 0x9f, 0x0b, 0x80, - 0x92, 0x73, 0xe0, 0xc3, 0x4a, 0xc9, 0x5d, 0x86, 0xa2, 0x11, 0xaa, 0x8a, 0x72, 0x9e, 0x5a, 0xbc, - 0x51, 0x01, 0xe5, 0x37, 0x1d, 0x3c, 0x62, 0x74, 0x5d, 0x92, 0xac, 0x1c, 0xc4, 0xdb, 0xb1, 0xc4, - 0xe8, 0xb3, 0x30, 0xc6, 0x87, 0xc9, 0xdb, 0x0a, 0xef, 0x66, 0x1e, 0x0c, 0xf4, 0xf1, 0xf2, 0x6f, - 0xb1, 0x42, 0x41, 0x3b, 0xe2, 0x36, 0x56, 0xb1, 0xef, 0x9b, 0xdd, 0x35, 0xd9, 0x19, 0x2b, 0x84, - 0x4e, 0xa7, 0x8c, 0xc6, 0x60, 0x3a, 0xf5, 0xd3, 0x22, 0xcc, 0x24, 0xdc, 0xe5, 0x29, 0x5d, 0xac, - 0x7c, 0x01, 0x4a, 0xf4, 0xaf, 0x52, 0xc7, 0x42, 0xbe, 0xc3, 0xeb, 0xa2, 0x1d, 0x4b, 0x0c, 0xe5, - 0xfe, 0x60, 0xbe, 0xe7, 0xfd, 0xc1, 0xdb, 0x91, 0x4b, 0xd4, 0x59, 0xd6, 0x3a, 0x7b, 0x05, 0x26, - 0x78, 0xb6, 0x3e, 0xb8, 0x69, 0x37, 0x1a, 0xbd, 0x69, 0x75, 0x4d, 0x05, 0xe2, 0x28, 0x6e, 0x8f, - 0x7b, 0x75, 0xc5, 0x63, 0xdd, 0xab, 0xfb, 0x20, 0x59, 0xd0, 0xe2, 0x9d, 0xac, 0xa7, 0xcf, 0x3e, - 0x2c, 0x4b, 0xbd, 0x94, 0x5a, 0x3a, 0xf4, 0x52, 0xea, 0x02, 0x94, 0x3d, 0xcf, 0x7a, 0x9d, 0xb8, - 0xe6, 0xf6, 0x3e, 0xbb, 0x10, 0xa9, 0x14, 0xde, 0xd2, 0x02, 0x00, 0x0e, 0x71, 0x1e, 0xc7, 0xf3, - 0xf4, 0xff, 0x94, 0x83, 0x49, 0x9e, 0xde, 0xaa, 0x75, 0x3a, 0x8b, 0x2e, 0x69, 0x7a, 0xd4, 0xf5, - 0x74, 0x5c, 0xf3, 0x8e, 0xee, 0x93, 0xe0, 0x2a, 0x5c, 0x7f, 0xae, 0xa7, 0x21, 0x3b, 0x63, 0x85, - 0x10, 0x7a, 0x16, 0x46, 0xf5, 0x4e, 0x67, 0x65, 0x89, 0xc9, 0x90, 0x0f, 0x8f, 0x0d, 0xd4, 0x68, - 0x23, 0xe6, 0x30, 0xf4, 0x2a, 0x4c, 0x9a, 0xb6, 0xe7, 0xeb, 0x96, 0xc5, 0xce, 0xdc, 0xaf, 0x2c, - 0x31, 0x47, 0x9f, 0x0f, 0x0f, 0x81, 0xac, 0x44, 0xa0, 0x38, 0x86, 0x3d, 0xf7, 0xf7, 0x15, 0x98, - 0x49, 0x64, 0xeb, 0xd0, 0x2c, 0x8c, 0x98, 0xfc, 0x92, 0x52, 0xbe, 0x0e, 0x82, 0xd2, 0xc8, 0xca, - 0x12, 0x1e, 0x31, 0x9b, 0xaa, 0x23, 0x19, 0x39, 0x39, 0x47, 0x22, 0x6b, 0x15, 0xe4, 0x8f, 0x5a, - 0xab, 0x20, 0xbc, 0x3b, 0x28, 0xee, 0xde, 0xa5, 0x5c, 0xe8, 0x0e, 0xef, 0x1b, 0x62, 0x05, 0xff, - 0x48, 0xc5, 0x13, 0x6e, 0x42, 0x49, 0xef, 0x98, 0xfc, 0x5e, 0x71, 0xb1, 0xef, 0xfb, 0x3e, 0xb5, - 0xc6, 0x0a, 0xbf, 0x54, 0x2c, 0x89, 0x24, 0x6f, 0x14, 0x8f, 0x65, 0x7b, 0xa3, 0x58, 0x0d, 0x06, - 0x4a, 0x0f, 0x0d, 0x06, 0x2e, 0x43, 0x51, 0x37, 0x7c, 0xf3, 0x0e, 0x11, 0x76, 0x2c, 0x43, 0x8c, - 0x1a, 0x6b, 0xc5, 0x02, 0x2a, 0xca, 0xfd, 0xfa, 0x41, 0xc8, 0x0b, 0x89, 0x72, 0xbf, 0x01, 0x08, - 0xab, 0x78, 0xcc, 0xd7, 0x32, 0xa5, 0x09, 0x7c, 0x6d, 0x25, 0xe6, 0x6b, 0x55, 0x20, 0x8e, 0xe2, - 0xa2, 0x1a, 0x4c, 0xf1, 0x86, 0x5b, 0x1d, 0xcb, 0xd1, 0x9b, 0xb4, 0xfb, 0x78, 0x54, 0x2b, 0xae, - 0x45, 0xc1, 0x38, 0x8e, 0xdf, 0xc3, 0x5d, 0x4f, 0x0c, 0xee, 0xae, 0x27, 0xb3, 0x71, 0xd7, 0x71, - 0x8b, 0xec, 0xc3, 0x5d, 0xbf, 0x17, 0xaf, 0x0c, 0xc0, 0x4f, 0x69, 0x0e, 0xea, 0x5a, 0xa9, 0x79, - 0x35, 0xd5, 0xbb, 0xff, 0x47, 0xaa, 0x08, 0xf0, 0x29, 0x98, 0x70, 0xdc, 0x96, 0x6e, 0x9b, 0xf7, - 0x99, 0xc3, 0xf1, 0xd8, 0x69, 0xcd, 0x32, 0xd7, 0xd6, 0x9b, 0x2a, 0x00, 0x47, 0xf1, 0xd0, 0x7d, - 0x28, 0xb7, 0x02, 0x2f, 0x5b, 0x9d, 0xc9, 0xc4, 0xcf, 0x44, 0xbd, 0x36, 0xbf, 0x1e, 0x24, 0xdb, - 0x70, 0xc8, 0x4e, 0x99, 0x95, 0xd0, 0xe3, 0x32, 0x2b, 0xbd, 0x57, 0x62, 0x6e, 0x3c, 0xba, 0xcd, - 0x71, 0x4a, 0x31, 0xdf, 0xa7, 0xa1, 0x2c, 0x22, 0x02, 0x31, 0x77, 0x95, 0xeb, 0x1f, 0x13, 0xaa, - 0x72, 0x26, 0x51, 0x4b, 0x63, 0x65, 0x09, 0x87, 0xd8, 0x47, 0x0c, 0x00, 0x23, 0x35, 0x1d, 0x0a, - 0xd9, 0xd5, 0x74, 0xd0, 0xe0, 0x49, 0x7e, 0xff, 0x56, 0xd3, 0x56, 0x59, 0x80, 0x62, 0x1a, 0xfc, - 0xfa, 0x2d, 0xaf, 0xfe, 0x77, 0x5e, 0x3c, 0xc4, 0x93, 0x57, 0xd3, 0x90, 0x70, 0x7a, 0x5f, 0xe1, - 0xe9, 0x2c, 0x5d, 0x7a, 0xba, 0x62, 0xc2, 0xd3, 0x85, 0x40, 0x1c, 0xc5, 0xed, 0xe1, 0xa6, 0x4a, - 0x83, 0xbb, 0xa9, 0x72, 0x56, 0x6e, 0x2a, 0xaa, 0x71, 0xc7, 0x8c, 0x2a, 0xe1, 0xd0, 0xa8, 0xf2, - 0x36, 0x54, 0x3c, 0xf6, 0x26, 0xf9, 0x0b, 0xaf, 0xf4, 0xfd, 0xc2, 0xb5, 0xb0, 0x37, 0x56, 0x49, - 0x29, 0x86, 0x3e, 0x7e, 0x82, 0x85, 0x22, 0xe6, 0xa0, 0xd8, 0x72, 0x9d, 0x6e, 0x87, 0xdf, 0x19, - 0x10, 0x4a, 0x7e, 0x8d, 0xb5, 0x60, 0x01, 0x19, 0xcc, 0x19, 0x7c, 0xb7, 0x0c, 0x53, 0xb1, 0x7d, - 0xc6, 0xd4, 0x3c, 0x53, 0xee, 0x94, 0xf3, 0x4c, 0x97, 0xa0, 0xe0, 0xd3, 0xa0, 0x61, 0x24, 0x7a, - 0x2b, 0x9d, 0x45, 0x0b, 0x0c, 0x92, 0x2c, 0x7e, 0x91, 0x3f, 0x7a, 0xf1, 0x0b, 0xf4, 0xff, 0xa0, - 0xac, 0x37, 0x9b, 0x2e, 0xf1, 0x3c, 0x12, 0x54, 0xd3, 0x61, 0x3e, 0xbf, 0x16, 0x34, 0xe2, 0x10, - 0xce, 0x16, 0xaa, 0xcd, 0x6d, 0xef, 0x96, 0x27, 0xb2, 0x47, 0xea, 0x42, 0x75, 0x69, 0x59, 0xa3, - 0xed, 0x58, 0x62, 0xa0, 0x26, 0x4c, 0xed, 0xba, 0x5b, 0x8b, 0x8b, 0xba, 0xb1, 0x43, 0x8e, 0x93, - 0x71, 0x60, 0x55, 0x72, 0x6f, 0x44, 0x29, 0xe0, 0x38, 0x49, 0xc1, 0xe5, 0x06, 0xd9, 0xf7, 0xf5, - 0xad, 0xe3, 0xc4, 0x84, 0x01, 0x17, 0x95, 0x02, 0x8e, 0x93, 0xa4, 0x11, 0xdc, 0xae, 0xbb, 0x15, - 0xdc, 0x68, 0x17, 0x55, 0xb9, 0x64, 0x04, 0x77, 0x23, 0x04, 0x61, 0x15, 0x8f, 0x0e, 0xd8, 0xae, - 0xbb, 0x85, 0x89, 0x6e, 0xb5, 0x45, 0x61, 0x41, 0x39, 0x60, 0x37, 0x44, 0x3b, 0x96, 0x18, 0xa8, - 0x03, 0x88, 0x3e, 0x1d, 0x7b, 0xef, 0xf2, 0x4a, 0xae, 0x58, 0xf4, 0x3d, 0x97, 0xf6, 0x34, 0x12, - 0x49, 0x7d, 0xa0, 0x73, 0xd4, 0xdd, 0xdd, 0x48, 0xd0, 0xc1, 0x29, 0xb4, 0xd1, 0x9b, 0xf0, 0xd4, - 0xae, 0xbb, 0x25, 0xd2, 0xfe, 0x0d, 0xd7, 0xb4, 0x0d, 0xb3, 0xa3, 0xf3, 0x1a, 0x01, 0x95, 0x68, - 0x1d, 0xc4, 0x1b, 0xe9, 0x68, 0xb8, 0x57, 0xff, 0x68, 0xd2, 0x73, 0x3c, 0x93, 0xa4, 0x67, 0xcc, - 0x5c, 0x1f, 0xf5, 0x62, 0x37, 0x83, 0xf9, 0xa7, 0x1f, 0xe4, 0x00, 0xb1, 0x13, 0x56, 0xc1, 0xd7, - 0x40, 0x98, 0xf3, 0x43, 0x0b, 0x50, 0x66, 0xde, 0x4f, 0xb9, 0xf4, 0x2a, 0xb3, 0x07, 0xd7, 0x02, - 0x00, 0x0e, 0x71, 0xe8, 0x1a, 0xc5, 0xb1, 0x9a, 0x44, 0x56, 0xaa, 0x90, 0x6b, 0x94, 0x9b, 0xac, - 0x15, 0x0b, 0x28, 0xba, 0x06, 0x33, 0x2e, 0xd9, 0xd2, 0x2d, 0xdd, 0x36, 0x88, 0xe6, 0xbb, 0xba, - 0x4f, 0x5a, 0xfb, 0xc2, 0x93, 0xc8, 0x63, 0xac, 0x38, 0x8e, 0x80, 0x93, 0x7d, 0xe6, 0xfe, 0xb5, - 0x04, 0xd3, 0xf1, 0xa3, 0x61, 0x0f, 0xcb, 0xd5, 0x2e, 0x40, 0xb9, 0xa3, 0xbb, 0xbe, 0xa9, 0xd4, - 0xf1, 0x90, 0x4f, 0xd5, 0x08, 0x00, 0x38, 0xc4, 0xa1, 0xcb, 0x7e, 0x56, 0xa6, 0x55, 0x48, 0x28, - 0x97, 0xfd, 0xac, 0x8c, 0x2b, 0xe6, 0xb0, 0xf4, 0xe2, 0x10, 0x85, 0x13, 0x2b, 0x0e, 0xf1, 0x48, - 0xd4, 0x7d, 0x7d, 0x3f, 0x99, 0x26, 0x7b, 0x3b, 0xe3, 0x73, 0x7f, 0xfd, 0x2d, 0xbb, 0x26, 0x0c, - 0x55, 0x9f, 0x45, 0x31, 0x8c, 0x8d, 0x2c, 0x44, 0x8a, 0x18, 0x0a, 0x5f, 0x3d, 0x45, 0x9a, 0x70, - 0x94, 0x35, 0x6a, 0xc0, 0x59, 0xcb, 0x6c, 0x8b, 0x84, 0x9f, 0xd7, 0x20, 0x2e, 0xaf, 0x8e, 0xcc, - 0x1c, 0x75, 0x3e, 0x4c, 0x84, 0xac, 0xa6, 0xe0, 0xe0, 0xd4, 0x9e, 0xe8, 0x79, 0x18, 0xbb, 0x43, - 0x5c, 0x76, 0x79, 0x1f, 0xa2, 0x15, 0xdb, 0x5f, 0xe7, 0xcd, 0x38, 0x80, 0xa3, 0x37, 0xa1, 0xe0, - 0xe9, 0x9e, 0x25, 0x02, 0xb5, 0x63, 0x1c, 0x65, 0xae, 0x69, 0xab, 0x42, 0x3d, 0x58, 0x8a, 0x96, - 0xfe, 0xc6, 0x8c, 0xe4, 0x29, 0x05, 0x6c, 0xe1, 0x76, 0xcb, 0xc4, 0x61, 0xdb, 0x2d, 0x83, 0x39, - 0xc5, 0xef, 0x15, 0x61, 0x2a, 0x76, 0xd6, 0xf3, 0x61, 0xae, 0x45, 0x7a, 0x8a, 0x91, 0x43, 0x3c, - 0xc5, 0x0b, 0x50, 0x32, 0x2c, 0x93, 0xd8, 0xfe, 0x4a, 0x53, 0x78, 0x94, 0xf0, 0x4a, 0x39, 0x6f, - 0x5f, 0xc2, 0x12, 0xe3, 0xb4, 0xfd, 0x8a, 0xea, 0x00, 0x46, 0x8f, 0x5a, 0x74, 0xa6, 0x38, 0xcc, - 0x8f, 0xff, 0x64, 0x73, 0xb5, 0x3d, 0xf6, 0x62, 0x1f, 0xf9, 0x22, 0xd2, 0xc1, 0x26, 0x4b, 0x39, - 0xeb, 0x4d, 0x96, 0xc1, 0x6c, 0xe4, 0x1f, 0x47, 0xa0, 0xb4, 0x5e, 0xdb, 0xd4, 0x58, 0x71, 0xe5, - 0xb7, 0xa2, 0xe5, 0xa3, 0x07, 0x11, 0x32, 0x59, 0x27, 0x7a, 0x99, 0x9a, 0x56, 0xdf, 0x25, 0xa2, - 0xcb, 0xdc, 0xfa, 0xe8, 0x3a, 0x93, 0x77, 0x47, 0x8b, 0x50, 0xb0, 0x77, 0xfb, 0xfd, 0x86, 0x06, - 0x1b, 0xb3, 0xf5, 0x1b, 0x64, 0x1f, 0xb3, 0xce, 0xe8, 0x16, 0x80, 0xe1, 0x92, 0x26, 0xb1, 0x7d, - 0x53, 0x7c, 0xc2, 0xac, 0xbf, 0xfd, 0x85, 0x45, 0xd9, 0x19, 0x2b, 0x84, 0xe6, 0xbe, 0x5e, 0x84, - 0xe9, 0xf8, 0x99, 0xee, 0x87, 0xb9, 0x9c, 0xe7, 0x61, 0xcc, 0xeb, 0xb2, 0x02, 0x37, 0xc2, 0xe9, - 0xc8, 0x69, 0x40, 0xe3, 0xcd, 0x38, 0x80, 0xa7, 0xbb, 0x92, 0xfc, 0xa9, 0xb8, 0x92, 0xc2, 0x51, - 0x5d, 0x49, 0xd6, 0x01, 0xcd, 0xfb, 0xc9, 0xcf, 0x43, 0xbc, 0x9d, 0xf1, 0x29, 0xfc, 0x3e, 0x7c, - 0x09, 0x11, 0x56, 0x3d, 0x96, 0x49, 0x69, 0x98, 0xc0, 0x10, 0x13, 0xfb, 0xa8, 0x8f, 0x61, 0xc5, - 0xbe, 0x9f, 0x8c, 0xc2, 0x64, 0xf4, 0x90, 0x26, 0x5d, 0x16, 0xef, 0x38, 0x9e, 0x2f, 0x92, 0x05, - 0xf1, 0xef, 0x18, 0x5e, 0x0f, 0x41, 0x58, 0xc5, 0x3b, 0xda, 0x9c, 0xfc, 0x3c, 0x8c, 0x89, 0x5a, - 0x74, 0x62, 0x4a, 0x96, 0x56, 0x24, 0xea, 0xd5, 0xe1, 0x00, 0xfe, 0xbf, 0x13, 0xb2, 0xe5, 0xa1, - 0x6f, 0x24, 0x27, 0xe4, 0xb7, 0x32, 0x3d, 0x91, 0xfb, 0xa8, 0xcf, 0xc7, 0x83, 0x29, 0xf7, 0x9b, - 0x30, 0x93, 0xd8, 0xbc, 0x39, 0x5a, 0xad, 0xef, 0x8b, 0x30, 0x6a, 0xeb, 0x6d, 0xc2, 0xcb, 0x61, - 0x95, 0xf9, 0xf4, 0xc6, 0x3e, 0x07, 0x81, 0x79, 0xfb, 0xdc, 0xf7, 0x8b, 0x30, 0x93, 0xb8, 0x79, - 0xc2, 0x96, 0xbc, 0x72, 0x03, 0x20, 0xb6, 0x90, 0x4f, 0x4d, 0xfb, 0xbf, 0x0a, 0x93, 0xcc, 0x30, - 0x1a, 0xb1, 0x6d, 0x03, 0xb9, 0x89, 0xbd, 0x19, 0x81, 0xe2, 0x18, 0xf6, 0xd1, 0x96, 0xcc, 0xaf, - 0xc2, 0xa4, 0xfa, 0xfd, 0x92, 0x95, 0x25, 0xb1, 0x2d, 0x2c, 0x99, 0x68, 0x11, 0x28, 0x8e, 0x61, - 0xb3, 0x8f, 0xbf, 0xc8, 0xc9, 0x53, 0xa4, 0xe3, 0x46, 0xfb, 0xff, 0xf8, 0x4b, 0x8c, 0x04, 0x4e, - 0x10, 0x45, 0x5b, 0x30, 0xcb, 0xd3, 0xf7, 0xaa, 0x40, 0xb1, 0x23, 0x25, 0x73, 0x42, 0xe8, 0xd9, - 0xa5, 0x9e, 0x98, 0xf8, 0x10, 0x2a, 0x7d, 0x56, 0x77, 0xfc, 0x20, 0xf9, 0x39, 0xcc, 0x77, 0xb2, - 0xbe, 0xaf, 0x74, 0x2c, 0x1b, 0x2c, 0x3f, 0x2e, 0x36, 0xf8, 0xfd, 0x0a, 0x35, 0x94, 0xd8, 0xd1, - 0x7b, 0x34, 0x07, 0x45, 0xa6, 0x9b, 0x74, 0x7a, 0x91, 0x3b, 0x01, 0x4c, 0x69, 0x3d, 0x2c, 0x20, - 0x47, 0x48, 0x92, 0x8b, 0x90, 0x2d, 0xdf, 0x23, 0x64, 0xeb, 0xc0, 0x19, 0xdf, 0xf2, 0x36, 0xdd, - 0xae, 0xe7, 0x2f, 0x12, 0xd7, 0xf7, 0x84, 0xea, 0x16, 0xfa, 0xfe, 0x86, 0xdc, 0xe6, 0xaa, 0x16, - 0xa7, 0x82, 0xd3, 0x48, 0x53, 0x05, 0xf6, 0x2d, 0xaf, 0x66, 0x59, 0xce, 0xdd, 0xe0, 0x64, 0x41, - 0x38, 0xd9, 0x88, 0x69, 0x44, 0x2a, 0xf0, 0xe6, 0xaa, 0xd6, 0x03, 0x13, 0x1f, 0x42, 0x05, 0xad, - 0xb1, 0xa7, 0x7a, 0x5d, 0xb7, 0xcc, 0xa6, 0xee, 0x13, 0x3a, 0x1d, 0xb3, 0xec, 0x35, 0xb7, 0x0e, - 0xb9, 0xdd, 0xb8, 0xb9, 0xaa, 0xc5, 0x51, 0x70, 0x5a, 0xbf, 0x61, 0x7d, 0x47, 0x36, 0x75, 0xf6, - 0x2e, 0x9d, 0xca, 0xec, 0x5d, 0xee, 0xcf, 0xca, 0x21, 0x23, 0x2b, 0x8f, 0xa9, 0x7c, 0x1f, 0x56, - 0xde, 0x84, 0x29, 0xf9, 0x81, 0x1d, 0xa1, 0xb3, 0x95, 0xbe, 0x77, 0x3f, 0x6a, 0x51, 0x0a, 0x38, - 0x4e, 0xf2, 0x94, 0x32, 0x4a, 0x7f, 0x99, 0x83, 0x69, 0x2a, 0x49, 0xcd, 0xdf, 0x21, 0xf6, 0xfd, - 0x86, 0xee, 0xea, 0xed, 0xa0, 0x82, 0xd8, 0x76, 0xe6, 0x43, 0x5e, 0x8b, 0x31, 0xe2, 0x43, 0x2f, - 0xcb, 0x3a, 0xc7, 0xc1, 0x38, 0x21, 0x19, 0x9d, 0xfa, 0xc2, 0xb6, 0xe3, 0x7c, 0x0c, 0xf6, 0x6c, - 0x94, 0x51, 0x30, 0xf5, 0xc5, 0x89, 0x0e, 0xe4, 0x63, 0x67, 0x17, 0xe1, 0xc9, 0xd4, 0x47, 0xed, - 0xcb, 0x51, 0x7f, 0xad, 0x28, 0xae, 0xcf, 0x64, 0xb0, 0x16, 0xc8, 0xfa, 0x6b, 0x4d, 0x34, 0xb0, - 0xb2, 0xe5, 0xd7, 0xbc, 0x62, 0x5f, 0x79, 0x0b, 0xbf, 0xdf, 0x15, 0xe2, 0xa0, 0x59, 0x18, 0x69, - 0x6e, 0x31, 0x57, 0x3f, 0x1a, 0x9e, 0xe3, 0x5b, 0xaa, 0xe3, 0x91, 0xe6, 0x16, 0x7a, 0x0e, 0x4a, - 0x62, 0x91, 0x11, 0x1c, 0x73, 0x63, 0x6c, 0xc5, 0x0a, 0xc4, 0xc3, 0x12, 0x3a, 0xac, 0xb0, 0x7e, - 0x08, 0xf9, 0xfb, 0xf8, 0x9b, 0x7b, 0xe4, 0x13, 0x6d, 0xfd, 0x79, 0xe8, 0x17, 0x94, 0xa2, 0xe5, - 0x10, 0xcd, 0xe5, 0x26, 0x2b, 0x92, 0x0f, 0x16, 0xb0, 0xfc, 0x4d, 0x11, 0xce, 0xa5, 0x5f, 0xea, - 0x7a, 0x64, 0xac, 0x81, 0x2b, 0x77, 0x3e, 0x55, 0xb9, 0x3f, 0x0e, 0x63, 0x1e, 0x13, 0x3c, 0xd8, - 0xf9, 0xe7, 0xe5, 0x64, 0x79, 0x13, 0x0e, 0x60, 0xe8, 0x35, 0x40, 0x6d, 0xfd, 0xde, 0x9a, 0xd7, - 0x5a, 0x74, 0xba, 0xac, 0x42, 0x36, 0x26, 0x3a, 0x2f, 0xdf, 0x3e, 0x1a, 0x9e, 0xaf, 0x59, 0x4b, - 0x60, 0xe0, 0x94, 0x5e, 0xec, 0xac, 0x42, 0x64, 0xff, 0x27, 0x76, 0xd0, 0xe7, 0xd0, 0x0d, 0x9b, - 0x21, 0xc5, 0x1f, 0x1f, 0x25, 0x03, 0x77, 0x63, 0x28, 0x37, 0xfd, 0x1e, 0xf5, 0xe8, 0xfd, 0x24, - 0x4d, 0xe7, 0xa7, 0x05, 0x38, 0x93, 0x52, 0xe9, 0x25, 0xea, 0xbd, 0x73, 0x47, 0xf0, 0xde, 0x7b, - 0x72, 0xa4, 0xb2, 0x39, 0x68, 0x1d, 0x08, 0x75, 0xc8, 0x30, 0x7d, 0x90, 0x83, 0xb3, 0x6c, 0x83, - 0x3d, 0xd8, 0xd5, 0x0b, 0x4a, 0xfc, 0xe6, 0x85, 0x66, 0x1e, 0xa9, 0xd6, 0xf6, 0xb5, 0x14, 0x0a, - 0xe1, 0xae, 0x63, 0x1a, 0x14, 0xa7, 0x72, 0x45, 0x8b, 0x00, 0xf2, 0xaa, 0x5c, 0x60, 0xc9, 0xcf, - 0xb2, 0x8a, 0xe1, 0xb2, 0xf5, 0xbf, 0xd9, 0xe6, 0xbd, 0x32, 0xda, 0x6c, 0x65, 0xa4, 0x74, 0x1b, - 0xc6, 0x77, 0x55, 0x52, 0x5e, 0xef, 0xd1, 0x2d, 0x60, 0x30, 0xed, 0xfa, 0x8b, 0x3c, 0x4c, 0x46, - 0x5f, 0x24, 0xba, 0x0c, 0xc5, 0x8e, 0x4b, 0xb6, 0xcd, 0x7b, 0xf1, 0xcf, 0x6b, 0x34, 0x58, 0x2b, - 0x16, 0x50, 0xe4, 0x40, 0xd1, 0xd2, 0xb7, 0xe8, 0x7c, 0xcf, 0xcb, 0x9b, 0x5f, 0x1b, 0xb8, 0x54, - 0x77, 0xb0, 0xcb, 0x10, 0x30, 0x5c, 0x65, 0xe4, 0xb1, 0x60, 0x43, 0x19, 0x6e, 0x9b, 0xc4, 0x6a, - 0xf2, 0xe3, 0x9c, 0xc3, 0x60, 0xb8, 0xcc, 0xc8, 0x63, 0xc1, 0x06, 0xbd, 0x05, 0x65, 0xfe, 0x4d, - 0x92, 0x66, 0x7d, 0x5f, 0xac, 0x70, 0xff, 0xef, 0xd1, 0x54, 0x76, 0xd3, 0x6c, 0x93, 0xd0, 0x1c, - 0x17, 0x03, 0x22, 0x38, 0xa4, 0xc7, 0x3e, 0x45, 0xbf, 0xed, 0x13, 0x57, 0xf3, 0x75, 0x37, 0xf8, - 0x52, 0x7c, 0xf8, 0x29, 0x7a, 0x09, 0xc1, 0x0a, 0xd6, 0xdc, 0x5f, 0x8f, 0xc1, 0x54, 0xec, 0x1a, - 0xed, 0x2f, 0xc7, 0x1d, 0x51, 0xf5, 0xfb, 0x29, 0xf9, 0xac, 0xbf, 0x9f, 0x52, 0xc8, 0x22, 0x3c, - 0x78, 0x0b, 0xc6, 0x3d, 0x6f, 0x87, 0x61, 0xf6, 0x9f, 0xab, 0x9b, 0x3e, 0x78, 0x70, 0x71, 0x5c, - 0xd3, 0xae, 0xcb, 0xee, 0x38, 0x42, 0x0c, 0xad, 0xc2, 0x98, 0x38, 0x3b, 0xd8, 0xdf, 0xc1, 0x3f, - 0x16, 0x86, 0x04, 0xe1, 0x51, 0x40, 0x62, 0x18, 0x3b, 0xce, 0x31, 0xa5, 0x7b, 0xe4, 0x03, 0xe1, - 0x06, 0x9c, 0xed, 0x38, 0x96, 0x15, 0x1c, 0xde, 0x94, 0x5f, 0x3e, 0x2a, 0x47, 0xaf, 0xee, 0x34, - 0x52, 0x70, 0x70, 0x6a, 0xcf, 0xc1, 0xbc, 0xec, 0xbf, 0x17, 0x61, 0x32, 0x5a, 0x65, 0xea, 0xf4, - 0x2e, 0x50, 0xb2, 0x44, 0x60, 0xcd, 0xb5, 0xe3, 0x17, 0x28, 0x37, 0x45, 0x3b, 0x96, 0x18, 0x08, - 0x43, 0x99, 0x1f, 0x68, 0xbf, 0xd1, 0xef, 0x9e, 0x33, 0x3f, 0x19, 0x1b, 0xf4, 0xc5, 0x21, 0x19, - 0x4a, 0xd3, 0x0b, 0xd0, 0xfb, 0xb3, 0x4c, 0x46, 0x53, 0x36, 0xe3, 0x90, 0x0c, 0x9d, 0xb1, 0x5c, - 0xd2, 0x0a, 0xb2, 0x81, 0xca, 0x8c, 0x85, 0x59, 0x2b, 0x16, 0x50, 0xf4, 0x3c, 0x8c, 0xb9, 0x8e, - 0x45, 0x6a, 0x78, 0x5d, 0x44, 0xd3, 0x72, 0xa3, 0x0c, 0xf3, 0x66, 0x1c, 0xc0, 0x87, 0xb1, 0x49, - 0x14, 0x55, 0x80, 0x3e, 0x4c, 0xe8, 0x1a, 0xcc, 0xdc, 0x11, 0x19, 0x46, 0xcd, 0x6c, 0xd9, 0xba, - 0x1f, 0xde, 0xb9, 0x92, 0x07, 0x0e, 0x5f, 0x8f, 0x23, 0xe0, 0x64, 0x9f, 0xd3, 0x8b, 0x95, 0x89, - 0xdd, 0xec, 0x38, 0xa6, 0xed, 0xc7, 0x63, 0xe5, 0xab, 0xa2, 0x1d, 0x4b, 0x8c, 0xc1, 0xec, 0xec, - 0x1f, 0xc6, 0x60, 0x32, 0x5a, 0x45, 0x2d, 0xaa, 0xc3, 0xb9, 0x21, 0xe8, 0xf0, 0x48, 0xd6, 0x3a, - 0x9c, 0x3f, 0x54, 0x87, 0x9f, 0x85, 0x51, 0xf6, 0x9d, 0x7e, 0xb1, 0xdd, 0x24, 0x37, 0xa7, 0x58, - 0xbd, 0x0f, 0xcc, 0x61, 0xa8, 0x46, 0x67, 0x78, 0xd3, 0xa7, 0x51, 0x08, 0x3f, 0x70, 0xc7, 0xcf, - 0x22, 0xe4, 0xd5, 0x19, 0x39, 0x02, 0xc6, 0x71, 0xfc, 0x7e, 0x6c, 0xa5, 0xbf, 0xdd, 0x9f, 0x57, - 0x61, 0x92, 0x09, 0x59, 0x33, 0x0c, 0xba, 0xde, 0x5d, 0x69, 0x8a, 0x33, 0xe2, 0x72, 0xe3, 0x6c, - 0x43, 0x85, 0x2e, 0xe1, 0x18, 0x76, 0xd4, 0x32, 0xcb, 0xd9, 0x58, 0xe6, 0xc6, 0x31, 0x2d, 0xf3, - 0x3c, 0xe4, 0x9b, 0xd6, 0x1e, 0xd3, 0xea, 0x52, 0xb8, 0x57, 0xb2, 0xb4, 0xba, 0x81, 0x69, 0xbb, - 0x62, 0x6f, 0x95, 0x53, 0xb2, 0xb7, 0xf1, 0x87, 0xd9, 0x1b, 0x8b, 0x6b, 0xf8, 0x07, 0x92, 0xf8, - 0x7d, 0x98, 0x89, 0xfe, 0xe3, 0x1a, 0xa5, 0x3b, 0x8e, 0x10, 0x1b, 0xcc, 0x98, 0xbf, 0x0c, 0xa5, - 0x80, 0x11, 0x1d, 0x68, 0xd9, 0x2f, 0x1c, 0x68, 0x6a, 0x42, 0x8c, 0xc8, 0x02, 0x94, 0x9d, 0x0e, - 0x89, 0x7c, 0xdd, 0x50, 0xc6, 0xc0, 0x37, 0x03, 0x00, 0x0e, 0x71, 0xa8, 0x15, 0x71, 0xae, 0xb1, - 0x2d, 0xde, 0xd7, 0x69, 0xa3, 0x10, 0x62, 0xee, 0x2b, 0x39, 0x08, 0x3e, 0x19, 0x84, 0x96, 0x60, - 0xb4, 0xe3, 0xb8, 0x3e, 0xdf, 0x5a, 0xab, 0x5c, 0xb9, 0x98, 0x3e, 0x3e, 0xfc, 0x74, 0xbf, 0xe3, - 0xfa, 0x21, 0x45, 0xfa, 0xcb, 0xc3, 0xbc, 0x33, 0x95, 0xd3, 0xb0, 0xba, 0x9e, 0x4f, 0xdc, 0x95, - 0x46, 0x5c, 0xce, 0xc5, 0x00, 0x80, 0x43, 0x9c, 0xb9, 0xff, 0x2c, 0xc0, 0x74, 0xbc, 0xb0, 0x1e, - 0x7a, 0x07, 0x26, 0x3c, 0xb3, 0x65, 0x9b, 0x76, 0x4b, 0xc4, 0xa2, 0xb9, 0xbe, 0xaf, 0xf6, 0x6a, - 0x6a, 0x7f, 0x1c, 0x25, 0x97, 0xd9, 0x69, 0xb5, 0xd3, 0xf9, 0x2c, 0xfe, 0xfb, 0xc9, 0x1a, 0x32, - 0x6f, 0x67, 0x5c, 0xda, 0xf0, 0x97, 0xbb, 0x88, 0xcc, 0x2f, 0x46, 0xe1, 0x5c, 0x7a, 0xe9, 0xc4, - 0x53, 0x0a, 0x5a, 0xc3, 0x6b, 0x9c, 0x23, 0x3d, 0xaf, 0x71, 0x86, 0xe3, 0x9c, 0xcf, 0xa8, 0x14, - 0xa2, 0x1c, 0x80, 0xc3, 0x5d, 0xad, 0x0c, 0xa7, 0x0b, 0x0f, 0x0d, 0xa7, 0x2f, 0x43, 0x51, 0x94, - 0xcd, 0x8f, 0x85, 0xa9, 0x75, 0x5e, 0xd4, 0x5e, 0x40, 0x95, 0x50, 0xa0, 0x78, 0x68, 0x28, 0x40, - 0x43, 0x9b, 0x60, 0xff, 0xb1, 0xbf, 0xab, 0x5c, 0x3c, 0xb4, 0x09, 0xfa, 0xe2, 0x90, 0x0c, 0xbb, - 0xa8, 0xdf, 0x31, 0x6f, 0xe1, 0x55, 0x31, 0x2b, 0x87, 0x17, 0xf5, 0x1b, 0x2b, 0xb7, 0xf0, 0x2a, - 0x16, 0xd0, 0x68, 0x2a, 0xb8, 0x9c, 0x49, 0x2a, 0x38, 0x5d, 0xe7, 0x4e, 0x2a, 0x11, 0x66, 0xc0, - 0x4c, 0xe2, 0x9d, 0x1f, 0x39, 0x15, 0x76, 0x19, 0x8a, 0x5e, 0x77, 0x9b, 0xe2, 0xc5, 0x2a, 0x28, - 0x69, 0xac, 0x15, 0x0b, 0xe8, 0xdc, 0xb7, 0x0b, 0x94, 0x4b, 0xac, 0xc8, 0xe6, 0x29, 0x59, 0xd5, - 0x2b, 0x30, 0xc1, 0x93, 0x51, 0x6f, 0x28, 0xe5, 0x37, 0x4a, 0xca, 0x06, 0x83, 0x0a, 0xc4, 0x51, - 0x5c, 0xb4, 0xc2, 0xd4, 0xa4, 0xef, 0x65, 0x21, 0x08, 0x4d, 0xa2, 0x13, 0xb7, 0x20, 0x80, 0x5e, - 0x84, 0x0a, 0x7b, 0x08, 0x3e, 0xe4, 0x22, 0x2b, 0xcb, 0x2e, 0xda, 0x5e, 0x0d, 0x9b, 0xb1, 0x8a, - 0x13, 0x3d, 0x5a, 0x30, 0x9a, 0xc9, 0xd1, 0x82, 0xc4, 0x5b, 0x39, 0x29, 0xbd, 0xfb, 0x66, 0x09, - 0xe4, 0x87, 0x10, 0x91, 0x91, 0xf8, 0x1c, 0xe5, 0xa7, 0xfb, 0xde, 0xbc, 0x09, 0x44, 0xe1, 0x99, - 0xac, 0x94, 0x29, 0xe9, 0x35, 0x40, 0xe2, 0xfb, 0x87, 0x22, 0xa8, 0x56, 0xca, 0x29, 0xc9, 0x5d, - 0x2a, 0x2d, 0x81, 0x81, 0x53, 0x7a, 0xa1, 0xd7, 0xd8, 0xc7, 0x57, 0x7d, 0xdd, 0xb4, 0xa5, 0xe7, - 0x3d, 0xdf, 0xe3, 0xfe, 0x25, 0x47, 0x92, 0x9f, 0x51, 0xe5, 0x3f, 0x71, 0xd8, 0x1d, 0x5d, 0x85, - 0xb1, 0x3b, 0x8e, 0xd5, 0x6d, 0x8b, 0xd4, 0x7c, 0xe5, 0xca, 0x6c, 0x1a, 0xa5, 0xd7, 0x19, 0x8a, - 0x72, 0x5f, 0x88, 0x77, 0xc1, 0x41, 0x5f, 0x44, 0x60, 0x8a, 0x1d, 0xef, 0x31, 0xfd, 0x7d, 0x61, - 0x00, 0x62, 0xea, 0xbd, 0x9c, 0x46, 0xae, 0xe1, 0x34, 0xb5, 0x28, 0x36, 0x3f, 0xe9, 0x11, 0x6b, - 0xc4, 0x71, 0x9a, 0x68, 0x19, 0x4a, 0xfa, 0xf6, 0xb6, 0x69, 0x9b, 0xfe, 0xbe, 0xc8, 0xd9, 0x3d, - 0x93, 0x46, 0xbf, 0x26, 0x70, 0x44, 0x9d, 0x16, 0xf1, 0x0b, 0xcb, 0xbe, 0xe8, 0x16, 0x54, 0x7c, - 0xc7, 0x12, 0x71, 0xa9, 0x27, 0x52, 0x0d, 0x17, 0xd2, 0x48, 0x6d, 0x4a, 0xb4, 0x70, 0x7b, 0x34, - 0x6c, 0xf3, 0xb0, 0x4a, 0x07, 0xfd, 0x4e, 0x0e, 0xc6, 0x6d, 0xa7, 0x49, 0x02, 0xd3, 0x13, 0xdb, - 0x75, 0x6f, 0x66, 0xf4, 0x01, 0xcf, 0xf9, 0x75, 0x85, 0x36, 0xb7, 0x10, 0x59, 0xbf, 0x43, 0x05, - 0xe1, 0x88, 0x10, 0xc8, 0x86, 0x69, 0xb3, 0xad, 0xb7, 0x48, 0xa3, 0x6b, 0x89, 0xe3, 0x89, 0x9e, - 0x98, 0x3c, 0x52, 0x6f, 0xed, 0xae, 0x3a, 0x86, 0x6e, 0xf1, 0x0f, 0xe0, 0x62, 0xb2, 0x4d, 0x5c, - 0xf6, 0x1d, 0x5e, 0x79, 0xd2, 0x64, 0x25, 0x46, 0x09, 0x27, 0x68, 0xa3, 0x6b, 0x30, 0xd3, 0x71, - 0x4d, 0x87, 0xbd, 0x37, 0x4b, 0xf7, 0xf8, 0x07, 0x50, 0x21, 0x7a, 0x55, 0xb3, 0x11, 0x47, 0xc0, - 0xc9, 0x3e, 0xbc, 0xbc, 0x00, 0x6f, 0x64, 0x6b, 0xb9, 0xd1, 0xa0, 0xbc, 0x00, 0x6f, 0xc3, 0x12, - 0x3a, 0xfb, 0x59, 0x98, 0x49, 0x8c, 0x4d, 0x5f, 0x0e, 0xe1, 0x0f, 0x72, 0x10, 0xcf, 0x97, 0xd3, - 0x75, 0x43, 0xd3, 0x74, 0x19, 0xc1, 0xfd, 0x78, 0x8e, 0x7f, 0x29, 0x00, 0xe0, 0x10, 0x07, 0x5d, - 0x82, 0x42, 0x47, 0xf7, 0x77, 0xe2, 0xc7, 0xfc, 0x28, 0x49, 0xcc, 0x20, 0xe8, 0x0a, 0x00, 0xfd, - 0x8b, 0x49, 0x8b, 0xdc, 0xeb, 0x88, 0x65, 0x90, 0xdc, 0x7e, 0x68, 0x48, 0x08, 0x56, 0xb0, 0xe6, - 0xfe, 0x65, 0x14, 0x26, 0xa3, 0x73, 0x4b, 0x64, 0xb1, 0x99, 0x7b, 0xe8, 0x62, 0xf3, 0x32, 0x14, - 0xdb, 0xc4, 0xdf, 0x71, 0x9a, 0xf1, 0x79, 0x72, 0x8d, 0xb5, 0x62, 0x01, 0x65, 0xe2, 0x3b, 0xae, - 0x2f, 0xc4, 0x0a, 0xc5, 0x77, 0x5c, 0x1f, 0x33, 0x48, 0x70, 0x4a, 0xb1, 0xd0, 0xe3, 0x94, 0x62, - 0x0b, 0xa6, 0x79, 0x81, 0xdf, 0x45, 0xe2, 0xfa, 0xc7, 0x3e, 0x5d, 0xab, 0xc5, 0x48, 0xe0, 0x04, - 0x51, 0xd4, 0xa4, 0xde, 0x86, 0xb6, 0x85, 0x3b, 0x03, 0xfd, 0x5f, 0xdd, 0xd7, 0xa2, 0x14, 0x70, - 0x9c, 0xe4, 0x30, 0xb2, 0x91, 0xd1, 0xf7, 0x78, 0xec, 0xca, 0x88, 0xa5, 0xac, 0x2a, 0x23, 0xbe, - 0x0c, 0x93, 0x6d, 0xfd, 0x5e, 0x43, 0xdf, 0xb7, 0x1c, 0xbd, 0xa9, 0x99, 0xf7, 0x89, 0xb8, 0x5d, - 0x8a, 0x0e, 0x1e, 0x5c, 0x9c, 0x5c, 0x8b, 0x40, 0x70, 0x0c, 0x73, 0xb0, 0x09, 0xf8, 0x0f, 0x47, - 0x00, 0x25, 0x3f, 0x5c, 0x82, 0x3e, 0xcc, 0xc1, 0xe4, 0xdd, 0xc8, 0x18, 0x0d, 0x27, 0x38, 0x93, - 0x69, 0xaf, 0x68, 0x3b, 0x8e, 0x31, 0x57, 0x16, 0x38, 0x23, 0x27, 0xb7, 0x90, 0xac, 0xcf, 0xff, - 0xf0, 0xe7, 0x17, 0x9e, 0xf8, 0xd1, 0xcf, 0x2f, 0x3c, 0xf1, 0xe3, 0x9f, 0x5f, 0x78, 0xe2, 0x2b, - 0x07, 0x17, 0x72, 0x3f, 0x3c, 0xb8, 0x90, 0xfb, 0xd1, 0xc1, 0x85, 0xdc, 0x8f, 0x0f, 0x2e, 0xe4, - 0x7e, 0x76, 0x70, 0x21, 0xf7, 0xed, 0x7f, 0xbb, 0xf0, 0xc4, 0xe7, 0x4a, 0x01, 0xd5, 0xff, 0x09, - 0x00, 0x00, 0xff, 0xff, 0x8b, 0x96, 0x10, 0x2f, 0x86, 0xa5, 0x00, 0x00, + // 7331 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x6c, 0x24, 0xc7, + 0x75, 0xa8, 0x86, 0x33, 0x1c, 0xce, 0x9c, 0xe1, 0xb3, 0x76, 0xb5, 0x1a, 0xd1, 0xda, 0xc7, 0xa5, + 0xe0, 0x85, 0x74, 0xaf, 0x44, 0x5e, 0xed, 0xbd, 0xbe, 0x96, 0xa5, 0x6b, 0x19, 0x33, 0xe4, 0x72, + 0x97, 0x5a, 0x92, 0x3b, 0xac, 0xe6, 0x4a, 0x2b, 0xcb, 0x92, 0xdc, 0xec, 0x29, 0x0e, 0xdb, 0xec, + 0xe9, 0x1e, 0x76, 0xf7, 0xec, 0x2e, 0x17, 0x88, 0x6d, 0x18, 0x70, 0x62, 0xeb, 0x61, 0x5b, 0x49, + 0x9c, 0x04, 0x09, 0x0c, 0xc4, 0x49, 0xe0, 0x7c, 0x24, 0xc8, 0x5f, 0x8c, 0xfc, 0x06, 0xc9, 0x87, + 0x91, 0xe4, 0xc3, 0xc9, 0x97, 0x63, 0x03, 0x0b, 0x9b, 0x41, 0xfe, 0xf2, 0x13, 0xf8, 0x2b, 0xf9, + 0x0a, 0xea, 0xd1, 0xd5, 0xd5, 0x8f, 0xe1, 0x72, 0x38, 0x3d, 0xe4, 0xae, 0x91, 0x2f, 0x72, 0xea, + 0x9c, 0x3a, 0xe7, 0x74, 0xf5, 0x39, 0xa7, 0x4e, 0x9d, 0xaa, 0x3a, 0x0d, 0x6b, 0x2d, 0xd3, 0xdf, + 0xe9, 0x6e, 0xcd, 0x1b, 0x4e, 0x7b, 0x41, 0x77, 0x5b, 0x4e, 0xc7, 0x75, 0xbe, 0xc4, 0xfe, 0x79, + 0x91, 0xdc, 0x21, 0xb6, 0xef, 0x2d, 0x74, 0x76, 0x5b, 0x0b, 0x7a, 0xc7, 0xf4, 0x16, 0xf8, 0x6f, + 0xa7, 0xeb, 0x1a, 0x64, 0xe1, 0xce, 0x4b, 0xba, 0xd5, 0xd9, 0xd1, 0x5f, 0x5a, 0x68, 0x11, 0x9b, + 0xb8, 0xba, 0x4f, 0x9a, 0xf3, 0x1d, 0xd7, 0xf1, 0x1d, 0xf4, 0xd9, 0x90, 0xdc, 0x7c, 0x40, 0x8e, + 0xfd, 0xf3, 0x1e, 0xef, 0x3e, 0xdf, 0xd9, 0x6d, 0xcd, 0x53, 0x72, 0xf3, 0x0a, 0xb9, 0xf9, 0x80, + 0xdc, 0xec, 0xe7, 0x8e, 0x2c, 0x8d, 0xe1, 0xb4, 0xdb, 0x8e, 0x1d, 0xe7, 0x3f, 0xfb, 0xa2, 0x42, + 0xa0, 0xe5, 0xb4, 0x9c, 0x05, 0xd6, 0xbc, 0xd5, 0xdd, 0x66, 0xbf, 0xd8, 0x0f, 0xf6, 0x9f, 0x40, + 0x9f, 0xdb, 0x7d, 0xd9, 0x9b, 0x37, 0x1d, 0x4a, 0x72, 0xc1, 0x70, 0x5c, 0xfa, 0x60, 0x09, 0x92, + 0xff, 0x37, 0xc4, 0x69, 0xeb, 0xc6, 0x8e, 0x69, 0x13, 0x77, 0x3f, 0x94, 0xa3, 0x4d, 0x7c, 0x3d, + 0xad, 0xd7, 0x42, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0x7f, 0x0f, 0xeb, + 0xe0, 0x19, 0x3b, 0xa4, 0xad, 0xc7, 0xfb, 0xcd, 0xfd, 0x47, 0x0e, 0x66, 0x6a, 0x6b, 0x1b, 0x8d, + 0x45, 0xc7, 0xf6, 0xba, 0x6d, 0xb2, 0xe8, 0xd8, 0xdb, 0x66, 0x0b, 0x7d, 0x0a, 0x2a, 0x06, 0x6f, + 0x70, 0x37, 0xf5, 0x56, 0x35, 0x77, 0x29, 0xf7, 0x5c, 0xb9, 0x7e, 0xe6, 0x47, 0x0f, 0x2e, 0x3e, + 0x71, 0xf0, 0xe0, 0x62, 0x65, 0x31, 0x04, 0x61, 0x15, 0x0f, 0x3d, 0x0f, 0x63, 0x7a, 0xd7, 0x77, + 0x6a, 0xc6, 0x6e, 0x75, 0xe4, 0x52, 0xee, 0xb9, 0x52, 0x7d, 0x4a, 0x74, 0x19, 0xab, 0xf1, 0x66, + 0x1c, 0xc0, 0xd1, 0x02, 0x94, 0xc9, 0x3d, 0xc3, 0xea, 0x7a, 0xe6, 0x1d, 0x52, 0xcd, 0x33, 0xe4, + 0x19, 0x81, 0x5c, 0xbe, 0x1a, 0x00, 0x70, 0x88, 0x43, 0x69, 0xdb, 0xce, 0xaa, 0x63, 0xe8, 0x56, + 0xb5, 0x10, 0xa5, 0xbd, 0xce, 0x9b, 0x71, 0x00, 0x47, 0x97, 0xa1, 0x68, 0x3b, 0x6f, 0xea, 0xa6, + 0x5f, 0x1d, 0x65, 0x98, 0x93, 0x02, 0xb3, 0xb8, 0xce, 0x5a, 0xb1, 0x80, 0xce, 0xfd, 0x5b, 0x05, + 0xa6, 0xe8, 0xb3, 0x5f, 0xa5, 0xca, 0xa1, 0x31, 0x5d, 0x42, 0xe7, 0x21, 0xdf, 0x75, 0x2d, 0xf1, + 0xc4, 0x15, 0xd1, 0x31, 0x7f, 0x0b, 0xaf, 0x62, 0xda, 0x8e, 0x5e, 0x86, 0x71, 0x72, 0xcf, 0xd8, + 0xd1, 0xed, 0x16, 0x59, 0xd7, 0xdb, 0x84, 0x3d, 0x66, 0xb9, 0x7e, 0x56, 0xe0, 0x8d, 0x5f, 0x55, + 0x60, 0x38, 0x82, 0xa9, 0xf6, 0xdc, 0xdc, 0xef, 0xf0, 0x67, 0x4e, 0xe9, 0x49, 0x61, 0x38, 0x82, + 0x89, 0xae, 0x00, 0xb8, 0x4e, 0xd7, 0x37, 0xed, 0xd6, 0x0d, 0xb2, 0xcf, 0x1e, 0xbe, 0x5c, 0x47, + 0xa2, 0x1f, 0x60, 0x09, 0xc1, 0x0a, 0x16, 0xfa, 0x35, 0x98, 0x31, 0x1c, 0xdb, 0x26, 0x86, 0x6f, + 0x3a, 0x76, 0x5d, 0x37, 0x76, 0x9d, 0xed, 0x6d, 0x36, 0x1a, 0x95, 0x2b, 0x2f, 0xcf, 0x1f, 0xd9, + 0xc8, 0xb8, 0x95, 0xcc, 0x8b, 0xfe, 0xf5, 0x27, 0x0f, 0x1e, 0x5c, 0x9c, 0x59, 0x8c, 0x93, 0xc5, + 0x49, 0x4e, 0xe8, 0x05, 0x28, 0x7d, 0xc9, 0x73, 0xec, 0xba, 0xd3, 0xdc, 0xaf, 0x16, 0xd9, 0x3b, + 0x98, 0x16, 0x02, 0x97, 0x5e, 0xd7, 0x6e, 0xae, 0xd3, 0x76, 0x2c, 0x31, 0xd0, 0x2d, 0xc8, 0xfb, + 0x96, 0x57, 0x1d, 0x63, 0xe2, 0xbd, 0xd2, 0xb7, 0x78, 0x9b, 0xab, 0x1a, 0x57, 0xdb, 0xfa, 0x18, + 0x7d, 0x57, 0x9b, 0xab, 0x1a, 0xa6, 0xf4, 0xd0, 0xfb, 0x39, 0x28, 0x51, 0xfb, 0x6a, 0xea, 0xbe, + 0x5e, 0x2d, 0x5d, 0xca, 0x3f, 0x57, 0xb9, 0xf2, 0x85, 0xf9, 0x81, 0x1c, 0xcc, 0x7c, 0x4c, 0x5b, + 0xe6, 0xd7, 0x04, 0xf9, 0xab, 0xb6, 0xef, 0xee, 0x87, 0xcf, 0x18, 0x34, 0x63, 0xc9, 0x1f, 0xfd, + 0x6e, 0x0e, 0xa6, 0x82, 0xb7, 0xba, 0x44, 0x0c, 0x4b, 0x77, 0x49, 0xb5, 0xcc, 0x1e, 0xf8, 0x76, + 0x16, 0x32, 0x45, 0x29, 0x8b, 0xe1, 0x38, 0x73, 0xf0, 0xe0, 0xe2, 0x54, 0x0c, 0x84, 0xe3, 0x52, + 0xa0, 0x0f, 0x72, 0x30, 0xbe, 0xd7, 0x25, 0x5d, 0x29, 0x16, 0x30, 0xb1, 0x6e, 0x65, 0x20, 0xd6, + 0x86, 0x42, 0x56, 0xc8, 0x34, 0x4d, 0x95, 0x5d, 0x6d, 0xc7, 0x11, 0xe6, 0xe8, 0x2b, 0x50, 0x66, + 0xbf, 0xeb, 0xa6, 0xdd, 0xac, 0x56, 0x98, 0x24, 0x38, 0x2b, 0x49, 0x28, 0x4d, 0x21, 0xc6, 0x04, + 0xf5, 0x33, 0xb2, 0x11, 0x87, 0x3c, 0xd1, 0x5d, 0x18, 0x13, 0x2e, 0xad, 0x3a, 0xce, 0xd8, 0x37, + 0x32, 0x60, 0x1f, 0xf1, 0xae, 0xf5, 0x0a, 0xf5, 0x5a, 0xa2, 0x09, 0x07, 0xdc, 0xd0, 0x6d, 0x28, + 0xe8, 0x5d, 0x7f, 0xa7, 0x3a, 0x71, 0x4c, 0x33, 0xa8, 0xeb, 0x9e, 0x69, 0xd4, 0xba, 0xfe, 0x4e, + 0xbd, 0x74, 0xf0, 0xe0, 0x62, 0x81, 0xfe, 0x87, 0x19, 0x45, 0x84, 0xa1, 0xdc, 0x75, 0x2d, 0x8d, + 0x18, 0x2e, 0xf1, 0xab, 0x93, 0x8c, 0xfc, 0x27, 0xe7, 0xf9, 0x7c, 0x41, 0x29, 0xcc, 0xd3, 0xa9, + 0x6b, 0xfe, 0xce, 0x4b, 0xf3, 0x1c, 0xe3, 0x06, 0xd9, 0xd7, 0x88, 0x45, 0x0c, 0xdf, 0x71, 0xf9, + 0x30, 0xdd, 0xc2, 0xab, 0x1c, 0x82, 0x43, 0x32, 0xc8, 0x87, 0xe2, 0xb6, 0x69, 0xf9, 0xc4, 0xad, + 0x4e, 0x65, 0x32, 0x4a, 0x8a, 0x55, 0x2d, 0x33, 0xba, 0x75, 0xa0, 0x1e, 0x9b, 0xff, 0x8f, 0x05, + 0xaf, 0xd9, 0x57, 0x61, 0x22, 0x62, 0x72, 0x68, 0x1a, 0xf2, 0xbb, 0x64, 0x9f, 0xbb, 0x6b, 0x4c, + 0xff, 0x45, 0x67, 0x61, 0xf4, 0x8e, 0x6e, 0x75, 0x85, 0x6b, 0xc6, 0xfc, 0xc7, 0x2b, 0x23, 0x2f, + 0xe7, 0xe6, 0x7e, 0x9c, 0x83, 0xa7, 0x7b, 0x1a, 0x0b, 0x9d, 0x5f, 0x9a, 0x5d, 0x57, 0xdf, 0xb2, + 0x08, 0xa3, 0xa6, 0xcc, 0x2f, 0x4b, 0xbc, 0x19, 0x07, 0x70, 0xea, 0x90, 0xe9, 0x34, 0xb6, 0x44, + 0x2c, 0xe2, 0x13, 0x31, 0xd3, 0x49, 0x87, 0x5c, 0x93, 0x10, 0xac, 0x60, 0x51, 0x8f, 0x68, 0xda, + 0x3e, 0x71, 0x6d, 0xdd, 0x12, 0xd3, 0x9d, 0xf4, 0x16, 0x2b, 0xa2, 0x1d, 0x4b, 0x0c, 0x65, 0x06, + 0x2b, 0x1c, 0x3a, 0x83, 0x7d, 0x16, 0xce, 0xa4, 0x68, 0xb7, 0xd2, 0x3d, 0x77, 0x68, 0xf7, 0x3f, + 0x1e, 0x81, 0x73, 0xe9, 0x76, 0x8a, 0x2e, 0x41, 0xc1, 0xa6, 0x13, 0x1c, 0x9f, 0x08, 0xc7, 0x05, + 0x81, 0x02, 0x9b, 0xd8, 0x18, 0x44, 0x1d, 0xb0, 0x91, 0xbe, 0x06, 0x2c, 0x7f, 0xa4, 0x01, 0x8b, + 0x04, 0x08, 0x85, 0x23, 0x04, 0x08, 0x47, 0x9c, 0xf5, 0x29, 0x61, 0xdd, 0x6d, 0x75, 0xdb, 0x54, + 0x09, 0xd9, 0xe4, 0x54, 0x0e, 0x09, 0xd7, 0x02, 0x00, 0x0e, 0x71, 0xe6, 0xde, 0x1f, 0x85, 0xa7, + 0x6b, 0xf7, 0xbb, 0x2e, 0x61, 0x3a, 0xea, 0x5d, 0xef, 0x6e, 0xa9, 0x01, 0xc3, 0x25, 0x28, 0x6c, + 0xef, 0x35, 0xed, 0xf8, 0x40, 0x2d, 0x6f, 0x2c, 0xad, 0x63, 0x06, 0x41, 0x1d, 0x38, 0xe3, 0xed, + 0xe8, 0x2e, 0x69, 0xd6, 0x0c, 0x83, 0x78, 0xde, 0x0d, 0xb2, 0x2f, 0x43, 0x87, 0x23, 0x1b, 0xe2, + 0x53, 0x07, 0x0f, 0x2e, 0x9e, 0xd1, 0x92, 0x54, 0x70, 0x1a, 0x69, 0xd4, 0x84, 0xa9, 0x58, 0x33, + 0x1b, 0xf4, 0x23, 0x73, 0x63, 0x13, 0x47, 0x8c, 0x1b, 0x8e, 0x93, 0xa4, 0x0a, 0xb0, 0xd3, 0xdd, + 0x62, 0xcf, 0xc2, 0x83, 0x12, 0xa9, 0x00, 0xd7, 0x79, 0x33, 0x0e, 0xe0, 0xe8, 0xb7, 0xd5, 0xa9, + 0x78, 0x94, 0x4d, 0xc5, 0xdb, 0x83, 0xba, 0xd5, 0x5e, 0x6f, 0xa4, 0x8f, 0x49, 0x39, 0x74, 0x62, + 0xc5, 0xc7, 0xc5, 0x89, 0xfd, 0x61, 0x11, 0x9e, 0x61, 0x8f, 0xce, 0x6c, 0x56, 0xf3, 0x1d, 0x57, + 0x6f, 0x11, 0x55, 0x1f, 0x5f, 0x07, 0xe4, 0xf1, 0xd6, 0x9a, 0x61, 0x38, 0x5d, 0xdb, 0x5f, 0x0f, + 0xcd, 0x78, 0x56, 0x8c, 0x05, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x6a, 0xc1, 0x74, 0x18, 0xdb, + 0x69, 0xbe, 0x6b, 0xda, 0xad, 0xfe, 0xd4, 0xf6, 0xec, 0xc1, 0x83, 0x8b, 0xd3, 0x8b, 0x31, 0x12, + 0x38, 0x41, 0x94, 0xda, 0x24, 0x9b, 0x81, 0x99, 0xac, 0xf9, 0xa8, 0x4d, 0x6e, 0x04, 0x00, 0x1c, + 0xe2, 0x44, 0x02, 0xcc, 0xc2, 0x43, 0x03, 0xcc, 0xf3, 0x90, 0x6f, 0x5a, 0x7b, 0xc2, 0x2f, 0xc8, + 0xa0, 0x7e, 0x69, 0x75, 0x03, 0xd3, 0x76, 0x1a, 0x9b, 0x85, 0xda, 0x59, 0x64, 0xda, 0x69, 0x66, + 0xa1, 0x9d, 0x3d, 0x5e, 0xd1, 0xb1, 0x14, 0x74, 0xec, 0xe4, 0x14, 0x14, 0xbd, 0x0a, 0x13, 0x4d, + 0x62, 0x38, 0x4d, 0xb2, 0x46, 0x3c, 0x4f, 0x6f, 0x91, 0x6a, 0x89, 0x0d, 0xdc, 0x93, 0x42, 0xd0, + 0x89, 0x25, 0x15, 0x88, 0xa3, 0xb8, 0x68, 0x11, 0x66, 0xee, 0xea, 0xa6, 0xbf, 0x69, 0xb6, 0xc9, + 0x8a, 0xad, 0x11, 0xc3, 0xb1, 0x9b, 0x1e, 0x8b, 0x74, 0x47, 0xf9, 0xfa, 0xe1, 0xcd, 0x38, 0x10, + 0x27, 0xf1, 0x07, 0x33, 0x91, 0x9f, 0x14, 0x61, 0x96, 0x8d, 0xbf, 0x46, 0xdc, 0x3b, 0xa6, 0x41, + 0xea, 0x5d, 0x4f, 0x35, 0x90, 0x34, 0xa5, 0xce, 0x0d, 0x5d, 0xa9, 0x47, 0x8e, 0xa0, 0xd4, 0x0b, + 0x50, 0xf6, 0x9d, 0x8e, 0x69, 0xa4, 0x59, 0xc1, 0x66, 0x00, 0xc0, 0x21, 0x0e, 0x5a, 0x82, 0x69, + 0xaf, 0xbb, 0xe5, 0x19, 0xae, 0xd9, 0xa1, 0x7c, 0x15, 0x57, 0x5c, 0x15, 0xfd, 0xa6, 0xb5, 0x18, + 0x1c, 0x27, 0x7a, 0x04, 0xcb, 0xaf, 0xd1, 0x8c, 0x97, 0x5f, 0xfd, 0xad, 0x01, 0xbf, 0xab, 0xda, + 0xe0, 0x18, 0xb3, 0xc1, 0x56, 0x16, 0x36, 0x98, 0xaa, 0x03, 0xc7, 0xb2, 0xc0, 0xd2, 0x09, 0x5a, + 0xe0, 0x5b, 0xf0, 0xd4, 0x76, 0xd7, 0xb2, 0xf6, 0x37, 0xba, 0xba, 0x65, 0x6e, 0x9b, 0xa4, 0x49, + 0x5f, 0x94, 0xd7, 0xd1, 0x0d, 0xbe, 0x68, 0x2c, 0xd7, 0x2f, 0x0a, 0x91, 0x9f, 0x5a, 0x4e, 0x47, + 0xc3, 0xbd, 0xfa, 0x0f, 0x66, 0x5a, 0x3f, 0xcd, 0xc1, 0x44, 0xdd, 0xf4, 0xb7, 0xba, 0xc6, 0x2e, + 0xf1, 0xe9, 0x0a, 0x03, 0xb9, 0x30, 0xba, 0x45, 0x17, 0x1e, 0xc2, 0x84, 0x36, 0x06, 0x1c, 0x1e, + 0x49, 0x3c, 0x5c, 0xcd, 0x94, 0x0f, 0x1e, 0x5c, 0x1c, 0x65, 0x3f, 0x31, 0x67, 0x85, 0x6e, 0x01, + 0x38, 0x74, 0x61, 0xb3, 0xe9, 0xec, 0x12, 0xbb, 0xbf, 0x09, 0x69, 0x92, 0x46, 0x9c, 0x37, 0x6b, + 0x41, 0x67, 0xac, 0x10, 0x9a, 0xfb, 0x61, 0x0e, 0x50, 0x92, 0x3f, 0xba, 0x09, 0xa5, 0xae, 0x47, + 0xc3, 0x72, 0x31, 0x8d, 0x1e, 0x99, 0xd7, 0x38, 0x55, 0xa9, 0x5b, 0xa2, 0x2b, 0x96, 0x44, 0x28, + 0xc1, 0x8e, 0xee, 0x79, 0x77, 0x1d, 0xb7, 0xd9, 0x9f, 0xf0, 0x8c, 0x60, 0x43, 0x74, 0xc5, 0x92, + 0xc8, 0xdc, 0x2f, 0xc7, 0xe0, 0xac, 0x14, 0x3c, 0x16, 0x0b, 0x34, 0x59, 0x34, 0x7d, 0xdd, 0x71, + 0x76, 0x6f, 0xda, 0xcb, 0xa6, 0x6d, 0x7a, 0x3b, 0x62, 0x4d, 0x20, 0x63, 0x81, 0xa5, 0x04, 0x06, + 0x4e, 0xe9, 0x85, 0xbe, 0xad, 0x1a, 0xe8, 0x08, 0x33, 0x50, 0x3d, 0xab, 0x97, 0x7d, 0x5c, 0xd3, + 0x1c, 0xbb, 0x4b, 0xb6, 0x76, 0x1c, 0x67, 0x57, 0x44, 0xb7, 0x6b, 0x03, 0xca, 0xf3, 0x26, 0xa7, + 0xb6, 0xe8, 0xd8, 0x3e, 0xb9, 0xe7, 0xf3, 0x65, 0xba, 0x68, 0xc3, 0x01, 0x2b, 0xf4, 0x25, 0xb1, + 0x4c, 0x2f, 0x30, 0x96, 0xab, 0x59, 0x0d, 0x41, 0xea, 0xc2, 0x7d, 0x0e, 0x8a, 0xbc, 0x17, 0x8b, + 0x99, 0xcb, 0xdc, 0x55, 0xf0, 0x98, 0x17, 0x0b, 0x08, 0x7a, 0x11, 0x46, 0x9d, 0xbb, 0xb6, 0x08, + 0x61, 0xcb, 0xf5, 0xa7, 0xc4, 0x80, 0x4d, 0x2d, 0x91, 0x8e, 0x4b, 0x0c, 0xdd, 0x27, 0xcd, 0x9b, + 0x14, 0x8c, 0x39, 0x16, 0xfa, 0xff, 0x00, 0x54, 0x44, 0x62, 0x50, 0xcd, 0x62, 0x51, 0x45, 0xb9, + 0xfe, 0x8c, 0xe8, 0x73, 0x36, 0xec, 0xd3, 0x90, 0x38, 0x58, 0xc1, 0x47, 0xd7, 0x61, 0xd2, 0x25, + 0x1d, 0xc7, 0x33, 0x7d, 0xc7, 0xdd, 0xd7, 0xac, 0x6e, 0x8b, 0x79, 0xc5, 0x72, 0xfd, 0x92, 0xa0, + 0x50, 0x0d, 0x29, 0xe0, 0x08, 0x1e, 0x8e, 0xf5, 0x43, 0x1f, 0xe6, 0x60, 0x5c, 0x36, 0x99, 0x84, + 0x86, 0x08, 0xf9, 0x0c, 0x72, 0x3d, 0x72, 0x3c, 0x43, 0xf6, 0x61, 0x8e, 0x15, 0x2b, 0xfc, 0x70, + 0x84, 0xbb, 0xe2, 0xe6, 0xe1, 0x71, 0x59, 0x09, 0xdc, 0x87, 0x33, 0x29, 0x4f, 0x8b, 0x9e, 0x0d, + 0xf4, 0x81, 0x87, 0xfc, 0x13, 0xe2, 0xe1, 0x47, 0x23, 0x5a, 0xf0, 0x5a, 0xe2, 0x3d, 0xf2, 0xf8, + 0xe4, 0x9c, 0xc0, 0x9e, 0x3c, 0xfc, 0xed, 0xcd, 0xfd, 0x69, 0x05, 0x66, 0x25, 0x73, 0x3a, 0xc5, + 0x12, 0x57, 0xf5, 0x3b, 0x8a, 0x65, 0xe6, 0x4e, 0xce, 0x32, 0xa3, 0xaa, 0x3d, 0x32, 0xb0, 0x6a, + 0xe7, 0x8f, 0xa9, 0xda, 0xcf, 0x41, 0x49, 0xd0, 0xf5, 0xaa, 0x05, 0x66, 0xb7, 0xdc, 0x71, 0x8b, + 0x36, 0x2c, 0xa1, 0xe8, 0x37, 0xe3, 0x46, 0xc0, 0x97, 0xc6, 0xb7, 0xb3, 0x32, 0x02, 0xfe, 0x66, + 0xfa, 0x34, 0x85, 0xd0, 0xe9, 0x14, 0x7b, 0x3a, 0x9d, 0x5d, 0x38, 0xef, 0xed, 0x9a, 0x9d, 0xba, + 0xab, 0xdb, 0xc6, 0x0e, 0x26, 0xdb, 0xde, 0x22, 0xcb, 0xa8, 0x35, 0x6f, 0xda, 0x37, 0x3b, 0xc4, + 0x6e, 0x60, 0xe6, 0x58, 0x4a, 0xf5, 0x4f, 0x0a, 0x76, 0xe7, 0xb5, 0xc3, 0x90, 0xf1, 0xe1, 0xb4, + 0xd0, 0x6d, 0xa8, 0xe8, 0x2c, 0xe9, 0xc0, 0xe7, 0xfb, 0x52, 0x3f, 0x53, 0xe6, 0xd4, 0xc1, 0x83, + 0x8b, 0x95, 0x5a, 0xd8, 0x1b, 0xab, 0xa4, 0xd0, 0xbb, 0x30, 0x21, 0x94, 0x47, 0x24, 0x47, 0xcb, + 0xfd, 0xd0, 0x9e, 0xa1, 0x6b, 0xa1, 0x37, 0xd5, 0xfe, 0x38, 0x4a, 0x0e, 0xbd, 0x01, 0xe7, 0xb6, + 0x82, 0x77, 0xe1, 0xb1, 0x77, 0x51, 0xd7, 0x3d, 0x72, 0x0b, 0xaf, 0x32, 0x2f, 0x53, 0xae, 0x5f, + 0x10, 0xe3, 0x73, 0x2e, 0xf6, 0xc6, 0x04, 0x16, 0xee, 0xd1, 0xbb, 0xc7, 0xbc, 0x5e, 0x39, 0xd6, + 0xbc, 0x1e, 0x09, 0xbc, 0xc7, 0x33, 0x09, 0xbc, 0x7b, 0x7b, 0x86, 0x63, 0x05, 0xde, 0x13, 0x27, + 0x18, 0x78, 0x8b, 0xb5, 0xd0, 0x64, 0xc6, 0x6b, 0xa1, 0x57, 0x61, 0xc2, 0xd8, 0x21, 0xc6, 0x2e, + 0x4b, 0xf5, 0xde, 0xd1, 0x2d, 0x96, 0x34, 0x2f, 0x87, 0x2b, 0xea, 0x45, 0x15, 0x88, 0xa3, 0xb8, + 0x83, 0xcd, 0x12, 0xdf, 0xce, 0xc1, 0xd3, 0x3d, 0xfd, 0x01, 0xba, 0x12, 0x71, 0x99, 0xb9, 0xe8, + 0xd6, 0x62, 0x0f, 0x47, 0x39, 0xe8, 0xdc, 0xf1, 0x27, 0xa3, 0x70, 0x66, 0x51, 0xb7, 0x88, 0xdd, + 0xd4, 0x23, 0x93, 0xc6, 0x0b, 0x50, 0xf2, 0x8c, 0x1d, 0xd2, 0xec, 0x5a, 0x41, 0xba, 0x4a, 0xaa, + 0x87, 0x26, 0xda, 0xb1, 0xc4, 0x90, 0xf9, 0x74, 0x3a, 0x98, 0x23, 0x51, 0x6c, 0x39, 0x8e, 0x12, + 0x03, 0xbd, 0x02, 0x93, 0x22, 0x51, 0xec, 0xd8, 0x4b, 0xba, 0x4f, 0xbc, 0x6a, 0x9e, 0xf9, 0x36, + 0x44, 0xe5, 0xbd, 0x1a, 0x81, 0xe0, 0x18, 0x26, 0xe5, 0xe4, 0x9b, 0x6d, 0x72, 0xdf, 0xb1, 0x83, + 0xc5, 0xb5, 0xe4, 0xb4, 0x29, 0xda, 0xb1, 0xc4, 0x40, 0xdf, 0x4a, 0x66, 0x3a, 0xbf, 0x38, 0xa0, + 0xe6, 0xa6, 0x0c, 0x56, 0x1f, 0x76, 0xf4, 0xb5, 0x1c, 0x54, 0x3a, 0xc4, 0xf5, 0x4c, 0xcf, 0x27, + 0xb6, 0x41, 0x44, 0xa6, 0xf3, 0x66, 0x16, 0xd6, 0xd4, 0x08, 0xc9, 0x72, 0x47, 0xab, 0x34, 0x60, + 0x95, 0xe9, 0xe9, 0xac, 0xa2, 0x07, 0x33, 0x9c, 0x7b, 0x70, 0x76, 0x51, 0xf7, 0x8d, 0x9d, 0x6e, + 0x87, 0x5b, 0x74, 0xd7, 0xd5, 0x7d, 0xd3, 0xb1, 0xd1, 0xf3, 0x30, 0x46, 0x6c, 0x7d, 0xcb, 0x22, + 0xcd, 0xf8, 0x3e, 0xd1, 0x55, 0xde, 0x8c, 0x03, 0x38, 0xfa, 0x14, 0x54, 0xda, 0xfa, 0xbd, 0x25, + 0xd1, 0x53, 0xa8, 0xa9, 0x3c, 0x45, 0xb1, 0x16, 0x82, 0xb0, 0x8a, 0x37, 0xf7, 0x65, 0x38, 0xcb, + 0x59, 0xae, 0xe9, 0x1d, 0x65, 0x44, 0x8f, 0xb0, 0x25, 0xb3, 0x04, 0xd3, 0x86, 0x4b, 0x74, 0x9f, + 0xac, 0x6c, 0xaf, 0x3b, 0xfe, 0xd5, 0x7b, 0xa6, 0xe7, 0x8b, 0xbd, 0x19, 0x99, 0x0f, 0x5a, 0x8c, + 0xc1, 0x71, 0xa2, 0xc7, 0xdc, 0x77, 0xc6, 0x00, 0x5d, 0x6d, 0x9b, 0xbe, 0x1f, 0x0d, 0xea, 0x2e, + 0x43, 0x71, 0xcb, 0x75, 0x76, 0x65, 0x64, 0x29, 0xf7, 0x57, 0xea, 0xac, 0x15, 0x0b, 0x28, 0xf5, + 0x29, 0xc6, 0x8e, 0x6e, 0xdb, 0xc4, 0x0a, 0xc3, 0x30, 0xe9, 0x53, 0x16, 0x25, 0x04, 0x2b, 0x58, + 0xec, 0xbc, 0x09, 0xff, 0xa5, 0xe4, 0xbe, 0xc2, 0xf3, 0x26, 0x21, 0x08, 0xab, 0x78, 0x91, 0xa5, + 0x79, 0x21, 0xeb, 0xa5, 0xf9, 0x68, 0x06, 0x4b, 0xf3, 0xf4, 0x73, 0x18, 0xc5, 0x53, 0x39, 0x87, + 0x31, 0x76, 0xd4, 0x73, 0x18, 0xa5, 0x8c, 0x27, 0xbf, 0x8f, 0x54, 0x97, 0xc8, 0x97, 0x79, 0xef, + 0x0d, 0x6a, 0xff, 0x09, 0xf5, 0x3c, 0x56, 0x64, 0xf1, 0xd8, 0xac, 0xf5, 0x3e, 0x1e, 0x81, 0xe9, + 0xb8, 0xcb, 0x45, 0xf7, 0x61, 0xcc, 0xe0, 0x1e, 0x4a, 0xac, 0xb2, 0xb4, 0x81, 0x27, 0x9a, 0xa4, + 0xbf, 0x13, 0x87, 0x15, 0x38, 0x04, 0x07, 0x0c, 0xd1, 0x57, 0x73, 0x50, 0x36, 0x02, 0x27, 0x25, + 0xb2, 0x58, 0x03, 0xb3, 0x4f, 0x71, 0x7a, 0xfc, 0x04, 0x82, 0x84, 0xe0, 0x90, 0xe9, 0xdc, 0xcf, + 0x46, 0xa0, 0xa2, 0xfa, 0xa7, 0x2f, 0x2a, 0x5a, 0xc6, 0xc7, 0xe3, 0x7f, 0x2b, 0xb6, 0x2b, 0x0f, + 0xc5, 0x85, 0x42, 0x50, 0x6c, 0x6a, 0xcd, 0x37, 0xb7, 0x68, 0x68, 0x43, 0x5f, 0x4e, 0xe8, 0xa7, + 0xc2, 0x36, 0x45, 0x71, 0x3a, 0x50, 0xf0, 0x3a, 0xc4, 0x10, 0x8f, 0xbb, 0x9e, 0x9d, 0xda, 0x68, + 0x1d, 0x62, 0x84, 0x0e, 0x9d, 0xfe, 0xc2, 0x8c, 0x13, 0xba, 0x07, 0x45, 0xcf, 0xd7, 0xfd, 0xae, + 0x27, 0x32, 0x5c, 0x19, 0xaa, 0xaa, 0xc6, 0xe8, 0x86, 0x5e, 0x9c, 0xff, 0xc6, 0x82, 0xdf, 0xdc, + 0x35, 0x98, 0x49, 0xe8, 0x35, 0x75, 0xed, 0xe4, 0x5e, 0xc7, 0x25, 0x1e, 0x8d, 0x8e, 0xe2, 0xe1, + 0xe2, 0x55, 0x09, 0xc1, 0x0a, 0xd6, 0xdc, 0xcf, 0x73, 0x30, 0xa5, 0x50, 0x5a, 0x35, 0x3d, 0x1f, + 0x7d, 0x21, 0xf1, 0xaa, 0xe6, 0x8f, 0xf6, 0xaa, 0x68, 0x6f, 0xf6, 0xa2, 0xa4, 0x7d, 0x07, 0x2d, + 0xca, 0x6b, 0x72, 0x60, 0xd4, 0xf4, 0x49, 0xdb, 0x13, 0x59, 0xca, 0xd7, 0xb3, 0x1b, 0xb3, 0x30, + 0x9b, 0xb2, 0x42, 0x19, 0x60, 0xce, 0x67, 0xee, 0x6f, 0x96, 0x23, 0x8f, 0x48, 0xdf, 0x1f, 0x3b, + 0xee, 0x47, 0x9b, 0xea, 0x5d, 0x4f, 0xd9, 0x80, 0x0d, 0x8f, 0xfb, 0x29, 0x30, 0x1c, 0xc1, 0x44, + 0x7b, 0x50, 0xf2, 0x49, 0xbb, 0x63, 0xe9, 0x7e, 0x70, 0x46, 0xe0, 0xda, 0x80, 0x4f, 0xb0, 0x29, + 0xc8, 0xf1, 0x59, 0x2a, 0xf8, 0x85, 0x25, 0x1b, 0xd4, 0x86, 0x31, 0x8f, 0xef, 0x93, 0x08, 0x3d, + 0x5b, 0x1e, 0x90, 0x63, 0xb0, 0xeb, 0xc2, 0x9c, 0x87, 0xf8, 0x81, 0x03, 0x1e, 0xe8, 0xcb, 0x30, + 0xda, 0x36, 0x6d, 0xd3, 0x61, 0xd9, 0x91, 0xca, 0x95, 0xb7, 0xb2, 0x35, 0xa4, 0xf9, 0x35, 0x4a, + 0x9b, 0x4f, 0x03, 0xf2, 0x7d, 0xb1, 0x36, 0xcc, 0xd9, 0xb2, 0x83, 0x81, 0x86, 0x08, 0xaa, 0x45, + 0x8c, 0xfe, 0x85, 0x8c, 0x65, 0x90, 0x31, 0x7b, 0x74, 0x36, 0x0a, 0x9a, 0xb1, 0xe4, 0x8f, 0xee, + 0x43, 0x61, 0xdb, 0xb4, 0x88, 0xd8, 0x77, 0xbe, 0x9d, 0xb1, 0x1c, 0xcb, 0xa6, 0x45, 0xb8, 0x0c, + 0xe1, 0xc9, 0x14, 0xd3, 0x22, 0x98, 0xf1, 0x64, 0x03, 0xe1, 0x12, 0x4e, 0x43, 0x6c, 0xba, 0x65, + 0x3d, 0x10, 0x58, 0x90, 0x8f, 0x0d, 0x44, 0xd0, 0x8c, 0x25, 0x7f, 0xf4, 0xeb, 0xb9, 0x30, 0x6b, + 0xc8, 0x4f, 0x6b, 0xbe, 0x9d, 0xb1, 0x2c, 0x22, 0x57, 0xc3, 0x45, 0x91, 0x61, 0x7b, 0x22, 0x8f, + 0x78, 0x1f, 0x0a, 0x7a, 0x7b, 0xaf, 0x23, 0x42, 0x95, 0xac, 0xdf, 0x48, 0xad, 0xbd, 0xd7, 0x89, + 0xbd, 0x91, 0xda, 0xda, 0x46, 0x03, 0x33, 0x9e, 0xd4, 0x34, 0x76, 0xf5, 0xed, 0x5d, 0xbd, 0x0a, + 0x43, 0x31, 0x8d, 0x1b, 0x94, 0x76, 0xcc, 0x34, 0x58, 0x1b, 0xe6, 0x6c, 0xe9, 0xb3, 0xb7, 0xf7, + 0x7c, 0xbf, 0x5a, 0x19, 0xca, 0xb3, 0xaf, 0xed, 0xf9, 0x7e, 0xec, 0xd9, 0xd7, 0x36, 0x36, 0x37, + 0x31, 0xe3, 0x49, 0x79, 0xdb, 0xba, 0xef, 0x89, 0x24, 0x54, 0xd6, 0xbc, 0xd7, 0x75, 0xdf, 0x8b, + 0xf1, 0x5e, 0xaf, 0x6d, 0x6a, 0x98, 0xf1, 0x44, 0x77, 0x20, 0xef, 0xd9, 0x5e, 0x75, 0x82, 0xb1, + 0x7e, 0x33, 0x63, 0xd6, 0x9a, 0x2d, 0x38, 0xcb, 0xa3, 0x27, 0xda, 0xba, 0x86, 0x29, 0x43, 0xc6, + 0x77, 0xcf, 0xab, 0x4e, 0x0e, 0x87, 0xef, 0x5e, 0x82, 0xef, 0x06, 0xe5, 0xbb, 0xe7, 0xa1, 0xaf, + 0xe5, 0xa0, 0xd8, 0xe9, 0x6e, 0x69, 0xdd, 0xad, 0xea, 0x14, 0xe3, 0xfd, 0xf9, 0x8c, 0x79, 0x37, + 0x18, 0x71, 0xce, 0x5e, 0xc6, 0x18, 0xbc, 0x11, 0x0b, 0xce, 0x4c, 0x08, 0xce, 0xb5, 0x3a, 0x3d, + 0x14, 0x21, 0xae, 0x31, 0x6a, 0x31, 0x21, 0x78, 0x23, 0x16, 0x9c, 0x03, 0x21, 0x2c, 0x7d, 0xab, + 0x3a, 0x33, 0x2c, 0x21, 0x2c, 0x3d, 0x45, 0x08, 0x4b, 0xe7, 0x42, 0x58, 0xfa, 0x16, 0x55, 0xfd, + 0x9d, 0xe6, 0xb6, 0x57, 0x45, 0x43, 0x51, 0xfd, 0xeb, 0xcd, 0xed, 0xb8, 0xea, 0x5f, 0x5f, 0x5a, + 0xd6, 0x30, 0xe3, 0x49, 0x5d, 0x8e, 0x67, 0xe9, 0xc6, 0x6e, 0xf5, 0xcc, 0x50, 0x5c, 0x8e, 0x46, + 0x69, 0xc7, 0x5c, 0x0e, 0x6b, 0xc3, 0x9c, 0x2d, 0xfa, 0x9d, 0x1c, 0x54, 0xc4, 0xd9, 0xb3, 0x6b, + 0xae, 0xd9, 0xac, 0x9e, 0xcd, 0x66, 0x85, 0x18, 0x17, 0x23, 0xe4, 0xc0, 0x85, 0x91, 0xd9, 0x05, + 0x05, 0x82, 0x55, 0x41, 0xd0, 0x1f, 0xe5, 0x60, 0x52, 0x8f, 0x9c, 0x32, 0xac, 0x3e, 0xc9, 0x64, + 0xdb, 0xca, 0x7a, 0x4a, 0x88, 0x1e, 0x65, 0x64, 0xe2, 0xc9, 0x6c, 0x6a, 0x14, 0x88, 0x63, 0x12, + 0x31, 0xf5, 0xf5, 0x7c, 0xd7, 0xec, 0x90, 0xea, 0xb9, 0xa1, 0xa8, 0xaf, 0xc6, 0x88, 0xc7, 0xd4, + 0x97, 0x37, 0x62, 0xc1, 0x99, 0x4d, 0xdd, 0x84, 0x2f, 0xc9, 0xab, 0x4f, 0x0d, 0x65, 0xea, 0x0e, + 0x16, 0xfc, 0xd1, 0xa9, 0x5b, 0xb4, 0xe2, 0x80, 0x39, 0xd5, 0x65, 0x97, 0x34, 0x4d, 0xaf, 0x5a, + 0x1d, 0x8a, 0x2e, 0x63, 0x4a, 0x3b, 0xa6, 0xcb, 0xac, 0x0d, 0x73, 0xb6, 0xd4, 0x9d, 0xdb, 0xde, + 0x5e, 0xf5, 0xe9, 0xa1, 0xb8, 0xf3, 0x75, 0x6f, 0x2f, 0xe6, 0xce, 0xd7, 0xb5, 0x0d, 0x4c, 0x19, + 0x0a, 0x77, 0x6e, 0x79, 0xba, 0x5b, 0x9d, 0x1d, 0x92, 0x3b, 0xa7, 0xc4, 0x13, 0xee, 0x9c, 0x36, + 0x62, 0xc1, 0x99, 0x69, 0x01, 0xbb, 0x5e, 0x66, 0x1a, 0xd5, 0x4f, 0x0c, 0x45, 0x0b, 0xae, 0x71, + 0xea, 0x31, 0x2d, 0x10, 0xad, 0x38, 0x60, 0x8e, 0x9e, 0xa3, 0x51, 0x6d, 0xc7, 0x32, 0x0d, 0xdd, + 0xab, 0x3e, 0xc3, 0x4e, 0x1e, 0x8e, 0xf3, 0x98, 0x93, 0xb7, 0x61, 0x09, 0x45, 0x3f, 0xc8, 0xc1, + 0x54, 0x6c, 0x8f, 0xad, 0x7a, 0x9e, 0x89, 0x6e, 0x64, 0x2c, 0x7a, 0x3d, 0xca, 0x85, 0x3f, 0x82, + 0x3c, 0xac, 0x11, 0xdf, 0xa1, 0x89, 0x0b, 0x85, 0xbe, 0x95, 0x83, 0xb2, 0x6c, 0xab, 0x5e, 0x60, + 0x22, 0xbe, 0x33, 0x2c, 0x11, 0xb9, 0x70, 0xf2, 0xe8, 0x61, 0x78, 0xca, 0x20, 0x14, 0x81, 0x79, + 0x6d, 0xa6, 0xf3, 0x9a, 0xef, 0x12, 0xbd, 0x5d, 0xbd, 0x38, 0x14, 0xaf, 0x8d, 0x43, 0x0e, 0x31, + 0xaf, 0xad, 0x40, 0xb0, 0x2a, 0x08, 0x7b, 0xa5, 0x7a, 0xf4, 0xe4, 0x5f, 0xf5, 0xd2, 0x50, 0x5e, + 0x69, 0xfc, 0x7c, 0x61, 0xf4, 0x95, 0xc6, 0xa0, 0x38, 0x2e, 0x14, 0xfa, 0x8b, 0x1c, 0xcc, 0xe8, + 0xf1, 0x63, 0xc2, 0xd5, 0xff, 0xc1, 0x44, 0x25, 0xc3, 0x10, 0x35, 0x72, 0x1c, 0x99, 0x09, 0xfb, + 0xb4, 0x10, 0x76, 0x26, 0x01, 0xc7, 0x49, 0xd1, 0x68, 0x90, 0xe2, 0x6d, 0xfb, 0x9d, 0xea, 0xdc, + 0x50, 0x82, 0x14, 0x6d, 0xdb, 0x8f, 0xaf, 0x8b, 0xb4, 0xe5, 0xcd, 0x06, 0x66, 0x3c, 0x79, 0x94, + 0x46, 0x5c, 0xd7, 0xf4, 0xab, 0xcf, 0x0e, 0x27, 0x4a, 0x63, 0xc4, 0xe3, 0x51, 0x1a, 0x6b, 0xc4, + 0x82, 0xf3, 0x6c, 0x17, 0x20, 0xcc, 0x2d, 0xa4, 0xe4, 0x6f, 0x37, 0xd4, 0xfc, 0x6d, 0xe5, 0xca, + 0xab, 0x7d, 0x67, 0xd0, 0xb5, 0xff, 0x53, 0x73, 0x7d, 0x73, 0x5b, 0x37, 0x7c, 0x25, 0xf9, 0x3b, + 0xfb, 0xed, 0x1c, 0x4c, 0x44, 0xf2, 0x09, 0x29, 0xac, 0x77, 0xa2, 0xac, 0x71, 0xf6, 0x5b, 0x8e, + 0xaa, 0x44, 0xbf, 0x91, 0x83, 0xb2, 0xcc, 0x2c, 0xa4, 0x48, 0xd3, 0x8c, 0x4a, 0x33, 0x68, 0xa6, + 0x94, 0xb1, 0x4a, 0x97, 0x84, 0x8e, 0x4d, 0x24, 0xc5, 0x30, 0xfc, 0xb1, 0x91, 0xec, 0xd2, 0x25, + 0xfa, 0x28, 0x07, 0xe3, 0x6a, 0xa2, 0x21, 0x45, 0xa0, 0x56, 0x54, 0xa0, 0x8d, 0x6c, 0x0e, 0x47, + 0x1d, 0xf2, 0xae, 0x64, 0xce, 0x61, 0xf8, 0xef, 0x2a, 0x76, 0x43, 0x56, 0x95, 0xe4, 0x9b, 0x39, + 0x80, 0x30, 0x01, 0x91, 0x22, 0x0a, 0x89, 0x8a, 0x32, 0xe8, 0x1e, 0x35, 0xe7, 0xd5, 0x7b, 0x54, + 0x64, 0x36, 0x62, 0xf8, 0xa3, 0xb2, 0xb6, 0xb1, 0xb9, 0xd9, 0x43, 0x92, 0x6f, 0xe4, 0xa0, 0x2c, + 0x73, 0x13, 0xc3, 0x1f, 0x94, 0xf5, 0xda, 0xa6, 0xc6, 0x57, 0x0f, 0x49, 0x51, 0xbe, 0x9e, 0x83, + 0x52, 0x90, 0xab, 0x48, 0x91, 0xc4, 0x88, 0x4a, 0x32, 0xe8, 0x99, 0x3e, 0x6d, 0x5d, 0xeb, 0x31, + 0x24, 0x4c, 0x8e, 0xbd, 0x13, 0x93, 0x63, 0xa3, 0x97, 0x1c, 0x1f, 0xe4, 0xa0, 0xa2, 0xe4, 0x31, + 0x52, 0x44, 0xd9, 0x8e, 0x8a, 0x32, 0xe8, 0xf6, 0x8c, 0x60, 0xd6, 0x5b, 0x1a, 0x25, 0xa1, 0x31, + 0x7c, 0x69, 0x04, 0xb3, 0x43, 0xa5, 0x09, 0x32, 0x1b, 0x27, 0x22, 0x0d, 0x65, 0xd6, 0xdb, 0x9c, + 0x65, 0x96, 0x63, 0xf8, 0xe6, 0x7c, 0x7d, 0x69, 0x59, 0x3b, 0xc4, 0xc9, 0x85, 0x29, 0x8f, 0xe1, + 0xdb, 0x33, 0xe7, 0x95, 0x2e, 0xcb, 0x77, 0x73, 0x30, 0x1d, 0xcf, 0x7b, 0xa4, 0x48, 0xb4, 0x1b, + 0x95, 0x68, 0xd0, 0x8b, 0xff, 0x2a, 0xc7, 0x74, 0xb9, 0xfe, 0x20, 0x07, 0x67, 0x52, 0x72, 0x1e, + 0x29, 0xa2, 0xd9, 0x51, 0xd1, 0x6e, 0x0f, 0xeb, 0xce, 0x68, 0x5c, 0xb3, 0x95, 0xa4, 0xc7, 0xf0, + 0x35, 0x5b, 0x30, 0xeb, 0x1d, 0x4e, 0xa8, 0xc9, 0x8f, 0xe1, 0x87, 0x13, 0xc9, 0xb3, 0x15, 0x71, + 0xfd, 0x0e, 0xd3, 0x20, 0xc3, 0xd7, 0x6f, 0xce, 0xab, 0xf7, 0x3c, 0x11, 0x24, 0x45, 0x86, 0x3f, + 0x4f, 0xac, 0x6b, 0x1b, 0x87, 0xce, 0x13, 0x32, 0x41, 0x72, 0x12, 0xf3, 0x04, 0x63, 0xd6, 0x5b, + 0x63, 0xd4, 0x44, 0xc9, 0xf0, 0x35, 0x26, 0xe0, 0x96, 0x2e, 0xcf, 0xf7, 0x72, 0xca, 0xed, 0x24, + 0x25, 0xfb, 0x91, 0x22, 0x97, 0x13, 0x95, 0xeb, 0xad, 0xa1, 0x9d, 0x43, 0x56, 0xe5, 0xfb, 0x38, + 0x07, 0x93, 0xd1, 0xd4, 0x47, 0x8a, 0x64, 0x66, 0x54, 0x32, 0x6d, 0x08, 0x37, 0x9f, 0xe2, 0x9e, + 0x3b, 0x9e, 0xfb, 0x18, 0xbe, 0xe7, 0x56, 0x39, 0xf6, 0x7e, 0x97, 0x69, 0x69, 0x8f, 0xe1, 0xbf, + 0xcb, 0xde, 0x97, 0x39, 0x55, 0xf9, 0xbe, 0x9f, 0x83, 0x73, 0xe9, 0xb9, 0x8e, 0x14, 0x09, 0xf7, + 0xa2, 0x12, 0xbe, 0x3d, 0xc4, 0x2b, 0xdf, 0xf1, 0x58, 0x45, 0x26, 0x3b, 0x86, 0x1f, 0xab, 0x68, + 0xcb, 0x9b, 0x8d, 0xc3, 0x62, 0xb8, 0x30, 0xef, 0x71, 0x02, 0x31, 0x1c, 0x67, 0x96, 0x2a, 0xcd, + 0x9c, 0x1f, 0x39, 0x71, 0xc4, 0x8f, 0x23, 0xa1, 0xf7, 0xe4, 0x01, 0x28, 0x7e, 0x4e, 0xe8, 0xd3, + 0xfd, 0xe7, 0x54, 0x0e, 0x3f, 0xe7, 0xf4, 0xd7, 0x05, 0x98, 0x8a, 0xe5, 0x17, 0x58, 0xe9, 0x11, + 0xfa, 0x93, 0xd5, 0xe9, 0xca, 0x45, 0xef, 0x61, 0x5f, 0x0d, 0x00, 0x38, 0xc4, 0x41, 0x1f, 0xe7, + 0x60, 0xea, 0xae, 0xee, 0x1b, 0x3b, 0x0d, 0xdd, 0xdf, 0xe1, 0x87, 0xd5, 0x32, 0x7a, 0x7b, 0x6f, + 0x46, 0xa9, 0x86, 0xe9, 0xc5, 0x18, 0x00, 0xc7, 0xf9, 0xa3, 0xe7, 0x61, 0xac, 0xe3, 0x58, 0x96, + 0x69, 0xb7, 0x44, 0xc1, 0x15, 0x99, 0x2f, 0x6f, 0xf0, 0x66, 0x1c, 0xc0, 0xa3, 0x85, 0xb2, 0x0a, + 0x99, 0x1c, 0x03, 0x89, 0x0d, 0xe9, 0xb1, 0x4e, 0x67, 0x8e, 0x3e, 0x2e, 0xa7, 0x33, 0xff, 0xb1, + 0x00, 0x28, 0x39, 0x07, 0x3e, 0xac, 0x94, 0xdc, 0x65, 0x28, 0x1a, 0xa1, 0xaa, 0x28, 0xe7, 0xa9, + 0xc5, 0x1b, 0x15, 0x50, 0x7e, 0xd3, 0xc1, 0x23, 0x46, 0xd7, 0x25, 0xc9, 0xca, 0x41, 0xbc, 0x1d, + 0x4b, 0x8c, 0x3e, 0x0b, 0x63, 0x7c, 0x94, 0xbc, 0xad, 0xf0, 0x5e, 0xe6, 0xc1, 0x40, 0x1f, 0x2f, + 0xff, 0x16, 0x2b, 0x14, 0xb4, 0x23, 0x6e, 0x63, 0x15, 0xfb, 0xbe, 0xd9, 0x5d, 0x93, 0x9d, 0xb1, + 0x42, 0xe8, 0x74, 0xca, 0x68, 0x0c, 0xa6, 0x53, 0x3f, 0x2b, 0xc2, 0x4c, 0xc2, 0x5d, 0x9e, 0xd2, + 0xc5, 0xca, 0x17, 0xa0, 0x44, 0xff, 0x2a, 0x75, 0x2c, 0xe4, 0x3b, 0xbc, 0x2e, 0xda, 0xb1, 0xc4, + 0x50, 0xee, 0x0f, 0xe6, 0x7b, 0xde, 0x1f, 0xbc, 0x1d, 0xb9, 0x44, 0x9d, 0x65, 0xad, 0xb3, 0x57, + 0x61, 0x82, 0x67, 0xeb, 0x83, 0x9b, 0x76, 0xa3, 0xd1, 0x9b, 0x56, 0xd7, 0x54, 0x20, 0x8e, 0xe2, + 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd6, 0xbd, 0xba, 0x0f, 0x93, 0x05, 0x2d, 0xde, 0xcd, 0x7a, 0xfa, + 0xec, 0xc3, 0xb2, 0xd4, 0x4b, 0xa9, 0xa5, 0x43, 0x2f, 0xa5, 0x2e, 0x40, 0xd9, 0xf3, 0xac, 0x37, + 0x88, 0x6b, 0x6e, 0xef, 0xb3, 0x0b, 0x91, 0x4a, 0xe1, 0x2d, 0x2d, 0x00, 0xe0, 0x10, 0xe7, 0x71, + 0x3c, 0x4f, 0xff, 0x0f, 0x39, 0x98, 0xe4, 0xe9, 0xad, 0x5a, 0xa7, 0xb3, 0xe8, 0x92, 0xa6, 0x47, + 0x5d, 0x4f, 0xc7, 0x35, 0xef, 0xe8, 0x3e, 0x09, 0xae, 0xc2, 0xf5, 0xe7, 0x7a, 0x1a, 0xb2, 0x33, + 0x56, 0x08, 0xa1, 0x67, 0x61, 0x54, 0xef, 0x74, 0x56, 0x96, 0x98, 0x0c, 0xf9, 0xf0, 0xd8, 0x40, + 0x8d, 0x36, 0x62, 0x0e, 0x43, 0xaf, 0xc1, 0xa4, 0x69, 0x7b, 0xbe, 0x6e, 0x59, 0xec, 0xcc, 0xfd, + 0xca, 0x12, 0x73, 0xf4, 0xf9, 0xf0, 0x10, 0xc8, 0x4a, 0x04, 0x8a, 0x63, 0xd8, 0x73, 0x7f, 0x5b, + 0x81, 0x99, 0x44, 0xb6, 0x0e, 0xcd, 0xc2, 0x88, 0xc9, 0x2f, 0x29, 0xe5, 0xeb, 0x20, 0x28, 0x8d, + 0xac, 0x2c, 0xe1, 0x11, 0xb3, 0xa9, 0x3a, 0x92, 0x91, 0x93, 0x73, 0x24, 0xb2, 0x56, 0x41, 0xfe, + 0xa8, 0xb5, 0x0a, 0xc2, 0xbb, 0x83, 0xe2, 0xee, 0x5d, 0xca, 0x85, 0xee, 0xf0, 0xbe, 0x21, 0x56, + 0xf0, 0x8f, 0x54, 0x3c, 0xe1, 0x26, 0x94, 0xf4, 0x8e, 0xc9, 0xef, 0x15, 0x17, 0xfb, 0xbe, 0xef, + 0x53, 0x6b, 0xac, 0xf0, 0x4b, 0xc5, 0x92, 0x48, 0xf2, 0x46, 0xf1, 0x58, 0xb6, 0x37, 0x8a, 0xd5, + 0x60, 0xa0, 0xf4, 0xd0, 0x60, 0xe0, 0x32, 0x14, 0x75, 0xc3, 0x37, 0xef, 0x10, 0x61, 0xc7, 0x32, + 0xc4, 0xa8, 0xb1, 0x56, 0x2c, 0xa0, 0xa2, 0xdc, 0xaf, 0x1f, 0x84, 0xbc, 0x90, 0x28, 0xf7, 0x1b, + 0x80, 0xb0, 0x8a, 0xc7, 0x7c, 0x2d, 0x53, 0x9a, 0xc0, 0xd7, 0x56, 0x62, 0xbe, 0x56, 0x05, 0xe2, + 0x28, 0x2e, 0xaa, 0xc1, 0x14, 0x6f, 0xb8, 0xd5, 0xb1, 0x1c, 0xbd, 0x49, 0xbb, 0x8f, 0x47, 0xb5, + 0xe2, 0x5a, 0x14, 0x8c, 0xe3, 0xf8, 0x3d, 0xdc, 0xf5, 0xc4, 0xe0, 0xee, 0x7a, 0x32, 0x1b, 0x77, + 0x1d, 0xb7, 0xc8, 0x3e, 0xdc, 0xf5, 0xfb, 0xf1, 0xca, 0x00, 0xfc, 0x94, 0xe6, 0xa0, 0xae, 0x95, + 0x9a, 0x57, 0x53, 0xbd, 0xfb, 0x7f, 0xa4, 0x8a, 0x00, 0x9f, 0x86, 0x09, 0xc7, 0x6d, 0xe9, 0xb6, + 0x79, 0x9f, 0x39, 0x1c, 0x8f, 0x9d, 0xd6, 0x2c, 0x73, 0x6d, 0xbd, 0xa9, 0x02, 0x70, 0x14, 0x0f, + 0xdd, 0x87, 0x72, 0x2b, 0xf0, 0xb2, 0xd5, 0x99, 0x4c, 0xfc, 0x4c, 0xd4, 0x6b, 0xf3, 0xeb, 0x41, + 0xb2, 0x0d, 0x87, 0xec, 0x94, 0x59, 0x09, 0x3d, 0x2e, 0xb3, 0xd2, 0xfb, 0x25, 0xe6, 0xc6, 0xa3, + 0xdb, 0x1c, 0xa7, 0x14, 0xf3, 0x7d, 0x06, 0xca, 0x22, 0x22, 0x10, 0x73, 0x57, 0xb9, 0xfe, 0x09, + 0xa1, 0x2a, 0x67, 0x12, 0xb5, 0x34, 0x56, 0x96, 0x70, 0x88, 0x7d, 0xc4, 0x00, 0x30, 0x52, 0xd3, + 0xa1, 0x90, 0x5d, 0x4d, 0x07, 0x0d, 0x9e, 0xe4, 0xf7, 0x6f, 0x35, 0x6d, 0x95, 0x05, 0x28, 0xa6, + 0xc1, 0xaf, 0xdf, 0xf2, 0xea, 0x7f, 0xe7, 0xc5, 0x43, 0x3c, 0x79, 0x35, 0x0d, 0x09, 0xa7, 0xf7, + 0x15, 0x9e, 0xce, 0xd2, 0xa5, 0xa7, 0x2b, 0x26, 0x3c, 0x5d, 0x08, 0xc4, 0x51, 0xdc, 0x1e, 0x6e, + 0xaa, 0x34, 0xb8, 0x9b, 0x2a, 0x67, 0xe5, 0xa6, 0xa2, 0x1a, 0x77, 0xcc, 0xa8, 0x12, 0x0e, 0x8d, + 0x2a, 0x6f, 0x43, 0xc5, 0x63, 0x6f, 0x92, 0xbf, 0xf0, 0x4a, 0xdf, 0x2f, 0x5c, 0x0b, 0x7b, 0x63, + 0x95, 0x94, 0x62, 0xe8, 0xe3, 0x27, 0x58, 0x28, 0x62, 0x0e, 0x8a, 0x2d, 0xd7, 0xe9, 0x76, 0xf8, + 0x9d, 0x01, 0xa1, 0xe4, 0xd7, 0x58, 0x0b, 0x16, 0x90, 0xc1, 0x9c, 0xc1, 0xf7, 0xca, 0x30, 0x15, + 0xdb, 0x67, 0x4c, 0xcd, 0x33, 0xe5, 0x4e, 0x39, 0xcf, 0x74, 0x09, 0x0a, 0x3e, 0x0d, 0x1a, 0x46, + 0xa2, 0xb7, 0xd2, 0x59, 0xb4, 0xc0, 0x20, 0xc9, 0xe2, 0x17, 0xf9, 0xa3, 0x17, 0xbf, 0x40, 0xff, + 0x0b, 0xca, 0x7a, 0xb3, 0xe9, 0x12, 0xcf, 0x23, 0x41, 0x35, 0x1d, 0xe6, 0xf3, 0x6b, 0x41, 0x23, + 0x0e, 0xe1, 0x6c, 0xa1, 0xda, 0xdc, 0xf6, 0x6e, 0x79, 0x22, 0x7b, 0xa4, 0x2e, 0x54, 0x97, 0x96, + 0x35, 0xda, 0x8e, 0x25, 0x06, 0x6a, 0xc2, 0xd4, 0xae, 0xbb, 0xb5, 0xb8, 0xa8, 0x1b, 0x3b, 0xe4, + 0x38, 0x19, 0x07, 0x56, 0x25, 0xf7, 0x46, 0x94, 0x02, 0x8e, 0x93, 0x14, 0x5c, 0x6e, 0x90, 0x7d, + 0x5f, 0xdf, 0x3a, 0x4e, 0x4c, 0x18, 0x70, 0x51, 0x29, 0xe0, 0x38, 0x49, 0x1a, 0xc1, 0xed, 0xba, + 0x5b, 0xc1, 0x8d, 0x76, 0x51, 0x95, 0x4b, 0x46, 0x70, 0x37, 0x42, 0x10, 0x56, 0xf1, 0xe8, 0x80, + 0xed, 0xba, 0x5b, 0x98, 0xe8, 0x56, 0x5b, 0x14, 0x16, 0x94, 0x03, 0x76, 0x43, 0xb4, 0x63, 0x89, + 0x81, 0x3a, 0x80, 0xe8, 0xd3, 0xb1, 0xf7, 0x2e, 0xaf, 0xe4, 0x8a, 0x45, 0xdf, 0x73, 0x69, 0x4f, + 0x23, 0x91, 0xd4, 0x07, 0x3a, 0x47, 0xdd, 0xdd, 0x8d, 0x04, 0x1d, 0x9c, 0x42, 0x1b, 0xbd, 0x05, + 0x4f, 0xed, 0xba, 0x5b, 0x22, 0xed, 0xdf, 0x70, 0x4d, 0xdb, 0x30, 0x3b, 0x3a, 0xaf, 0x11, 0x50, + 0x89, 0xd6, 0x41, 0xbc, 0x91, 0x8e, 0x86, 0x7b, 0xf5, 0x8f, 0x26, 0x3d, 0xc7, 0x33, 0x49, 0x7a, + 0xc6, 0xcc, 0xf5, 0x51, 0x2f, 0x76, 0x33, 0x98, 0x7f, 0xfa, 0x61, 0x0e, 0x10, 0x3b, 0x61, 0x15, + 0x7c, 0x0d, 0x84, 0x39, 0x3f, 0xb4, 0x00, 0x65, 0xe6, 0xfd, 0x94, 0x4b, 0xaf, 0x32, 0x7b, 0x70, + 0x2d, 0x00, 0xe0, 0x10, 0x87, 0xae, 0x51, 0x1c, 0xab, 0x49, 0x64, 0xa5, 0x0a, 0xb9, 0x46, 0xb9, + 0xc9, 0x5a, 0xb1, 0x80, 0xa2, 0x6b, 0x30, 0xe3, 0x92, 0x2d, 0xdd, 0xd2, 0x6d, 0x83, 0x68, 0xbe, + 0xab, 0xfb, 0xa4, 0xb5, 0x2f, 0x3c, 0x89, 0x3c, 0xc6, 0x8a, 0xe3, 0x08, 0x38, 0xd9, 0x67, 0xee, + 0x9f, 0x4b, 0x30, 0x1d, 0x3f, 0x1a, 0xf6, 0xb0, 0x5c, 0xed, 0x02, 0x94, 0x3b, 0xba, 0xeb, 0x9b, + 0x4a, 0x1d, 0x0f, 0xf9, 0x54, 0x8d, 0x00, 0x80, 0x43, 0x1c, 0xba, 0xec, 0x67, 0x65, 0x5a, 0x85, + 0x84, 0x72, 0xd9, 0xcf, 0xca, 0xb8, 0x62, 0x0e, 0x4b, 0x2f, 0x0e, 0x51, 0x38, 0xb1, 0xe2, 0x10, + 0x8f, 0x44, 0xdd, 0xd7, 0x0f, 0x92, 0x69, 0xb2, 0x77, 0x32, 0x3e, 0xf7, 0xd7, 0xdf, 0xb2, 0x6b, + 0xc2, 0x50, 0xf5, 0x59, 0x14, 0xc3, 0xd8, 0xc8, 0x42, 0xa4, 0x88, 0xa1, 0xf0, 0xd5, 0x53, 0xa4, + 0x09, 0x47, 0x59, 0xa3, 0x06, 0x9c, 0xb5, 0xcc, 0xb6, 0x48, 0xf8, 0x79, 0x0d, 0xe2, 0xf2, 0xea, + 0xc8, 0xcc, 0x51, 0xe7, 0xc3, 0x44, 0xc8, 0x6a, 0x0a, 0x0e, 0x4e, 0xed, 0x89, 0x9e, 0x87, 0xb1, + 0x3b, 0xc4, 0x65, 0x97, 0xf7, 0x21, 0x5a, 0xb1, 0xfd, 0x0d, 0xde, 0x8c, 0x03, 0x38, 0x7a, 0x0b, + 0x0a, 0x9e, 0xee, 0x59, 0x22, 0x50, 0x3b, 0xc6, 0x51, 0xe6, 0x9a, 0xb6, 0x2a, 0xd4, 0x83, 0xa5, + 0x68, 0xe9, 0x6f, 0xcc, 0x48, 0x9e, 0x52, 0xc0, 0x16, 0x6e, 0xb7, 0x4c, 0x1c, 0xb6, 0xdd, 0x32, + 0x98, 0x53, 0xfc, 0x7e, 0x11, 0xa6, 0x62, 0x67, 0x3d, 0x1f, 0xe6, 0x5a, 0xa4, 0xa7, 0x18, 0x39, + 0xc4, 0x53, 0xbc, 0x00, 0x25, 0xc3, 0x32, 0x89, 0xed, 0xaf, 0x34, 0x85, 0x47, 0x09, 0xaf, 0x94, + 0xf3, 0xf6, 0x25, 0x2c, 0x31, 0x4e, 0xdb, 0xaf, 0xa8, 0x0e, 0x60, 0xf4, 0xa8, 0x45, 0x67, 0x8a, + 0xc3, 0xfc, 0xf8, 0x4f, 0x36, 0x57, 0xdb, 0x63, 0x2f, 0xf6, 0x91, 0x2f, 0x22, 0x1d, 0x6c, 0xb2, + 0x94, 0xb3, 0xde, 0x64, 0x19, 0xcc, 0x46, 0xfe, 0x7e, 0x04, 0x4a, 0xeb, 0xb5, 0x4d, 0x8d, 0x15, + 0x57, 0x7e, 0x3b, 0x5a, 0x3e, 0x7a, 0x10, 0x21, 0x93, 0x75, 0xa2, 0x97, 0xa9, 0x69, 0xf5, 0x5d, + 0x22, 0xba, 0xcc, 0xad, 0x8f, 0xae, 0x33, 0x79, 0x77, 0xb4, 0x08, 0x05, 0x7b, 0xb7, 0xdf, 0x6f, + 0x68, 0xb0, 0x31, 0x5b, 0xbf, 0x41, 0xf6, 0x31, 0xeb, 0x8c, 0x6e, 0x01, 0x18, 0x2e, 0x69, 0x12, + 0xdb, 0x37, 0xc5, 0x27, 0xcc, 0xfa, 0xdb, 0x5f, 0x58, 0x94, 0x9d, 0xb1, 0x42, 0x68, 0xee, 0x1b, + 0x45, 0x98, 0x8e, 0x9f, 0xe9, 0x7e, 0x98, 0xcb, 0x79, 0x1e, 0xc6, 0xbc, 0x2e, 0x2b, 0x70, 0x23, + 0x9c, 0x8e, 0x9c, 0x06, 0x34, 0xde, 0x8c, 0x03, 0x78, 0xba, 0x2b, 0xc9, 0x9f, 0x8a, 0x2b, 0x29, + 0x1c, 0xd5, 0x95, 0x64, 0x1d, 0xd0, 0x7c, 0x90, 0xfc, 0x3c, 0xc4, 0x3b, 0x19, 0x9f, 0xc2, 0xef, + 0xc3, 0x97, 0x10, 0x61, 0xd5, 0x63, 0x99, 0x94, 0x86, 0x09, 0x0c, 0x31, 0xb1, 0x8f, 0xfa, 0x18, + 0x56, 0xec, 0xfb, 0xe9, 0x28, 0x4c, 0x46, 0x0f, 0x69, 0xd2, 0x65, 0xf1, 0x8e, 0xe3, 0xf9, 0x22, + 0x59, 0x10, 0xff, 0x8e, 0xe1, 0xf5, 0x10, 0x84, 0x55, 0xbc, 0xa3, 0xcd, 0xc9, 0xcf, 0xc3, 0x98, + 0xa8, 0x45, 0x27, 0xa6, 0x64, 0x69, 0x45, 0xa2, 0x5e, 0x1d, 0x0e, 0xe0, 0xff, 0x3d, 0x21, 0x5b, + 0x1e, 0xfa, 0x66, 0x72, 0x42, 0x7e, 0x3b, 0xd3, 0x13, 0xb9, 0x8f, 0xfa, 0x7c, 0x3c, 0x98, 0x72, + 0xbf, 0x05, 0x33, 0x89, 0xcd, 0x9b, 0xa3, 0xd5, 0xfa, 0xbe, 0x08, 0xa3, 0xb6, 0xde, 0x26, 0xbc, + 0x1c, 0x56, 0x99, 0x4f, 0x6f, 0xec, 0x73, 0x10, 0x98, 0xb7, 0xcf, 0xfd, 0xa0, 0x08, 0x33, 0x89, + 0x9b, 0x27, 0x6c, 0xc9, 0x2b, 0x37, 0x00, 0x62, 0x0b, 0xf9, 0xd4, 0xb4, 0xff, 0x6b, 0x30, 0xc9, + 0x0c, 0xa3, 0x11, 0xdb, 0x36, 0x90, 0x9b, 0xd8, 0x9b, 0x11, 0x28, 0x8e, 0x61, 0x1f, 0x6d, 0xc9, + 0xfc, 0x1a, 0x4c, 0xaa, 0xdf, 0x2f, 0x59, 0x59, 0x12, 0xdb, 0xc2, 0x92, 0x89, 0x16, 0x81, 0xe2, + 0x18, 0x36, 0xfb, 0xf8, 0x8b, 0x9c, 0x3c, 0x45, 0x3a, 0x6e, 0xb4, 0xff, 0x8f, 0xbf, 0xc4, 0x48, + 0xe0, 0x04, 0x51, 0xb4, 0x05, 0xb3, 0x3c, 0x7d, 0xaf, 0x0a, 0x14, 0x3b, 0x52, 0x32, 0x27, 0x84, + 0x9e, 0x5d, 0xea, 0x89, 0x89, 0x0f, 0xa1, 0xd2, 0x67, 0x75, 0xc7, 0x0f, 0x93, 0x9f, 0xc3, 0x7c, + 0x37, 0xeb, 0xfb, 0x4a, 0xc7, 0xb2, 0xc1, 0xf2, 0xe3, 0x62, 0x83, 0x3f, 0xa8, 0x50, 0x43, 0x89, + 0x1d, 0xbd, 0x47, 0x73, 0x50, 0x64, 0xba, 0x49, 0xa7, 0x17, 0xb9, 0x13, 0xc0, 0x94, 0xd6, 0xc3, + 0x02, 0x72, 0x84, 0x24, 0xb9, 0x08, 0xd9, 0xf2, 0x3d, 0x42, 0xb6, 0x0e, 0x9c, 0xf1, 0x2d, 0x6f, + 0xd3, 0xed, 0x7a, 0xfe, 0x22, 0x71, 0x7d, 0x4f, 0xa8, 0x6e, 0xa1, 0xef, 0x6f, 0xc8, 0x6d, 0xae, + 0x6a, 0x71, 0x2a, 0x38, 0x8d, 0x34, 0x55, 0x60, 0xdf, 0xf2, 0x6a, 0x96, 0xe5, 0xdc, 0x0d, 0x4e, + 0x16, 0x84, 0x93, 0x8d, 0x98, 0x46, 0xa4, 0x02, 0x6f, 0xae, 0x6a, 0x3d, 0x30, 0xf1, 0x21, 0x54, + 0xd0, 0x1a, 0x7b, 0xaa, 0x37, 0x74, 0xcb, 0x6c, 0xea, 0x3e, 0xa1, 0xd3, 0x31, 0xcb, 0x5e, 0x73, + 0xeb, 0x90, 0xdb, 0x8d, 0x9b, 0xab, 0x5a, 0x1c, 0x05, 0xa7, 0xf5, 0x1b, 0xd6, 0x77, 0x64, 0x53, + 0x67, 0xef, 0xd2, 0xa9, 0xcc, 0xde, 0xe5, 0xfe, 0xac, 0x1c, 0x32, 0xb2, 0xf2, 0x98, 0xca, 0xf7, + 0x61, 0xe5, 0x4d, 0x98, 0x92, 0x1f, 0xd8, 0x11, 0x3a, 0x5b, 0xe9, 0x7b, 0xf7, 0xa3, 0x16, 0xa5, + 0x80, 0xe3, 0x24, 0x4f, 0x29, 0xa3, 0xf4, 0xe7, 0x39, 0x98, 0xa6, 0x92, 0xd4, 0xfc, 0x1d, 0x62, + 0xdf, 0x6f, 0xe8, 0xae, 0xde, 0x0e, 0x2a, 0x88, 0x6d, 0x67, 0x3e, 0xe4, 0xb5, 0x18, 0x23, 0x3e, + 0xf4, 0xb2, 0xac, 0x73, 0x1c, 0x8c, 0x13, 0x92, 0xd1, 0xa9, 0x2f, 0x6c, 0x3b, 0xce, 0xc7, 0x60, + 0xcf, 0x46, 0x19, 0x05, 0x53, 0x5f, 0x9c, 0xe8, 0x40, 0x3e, 0x76, 0x76, 0x11, 0x9e, 0x4c, 0x7d, + 0xd4, 0xbe, 0x1c, 0xf5, 0xd7, 0x8b, 0xe2, 0xfa, 0x4c, 0x06, 0x6b, 0x81, 0xac, 0xbf, 0xd6, 0x44, + 0x03, 0x2b, 0x5b, 0x7e, 0xcd, 0x2b, 0xf6, 0x95, 0xb7, 0xf0, 0xfb, 0x5d, 0x21, 0x0e, 0x9a, 0x85, + 0x91, 0xe6, 0x16, 0x73, 0xf5, 0xa3, 0xe1, 0x39, 0xbe, 0xa5, 0x3a, 0x1e, 0x69, 0x6e, 0xa1, 0xe7, + 0xa0, 0x24, 0x16, 0x19, 0xc1, 0x31, 0x37, 0xc6, 0x56, 0xac, 0x40, 0x3c, 0x2c, 0xa1, 0xc3, 0x0a, + 0xeb, 0x87, 0x90, 0xbf, 0x8f, 0xbf, 0xb9, 0x47, 0x3e, 0xd1, 0xd6, 0x9f, 0x87, 0x7e, 0x41, 0x29, + 0x5a, 0x0e, 0xd1, 0x5c, 0x6e, 0xb2, 0x22, 0xf9, 0x60, 0x01, 0xcb, 0x5f, 0x15, 0xe1, 0x5c, 0xfa, + 0xa5, 0xae, 0x47, 0xc6, 0x1a, 0xb8, 0x72, 0xe7, 0x53, 0x95, 0xfb, 0x93, 0x30, 0xe6, 0x31, 0xc1, + 0x83, 0x9d, 0x7f, 0x5e, 0x4e, 0x96, 0x37, 0xe1, 0x00, 0x86, 0x5e, 0x07, 0xd4, 0xd6, 0xef, 0xad, + 0x79, 0xad, 0x45, 0xa7, 0xcb, 0x2a, 0x64, 0x63, 0xa2, 0xf3, 0xf2, 0xed, 0xa3, 0xe1, 0xf9, 0x9a, + 0xb5, 0x04, 0x06, 0x4e, 0xe9, 0xc5, 0xce, 0x2a, 0x44, 0xf6, 0x7f, 0x62, 0x07, 0x7d, 0x0e, 0xdd, + 0xb0, 0x19, 0x52, 0xfc, 0xf1, 0x71, 0x32, 0x70, 0x37, 0x86, 0x72, 0xd3, 0xef, 0x51, 0x8f, 0xde, + 0x4f, 0xd2, 0x74, 0x7e, 0x56, 0x80, 0x33, 0x29, 0x95, 0x5e, 0xa2, 0xde, 0x3b, 0x77, 0x04, 0xef, + 0xbd, 0x27, 0x47, 0x2a, 0x9b, 0x83, 0xd6, 0x81, 0x50, 0x87, 0x0c, 0xd3, 0x87, 0x39, 0x38, 0xcb, + 0x36, 0xd8, 0x83, 0x5d, 0xbd, 0xa0, 0xc4, 0x6f, 0x5e, 0x68, 0xe6, 0x91, 0x6a, 0x6d, 0x5f, 0x4b, + 0xa1, 0x10, 0xee, 0x3a, 0xa6, 0x41, 0x71, 0x2a, 0x57, 0xb4, 0x08, 0x20, 0xaf, 0xca, 0x05, 0x96, + 0xfc, 0x2c, 0xab, 0x18, 0x2e, 0x5b, 0xff, 0x93, 0x6d, 0xde, 0x2b, 0xa3, 0xcd, 0x56, 0x46, 0x4a, + 0xb7, 0x61, 0x7c, 0x57, 0x25, 0xe5, 0xf5, 0x1e, 0xdd, 0x02, 0x06, 0xd3, 0xae, 0x3f, 0xcb, 0xc3, + 0x64, 0xf4, 0x45, 0xa2, 0xcb, 0x50, 0xec, 0xb8, 0x64, 0xdb, 0xbc, 0x17, 0xff, 0xbc, 0x46, 0x83, + 0xb5, 0x62, 0x01, 0x45, 0x0e, 0x14, 0x2d, 0x7d, 0x8b, 0xce, 0xf7, 0xbc, 0xbc, 0xf9, 0xb5, 0x81, + 0x4b, 0x75, 0x07, 0xbb, 0x0c, 0x01, 0xc3, 0x55, 0x46, 0x1e, 0x0b, 0x36, 0x94, 0xe1, 0xb6, 0x49, + 0xac, 0x26, 0x3f, 0xce, 0x39, 0x0c, 0x86, 0xcb, 0x8c, 0x3c, 0x16, 0x6c, 0xd0, 0xdb, 0x50, 0xe6, + 0xdf, 0x24, 0x69, 0xd6, 0xf7, 0xc5, 0x0a, 0xf7, 0x7f, 0x1e, 0x4d, 0x65, 0x37, 0xcd, 0x36, 0x09, + 0xcd, 0x71, 0x31, 0x20, 0x82, 0x43, 0x7a, 0xec, 0x53, 0xf4, 0xdb, 0x3e, 0x71, 0x35, 0x5f, 0x77, + 0x83, 0x2f, 0xc5, 0x87, 0x9f, 0xa2, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xfd, 0xe5, 0x18, 0x4c, 0xc5, + 0xae, 0xd1, 0xfe, 0x6a, 0xdc, 0x11, 0x55, 0xbf, 0x9f, 0x92, 0xcf, 0xfa, 0xfb, 0x29, 0x85, 0x2c, + 0xc2, 0x83, 0xb7, 0x61, 0xdc, 0xf3, 0x76, 0x18, 0x66, 0xff, 0xb9, 0xba, 0xe9, 0x83, 0x07, 0x17, + 0xc7, 0x35, 0xed, 0xba, 0xec, 0x8e, 0x23, 0xc4, 0xd0, 0x2a, 0x8c, 0x89, 0xb3, 0x83, 0xfd, 0x1d, + 0xfc, 0x63, 0x61, 0x48, 0x10, 0x1e, 0x05, 0x24, 0x86, 0xb1, 0xe3, 0x1c, 0x53, 0xba, 0x47, 0x3e, + 0x10, 0x6e, 0xc0, 0xd9, 0x8e, 0x63, 0x59, 0xc1, 0xe1, 0x4d, 0xf9, 0xe5, 0xa3, 0x72, 0xf4, 0xea, + 0x4e, 0x23, 0x05, 0x07, 0xa7, 0xf6, 0x1c, 0xcc, 0xcb, 0xfe, 0x6b, 0x11, 0x26, 0xa3, 0x55, 0xa6, + 0x4e, 0xef, 0x02, 0x25, 0x4b, 0x04, 0xd6, 0x5c, 0x3b, 0x7e, 0x81, 0x72, 0x53, 0xb4, 0x63, 0x89, + 0x81, 0x30, 0x94, 0xf9, 0x81, 0xf6, 0x1b, 0xfd, 0xee, 0x39, 0xf3, 0x93, 0xb1, 0x41, 0x5f, 0x1c, + 0x92, 0xa1, 0x34, 0xbd, 0x00, 0xbd, 0x3f, 0xcb, 0x64, 0x34, 0x65, 0x33, 0x0e, 0xc9, 0xd0, 0x19, + 0xcb, 0x25, 0xad, 0x20, 0x1b, 0xa8, 0xcc, 0x58, 0x98, 0xb5, 0x62, 0x01, 0x45, 0xcf, 0xc3, 0x98, + 0xeb, 0x58, 0xa4, 0x86, 0xd7, 0x45, 0x34, 0x2d, 0x37, 0xca, 0x30, 0x6f, 0xc6, 0x01, 0x7c, 0x18, + 0x9b, 0x44, 0x51, 0x05, 0xe8, 0xc3, 0x84, 0xae, 0xc1, 0xcc, 0x1d, 0x91, 0x61, 0xd4, 0xcc, 0x96, + 0xad, 0xfb, 0xe1, 0x9d, 0x2b, 0x79, 0xe0, 0xf0, 0x8d, 0x38, 0x02, 0x4e, 0xf6, 0x39, 0xbd, 0x58, + 0x99, 0xd8, 0xcd, 0x8e, 0x63, 0xda, 0x7e, 0x3c, 0x56, 0xbe, 0x2a, 0xda, 0xb1, 0xc4, 0x18, 0xcc, + 0xce, 0xfe, 0x6e, 0x0c, 0x26, 0xa3, 0x55, 0xd4, 0xa2, 0x3a, 0x9c, 0x1b, 0x82, 0x0e, 0x8f, 0x64, + 0xad, 0xc3, 0xf9, 0x43, 0x75, 0xf8, 0x59, 0x18, 0x65, 0xdf, 0xe9, 0x17, 0xdb, 0x4d, 0x72, 0x73, + 0x8a, 0xd5, 0xfb, 0xc0, 0x1c, 0x86, 0x6a, 0x74, 0x86, 0x37, 0x7d, 0x1a, 0x85, 0xf0, 0x03, 0x77, + 0xfc, 0x2c, 0x42, 0x5e, 0x9d, 0x91, 0x23, 0x60, 0x1c, 0xc7, 0xef, 0xc7, 0x56, 0xfa, 0xdb, 0xfd, + 0x79, 0x0d, 0x26, 0x99, 0x90, 0x35, 0xc3, 0xa0, 0xeb, 0xdd, 0x95, 0xa6, 0x38, 0x23, 0x2e, 0x37, + 0xce, 0x36, 0x54, 0xe8, 0x12, 0x8e, 0x61, 0x47, 0x2d, 0xb3, 0x9c, 0x8d, 0x65, 0x6e, 0x1c, 0xd3, + 0x32, 0xcf, 0x43, 0xbe, 0x69, 0xed, 0x31, 0xad, 0x2e, 0x85, 0x7b, 0x25, 0x4b, 0xab, 0x1b, 0x98, + 0xb6, 0x2b, 0xf6, 0x56, 0x39, 0x25, 0x7b, 0x1b, 0x7f, 0x98, 0xbd, 0xb1, 0xb8, 0x86, 0x7f, 0x20, + 0x89, 0xdf, 0x87, 0x99, 0xe8, 0x3f, 0xae, 0x51, 0xba, 0xe3, 0x08, 0xb1, 0xc1, 0x8c, 0xf9, 0x2b, + 0x50, 0x0a, 0x18, 0xd1, 0x81, 0x96, 0xfd, 0xc2, 0x81, 0xa6, 0x26, 0xc4, 0x88, 0x2c, 0x40, 0xd9, + 0xe9, 0x90, 0xc8, 0xd7, 0x0d, 0x65, 0x0c, 0x7c, 0x33, 0x00, 0xe0, 0x10, 0x87, 0x5a, 0x11, 0xe7, + 0x1a, 0xdb, 0xe2, 0x7d, 0x83, 0x36, 0x0a, 0x21, 0xe6, 0xbe, 0x9a, 0x83, 0xe0, 0x93, 0x41, 0x68, + 0x09, 0x46, 0x3b, 0x8e, 0xeb, 0xf3, 0xad, 0xb5, 0xca, 0x95, 0x8b, 0xe9, 0xe3, 0xc3, 0x4f, 0xf7, + 0x3b, 0xae, 0x1f, 0x52, 0xa4, 0xbf, 0x3c, 0xcc, 0x3b, 0x53, 0x39, 0x0d, 0xab, 0xeb, 0xf9, 0xc4, + 0x5d, 0x69, 0xc4, 0xe5, 0x5c, 0x0c, 0x00, 0x38, 0xc4, 0x99, 0xfb, 0xf7, 0x02, 0x4c, 0xc7, 0x0b, + 0xeb, 0xa1, 0x77, 0x61, 0xc2, 0x33, 0x5b, 0xb6, 0x69, 0xb7, 0x44, 0x2c, 0x9a, 0xeb, 0xfb, 0x6a, + 0xaf, 0xa6, 0xf6, 0xc7, 0x51, 0x72, 0x99, 0x9d, 0x56, 0x3b, 0x9d, 0xcf, 0xe2, 0x7f, 0x90, 0xac, + 0x21, 0xf3, 0x4e, 0xc6, 0xa5, 0x0d, 0x7f, 0xb5, 0x8b, 0xc8, 0xfc, 0x72, 0x14, 0xce, 0xa5, 0x97, + 0x4e, 0x3c, 0xa5, 0xa0, 0x35, 0xbc, 0xc6, 0x39, 0xd2, 0xf3, 0x1a, 0x67, 0x38, 0xce, 0xf9, 0x8c, + 0x4a, 0x21, 0xca, 0x01, 0x38, 0xdc, 0xd5, 0xca, 0x70, 0xba, 0xf0, 0xd0, 0x70, 0xfa, 0x32, 0x14, + 0x45, 0xd9, 0xfc, 0x58, 0x98, 0x5a, 0xe7, 0x45, 0xed, 0x05, 0x54, 0x09, 0x05, 0x8a, 0x87, 0x86, + 0x02, 0x34, 0xb4, 0x09, 0xf6, 0x1f, 0xfb, 0xbb, 0xca, 0xc5, 0x43, 0x9b, 0xa0, 0x2f, 0x0e, 0xc9, + 0xb0, 0x8b, 0xfa, 0x1d, 0xf3, 0x16, 0x5e, 0x15, 0xb3, 0x72, 0x78, 0x51, 0xbf, 0xb1, 0x72, 0x0b, + 0xaf, 0x62, 0x01, 0x8d, 0xa6, 0x82, 0xcb, 0x99, 0xa4, 0x82, 0xd3, 0x75, 0xee, 0xa4, 0x12, 0x61, + 0x06, 0xcc, 0x24, 0xde, 0xf9, 0x91, 0x53, 0x61, 0x97, 0xa1, 0xe8, 0x75, 0xb7, 0x29, 0x5e, 0xac, + 0x82, 0x92, 0xc6, 0x5a, 0xb1, 0x80, 0xce, 0x7d, 0xa7, 0x40, 0xb9, 0xc4, 0x8a, 0x6c, 0x9e, 0x92, + 0x55, 0xbd, 0x0a, 0x13, 0x3c, 0x19, 0xf5, 0xa6, 0x52, 0x7e, 0xa3, 0xa4, 0x6c, 0x30, 0xa8, 0x40, + 0x1c, 0xc5, 0x45, 0x2b, 0x4c, 0x4d, 0xfa, 0x5e, 0x16, 0x82, 0xd0, 0x24, 0x3a, 0x71, 0x0b, 0x02, + 0xe8, 0x25, 0xa8, 0xb0, 0x87, 0xe0, 0x43, 0x2e, 0xb2, 0xb2, 0xec, 0xa2, 0xed, 0xd5, 0xb0, 0x19, + 0xab, 0x38, 0xd1, 0xa3, 0x05, 0xa3, 0x99, 0x1c, 0x2d, 0x48, 0xbc, 0x95, 0x93, 0xd2, 0xbb, 0x6f, + 0x95, 0x40, 0x7e, 0x08, 0x11, 0x19, 0x89, 0xcf, 0x51, 0x7e, 0xa6, 0xef, 0xcd, 0x9b, 0x40, 0x14, + 0x9e, 0xc9, 0x4a, 0x99, 0x92, 0x5e, 0x07, 0x24, 0xbe, 0x7f, 0x28, 0x82, 0x6a, 0xa5, 0x9c, 0x92, + 0xdc, 0xa5, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x7a, 0x9d, 0x7d, 0x7c, 0xd5, 0xd7, 0x4d, 0x5b, + 0x7a, 0xde, 0xf3, 0x3d, 0xee, 0x5f, 0x72, 0x24, 0xf9, 0x19, 0x55, 0xfe, 0x13, 0x87, 0xdd, 0xd1, + 0x55, 0x18, 0xbb, 0xe3, 0x58, 0xdd, 0xb6, 0x48, 0xcd, 0x57, 0xae, 0xcc, 0xa6, 0x51, 0x7a, 0x83, + 0xa1, 0x28, 0xf7, 0x85, 0x78, 0x17, 0x1c, 0xf4, 0x45, 0x04, 0xa6, 0xd8, 0xf1, 0x1e, 0xd3, 0xdf, + 0x17, 0x06, 0x20, 0xa6, 0xde, 0xcb, 0x69, 0xe4, 0x1a, 0x4e, 0x53, 0x8b, 0x62, 0xf3, 0x93, 0x1e, + 0xb1, 0x46, 0x1c, 0xa7, 0x89, 0x96, 0xa1, 0xa4, 0x6f, 0x6f, 0x9b, 0xb6, 0xe9, 0xef, 0x8b, 0x9c, + 0xdd, 0x33, 0x69, 0xf4, 0x6b, 0x02, 0x47, 0xd4, 0x69, 0x11, 0xbf, 0xb0, 0xec, 0x8b, 0x6e, 0x41, + 0xc5, 0x77, 0x2c, 0x11, 0x97, 0x7a, 0x22, 0xd5, 0x70, 0x21, 0x8d, 0xd4, 0xa6, 0x44, 0x0b, 0xb7, + 0x47, 0xc3, 0x36, 0x0f, 0xab, 0x74, 0xd0, 0x6f, 0xe5, 0x60, 0xdc, 0x76, 0x9a, 0x24, 0x30, 0x3d, + 0xb1, 0x5d, 0xf7, 0x56, 0x46, 0x1f, 0xf0, 0x9c, 0x5f, 0x57, 0x68, 0x73, 0x0b, 0x91, 0xf5, 0x3b, + 0x54, 0x10, 0x8e, 0x08, 0x81, 0x6c, 0x98, 0x36, 0xdb, 0x7a, 0x8b, 0x34, 0xba, 0x96, 0x38, 0x9e, + 0xe8, 0x89, 0xc9, 0x23, 0xf5, 0xd6, 0xee, 0xaa, 0x63, 0xe8, 0x16, 0xff, 0x00, 0x2e, 0x26, 0xdb, + 0xc4, 0x65, 0xdf, 0xe1, 0x95, 0x27, 0x4d, 0x56, 0x62, 0x94, 0x70, 0x82, 0x36, 0xba, 0x06, 0x33, + 0x1d, 0xd7, 0x74, 0xd8, 0x7b, 0xb3, 0x74, 0x8f, 0x7f, 0x00, 0x15, 0xa2, 0x57, 0x35, 0x1b, 0x71, + 0x04, 0x9c, 0xec, 0xc3, 0xcb, 0x0b, 0xf0, 0x46, 0xb6, 0x96, 0x1b, 0x0d, 0xca, 0x0b, 0xf0, 0x36, + 0x2c, 0xa1, 0xb3, 0x9f, 0x83, 0x99, 0xc4, 0xd8, 0xf4, 0xe5, 0x10, 0x7e, 0x2f, 0x07, 0xf1, 0x7c, + 0x39, 0x5d, 0x37, 0x34, 0x4d, 0x97, 0x11, 0xdc, 0x8f, 0xe7, 0xf8, 0x97, 0x02, 0x00, 0x0e, 0x71, + 0xd0, 0x25, 0x28, 0x74, 0x74, 0x7f, 0x27, 0x7e, 0xcc, 0x8f, 0x92, 0xc4, 0x0c, 0x82, 0xae, 0x00, + 0xd0, 0xbf, 0x98, 0xb4, 0xc8, 0xbd, 0x8e, 0x58, 0x06, 0xc9, 0xed, 0x87, 0x86, 0x84, 0x60, 0x05, + 0x6b, 0xee, 0x9f, 0x46, 0x61, 0x32, 0x3a, 0xb7, 0x44, 0x16, 0x9b, 0xb9, 0x87, 0x2e, 0x36, 0x2f, + 0x43, 0xb1, 0x4d, 0xfc, 0x1d, 0xa7, 0x19, 0x9f, 0x27, 0xd7, 0x58, 0x2b, 0x16, 0x50, 0x26, 0xbe, + 0xe3, 0xfa, 0x42, 0xac, 0x50, 0x7c, 0xc7, 0xf5, 0x31, 0x83, 0x04, 0xa7, 0x14, 0x0b, 0x3d, 0x4e, + 0x29, 0xb6, 0x60, 0x9a, 0x17, 0xf8, 0x5d, 0x24, 0xae, 0x7f, 0xec, 0xd3, 0xb5, 0x5a, 0x8c, 0x04, + 0x4e, 0x10, 0x45, 0x4d, 0xea, 0x6d, 0x68, 0x5b, 0xb8, 0x33, 0xd0, 0xff, 0xd5, 0x7d, 0x2d, 0x4a, + 0x01, 0xc7, 0x49, 0x0e, 0x23, 0x1b, 0x19, 0x7d, 0x8f, 0xc7, 0xae, 0x8c, 0x58, 0xca, 0xaa, 0x32, + 0xe2, 0x2b, 0x30, 0xd9, 0xd6, 0xef, 0x35, 0xf4, 0x7d, 0xcb, 0xd1, 0x9b, 0x9a, 0x79, 0x9f, 0x88, + 0xdb, 0xa5, 0xe8, 0xe0, 0xc1, 0xc5, 0xc9, 0xb5, 0x08, 0x04, 0xc7, 0x30, 0x07, 0x9b, 0x80, 0x7f, + 0x7f, 0x04, 0x50, 0xf2, 0xc3, 0x25, 0xe8, 0xa3, 0x1c, 0x4c, 0xde, 0x8d, 0x8c, 0xd1, 0x70, 0x82, + 0x33, 0x99, 0xf6, 0x8a, 0xb6, 0xe3, 0x18, 0x73, 0x65, 0x81, 0x33, 0x72, 0x72, 0x0b, 0xc9, 0xba, + 0xf1, 0xa3, 0x5f, 0x5c, 0x78, 0xe2, 0xc7, 0xbf, 0xb8, 0xf0, 0xc4, 0x4f, 0x7e, 0x71, 0xe1, 0x89, + 0xaf, 0x1e, 0x5c, 0xc8, 0xfd, 0xe8, 0xe0, 0x42, 0xee, 0xc7, 0x07, 0x17, 0x72, 0x3f, 0x39, 0xb8, + 0x90, 0xfb, 0xf9, 0xc1, 0x85, 0xdc, 0x77, 0xfe, 0xe5, 0xc2, 0x13, 0x9f, 0xff, 0x6c, 0x28, 0xca, + 0x42, 0x20, 0x0a, 0xfb, 0xe7, 0x45, 0xce, 0x7a, 0xa1, 0xb3, 0xdb, 0x5a, 0xa0, 0xa2, 0x2c, 0x28, + 0xa2, 0x2c, 0x04, 0xa2, 0xfc, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x15, 0xf0, 0xeb, 0x47, 0xbb, + 0xa5, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index 8848000367..f4b469b04b 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -27,7 +27,7 @@ import "k8s.io/apimachinery/pkg/runtime/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; // Package-wide variables from generator "generated". -option go_package = "v1alpha1"; +option go_package = "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1"; // AMQPConsumeConfig holds the configuration to immediately starts delivering queued messages // +k8s:openapi-gen=true diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index 8eddf7482c..3d19b36fbd 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -3638,7 +3638,6 @@ func schema_pkg_apis_eventsource_v1alpha1_ResourceFilter(ref common.ReferenceCal "createdBy": { SchemaProps: spec.SchemaProps{ Description: "If resource is created before the specified time then the event is treated as valid.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go index 1027e3736e..fb0bb83efe 100644 --- a/pkg/apis/sensor/v1alpha1/generated.pb.go +++ b/pkg/apis/sensor/v1alpha1/generated.pb.go @@ -1396,317 +1396,318 @@ func init() { } var fileDescriptor_6c4bded897df1f16 = []byte{ - // 4960 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcd, 0x8f, 0x63, 0xc7, - 0x71, 0xf8, 0x92, 0x43, 0xce, 0x90, 0x35, 0x9c, 0x8f, 0xed, 0xd5, 0xae, 0xa9, 0xb1, 0xb4, 0xdc, - 0x1f, 0x8d, 0x9f, 0xb2, 0x36, 0x64, 0x8e, 0xb4, 0x8a, 0xe3, 0xb1, 0x02, 0xdb, 0xe2, 0x7c, 0x69, - 0x3f, 0xb8, 0x3b, 0xa3, 0x22, 0x47, 0x42, 0x3e, 0x0c, 0xe9, 0xcd, 0x63, 0x93, 0x7c, 0x9a, 0xc7, - 0xf7, 0xb8, 0xdd, 0xcd, 0x59, 0x51, 0x80, 0x13, 0x3b, 0x46, 0x12, 0x18, 0x01, 0xe4, 0x1c, 0x7c, - 0xc8, 0xc9, 0x08, 0x10, 0xe4, 0x10, 0x20, 0x87, 0x00, 0xf9, 0x0f, 0x1c, 0x20, 0xd0, 0xd1, 0xb9, - 0xf9, 0x10, 0x0c, 0xa2, 0x71, 0x2e, 0x39, 0x18, 0x89, 0x4f, 0x09, 0xf6, 0x92, 0xa0, 0x3f, 0xde, - 0x27, 0x39, 0xda, 0xe1, 0x72, 0x35, 0x32, 0xe0, 0x1b, 0x5f, 0x55, 0x75, 0x55, 0x77, 0xbd, 0xea, - 0xea, 0xaa, 0xea, 0x7a, 0x84, 0xdb, 0x5d, 0x47, 0xf4, 0x86, 0x87, 0x35, 0xdb, 0xef, 0xaf, 0x5b, - 0xac, 0xeb, 0x0f, 0x98, 0xff, 0xbe, 0xfa, 0xf1, 0x55, 0x7a, 0x4c, 0x3d, 0xc1, 0xd7, 0x07, 0x47, - 0xdd, 0x75, 0x6b, 0xe0, 0xf0, 0x75, 0x4e, 0x3d, 0xee, 0xb3, 0xf5, 0xe3, 0x57, 0x2d, 0x77, 0xd0, - 0xb3, 0x5e, 0x5d, 0xef, 0x52, 0x8f, 0x32, 0x4b, 0xd0, 0x76, 0x6d, 0xc0, 0x7c, 0xe1, 0x93, 0x8d, - 0x88, 0x53, 0x2d, 0xe0, 0xa4, 0x7e, 0xbc, 0xab, 0x39, 0xd5, 0x06, 0x47, 0xdd, 0x9a, 0xe4, 0x54, - 0xd3, 0x9c, 0x6a, 0x01, 0xa7, 0xb5, 0x6f, 0x9f, 0x7b, 0x0e, 0xb6, 0xdf, 0xef, 0xfb, 0x5e, 0x5a, - 0xf4, 0xda, 0x57, 0x63, 0x0c, 0xba, 0x7e, 0xd7, 0x5f, 0x57, 0xe0, 0xc3, 0x61, 0x47, 0x3d, 0xa9, - 0x07, 0xf5, 0xcb, 0x90, 0x57, 0x8f, 0x36, 0x78, 0xcd, 0xf1, 0x25, 0xcb, 0x75, 0xdb, 0x67, 0x74, - 0xfd, 0x78, 0x6c, 0x35, 0x6b, 0xbf, 0x1d, 0xd1, 0xf4, 0x2d, 0xbb, 0xe7, 0x78, 0x94, 0x8d, 0xa2, - 0x79, 0xf4, 0xa9, 0xb0, 0x26, 0x8d, 0x5a, 0x3f, 0x6b, 0x14, 0x1b, 0x7a, 0xc2, 0xe9, 0xd3, 0xb1, - 0x01, 0xbf, 0xf3, 0xa4, 0x01, 0xdc, 0xee, 0xd1, 0xbe, 0x95, 0x1e, 0x57, 0x7d, 0x9c, 0x83, 0xd5, - 0xfa, 0x3b, 0xcd, 0x86, 0xd5, 0x3f, 0x6c, 0x5b, 0x2d, 0xe6, 0x74, 0xbb, 0x94, 0x91, 0x0d, 0x28, - 0x75, 0x86, 0x9e, 0x2d, 0x1c, 0xdf, 0x7b, 0x60, 0xf5, 0x69, 0x39, 0x73, 0x23, 0x73, 0xb3, 0xb8, - 0xf9, 0xdc, 0xc7, 0x27, 0x95, 0x4b, 0xa7, 0x27, 0x95, 0xd2, 0x6e, 0x0c, 0x87, 0x09, 0x4a, 0x82, - 0x50, 0xb4, 0x6c, 0x9b, 0x72, 0x7e, 0x8f, 0x8e, 0xca, 0xd9, 0x1b, 0x99, 0x9b, 0x8b, 0xb7, 0xfe, - 0x7f, 0x4d, 0x4f, 0x4d, 0xbe, 0xb2, 0x9a, 0xd4, 0x52, 0xed, 0xf8, 0xd5, 0x5a, 0x93, 0xda, 0x8c, - 0x8a, 0x7b, 0x74, 0xd4, 0xa4, 0x2e, 0xb5, 0x85, 0xcf, 0x36, 0x97, 0x4e, 0x4f, 0x2a, 0xc5, 0x7a, - 0x30, 0x16, 0x23, 0x36, 0x92, 0x27, 0x0f, 0xc8, 0xcb, 0x73, 0x53, 0xf3, 0x0c, 0xc1, 0x18, 0xb1, - 0x21, 0x2f, 0xc1, 0x3c, 0xa3, 0x5d, 0xc7, 0xf7, 0xca, 0x39, 0xb5, 0xb6, 0x65, 0xb3, 0xb6, 0x79, - 0x54, 0x50, 0x34, 0x58, 0x32, 0x84, 0x85, 0x81, 0x35, 0x72, 0x7d, 0xab, 0x5d, 0xce, 0xdf, 0x98, - 0xbb, 0xb9, 0x78, 0xeb, 0x6e, 0xed, 0x69, 0xad, 0xb3, 0x66, 0xb4, 0xbb, 0x6f, 0x31, 0xab, 0x4f, - 0x05, 0x65, 0x9b, 0x2b, 0x46, 0xe8, 0xc2, 0xbe, 0x16, 0x81, 0x81, 0x2c, 0xf2, 0x47, 0x00, 0x83, - 0x80, 0x8c, 0x97, 0xe7, 0x9f, 0xb9, 0x64, 0x62, 0x24, 0x43, 0x08, 0xe2, 0x18, 0x93, 0x48, 0x5e, - 0x87, 0x65, 0xc7, 0x3b, 0xf6, 0x6d, 0x4b, 0xbe, 0xd8, 0xd6, 0x68, 0x40, 0xcb, 0x0b, 0x4a, 0x4d, - 0xe4, 0xf4, 0xa4, 0xb2, 0x7c, 0x27, 0x81, 0xc1, 0x14, 0x25, 0xf9, 0x32, 0x2c, 0x30, 0xdf, 0xa5, - 0x75, 0x7c, 0x50, 0x2e, 0xa8, 0x41, 0xe1, 0x32, 0x51, 0x83, 0x31, 0xc0, 0x57, 0x7f, 0x99, 0x85, - 0x2b, 0x75, 0xd6, 0xf5, 0xdf, 0xf1, 0xd9, 0x51, 0xc7, 0xf5, 0x1f, 0x05, 0xf6, 0xe7, 0xc1, 0x3c, - 0xf7, 0x87, 0xcc, 0xd6, 0x96, 0x37, 0xd3, 0xd2, 0xeb, 0x4c, 0x38, 0x1d, 0xcb, 0x16, 0x0d, 0x33, - 0xc5, 0x4d, 0x90, 0x6f, 0xb9, 0xa9, 0xb8, 0xa3, 0x91, 0x42, 0x6e, 0x43, 0xd1, 0x1f, 0xc8, 0x6d, - 0x21, 0x0d, 0x22, 0xab, 0x26, 0xfd, 0x15, 0x33, 0xe9, 0xe2, 0x5e, 0x80, 0x78, 0x7c, 0x52, 0xb9, - 0x1a, 0x9f, 0x6c, 0x88, 0xc0, 0x68, 0x70, 0xea, 0xc5, 0xcd, 0x5d, 0xf8, 0x8b, 0x7b, 0x01, 0x72, - 0x16, 0xeb, 0xf2, 0x72, 0xee, 0xc6, 0xdc, 0xcd, 0xe2, 0x66, 0xe1, 0xf4, 0xa4, 0x92, 0xab, 0xb3, - 0x2e, 0x47, 0x05, 0xad, 0xfe, 0x4a, 0x6e, 0xf6, 0x94, 0x42, 0x48, 0x13, 0xb2, 0xfc, 0x35, 0xa3, - 0xe8, 0xdf, 0x3d, 0xff, 0x54, 0xb5, 0x07, 0xad, 0x35, 0x5f, 0x0b, 0x18, 0x6e, 0xce, 0x9f, 0x9e, - 0x54, 0xb2, 0xcd, 0xd7, 0x30, 0xcb, 0x5f, 0x23, 0x55, 0x98, 0x77, 0x3c, 0xd7, 0xf1, 0xa8, 0x51, - 0xa7, 0xd2, 0xfa, 0x1d, 0x05, 0x41, 0x83, 0x21, 0x6d, 0xc8, 0x75, 0x1c, 0x97, 0x9a, 0x2d, 0xbd, - 0xfb, 0xf4, 0x5a, 0xda, 0x75, 0x5c, 0x1a, 0xce, 0x42, 0xad, 0x59, 0x42, 0x50, 0x71, 0x27, 0xef, - 0xc1, 0xdc, 0x90, 0xb9, 0x6a, 0x9b, 0x2f, 0xde, 0xda, 0x79, 0x7a, 0x21, 0x07, 0xd8, 0x08, 0x65, - 0x2c, 0x9c, 0x9e, 0x54, 0xe6, 0x0e, 0xb0, 0x81, 0x92, 0x35, 0x39, 0x80, 0xa2, 0xed, 0x7b, 0x1d, - 0xa7, 0xdb, 0xb7, 0x06, 0xe5, 0xbc, 0x92, 0x73, 0x73, 0x92, 0x7f, 0xda, 0x52, 0x44, 0xf7, 0xad, - 0xc1, 0x98, 0x8b, 0xda, 0x0a, 0x86, 0x63, 0xc4, 0x49, 0x4e, 0xbc, 0xeb, 0x88, 0xf2, 0xfc, 0xac, - 0x13, 0x7f, 0xd3, 0x11, 0xc9, 0x89, 0xbf, 0xe9, 0x08, 0x94, 0xac, 0x89, 0x0d, 0x05, 0x46, 0xcd, - 0x46, 0x5b, 0x50, 0x62, 0xbe, 0x31, 0xf5, 0xfb, 0x47, 0xc3, 0x60, 0xb3, 0x74, 0x7a, 0x52, 0x29, - 0x04, 0x4f, 0x18, 0x32, 0xae, 0xfe, 0x63, 0x0e, 0xae, 0xd6, 0x3f, 0x1c, 0x32, 0xba, 0x23, 0x19, - 0xdc, 0x1e, 0x1e, 0xf2, 0x60, 0x97, 0xdf, 0x80, 0x5c, 0xe7, 0x61, 0xdb, 0x33, 0xa7, 0x4b, 0xc9, - 0x58, 0x76, 0x6e, 0xf7, 0xad, 0xed, 0x07, 0xa8, 0x30, 0xd2, 0x95, 0xf4, 0x86, 0x87, 0xea, 0x08, - 0xca, 0x26, 0x5d, 0xc9, 0x6d, 0x0d, 0xc6, 0x00, 0x4f, 0x06, 0x70, 0x85, 0xf7, 0x2c, 0x46, 0xdb, - 0xe1, 0x11, 0xa2, 0x86, 0x4d, 0x75, 0x5c, 0x7c, 0xe1, 0xf4, 0xa4, 0x72, 0xa5, 0x39, 0xce, 0x05, - 0x27, 0xb1, 0x26, 0x6d, 0x58, 0x49, 0x81, 0x8d, 0x91, 0x9d, 0x53, 0xda, 0x95, 0xd3, 0x93, 0xca, - 0x4a, 0x4a, 0x1a, 0xa6, 0x59, 0xfe, 0x86, 0x1e, 0x40, 0xd5, 0xff, 0xce, 0xc1, 0x35, 0x65, 0x35, - 0x4d, 0xca, 0x8e, 0x1d, 0x9b, 0x6e, 0x0e, 0x43, 0xb3, 0xe9, 0xc2, 0xaa, 0xed, 0x7b, 0x1e, 0x55, - 0x41, 0x47, 0x53, 0x30, 0xc7, 0xeb, 0x1a, 0xef, 0x75, 0x4e, 0xc5, 0x3f, 0x77, 0x7a, 0x52, 0x59, - 0xdd, 0x4a, 0xb1, 0xc0, 0x31, 0xa6, 0x64, 0x1d, 0x8a, 0x0f, 0x87, 0x74, 0x48, 0x63, 0xf6, 0x77, - 0x39, 0x38, 0x15, 0xde, 0x0a, 0x10, 0x18, 0xd1, 0xc8, 0x01, 0xc2, 0x1f, 0x38, 0x76, 0x68, 0x79, - 0xb1, 0x01, 0xad, 0x00, 0x81, 0x11, 0x0d, 0xd9, 0x86, 0x55, 0x3e, 0x3c, 0xe4, 0x36, 0x73, 0x06, - 0x61, 0xac, 0xa5, 0xe3, 0x91, 0xb2, 0x19, 0xb7, 0xda, 0x4c, 0xe1, 0x71, 0x6c, 0x04, 0x39, 0x80, - 0x39, 0xe1, 0x72, 0xe3, 0x79, 0x5e, 0x9f, 0x7a, 0x07, 0xb7, 0x1a, 0x4d, 0xed, 0x7f, 0xb4, 0x77, - 0x68, 0x35, 0x9a, 0x28, 0xf9, 0xc5, 0x2d, 0x6f, 0xfe, 0x73, 0xb3, 0xbc, 0x85, 0x0b, 0xb7, 0xbc, - 0x2e, 0x5c, 0xdd, 0xf2, 0xbd, 0xb6, 0x23, 0xd5, 0xcb, 0x91, 0x72, 0x2a, 0x36, 0x47, 0x2d, 0xa7, - 0x4f, 0xa5, 0xbb, 0xb2, 0x99, 0x3f, 0xe6, 0xae, 0xb6, 0x98, 0xef, 0xa1, 0xc2, 0x90, 0x97, 0xa1, - 0x20, 0x43, 0xed, 0x0f, 0xfd, 0xf0, 0xd8, 0x5b, 0x35, 0x54, 0x85, 0x96, 0x81, 0x63, 0x48, 0x51, - 0xfd, 0x28, 0x03, 0x5f, 0x48, 0x49, 0xda, 0x62, 0x8e, 0xa0, 0xcc, 0xb1, 0x08, 0x87, 0xf9, 0x43, - 0x25, 0xd5, 0x58, 0xf6, 0xde, 0xd3, 0x2b, 0x60, 0xe2, 0x62, 0xf4, 0x79, 0xac, 0x7f, 0xa3, 0x11, - 0x55, 0xfd, 0x87, 0x3c, 0x2c, 0x6d, 0x0d, 0xb9, 0xf0, 0xfb, 0xc1, 0x56, 0x5b, 0x97, 0x91, 0x37, - 0x3b, 0xa6, 0xec, 0x00, 0x1b, 0x66, 0xdd, 0xa1, 0x41, 0x37, 0x03, 0x04, 0x46, 0x34, 0x32, 0xac, - 0xe6, 0xd4, 0x1e, 0x32, 0xbd, 0xfe, 0x42, 0x14, 0x56, 0x37, 0x15, 0x14, 0x0d, 0x96, 0x1c, 0x00, - 0xd8, 0x94, 0x09, 0xbd, 0x37, 0xa7, 0x73, 0xd2, 0xcb, 0xf2, 0xdd, 0x6d, 0x85, 0x83, 0x31, 0xc6, - 0x88, 0xdc, 0x05, 0xa2, 0xe7, 0x22, 0xf7, 0xc5, 0xde, 0x31, 0x65, 0xcc, 0x69, 0x07, 0x3b, 0x6a, - 0xcd, 0x4c, 0x85, 0x34, 0xc7, 0x28, 0x70, 0xc2, 0x28, 0xc2, 0x21, 0xc7, 0x07, 0xd4, 0x36, 0x5e, - 0xf7, 0xad, 0x19, 0x5e, 0x40, 0x5c, 0xa5, 0xb5, 0xe6, 0x80, 0xda, 0x3b, 0x9e, 0x60, 0xa3, 0xc8, - 0x82, 0x24, 0x08, 0x95, 0xb0, 0xcf, 0x3d, 0xee, 0x8f, 0xed, 0xf9, 0x85, 0x8b, 0xdb, 0xf3, 0x6b, - 0x5f, 0x87, 0x62, 0xa8, 0x17, 0xb2, 0x0a, 0x73, 0x47, 0x74, 0xa4, 0xcd, 0x0d, 0xe5, 0x4f, 0xf2, - 0x1c, 0xe4, 0x8f, 0x2d, 0x77, 0x68, 0x36, 0x15, 0xea, 0x87, 0xd7, 0xb3, 0x1b, 0x99, 0xea, 0x2f, - 0x33, 0x00, 0xdb, 0x96, 0xb0, 0x76, 0x1d, 0x57, 0xe8, 0x88, 0x62, 0x60, 0x89, 0x5e, 0x7a, 0x8b, - 0xee, 0x5b, 0xa2, 0x87, 0x0a, 0x43, 0x5e, 0x86, 0x9c, 0x90, 0xe9, 0x4c, 0x36, 0xe1, 0x65, 0x73, - 0x32, 0x71, 0x79, 0x7c, 0x52, 0x29, 0xdc, 0x6d, 0xee, 0x3d, 0x50, 0x49, 0x8d, 0xa2, 0x22, 0x95, - 0x40, 0xf0, 0x9c, 0x0a, 0xa7, 0x8b, 0xa7, 0x27, 0x95, 0xfc, 0xdb, 0x12, 0x60, 0xe6, 0x40, 0xde, - 0x00, 0xb0, 0xfd, 0xbe, 0x54, 0xa0, 0xf0, 0x99, 0x31, 0xb4, 0x1b, 0x81, 0x8e, 0xb7, 0x42, 0xcc, - 0xe3, 0xc4, 0x13, 0xc6, 0xc6, 0x28, 0x9f, 0x41, 0xfb, 0x03, 0xd7, 0x12, 0x54, 0x79, 0xf0, 0xb8, - 0xcf, 0x30, 0x70, 0x0c, 0x29, 0xaa, 0xff, 0x3e, 0x07, 0xa5, 0x9d, 0xbe, 0xe5, 0xb8, 0xc1, 0x0e, - 0x4d, 0x1a, 0x4c, 0xe6, 0xc2, 0x0d, 0xe6, 0x65, 0x28, 0x0c, 0x39, 0x65, 0x5e, 0x74, 0x44, 0x86, - 0xd3, 0x3f, 0x30, 0x70, 0x0c, 0x29, 0xc8, 0x1f, 0x40, 0x89, 0xf7, 0xc5, 0x60, 0xdf, 0xe2, 0xfc, - 0x91, 0xcf, 0xda, 0xd3, 0x6d, 0xfc, 0xd5, 0xd3, 0x93, 0x4a, 0xa9, 0x79, 0xbf, 0xb5, 0x1f, 0x0c, - 0xc7, 0x04, 0x33, 0xf9, 0xf2, 0x7b, 0x3e, 0x17, 0xe6, 0x2d, 0x84, 0x2f, 0xff, 0xb6, 0xcf, 0x05, - 0x2a, 0x8c, 0x32, 0x0f, 0x9f, 0x09, 0xa5, 0xe7, 0x7c, 0xcc, 0x3c, 0x7c, 0x26, 0x50, 0x61, 0xc8, - 0x35, 0xc8, 0x0a, 0x5f, 0xed, 0xbb, 0xa2, 0x4e, 0x67, 0x5a, 0x3e, 0x66, 0x85, 0xaf, 0x42, 0x55, - 0xe6, 0xf7, 0x4d, 0x16, 0x1c, 0x85, 0xaa, 0xcc, 0xef, 0xa3, 0xc2, 0xc8, 0x50, 0x95, 0x0f, 0x0f, - 0xdf, 0xa7, 0xb6, 0x48, 0x67, 0xbd, 0x4d, 0x0d, 0xc6, 0x00, 0x2f, 0x99, 0x1d, 0xfa, 0xed, 0x51, - 0xb9, 0x98, 0x64, 0xb6, 0xe9, 0xb7, 0x47, 0xa8, 0x30, 0xd5, 0x9f, 0x64, 0x20, 0xaf, 0xc2, 0x65, - 0xd2, 0x87, 0x05, 0xdb, 0xf7, 0x04, 0xfd, 0x40, 0x98, 0x93, 0x60, 0x86, 0x34, 0x49, 0x71, 0xdc, - 0xd2, 0xdc, 0x36, 0x17, 0xe5, 0xd4, 0xcc, 0x03, 0x06, 0x32, 0x64, 0xfa, 0xd8, 0xb6, 0x84, 0xa5, - 0x5e, 0x65, 0x49, 0xa7, 0x52, 0x72, 0x7b, 0xa1, 0x82, 0xbe, 0x5e, 0xf8, 0xab, 0xbf, 0xae, 0x5c, - 0xfa, 0xde, 0xbf, 0xde, 0xb8, 0x54, 0xfd, 0x55, 0x16, 0x4a, 0x71, 0x76, 0x64, 0x0d, 0xb2, 0x4e, - 0xdb, 0xec, 0x3b, 0x30, 0x2b, 0xca, 0xde, 0xd9, 0xc6, 0xac, 0xd3, 0x56, 0x87, 0x82, 0x4e, 0x32, - 0xb2, 0xc9, 0x5a, 0x4b, 0x2a, 0x0b, 0xff, 0x1a, 0x2c, 0x4a, 0x27, 0x78, 0x4c, 0x19, 0x97, 0x79, - 0xb8, 0x0e, 0xa0, 0xae, 0x18, 0xe2, 0x45, 0xe9, 0x20, 0xde, 0xd6, 0x28, 0x8c, 0xd3, 0x49, 0x75, - 0xaa, 0x2d, 0x9d, 0x7a, 0xef, 0xb1, 0x6d, 0x5c, 0x87, 0x15, 0x39, 0x7f, 0xb5, 0x48, 0x4f, 0x28, - 0x62, 0xbd, 0xd5, 0xbe, 0x60, 0x88, 0x57, 0xe4, 0x22, 0xb7, 0x34, 0x5a, 0x8d, 0x4b, 0xd3, 0xc7, - 0x5f, 0xef, 0xfc, 0x13, 0x5e, 0x6f, 0x03, 0x72, 0xf2, 0x8c, 0x37, 0x19, 0xd5, 0x57, 0x62, 0xc6, - 0x1d, 0x16, 0xe6, 0xa2, 0x77, 0xd4, 0xa7, 0xc2, 0x92, 0xe6, 0xae, 0x0e, 0xe5, 0x68, 0xee, 0xf2, - 0x58, 0x56, 0x5c, 0x62, 0x3a, 0xff, 0x28, 0x07, 0x2b, 0x4a, 0xe7, 0xdb, 0x74, 0x40, 0xbd, 0x36, - 0xf5, 0xec, 0x91, 0x5c, 0xbb, 0x17, 0x15, 0xe8, 0xc2, 0xf1, 0x2a, 0x50, 0x54, 0x18, 0xb9, 0x76, - 0x65, 0x17, 0x5a, 0xd7, 0xb1, 0x50, 0x36, 0x5c, 0xfb, 0x4e, 0x12, 0x8d, 0x69, 0x7a, 0x19, 0x05, - 0x28, 0xd0, 0xa4, 0xb0, 0x76, 0x27, 0x40, 0x60, 0x44, 0x43, 0x8e, 0x61, 0xa1, 0xa3, 0x1c, 0x32, - 0x37, 0x19, 0xd1, 0xde, 0x8c, 0x46, 0x1b, 0xad, 0x58, 0x3b, 0x7a, 0x6d, 0xbd, 0xfa, 0x37, 0xc7, - 0x40, 0x18, 0xf9, 0x7e, 0x06, 0x8a, 0x82, 0x59, 0x1e, 0xef, 0xf8, 0xac, 0x6f, 0xe2, 0xe1, 0xd6, - 0x33, 0x13, 0xdd, 0x0a, 0x38, 0x53, 0x93, 0xb5, 0x87, 0x00, 0x8c, 0xa4, 0x12, 0x07, 0xae, 0x99, - 0xe9, 0x34, 0xfc, 0xae, 0x63, 0x5b, 0xae, 0x2e, 0x13, 0xf9, 0xcc, 0xd8, 0xcd, 0xab, 0x46, 0x73, - 0xd7, 0x76, 0x27, 0x52, 0x3d, 0x3e, 0xa9, 0xac, 0xa4, 0x40, 0x78, 0x06, 0xc3, 0xea, 0xdf, 0xe5, - 0xe1, 0xea, 0x44, 0xf5, 0x90, 0x43, 0x63, 0x82, 0xda, 0x65, 0x6c, 0xcf, 0x70, 0x1e, 0x38, 0x7d, - 0x6a, 0x54, 0x5e, 0x48, 0x1a, 0x66, 0xdc, 0x33, 0x65, 0x2f, 0xc0, 0x33, 0x75, 0x8c, 0x67, 0xd2, - 0x25, 0xb5, 0x19, 0x96, 0x14, 0x85, 0x0b, 0xd1, 0x7e, 0x89, 0x7c, 0x1c, 0x71, 0x20, 0x4f, 0x3f, - 0x18, 0x30, 0x5d, 0x41, 0x9b, 0x49, 0xd0, 0xce, 0x07, 0x03, 0x66, 0x04, 0x2d, 0x19, 0x41, 0x79, - 0x09, 0xe3, 0xa8, 0x25, 0x90, 0xf7, 0xe0, 0x8a, 0x14, 0x99, 0xb6, 0x13, 0xed, 0x9a, 0x6a, 0x66, - 0xc8, 0x95, 0xed, 0x71, 0x92, 0x49, 0x46, 0x32, 0x89, 0x95, 0x94, 0x20, 0x45, 0x4d, 0xb6, 0xc4, - 0x50, 0xc2, 0xce, 0x38, 0xc9, 0x44, 0x09, 0x13, 0x58, 0x29, 0xdf, 0xae, 0x92, 0x51, 0x73, 0x34, - 0x46, 0xbe, 0x5d, 0x41, 0xd1, 0x60, 0xab, 0xef, 0xc1, 0xda, 0xd9, 0xdb, 0x49, 0x9e, 0x1e, 0xef, - 0x3f, 0x4c, 0x9f, 0x1e, 0x77, 0xdf, 0xc2, 0xec, 0xfb, 0x0f, 0x63, 0x12, 0xb2, 0x9f, 0x2a, 0xe1, - 0x27, 0x19, 0x80, 0x48, 0xe5, 0xd2, 0x33, 0xca, 0xf9, 0xa6, 0x3d, 0xa3, 0xa4, 0x40, 0x85, 0x21, - 0x1e, 0xcc, 0x77, 0x1c, 0xea, 0xb6, 0x79, 0x39, 0xab, 0x5e, 0xf5, 0x0c, 0xf6, 0x6b, 0x02, 0xda, - 0x5d, 0xc9, 0x2e, 0x9a, 0xa0, 0x7a, 0xe4, 0x68, 0xa4, 0x54, 0x5f, 0x81, 0x52, 0xbc, 0x50, 0xf9, - 0xe4, 0x60, 0xb5, 0xfa, 0x67, 0x79, 0x58, 0x8c, 0x55, 0xef, 0xc8, 0x8b, 0xba, 0x94, 0xa9, 0x07, - 0x2c, 0x9a, 0x01, 0x51, 0x1d, 0xf2, 0x5b, 0xb0, 0x6c, 0xbb, 0xbe, 0x47, 0xb7, 0x1d, 0xa6, 0x22, - 0xa6, 0x91, 0xd1, 0xd8, 0x35, 0x43, 0xb9, 0xbc, 0x95, 0xc0, 0x62, 0x8a, 0x9a, 0xd8, 0x90, 0xb7, - 0x19, 0x6d, 0x73, 0x13, 0x96, 0x6d, 0xce, 0x54, 0x72, 0xdc, 0x92, 0x9c, 0x74, 0xc4, 0xac, 0x7e, - 0xa2, 0xe6, 0xad, 0x42, 0x40, 0xde, 0x53, 0x71, 0x9d, 0xca, 0xfd, 0x72, 0xd3, 0x87, 0x80, 0xcd, - 0xdb, 0xe1, 0x70, 0x4c, 0x30, 0x93, 0xd1, 0x68, 0xc7, 0x71, 0xa9, 0x54, 0x61, 0x3a, 0x98, 0xde, - 0x35, 0x70, 0x0c, 0x29, 0xa4, 0x65, 0x1d, 0x32, 0xcb, 0xb3, 0x7b, 0x66, 0x43, 0x84, 0x2f, 0x6e, - 0x53, 0x41, 0xd1, 0x60, 0xa5, 0xda, 0x85, 0xd5, 0x35, 0x06, 0x1e, 0xaa, 0xbd, 0x65, 0x75, 0x51, - 0xc2, 0x25, 0x9a, 0xd1, 0x8e, 0x89, 0xfa, 0x42, 0x34, 0xd2, 0x0e, 0x4a, 0x38, 0xe9, 0xc3, 0x3c, - 0xa3, 0x7d, 0x5f, 0x50, 0x15, 0xef, 0x2d, 0xde, 0xba, 0x33, 0x93, 0x5a, 0x51, 0xb1, 0x32, 0xf5, - 0x1a, 0xd0, 0x17, 0x56, 0x12, 0x82, 0x46, 0x08, 0x69, 0xc2, 0x55, 0xc7, 0xd3, 0x59, 0xf6, 0x9d, - 0xae, 0xe7, 0x33, 0x2a, 0xe3, 0xdf, 0x7b, 0x74, 0x54, 0x06, 0x95, 0x90, 0xbf, 0x68, 0xe6, 0x77, - 0xf5, 0xce, 0x24, 0x22, 0x9c, 0x3c, 0xb6, 0xfa, 0xf7, 0x19, 0x28, 0x04, 0xef, 0x94, 0xec, 0xc5, - 0x42, 0xfe, 0xa9, 0xea, 0x6e, 0xa5, 0x33, 0xb2, 0x82, 0x3d, 0x28, 0x0c, 0x82, 0x8c, 0x20, 0x3b, - 0x35, 0xc3, 0x30, 0x1b, 0x08, 0x99, 0x54, 0xdf, 0x82, 0x95, 0x94, 0xaa, 0xce, 0x11, 0x28, 0xbd, - 0x00, 0xb9, 0x21, 0x73, 0xb5, 0x33, 0x30, 0x37, 0x27, 0x07, 0xd8, 0x68, 0xa2, 0x82, 0x56, 0xff, - 0x63, 0x1e, 0x16, 0x6f, 0xb7, 0x5a, 0xfb, 0x41, 0xde, 0xf5, 0x84, 0xad, 0x18, 0xcb, 0xa3, 0xb3, - 0x17, 0x58, 0x3b, 0x33, 0x95, 0xc0, 0xb9, 0x67, 0x5c, 0x09, 0x7c, 0x09, 0xe6, 0xfb, 0x54, 0xf4, - 0xfc, 0x76, 0xfa, 0xb2, 0xf4, 0xbe, 0x82, 0xa2, 0xc1, 0xa6, 0x92, 0xd1, 0xfc, 0x85, 0x27, 0xa3, - 0x5f, 0x86, 0x05, 0x19, 0x9a, 0xf8, 0x43, 0x1d, 0xa4, 0xcf, 0x45, 0x9a, 0x6a, 0x69, 0x30, 0x06, - 0x78, 0xd2, 0x85, 0xe2, 0xa1, 0xc5, 0x1d, 0xbb, 0x3e, 0x14, 0x3d, 0x13, 0xa9, 0x4f, 0xaf, 0xaf, - 0xcd, 0x80, 0x83, 0x8e, 0x07, 0xc3, 0x47, 0x8c, 0x78, 0x93, 0xef, 0xc2, 0x42, 0x8f, 0x5a, 0x6d, - 0xa9, 0x90, 0x82, 0x52, 0x08, 0x3e, 0xbd, 0x42, 0x62, 0x06, 0x58, 0xbb, 0xad, 0x99, 0xea, 0x52, - 0x52, 0x74, 0x2d, 0xa2, 0xa1, 0x18, 0xc8, 0x24, 0xc7, 0xb0, 0xa4, 0x37, 0xb4, 0xc1, 0x94, 0x8b, - 0x6a, 0x12, 0xdf, 0x9c, 0xfe, 0x9e, 0x2f, 0xc6, 0x65, 0xf3, 0xf2, 0xe9, 0x49, 0x65, 0x29, 0x0e, - 0xe1, 0x98, 0x14, 0xb3, 0xf6, 0x3a, 0x94, 0xe2, 0x33, 0x9c, 0xaa, 0xa8, 0xf3, 0xa7, 0x73, 0x70, - 0xf9, 0xde, 0x46, 0x33, 0xb8, 0x4b, 0xda, 0xf7, 0x5d, 0xc7, 0x1e, 0x91, 0x3f, 0x86, 0x79, 0xd7, - 0x3a, 0xa4, 0x6e, 0x50, 0xe5, 0x78, 0xe7, 0xe9, 0xf5, 0x38, 0xc6, 0xbc, 0xd6, 0x50, 0x9c, 0xb5, - 0x32, 0x43, 0xeb, 0xd6, 0x40, 0x34, 0x62, 0xc9, 0xbb, 0xb0, 0x70, 0x68, 0xd9, 0x47, 0x7e, 0xa7, - 0x63, 0xbc, 0xd4, 0xc6, 0x53, 0x18, 0x8c, 0x1a, 0xaf, 0x43, 0x5c, 0xf3, 0x80, 0x01, 0x57, 0xe9, - 0xba, 0x29, 0x63, 0x3e, 0xdb, 0xf3, 0x0c, 0xca, 0x58, 0xad, 0xda, 0xcf, 0x31, 0xd7, 0xbd, 0x33, - 0x89, 0x08, 0x27, 0x8f, 0x5d, 0xfb, 0x06, 0x2c, 0xc6, 0x16, 0x37, 0xd5, 0x7b, 0xf8, 0xe9, 0x02, - 0x94, 0xee, 0x59, 0x9d, 0x23, 0xeb, 0x9c, 0x4e, 0xef, 0x4b, 0x90, 0x57, 0x57, 0x1b, 0x26, 0xec, - 0x08, 0x83, 0x5e, 0x75, 0xf5, 0x81, 0x1a, 0x27, 0x93, 0xc9, 0x81, 0xc5, 0x84, 0xaa, 0x48, 0xab, - 0x85, 0xe5, 0xa3, 0x64, 0x72, 0x3f, 0x40, 0x60, 0x44, 0x93, 0x72, 0x2a, 0xb9, 0x0b, 0x77, 0x2a, - 0x1b, 0x50, 0x62, 0xf4, 0xe1, 0xd0, 0x51, 0xb7, 0x72, 0x47, 0xdc, 0x14, 0x8f, 0xc2, 0x5e, 0x18, - 0x8c, 0xe1, 0x30, 0x41, 0x29, 0xa3, 0x11, 0xdb, 0xef, 0x0f, 0x18, 0xe5, 0x5c, 0xf9, 0xa3, 0x42, - 0x14, 0x8d, 0x6c, 0x19, 0x38, 0x86, 0x14, 0x32, 0x7a, 0xeb, 0xb8, 0x43, 0xde, 0xdb, 0x95, 0x3c, - 0x64, 0x80, 0xac, 0xdc, 0x52, 0x3e, 0x8a, 0xde, 0x76, 0x13, 0x58, 0x4c, 0x51, 0x07, 0xbe, 0xbf, - 0xf0, 0xd9, 0xdd, 0x02, 0x15, 0x2f, 0xf0, 0x24, 0xfb, 0x26, 0xac, 0x84, 0x26, 0xe0, 0x78, 0xdd, - 0x20, 0x80, 0x29, 0xea, 0x5b, 0xd3, 0xfd, 0x24, 0x0a, 0xd3, 0xb4, 0xf2, 0x24, 0x08, 0xca, 0x48, - 0x8b, 0xc9, 0x72, 0x4d, 0x50, 0x42, 0x0a, 0xf0, 0xe4, 0xf7, 0x20, 0xc7, 0x2d, 0xee, 0x96, 0x4b, - 0x4f, 0xdb, 0x00, 0x51, 0x6f, 0x36, 0x8c, 0xe6, 0x54, 0xd0, 0x20, 0x9f, 0x51, 0xb1, 0x24, 0xdf, - 0xcf, 0xc0, 0xb2, 0x6e, 0xbb, 0x42, 0xda, 0x75, 0xb8, 0x60, 0xa3, 0xf2, 0xd2, 0xb4, 0xb7, 0xf9, - 0x81, 0x94, 0x04, 0x1b, 0x23, 0x4f, 0x75, 0xe3, 0x24, 0x31, 0x98, 0x12, 0x58, 0xdd, 0x03, 0x68, - 0xf8, 0xdd, 0x60, 0x07, 0xd7, 0x61, 0xc5, 0xf1, 0x04, 0x65, 0xc7, 0x96, 0xdb, 0xa4, 0xb6, 0xef, - 0xb5, 0xb9, 0xda, 0xcd, 0xb9, 0xa8, 0x1a, 0x74, 0x27, 0x89, 0xc6, 0x34, 0x7d, 0xf5, 0x6f, 0xe7, - 0x60, 0xf1, 0x41, 0xbd, 0xd5, 0x3c, 0xa7, 0x53, 0x88, 0x15, 0xce, 0xb2, 0x4f, 0x28, 0x9c, 0xc5, - 0x4c, 0x6d, 0xee, 0x73, 0xbb, 0x70, 0xbc, 0x78, 0x07, 0xf3, 0xd9, 0x5c, 0xdf, 0x56, 0x7f, 0x94, - 0x83, 0xd5, 0xbd, 0x01, 0xf5, 0xde, 0xe9, 0x39, 0xfc, 0x28, 0xd6, 0x72, 0xa1, 0x6a, 0xe4, 0x99, - 0x33, 0x6b, 0xe4, 0xb1, 0x9d, 0x93, 0x7d, 0xc2, 0xce, 0x59, 0x87, 0xa2, 0x8c, 0x9c, 0xf9, 0xc0, - 0xb2, 0xc7, 0xea, 0x82, 0x0f, 0x02, 0x04, 0x46, 0x34, 0xaa, 0x39, 0x70, 0x28, 0x7a, 0x2d, 0xff, - 0x88, 0x7a, 0xd3, 0x25, 0x7e, 0xba, 0x39, 0x30, 0x18, 0x8b, 0x11, 0x1b, 0x72, 0x0b, 0xc0, 0x8a, - 0x1a, 0x15, 0x75, 0xd2, 0x17, 0x6a, 0xbc, 0x1e, 0xb5, 0x29, 0xc6, 0xa8, 0x7e, 0x53, 0x6f, 0xb6, - 0x11, 0x4a, 0xf1, 0x42, 0xc5, 0x39, 0x6e, 0xcb, 0x82, 0xac, 0x29, 0x7b, 0x56, 0xd6, 0x54, 0xfd, - 0xdf, 0x22, 0x2c, 0xed, 0x0f, 0x5d, 0x6e, 0xb1, 0x67, 0x19, 0x24, 0x7c, 0xde, 0x5d, 0x74, 0x31, - 0x03, 0xc9, 0x5d, 0xa0, 0x81, 0x0c, 0xe0, 0x8a, 0x70, 0x79, 0x8b, 0x0d, 0xb9, 0xd8, 0xa2, 0x4c, - 0x70, 0x53, 0x22, 0xc9, 0x4f, 0xdd, 0xc3, 0xd4, 0x6a, 0x34, 0xd3, 0x5c, 0x70, 0x12, 0x6b, 0x72, - 0x08, 0x6b, 0xc2, 0xe5, 0x75, 0xd7, 0xf5, 0x1f, 0x05, 0x05, 0x81, 0xa8, 0x31, 0xc6, 0x04, 0x2d, - 0x55, 0x33, 0xdf, 0xb5, 0x56, 0xa3, 0x79, 0x06, 0x25, 0x7e, 0x0a, 0x17, 0x72, 0x5f, 0xad, 0xea, - 0x6d, 0xcb, 0x75, 0xda, 0x96, 0x50, 0x25, 0x05, 0x65, 0x53, 0x0b, 0x8a, 0xf9, 0x17, 0x83, 0x22, - 0x64, 0xab, 0xd1, 0x4c, 0x93, 0xe0, 0xa4, 0x71, 0x9f, 0x55, 0x9c, 0xd3, 0x86, 0x95, 0xd0, 0xa9, - 0x18, 0xbd, 0x17, 0xa7, 0xee, 0xe6, 0xaa, 0x27, 0x39, 0x60, 0x9a, 0x25, 0xf9, 0x2e, 0x5c, 0x8e, - 0xda, 0x8c, 0x4c, 0xa4, 0xae, 0x02, 0x9b, 0x59, 0xb2, 0x89, 0xab, 0xa7, 0x27, 0x95, 0xcb, 0x5b, - 0x69, 0xb6, 0x38, 0x2e, 0x89, 0xfc, 0x4d, 0x06, 0x56, 0xe5, 0x94, 0xea, 0xa2, 0x47, 0xbd, 0x0f, - 0x95, 0x49, 0xf2, 0xf2, 0xa2, 0xb2, 0xf0, 0xef, 0xcc, 0x50, 0xfd, 0x8c, 0xef, 0xff, 0x5a, 0x3d, - 0xc5, 0x5f, 0x27, 0x55, 0x61, 0x3f, 0x53, 0x1a, 0x8d, 0x63, 0x13, 0x22, 0xdd, 0xf8, 0x24, 0xcd, - 0xbb, 0x28, 0x4d, 0xdd, 0xe0, 0x55, 0x4f, 0xb1, 0xc0, 0x31, 0xa6, 0x6b, 0x5b, 0x70, 0x75, 0xe2, - 0x6c, 0xa7, 0xca, 0x92, 0xfe, 0x24, 0x03, 0x45, 0xb4, 0x04, 0x6d, 0x38, 0x7d, 0x47, 0x90, 0x5b, - 0x90, 0x1b, 0x7a, 0x4e, 0x70, 0xc0, 0x5e, 0x0f, 0x3c, 0xe6, 0x81, 0xe7, 0x88, 0xc7, 0x27, 0x95, - 0xe5, 0x90, 0x90, 0x4a, 0x08, 0x2a, 0x5a, 0x19, 0x94, 0xa9, 0x28, 0x9e, 0x0b, 0xbe, 0x4f, 0x99, - 0x44, 0x28, 0x29, 0xf9, 0x28, 0x28, 0xc3, 0x24, 0x1a, 0xd3, 0xf4, 0xd5, 0x9f, 0x66, 0x61, 0xbe, - 0xa9, 0x5e, 0x0b, 0x79, 0x0f, 0x0a, 0x7d, 0x2a, 0x2c, 0x75, 0x59, 0xa2, 0xcb, 0x73, 0xaf, 0x9c, - 0xef, 0x0a, 0x72, 0x4f, 0x45, 0x61, 0xf7, 0xa9, 0xb0, 0x22, 0xff, 0x18, 0xc1, 0x30, 0xe4, 0x4a, - 0x3a, 0xa6, 0x33, 0x26, 0x3b, 0xeb, 0xed, 0x92, 0x9e, 0x71, 0x73, 0x40, 0xed, 0x89, 0xcd, 0x30, - 0x1e, 0xcc, 0x73, 0x61, 0x89, 0x21, 0x9f, 0xbd, 0x43, 0xd8, 0x48, 0x52, 0xdc, 0x62, 0x37, 0x08, - 0xea, 0x19, 0x8d, 0x94, 0xea, 0xbf, 0x64, 0x00, 0x34, 0x61, 0xc3, 0xe1, 0x82, 0xfc, 0xe1, 0x98, - 0x22, 0x6b, 0xe7, 0x53, 0xa4, 0x1c, 0xad, 0xd4, 0x18, 0xa6, 0x7b, 0x01, 0x24, 0xa6, 0x44, 0x0a, - 0x79, 0x47, 0xd0, 0x7e, 0x70, 0xf9, 0xf0, 0xc6, 0xac, 0x6b, 0x8b, 0x4e, 0xd2, 0x3b, 0x92, 0x2d, - 0x6a, 0xee, 0xd5, 0x8f, 0xe7, 0x83, 0x35, 0x49, 0xc5, 0x92, 0x1f, 0x64, 0xa0, 0xd4, 0x0e, 0xae, - 0x60, 0x1c, 0x1a, 0xd4, 0x52, 0xee, 0x3c, 0xb3, 0x4b, 0xd2, 0x28, 0x31, 0xde, 0x8e, 0x89, 0xc1, - 0x84, 0x50, 0xe2, 0x43, 0x41, 0x68, 0x6f, 0x11, 0x2c, 0xbf, 0x3e, 0xf3, 0xf9, 0x1a, 0x6b, 0x9b, - 0x31, 0xac, 0x31, 0x14, 0x42, 0xdc, 0x58, 0x93, 0xcd, 0xcc, 0x97, 0x1b, 0x41, 0x5b, 0x8e, 0x2e, - 0x3f, 0x8f, 0x37, 0xe9, 0x90, 0xbb, 0x40, 0x4c, 0x2d, 0x66, 0xd7, 0x72, 0x5c, 0xda, 0x46, 0x7f, - 0xe8, 0xe9, 0xd2, 0x69, 0x21, 0xea, 0x42, 0xdb, 0x19, 0xa3, 0xc0, 0x09, 0xa3, 0xc8, 0x06, 0x94, - 0xd4, 0x7c, 0x36, 0x87, 0x3c, 0x16, 0xe0, 0x86, 0x4a, 0xde, 0x89, 0xe1, 0x30, 0x41, 0x49, 0x6e, - 0x42, 0x81, 0xd1, 0x81, 0xeb, 0xd8, 0x96, 0xae, 0x3e, 0xe4, 0x83, 0x0e, 0x6d, 0x0d, 0xc3, 0x10, - 0x4b, 0x1a, 0xf0, 0x1c, 0xa3, 0xc7, 0x8e, 0x8c, 0xe9, 0x6f, 0x3b, 0x5c, 0xf8, 0x6c, 0xa4, 0x5c, - 0x94, 0xa9, 0x3f, 0x94, 0x4f, 0x4f, 0x2a, 0xcf, 0xe1, 0x04, 0x3c, 0x4e, 0x1c, 0x45, 0x7e, 0x9c, - 0x81, 0x25, 0xd7, 0xef, 0x76, 0x1d, 0xaf, 0xab, 0x2f, 0xc0, 0x4c, 0xdd, 0xf3, 0x9d, 0x67, 0xe1, - 0x27, 0x6a, 0x8d, 0x38, 0x67, 0x7d, 0xb4, 0x5c, 0x35, 0xca, 0x58, 0x4a, 0xe0, 0x30, 0x39, 0x89, - 0xb5, 0x37, 0x80, 0x8c, 0x8f, 0x9d, 0xca, 0xd1, 0xfb, 0x50, 0x8a, 0xbb, 0x11, 0xf2, 0x6e, 0xe8, - 0x9e, 0xb4, 0x77, 0xf8, 0xfa, 0xf4, 0x49, 0xfd, 0xa7, 0xfb, 0xa3, 0xef, 0xc0, 0x62, 0xd3, 0xb5, - 0xec, 0xa3, 0xa6, 0xdc, 0x39, 0x2c, 0xd1, 0x6a, 0x95, 0x79, 0x62, 0xab, 0xd5, 0x0d, 0xc8, 0x39, - 0x76, 0x98, 0xc4, 0x85, 0xee, 0xf5, 0x8e, 0xed, 0x7b, 0xa8, 0x30, 0xd5, 0x7f, 0xca, 0x18, 0xfe, - 0xad, 0x1e, 0xa3, 0x56, 0x9b, 0x34, 0xe1, 0x6a, 0x9f, 0x72, 0x6e, 0x75, 0x69, 0xbd, 0xdb, 0x65, - 0xb4, 0xab, 0xbe, 0x0e, 0xb9, 0x17, 0x68, 0x27, 0x2a, 0x3f, 0xde, 0x9f, 0x44, 0x84, 0x93, 0xc7, - 0x92, 0x77, 0xe1, 0xf9, 0x43, 0xe6, 0x5b, 0x6d, 0xdb, 0x92, 0x1e, 0x50, 0x51, 0xb4, 0xfc, 0xad, - 0x9e, 0xe5, 0x79, 0xd4, 0x35, 0x3d, 0xa2, 0xff, 0xcf, 0x30, 0x7e, 0x7e, 0xf3, 0x2c, 0x42, 0x3c, - 0x9b, 0x47, 0xf5, 0x7f, 0x72, 0x50, 0xd2, 0xab, 0xf8, 0x35, 0xe9, 0x88, 0x3b, 0x00, 0xe0, 0x6a, - 0x3e, 0x2a, 0xcb, 0xcd, 0x4e, 0xdd, 0xda, 0xda, 0x0c, 0x07, 0x63, 0x8c, 0x91, 0xcc, 0xcb, 0x6d, - 0xa3, 0xb6, 0xb9, 0x64, 0x5e, 0x1e, 0x28, 0x29, 0xc0, 0x4b, 0x52, 0xf3, 0x32, 0xcc, 0x7d, 0x4d, - 0x48, 0x6a, 0xb4, 0x87, 0x01, 0x9e, 0x7c, 0x0d, 0x16, 0x2d, 0x21, 0x2c, 0xbb, 0xd7, 0x97, 0x5a, - 0x30, 0xde, 0x25, 0x6c, 0xb9, 0xaa, 0x47, 0x28, 0x8c, 0xd3, 0xa9, 0x9b, 0x53, 0xd7, 0xb7, 0x8f, - 0xf8, 0xd8, 0xcd, 0xa9, 0x82, 0xa2, 0xc1, 0x92, 0x3e, 0xcc, 0x0b, 0x65, 0x5c, 0xe6, 0x8a, 0x65, - 0x86, 0xaf, 0x58, 0x62, 0x96, 0x1a, 0x89, 0xd3, 0xcf, 0x68, 0x84, 0x48, 0x71, 0x5c, 0xed, 0x15, - 0x93, 0x1d, 0xcc, 0x2a, 0x4e, 0x6f, 0xbc, 0x78, 0x13, 0xb3, 0x7c, 0x46, 0x23, 0xa4, 0xfa, 0x5f, - 0x73, 0x40, 0x9a, 0xc2, 0xf2, 0xda, 0x16, 0x6b, 0xdf, 0xdb, 0x68, 0x7e, 0x5e, 0x1f, 0xaf, 0x3d, - 0x18, 0xff, 0x78, 0xed, 0x95, 0x49, 0x1f, 0xaf, 0x7d, 0xf1, 0xde, 0xf0, 0x90, 0x32, 0x8f, 0x0a, - 0xca, 0x83, 0xdb, 0x8f, 0x5f, 0xcb, 0x4f, 0xd8, 0x3a, 0xb0, 0x34, 0xb0, 0x84, 0xdd, 0x6b, 0x0a, - 0x66, 0x09, 0xda, 0x1d, 0x19, 0x23, 0x7e, 0x23, 0x70, 0xf3, 0xfb, 0x71, 0xe4, 0xe3, 0x93, 0xca, - 0x6f, 0x9d, 0xf5, 0xe5, 0xab, 0x18, 0x0d, 0x28, 0xaf, 0x29, 0x72, 0xd5, 0xd4, 0x97, 0x64, 0x4b, - 0x6e, 0x01, 0xb8, 0xce, 0x31, 0xd5, 0x21, 0xae, 0x32, 0xfd, 0x42, 0x34, 0xb7, 0x46, 0x88, 0xc1, - 0x18, 0x55, 0x75, 0x1d, 0x4a, 0xda, 0x49, 0x9b, 0x4b, 0xa9, 0x0a, 0xe4, 0x2d, 0x99, 0xf6, 0x2a, - 0x3f, 0x93, 0xd7, 0xed, 0x0e, 0x2a, 0x0f, 0x46, 0x0d, 0xaf, 0xfe, 0xb0, 0x00, 0x61, 0x88, 0x40, - 0xec, 0xb1, 0x88, 0x72, 0xfa, 0xef, 0xad, 0xee, 0x1b, 0x06, 0xfa, 0x34, 0x0f, 0x9e, 0x62, 0x81, - 0xa5, 0xe9, 0x81, 0x77, 0x6c, 0x5a, 0xb7, 0x6d, 0x7f, 0x68, 0xda, 0xf6, 0xb2, 0xe3, 0x3d, 0xf0, - 0x49, 0x0a, 0x9c, 0x30, 0x8a, 0xdc, 0x55, 0x5f, 0xb6, 0x09, 0x4b, 0xea, 0xd4, 0x04, 0x4e, 0x2f, - 0x9e, 0xf1, 0x65, 0x9b, 0x26, 0x0a, 0x3f, 0x67, 0xd3, 0x8f, 0x18, 0x0d, 0x27, 0x3b, 0xb0, 0x70, - 0xec, 0xbb, 0xc3, 0x3e, 0x0d, 0x6a, 0xac, 0x6b, 0x93, 0x38, 0xbd, 0xad, 0x48, 0x62, 0x45, 0x47, - 0x3d, 0x04, 0x83, 0xb1, 0x84, 0xc2, 0x8a, 0xaa, 0x30, 0x38, 0x62, 0x64, 0x7a, 0xc4, 0x4c, 0x7d, - 0xe4, 0xa5, 0x49, 0xec, 0xf6, 0xfd, 0x76, 0x33, 0x49, 0x6d, 0x3e, 0xbb, 0x4a, 0x02, 0x31, 0xcd, - 0x93, 0x7c, 0x94, 0x81, 0x92, 0xe7, 0xb7, 0x69, 0xe0, 0x9b, 0x4d, 0xa1, 0xb0, 0x35, 0x7b, 0xd8, - 0x58, 0x7b, 0x10, 0x63, 0xab, 0x23, 0x98, 0x30, 0x9c, 0x8b, 0xa3, 0x30, 0x21, 0x9f, 0x1c, 0xc0, - 0xa2, 0xf0, 0x5d, 0xb3, 0x47, 0x83, 0xea, 0xe1, 0xf5, 0x49, 0x6b, 0x6e, 0x85, 0x64, 0x91, 0x27, - 0x8f, 0x60, 0x1c, 0xe3, 0x7c, 0x88, 0x07, 0xab, 0x4e, 0xdf, 0xea, 0xd2, 0xfd, 0xa1, 0xeb, 0xea, - 0x03, 0x29, 0x88, 0xd7, 0x26, 0x7e, 0xc2, 0x28, 0x1d, 0x91, 0x6b, 0xf6, 0x05, 0xed, 0x50, 0x46, - 0x3d, 0x9b, 0x46, 0xb9, 0xfd, 0x9d, 0x14, 0x27, 0x1c, 0xe3, 0x4d, 0xde, 0x84, 0xcb, 0x03, 0xe6, - 0xf8, 0x4a, 0xd5, 0xae, 0xc5, 0x75, 0x50, 0xab, 0x1b, 0xa1, 0x9f, 0x37, 0x6c, 0x2e, 0xef, 0xa7, - 0x09, 0x70, 0x7c, 0x8c, 0x0c, 0x6f, 0x03, 0xa0, 0x2a, 0xa0, 0x98, 0xf0, 0x36, 0x18, 0x8b, 0x21, - 0x96, 0xec, 0x42, 0xc1, 0xea, 0x74, 0x1c, 0x4f, 0x52, 0x2e, 0x2a, 0x53, 0x79, 0x61, 0xd2, 0xd2, - 0xea, 0x86, 0x46, 0xf3, 0x09, 0x9e, 0x30, 0x1c, 0xbb, 0xf6, 0x6d, 0xb8, 0x3c, 0xf6, 0xea, 0xa6, - 0x0a, 0x20, 0x9b, 0x00, 0x51, 0x3f, 0x25, 0xf9, 0x12, 0xe4, 0xb9, 0xb0, 0x58, 0x50, 0x2a, 0x08, - 0xd3, 0xb7, 0xa6, 0x04, 0xa2, 0xc6, 0xc9, 0x28, 0x8e, 0x0b, 0x7f, 0x90, 0x8e, 0xe2, 0x9a, 0xc2, - 0x1f, 0xa0, 0xc2, 0x54, 0xff, 0x3c, 0x0f, 0x0b, 0xc1, 0xc9, 0xc3, 0x63, 0x69, 0x4e, 0x66, 0xd6, - 0x66, 0x23, 0xc3, 0xf4, 0x89, 0xd9, 0x4e, 0xf2, 0xb8, 0xc8, 0x5e, 0xf8, 0x71, 0x71, 0x04, 0xf3, - 0x03, 0xe5, 0x8c, 0x8d, 0x83, 0x7a, 0x73, 0x76, 0xd9, 0x8a, 0x9d, 0x3e, 0x6b, 0xf5, 0x6f, 0x34, - 0x22, 0xc8, 0x43, 0x58, 0x62, 0x54, 0xb0, 0x51, 0xe2, 0x6c, 0x9a, 0xa5, 0x76, 0xa7, 0x3a, 0x29, - 0x30, 0xce, 0x12, 0x93, 0x12, 0xc8, 0x00, 0x8a, 0x2c, 0xa8, 0x1a, 0x19, 0x57, 0xb7, 0xf5, 0xf4, - 0x4b, 0x0c, 0x0b, 0x50, 0xda, 0x53, 0x87, 0x8f, 0x18, 0x09, 0xd1, 0x41, 0x61, 0x83, 0x5a, 0x5c, - 0xec, 0x79, 0x36, 0x35, 0x55, 0xe0, 0x58, 0x50, 0x18, 0xa2, 0x30, 0x4e, 0x57, 0xfd, 0xcf, 0x0c, - 0xac, 0xa6, 0xdf, 0x1e, 0x39, 0x82, 0x39, 0xce, 0x6c, 0x63, 0x8d, 0xfb, 0xcf, 0xce, 0x2c, 0x74, - 0x0c, 0xa4, 0x6b, 0xb8, 0x4d, 0x66, 0xa3, 0x94, 0x22, 0x77, 0x4b, 0x9b, 0x72, 0x91, 0xde, 0x2d, - 0xdb, 0x94, 0x0b, 0x54, 0x18, 0xd2, 0x88, 0xc7, 0x4a, 0x73, 0x89, 0x36, 0xd8, 0x44, 0xac, 0xf4, - 0x7c, 0x5a, 0xde, 0xa4, 0x48, 0xa9, 0xfa, 0xc3, 0x39, 0xb8, 0x36, 0x79, 0x62, 0xe4, 0x5b, 0xb0, - 0x1c, 0x96, 0x3c, 0x46, 0xb1, 0xff, 0xd0, 0x08, 0x6f, 0xf3, 0xb7, 0x13, 0x58, 0x4c, 0x51, 0xcb, - 0xe0, 0xc4, 0x74, 0x3e, 0x07, 0x7f, 0xa4, 0x11, 0xbb, 0xd6, 0xda, 0x0a, 0x31, 0x18, 0xa3, 0x22, - 0x75, 0x58, 0x31, 0x4f, 0xad, 0x78, 0xb1, 0x23, 0xd6, 0xea, 0xbf, 0x95, 0x44, 0x63, 0x9a, 0x5e, - 0xa6, 0x0e, 0x32, 0x88, 0x08, 0xbe, 0x65, 0x8e, 0xa5, 0x0e, 0xdb, 0x1a, 0x8c, 0x01, 0x9e, 0x6c, - 0x40, 0x49, 0xfe, 0x6c, 0x25, 0x3f, 0x5e, 0x8a, 0xca, 0x3f, 0x31, 0x1c, 0x26, 0x28, 0xa3, 0xaf, - 0xaa, 0x74, 0xf2, 0x30, 0xfe, 0x55, 0xd5, 0x2d, 0x80, 0x21, 0xa7, 0x68, 0x3d, 0x92, 0x4c, 0xcc, - 0x45, 0x41, 0xb8, 0xf8, 0x83, 0x10, 0x83, 0x31, 0xaa, 0xea, 0x2f, 0x32, 0xb0, 0x94, 0xd8, 0xbf, - 0xa4, 0x03, 0x73, 0x47, 0x1b, 0x41, 0x72, 0x7e, 0xef, 0x19, 0x76, 0x0b, 0x69, 0xab, 0xbb, 0xb7, - 0xc1, 0x51, 0x0a, 0x20, 0xef, 0x87, 0x75, 0x80, 0x99, 0xfb, 0xe0, 0xe3, 0xb1, 0xa5, 0x89, 0xf5, - 0x93, 0x25, 0x81, 0x7f, 0x5e, 0x86, 0x95, 0x94, 0x63, 0x3e, 0x47, 0x6b, 0xa3, 0x36, 0x26, 0xf3, - 0x15, 0xe8, 0x04, 0x63, 0x0a, 0xbe, 0x0f, 0x8d, 0x51, 0x91, 0xae, 0xd6, 0x9e, 0xf6, 0xa9, 0x8d, - 0x99, 0x96, 0x94, 0x4a, 0x90, 0x52, 0xea, 0xfb, 0x41, 0x06, 0x4a, 0x56, 0xec, 0x6f, 0x35, 0x8c, - 0x4b, 0xbd, 0x3f, 0x4b, 0xd6, 0x34, 0xf6, 0x8f, 0x22, 0xba, 0x73, 0x38, 0x8e, 0xc0, 0x84, 0x50, - 0x62, 0x43, 0xae, 0x27, 0x44, 0xf0, 0xf7, 0x0d, 0x3b, 0xcf, 0xa4, 0x47, 0x4f, 0xf7, 0x83, 0x48, - 0x00, 0x2a, 0xe6, 0xe4, 0x11, 0x14, 0xad, 0x47, 0x5c, 0xff, 0xd5, 0x8e, 0xf9, 0x5f, 0x87, 0x59, - 0x92, 0xc3, 0xd4, 0xbf, 0xf6, 0x98, 0x4b, 0xf2, 0x00, 0x8a, 0x91, 0x2c, 0xc2, 0x60, 0xde, 0x56, - 0x5f, 0xa1, 0x9a, 0x3c, 0xfc, 0xcd, 0x67, 0xf4, 0x35, 0xab, 0x3e, 0xbe, 0x12, 0x20, 0x34, 0x92, - 0x48, 0x17, 0xf2, 0x47, 0x56, 0xe7, 0xc8, 0x32, 0xb9, 0xf8, 0x0c, 0xbb, 0x22, 0xde, 0x83, 0xa6, - 0xbd, 0x85, 0x82, 0xa0, 0xe6, 0x2f, 0x5f, 0x9d, 0x67, 0x09, 0x6e, 0xae, 0xeb, 0x66, 0x78, 0x75, - 0xb1, 0xae, 0x16, 0xfd, 0xea, 0x24, 0x00, 0x15, 0x73, 0xb9, 0x1a, 0x55, 0x8c, 0x31, 0x97, 0x75, - 0xbb, 0xb3, 0x16, 0x32, 0xe2, 0xab, 0x51, 0x10, 0xd4, 0xfc, 0xa5, 0x8d, 0xf8, 0x41, 0xd7, 0x86, - 0x09, 0x57, 0x67, 0xb0, 0x91, 0x74, 0x03, 0x88, 0xb6, 0x91, 0x10, 0x8a, 0x91, 0x2c, 0xf2, 0x2e, - 0xcc, 0xb9, 0x7e, 0xd7, 0x5c, 0xb4, 0xcd, 0x70, 0xa9, 0x13, 0x75, 0x1b, 0xe9, 0x8d, 0xde, 0xf0, - 0xbb, 0x28, 0x39, 0x93, 0xbf, 0xc8, 0xc0, 0xb2, 0x95, 0xf8, 0x23, 0x10, 0xd3, 0x0d, 0x35, 0xc3, - 0xd7, 0x61, 0x13, 0xff, 0x58, 0x44, 0xf7, 0x45, 0x25, 0x51, 0x98, 0x12, 0xad, 0xc2, 0x46, 0x75, - 0x6f, 0x59, 0x5e, 0x9e, 0x75, 0x4b, 0x24, 0xee, 0x3f, 0x4d, 0xd8, 0xa8, 0x40, 0x68, 0x44, 0x90, - 0x1f, 0x67, 0xd4, 0xd1, 0x1c, 0xff, 0x0e, 0xbf, 0xbc, 0x32, 0xf3, 0x77, 0xe5, 0x93, 0xff, 0x3b, - 0x20, 0x71, 0xda, 0xc7, 0x09, 0x30, 0x3d, 0x05, 0xf2, 0xa3, 0x0c, 0xac, 0x58, 0xc9, 0x3f, 0xd9, - 0x28, 0xaf, 0xce, 0x1a, 0xa9, 0x4d, 0xfe, 0xd7, 0x0e, 0x73, 0x3f, 0x9e, 0xc4, 0x61, 0x5a, 0xba, - 0xdc, 0x66, 0xb4, 0x6f, 0x39, 0x6e, 0xf9, 0xf2, 0xcc, 0x9f, 0x94, 0xc5, 0xbe, 0x92, 0xd6, 0xdb, - 0x4c, 0x41, 0x50, 0xf3, 0xaf, 0xda, 0xb0, 0x18, 0xfb, 0x43, 0x9f, 0x73, 0xb4, 0xc2, 0xdc, 0x02, - 0x38, 0xa6, 0xcc, 0xe9, 0x8c, 0xb6, 0x28, 0x13, 0xa6, 0x72, 0x1d, 0x9e, 0xa1, 0x6f, 0x87, 0x18, - 0x8c, 0x51, 0x6d, 0xd6, 0x3e, 0xfe, 0xe4, 0xfa, 0xa5, 0x9f, 0x7d, 0x72, 0xfd, 0xd2, 0xcf, 0x3f, - 0xb9, 0x7e, 0xe9, 0x7b, 0xa7, 0xd7, 0x33, 0x1f, 0x9f, 0x5e, 0xcf, 0xfc, 0xec, 0xf4, 0x7a, 0xe6, - 0xe7, 0xa7, 0xd7, 0x33, 0xff, 0x76, 0x7a, 0x3d, 0xf3, 0x97, 0xbf, 0xb8, 0x7e, 0xe9, 0xf7, 0x0b, - 0xc1, 0x9c, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x9a, 0xb7, 0x97, 0x51, 0x43, 0x4f, 0x00, 0x00, + // 4961 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4d, 0x8f, 0x63, 0xc7, + 0x71, 0x4b, 0x0e, 0x39, 0x43, 0xd6, 0x70, 0x3e, 0xb6, 0x57, 0xbb, 0xa6, 0xc6, 0xd6, 0x72, 0x43, + 0x23, 0xca, 0xda, 0x90, 0x39, 0xd2, 0x2a, 0x8e, 0xc7, 0x0a, 0x6c, 0x8b, 0xf3, 0xa5, 0xfd, 0xe0, + 0xee, 0x8c, 0x8a, 0x1c, 0x09, 0xf9, 0x70, 0xa4, 0x37, 0x8f, 0x4d, 0xf2, 0x69, 0x1e, 0xdf, 0xe3, + 0x76, 0x37, 0x67, 0x45, 0x01, 0x4e, 0xec, 0x18, 0x49, 0x60, 0x04, 0x90, 0x73, 0xf0, 0x21, 0x27, + 0x23, 0x40, 0x90, 0x43, 0x80, 0x1c, 0x02, 0xe4, 0x1f, 0x38, 0x40, 0xa0, 0xa3, 0x73, 0xf3, 0x21, + 0x18, 0x44, 0xe3, 0x5c, 0x72, 0x30, 0x12, 0x9f, 0x12, 0xec, 0x25, 0x41, 0x7f, 0xbc, 0x4f, 0x72, + 0xb4, 0xc3, 0xe5, 0x6a, 0x64, 0xc0, 0x37, 0xbe, 0xaa, 0xea, 0xaa, 0xee, 0x7a, 0xd5, 0xd5, 0x55, + 0xd5, 0xf5, 0x08, 0xb7, 0xbb, 0x8e, 0xe8, 0x0d, 0x0f, 0x6b, 0xb6, 0xdf, 0x5f, 0xb7, 0x58, 0xd7, + 0x1f, 0x30, 0xff, 0x3d, 0xf5, 0xe3, 0x2b, 0xf4, 0x98, 0x7a, 0x82, 0xaf, 0x0f, 0x8e, 0xba, 0xeb, + 0xd6, 0xc0, 0xe1, 0xeb, 0x9c, 0x7a, 0xdc, 0x67, 0xeb, 0xc7, 0xaf, 0x58, 0xee, 0xa0, 0x67, 0xbd, + 0xb2, 0xde, 0xa5, 0x1e, 0x65, 0x96, 0xa0, 0xed, 0xda, 0x80, 0xf9, 0xc2, 0x27, 0x1b, 0x11, 0xa7, + 0x5a, 0xc0, 0x49, 0xfd, 0x78, 0x47, 0x73, 0xaa, 0x0d, 0x8e, 0xba, 0x35, 0xc9, 0xa9, 0xa6, 0x39, + 0xd5, 0x02, 0x4e, 0x6b, 0xdf, 0x3a, 0xf7, 0x1c, 0x6c, 0xbf, 0xdf, 0xf7, 0xbd, 0xb4, 0xe8, 0xb5, + 0xaf, 0xc4, 0x18, 0x74, 0xfd, 0xae, 0xbf, 0xae, 0xc0, 0x87, 0xc3, 0x8e, 0x7a, 0x52, 0x0f, 0xea, + 0x97, 0x21, 0xaf, 0x1e, 0x6d, 0xf0, 0x9a, 0xe3, 0x4b, 0x96, 0xeb, 0xb6, 0xcf, 0xe8, 0xfa, 0xf1, + 0xd8, 0x6a, 0xd6, 0x7e, 0x3b, 0xa2, 0xe9, 0x5b, 0x76, 0xcf, 0xf1, 0x28, 0x1b, 0x45, 0xf3, 0xe8, + 0x53, 0x61, 0x4d, 0x1a, 0xb5, 0x7e, 0xd6, 0x28, 0x36, 0xf4, 0x84, 0xd3, 0xa7, 0x63, 0x03, 0x7e, + 0xe7, 0x49, 0x03, 0xb8, 0xdd, 0xa3, 0x7d, 0x2b, 0x3d, 0xae, 0xfa, 0x38, 0x07, 0xab, 0xf5, 0xb7, + 0x9b, 0x0d, 0xab, 0x7f, 0xd8, 0xb6, 0x5a, 0xcc, 0xe9, 0x76, 0x29, 0x23, 0x1b, 0x50, 0xea, 0x0c, + 0x3d, 0x5b, 0x38, 0xbe, 0xf7, 0xc0, 0xea, 0xd3, 0x72, 0xe6, 0x46, 0xe6, 0x66, 0x71, 0xf3, 0xb9, + 0x8f, 0x4e, 0x2a, 0x97, 0x4e, 0x4f, 0x2a, 0xa5, 0xdd, 0x18, 0x0e, 0x13, 0x94, 0x04, 0xa1, 0x68, + 0xd9, 0x36, 0xe5, 0xfc, 0x1e, 0x1d, 0x95, 0xb3, 0x37, 0x32, 0x37, 0x17, 0x6f, 0xfd, 0x66, 0x4d, + 0x4f, 0x4d, 0xbe, 0xb2, 0x9a, 0xd4, 0x52, 0xed, 0xf8, 0x95, 0x5a, 0x93, 0xda, 0x8c, 0x8a, 0x7b, + 0x74, 0xd4, 0xa4, 0x2e, 0xb5, 0x85, 0xcf, 0x36, 0x97, 0x4e, 0x4f, 0x2a, 0xc5, 0x7a, 0x30, 0x16, + 0x23, 0x36, 0x92, 0x27, 0x0f, 0xc8, 0xcb, 0x73, 0x53, 0xf3, 0x0c, 0xc1, 0x18, 0xb1, 0x21, 0x2f, + 0xc2, 0x3c, 0xa3, 0x5d, 0xc7, 0xf7, 0xca, 0x39, 0xb5, 0xb6, 0x65, 0xb3, 0xb6, 0x79, 0x54, 0x50, + 0x34, 0x58, 0x32, 0x84, 0x85, 0x81, 0x35, 0x72, 0x7d, 0xab, 0x5d, 0xce, 0xdf, 0x98, 0xbb, 0xb9, + 0x78, 0xeb, 0x6e, 0xed, 0x69, 0xad, 0xb3, 0x66, 0xb4, 0xbb, 0x6f, 0x31, 0xab, 0x4f, 0x05, 0x65, + 0x9b, 0x2b, 0x46, 0xe8, 0xc2, 0xbe, 0x16, 0x81, 0x81, 0x2c, 0xf2, 0xc7, 0x00, 0x83, 0x80, 0x8c, + 0x97, 0xe7, 0x9f, 0xb9, 0x64, 0x62, 0x24, 0x43, 0x08, 0xe2, 0x18, 0x93, 0x48, 0x5e, 0x83, 0x65, + 0xc7, 0x3b, 0xf6, 0x6d, 0x4b, 0xbe, 0xd8, 0xd6, 0x68, 0x40, 0xcb, 0x0b, 0x4a, 0x4d, 0xe4, 0xf4, + 0xa4, 0xb2, 0x7c, 0x27, 0x81, 0xc1, 0x14, 0x25, 0xf9, 0x12, 0x2c, 0x30, 0xdf, 0xa5, 0x75, 0x7c, + 0x50, 0x2e, 0xa8, 0x41, 0xe1, 0x32, 0x51, 0x83, 0x31, 0xc0, 0x57, 0x7f, 0x91, 0x85, 0x2b, 0x75, + 0xd6, 0xf5, 0xdf, 0xf6, 0xd9, 0x51, 0xc7, 0xf5, 0x1f, 0x05, 0xf6, 0xe7, 0xc1, 0x3c, 0xf7, 0x87, + 0xcc, 0xd6, 0x96, 0x37, 0xd3, 0xd2, 0xeb, 0x4c, 0x38, 0x1d, 0xcb, 0x16, 0x0d, 0x33, 0xc5, 0x4d, + 0x90, 0x6f, 0xb9, 0xa9, 0xb8, 0xa3, 0x91, 0x42, 0x6e, 0x43, 0xd1, 0x1f, 0xc8, 0x6d, 0x21, 0x0d, + 0x22, 0xab, 0x26, 0xfd, 0x65, 0x33, 0xe9, 0xe2, 0x5e, 0x80, 0x78, 0x7c, 0x52, 0xb9, 0x1a, 0x9f, + 0x6c, 0x88, 0xc0, 0x68, 0x70, 0xea, 0xc5, 0xcd, 0x5d, 0xf8, 0x8b, 0xfb, 0x02, 0xe4, 0x2c, 0xd6, + 0xe5, 0xe5, 0xdc, 0x8d, 0xb9, 0x9b, 0xc5, 0xcd, 0xc2, 0xe9, 0x49, 0x25, 0x57, 0x67, 0x5d, 0x8e, + 0x0a, 0x5a, 0xfd, 0xa5, 0xdc, 0xec, 0x29, 0x85, 0x90, 0x26, 0x64, 0xf9, 0xab, 0x46, 0xd1, 0xbf, + 0x7b, 0xfe, 0xa9, 0x6a, 0x0f, 0x5a, 0x6b, 0xbe, 0x1a, 0x30, 0xdc, 0x9c, 0x3f, 0x3d, 0xa9, 0x64, + 0x9b, 0xaf, 0x62, 0x96, 0xbf, 0x4a, 0xaa, 0x30, 0xef, 0x78, 0xae, 0xe3, 0x51, 0xa3, 0x4e, 0xa5, + 0xf5, 0x3b, 0x0a, 0x82, 0x06, 0x43, 0xda, 0x90, 0xeb, 0x38, 0x2e, 0x35, 0x5b, 0x7a, 0xf7, 0xe9, + 0xb5, 0xb4, 0xeb, 0xb8, 0x34, 0x9c, 0x85, 0x5a, 0xb3, 0x84, 0xa0, 0xe2, 0x4e, 0xde, 0x85, 0xb9, + 0x21, 0x73, 0xd5, 0x36, 0x5f, 0xbc, 0xb5, 0xf3, 0xf4, 0x42, 0x0e, 0xb0, 0x11, 0xca, 0x58, 0x38, + 0x3d, 0xa9, 0xcc, 0x1d, 0x60, 0x03, 0x25, 0x6b, 0x72, 0x00, 0x45, 0xdb, 0xf7, 0x3a, 0x4e, 0xb7, + 0x6f, 0x0d, 0xca, 0x79, 0x25, 0xe7, 0xe6, 0x24, 0xff, 0xb4, 0xa5, 0x88, 0xee, 0x5b, 0x83, 0x31, + 0x17, 0xb5, 0x15, 0x0c, 0xc7, 0x88, 0x93, 0x9c, 0x78, 0xd7, 0x11, 0xe5, 0xf9, 0x59, 0x27, 0xfe, + 0x86, 0x23, 0x92, 0x13, 0x7f, 0xc3, 0x11, 0x28, 0x59, 0x13, 0x1b, 0x0a, 0x8c, 0x9a, 0x8d, 0xb6, + 0xa0, 0xc4, 0x7c, 0x7d, 0xea, 0xf7, 0x8f, 0x86, 0xc1, 0x66, 0xe9, 0xf4, 0xa4, 0x52, 0x08, 0x9e, + 0x30, 0x64, 0x5c, 0xfd, 0xa7, 0x1c, 0x5c, 0xad, 0x7f, 0x30, 0x64, 0x74, 0x47, 0x32, 0xb8, 0x3d, + 0x3c, 0xe4, 0xc1, 0x2e, 0xbf, 0x01, 0xb9, 0xce, 0xc3, 0xb6, 0x67, 0x4e, 0x97, 0x92, 0xb1, 0xec, + 0xdc, 0xee, 0x9b, 0xdb, 0x0f, 0x50, 0x61, 0xa4, 0x2b, 0xe9, 0x0d, 0x0f, 0xd5, 0x11, 0x94, 0x4d, + 0xba, 0x92, 0xdb, 0x1a, 0x8c, 0x01, 0x9e, 0x0c, 0xe0, 0x0a, 0xef, 0x59, 0x8c, 0xb6, 0xc3, 0x23, + 0x44, 0x0d, 0x9b, 0xea, 0xb8, 0xf8, 0xdc, 0xe9, 0x49, 0xe5, 0x4a, 0x73, 0x9c, 0x0b, 0x4e, 0x62, + 0x4d, 0xda, 0xb0, 0x92, 0x02, 0x1b, 0x23, 0x3b, 0xa7, 0xb4, 0x2b, 0xa7, 0x27, 0x95, 0x95, 0x94, + 0x34, 0x4c, 0xb3, 0xfc, 0x35, 0x3d, 0x80, 0xaa, 0xff, 0x93, 0x83, 0x6b, 0xca, 0x6a, 0x9a, 0x94, + 0x1d, 0x3b, 0x36, 0xdd, 0x1c, 0x86, 0x66, 0xd3, 0x85, 0x55, 0xdb, 0xf7, 0x3c, 0xaa, 0x82, 0x8e, + 0xa6, 0x60, 0x8e, 0xd7, 0x35, 0xde, 0xeb, 0x9c, 0x8a, 0x7f, 0xee, 0xf4, 0xa4, 0xb2, 0xba, 0x95, + 0x62, 0x81, 0x63, 0x4c, 0xc9, 0x3a, 0x14, 0x1f, 0x0e, 0xe9, 0x90, 0xc6, 0xec, 0xef, 0x72, 0x70, + 0x2a, 0xbc, 0x19, 0x20, 0x30, 0xa2, 0x91, 0x03, 0x84, 0x3f, 0x70, 0xec, 0xd0, 0xf2, 0x62, 0x03, + 0x5a, 0x01, 0x02, 0x23, 0x1a, 0xb2, 0x0d, 0xab, 0x7c, 0x78, 0xc8, 0x6d, 0xe6, 0x0c, 0xc2, 0x58, + 0x4b, 0xc7, 0x23, 0x65, 0x33, 0x6e, 0xb5, 0x99, 0xc2, 0xe3, 0xd8, 0x08, 0x72, 0x00, 0x73, 0xc2, + 0xe5, 0xc6, 0xf3, 0xbc, 0x36, 0xf5, 0x0e, 0x6e, 0x35, 0x9a, 0xda, 0xff, 0x68, 0xef, 0xd0, 0x6a, + 0x34, 0x51, 0xf2, 0x8b, 0x5b, 0xde, 0xfc, 0x67, 0x66, 0x79, 0x0b, 0x17, 0x6e, 0x79, 0x5d, 0xb8, + 0xba, 0xe5, 0x7b, 0x6d, 0x47, 0xaa, 0x97, 0x23, 0xe5, 0x54, 0x6c, 0x8e, 0x5a, 0x4e, 0x9f, 0x4a, + 0x77, 0x65, 0x33, 0x7f, 0xcc, 0x5d, 0x6d, 0x31, 0xdf, 0x43, 0x85, 0x21, 0x2f, 0x41, 0x41, 0x86, + 0xda, 0x1f, 0xf8, 0xe1, 0xb1, 0xb7, 0x6a, 0xa8, 0x0a, 0x2d, 0x03, 0xc7, 0x90, 0xa2, 0xfa, 0x61, + 0x06, 0x3e, 0x97, 0x92, 0xb4, 0xc5, 0x1c, 0x41, 0x99, 0x63, 0x11, 0x0e, 0xf3, 0x87, 0x4a, 0xaa, + 0xb1, 0xec, 0xbd, 0xa7, 0x57, 0xc0, 0xc4, 0xc5, 0xe8, 0xf3, 0x58, 0xff, 0x46, 0x23, 0xaa, 0xfa, + 0x8f, 0x79, 0x58, 0xda, 0x1a, 0x72, 0xe1, 0xf7, 0x83, 0xad, 0xb6, 0x2e, 0x23, 0x6f, 0x76, 0x4c, + 0xd9, 0x01, 0x36, 0xcc, 0xba, 0x43, 0x83, 0x6e, 0x06, 0x08, 0x8c, 0x68, 0x64, 0x58, 0xcd, 0xa9, + 0x3d, 0x64, 0x7a, 0xfd, 0x85, 0x28, 0xac, 0x6e, 0x2a, 0x28, 0x1a, 0x2c, 0x39, 0x00, 0xb0, 0x29, + 0x13, 0x7a, 0x6f, 0x4e, 0xe7, 0xa4, 0x97, 0xe5, 0xbb, 0xdb, 0x0a, 0x07, 0x63, 0x8c, 0x11, 0xb9, + 0x0b, 0x44, 0xcf, 0x45, 0xee, 0x8b, 0xbd, 0x63, 0xca, 0x98, 0xd3, 0x0e, 0x76, 0xd4, 0x9a, 0x99, + 0x0a, 0x69, 0x8e, 0x51, 0xe0, 0x84, 0x51, 0x84, 0x43, 0x8e, 0x0f, 0xa8, 0x6d, 0xbc, 0xee, 0x9b, + 0x33, 0xbc, 0x80, 0xb8, 0x4a, 0x6b, 0xcd, 0x01, 0xb5, 0x77, 0x3c, 0xc1, 0x46, 0x91, 0x05, 0x49, + 0x10, 0x2a, 0x61, 0x9f, 0x79, 0xdc, 0x1f, 0xdb, 0xf3, 0x0b, 0x17, 0xb7, 0xe7, 0xd7, 0xbe, 0x06, + 0xc5, 0x50, 0x2f, 0x64, 0x15, 0xe6, 0x8e, 0xe8, 0x48, 0x9b, 0x1b, 0xca, 0x9f, 0xe4, 0x39, 0xc8, + 0x1f, 0x5b, 0xee, 0xd0, 0x6c, 0x2a, 0xd4, 0x0f, 0xaf, 0x65, 0x37, 0x32, 0xd5, 0x5f, 0x64, 0x00, + 0xb6, 0x2d, 0x61, 0xed, 0x3a, 0xae, 0xd0, 0x11, 0xc5, 0xc0, 0x12, 0xbd, 0xf4, 0x16, 0xdd, 0xb7, + 0x44, 0x0f, 0x15, 0x86, 0xbc, 0x04, 0x39, 0x21, 0xd3, 0x99, 0x6c, 0xc2, 0xcb, 0xe6, 0x64, 0xe2, + 0xf2, 0xf8, 0xa4, 0x52, 0xb8, 0xdb, 0xdc, 0x7b, 0xa0, 0x92, 0x1a, 0x45, 0x45, 0x2a, 0x81, 0xe0, + 0x39, 0x15, 0x4e, 0x17, 0x4f, 0x4f, 0x2a, 0xf9, 0xb7, 0x24, 0xc0, 0xcc, 0x81, 0xbc, 0x0e, 0x60, + 0xfb, 0x7d, 0xa9, 0x40, 0xe1, 0x33, 0x63, 0x68, 0x37, 0x02, 0x1d, 0x6f, 0x85, 0x98, 0xc7, 0x89, + 0x27, 0x8c, 0x8d, 0x51, 0x3e, 0x83, 0xf6, 0x07, 0xae, 0x25, 0xa8, 0xf2, 0xe0, 0x71, 0x9f, 0x61, + 0xe0, 0x18, 0x52, 0x54, 0xff, 0x63, 0x0e, 0x4a, 0x3b, 0x7d, 0xcb, 0x71, 0x83, 0x1d, 0x9a, 0x34, + 0x98, 0xcc, 0x85, 0x1b, 0xcc, 0x4b, 0x50, 0x18, 0x72, 0xca, 0xbc, 0xe8, 0x88, 0x0c, 0xa7, 0x7f, + 0x60, 0xe0, 0x18, 0x52, 0x90, 0x3f, 0x80, 0x12, 0xef, 0x8b, 0xc1, 0xbe, 0xc5, 0xf9, 0x23, 0x9f, + 0xb5, 0xa7, 0xdb, 0xf8, 0xab, 0xa7, 0x27, 0x95, 0x52, 0xf3, 0x7e, 0x6b, 0x3f, 0x18, 0x8e, 0x09, + 0x66, 0xf2, 0xe5, 0xf7, 0x7c, 0x2e, 0xcc, 0x5b, 0x08, 0x5f, 0xfe, 0x6d, 0x9f, 0x0b, 0x54, 0x18, + 0x65, 0x1e, 0x3e, 0x13, 0x4a, 0xcf, 0xf9, 0x98, 0x79, 0xf8, 0x4c, 0xa0, 0xc2, 0x90, 0x6b, 0x90, + 0x15, 0xbe, 0xda, 0x77, 0x45, 0x9d, 0xce, 0xb4, 0x7c, 0xcc, 0x0a, 0x5f, 0x85, 0xaa, 0xcc, 0xef, + 0x9b, 0x2c, 0x38, 0x0a, 0x55, 0x99, 0xdf, 0x47, 0x85, 0x91, 0xa1, 0x2a, 0x1f, 0x1e, 0xbe, 0x47, + 0x6d, 0x91, 0xce, 0x7a, 0x9b, 0x1a, 0x8c, 0x01, 0x5e, 0x32, 0x3b, 0xf4, 0xdb, 0xa3, 0x72, 0x31, + 0xc9, 0x6c, 0xd3, 0x6f, 0x8f, 0x50, 0x61, 0xaa, 0x3f, 0xce, 0x40, 0x5e, 0x85, 0xcb, 0xa4, 0x0f, + 0x0b, 0xb6, 0xef, 0x09, 0xfa, 0xbe, 0x30, 0x27, 0xc1, 0x0c, 0x69, 0x92, 0xe2, 0xb8, 0xa5, 0xb9, + 0x6d, 0x2e, 0xca, 0xa9, 0x99, 0x07, 0x0c, 0x64, 0xc8, 0xf4, 0xb1, 0x6d, 0x09, 0x4b, 0xbd, 0xca, + 0x92, 0x4e, 0xa5, 0xe4, 0xf6, 0x42, 0x05, 0x7d, 0xad, 0xf0, 0xd7, 0x7f, 0x53, 0xb9, 0xf4, 0xdd, + 0x7f, 0xbb, 0x71, 0xa9, 0xfa, 0xcb, 0x2c, 0x94, 0xe2, 0xec, 0xc8, 0x1a, 0x64, 0x9d, 0xb6, 0xd9, + 0x77, 0x60, 0x56, 0x94, 0xbd, 0xb3, 0x8d, 0x59, 0xa7, 0xad, 0x0e, 0x05, 0x9d, 0x64, 0x64, 0x93, + 0xb5, 0x96, 0x54, 0x16, 0xfe, 0x55, 0x58, 0x94, 0x4e, 0xf0, 0x98, 0x32, 0x2e, 0xf3, 0x70, 0x1d, + 0x40, 0x5d, 0x31, 0xc4, 0x8b, 0xd2, 0x41, 0xbc, 0xa5, 0x51, 0x18, 0xa7, 0x93, 0xea, 0x54, 0x5b, + 0x3a, 0xf5, 0xde, 0x63, 0xdb, 0xb8, 0x0e, 0x2b, 0x72, 0xfe, 0x6a, 0x91, 0x9e, 0x50, 0xc4, 0x7a, + 0xab, 0x7d, 0xce, 0x10, 0xaf, 0xc8, 0x45, 0x6e, 0x69, 0xb4, 0x1a, 0x97, 0xa6, 0x8f, 0xbf, 0xde, + 0xf9, 0x27, 0xbc, 0xde, 0x06, 0xe4, 0xe4, 0x19, 0x6f, 0x32, 0xaa, 0x2f, 0xc7, 0x8c, 0x3b, 0x2c, + 0xcc, 0x45, 0xef, 0xa8, 0x4f, 0x85, 0x25, 0xcd, 0x5d, 0x1d, 0xca, 0xd1, 0xdc, 0xe5, 0xb1, 0xac, + 0xb8, 0xc4, 0x74, 0xfe, 0x61, 0x0e, 0x56, 0x94, 0xce, 0xb7, 0xe9, 0x80, 0x7a, 0x6d, 0xea, 0xd9, + 0x23, 0xb9, 0x76, 0x2f, 0x2a, 0xd0, 0x85, 0xe3, 0x55, 0xa0, 0xa8, 0x30, 0x72, 0xed, 0xca, 0x2e, + 0xb4, 0xae, 0x63, 0xa1, 0x6c, 0xb8, 0xf6, 0x9d, 0x24, 0x1a, 0xd3, 0xf4, 0x32, 0x0a, 0x50, 0xa0, + 0x49, 0x61, 0xed, 0x4e, 0x80, 0xc0, 0x88, 0x86, 0x1c, 0xc3, 0x42, 0x47, 0x39, 0x64, 0x6e, 0x32, + 0xa2, 0xbd, 0x19, 0x8d, 0x36, 0x5a, 0xb1, 0x76, 0xf4, 0xda, 0x7a, 0xf5, 0x6f, 0x8e, 0x81, 0x30, + 0xf2, 0xbd, 0x0c, 0x14, 0x05, 0xb3, 0x3c, 0xde, 0xf1, 0x59, 0xdf, 0xc4, 0xc3, 0xad, 0x67, 0x26, + 0xba, 0x15, 0x70, 0xa6, 0x26, 0x6b, 0x0f, 0x01, 0x18, 0x49, 0x25, 0x0e, 0x5c, 0x33, 0xd3, 0x69, + 0xf8, 0x5d, 0xc7, 0xb6, 0x5c, 0x5d, 0x26, 0xf2, 0x99, 0xb1, 0x9b, 0x57, 0x8c, 0xe6, 0xae, 0xed, + 0x4e, 0xa4, 0x7a, 0x7c, 0x52, 0x59, 0x49, 0x81, 0xf0, 0x0c, 0x86, 0xd5, 0xbf, 0xcf, 0xc3, 0xd5, + 0x89, 0xea, 0x21, 0x87, 0xc6, 0x04, 0xb5, 0xcb, 0xd8, 0x9e, 0xe1, 0x3c, 0x70, 0xfa, 0xd4, 0xa8, + 0xbc, 0x90, 0x34, 0xcc, 0xb8, 0x67, 0xca, 0x5e, 0x80, 0x67, 0xea, 0x18, 0xcf, 0xa4, 0x4b, 0x6a, + 0x33, 0x2c, 0x29, 0x0a, 0x17, 0xa2, 0xfd, 0x12, 0xf9, 0x38, 0xe2, 0x40, 0x9e, 0xbe, 0x3f, 0x60, + 0xba, 0x82, 0x36, 0x93, 0xa0, 0x9d, 0xf7, 0x07, 0xcc, 0x08, 0x5a, 0x32, 0x82, 0xf2, 0x12, 0xc6, + 0x51, 0x4b, 0x20, 0xef, 0xc2, 0x15, 0x29, 0x32, 0x6d, 0x27, 0xda, 0x35, 0xd5, 0xcc, 0x90, 0x2b, + 0xdb, 0xe3, 0x24, 0x93, 0x8c, 0x64, 0x12, 0x2b, 0x29, 0x41, 0x8a, 0x9a, 0x6c, 0x89, 0xa1, 0x84, + 0x9d, 0x71, 0x92, 0x89, 0x12, 0x26, 0xb0, 0x52, 0xbe, 0x5d, 0x25, 0xa3, 0xe6, 0x68, 0x8c, 0x7c, + 0xbb, 0x82, 0xa2, 0xc1, 0x56, 0xdf, 0x85, 0xb5, 0xb3, 0xb7, 0x93, 0x3c, 0x3d, 0xde, 0x7b, 0x98, + 0x3e, 0x3d, 0xee, 0xbe, 0x89, 0xd9, 0xf7, 0x1e, 0xc6, 0x24, 0x64, 0x3f, 0x51, 0xc2, 0x8f, 0x33, + 0x00, 0x91, 0xca, 0xa5, 0x67, 0x94, 0xf3, 0x4d, 0x7b, 0x46, 0x49, 0x81, 0x0a, 0x43, 0x3c, 0x98, + 0xef, 0x38, 0xd4, 0x6d, 0xf3, 0x72, 0x56, 0xbd, 0xea, 0x19, 0xec, 0xd7, 0x04, 0xb4, 0xbb, 0x92, + 0x5d, 0x34, 0x41, 0xf5, 0xc8, 0xd1, 0x48, 0xa9, 0xbe, 0x0c, 0xa5, 0x78, 0xa1, 0xf2, 0xc9, 0xc1, + 0x6a, 0xf5, 0xcf, 0xf3, 0xb0, 0x18, 0xab, 0xde, 0x91, 0x17, 0x74, 0x29, 0x53, 0x0f, 0x58, 0x34, + 0x03, 0xa2, 0x3a, 0xe4, 0x37, 0x61, 0xd9, 0x76, 0x7d, 0x8f, 0x6e, 0x3b, 0x4c, 0x45, 0x4c, 0x23, + 0xa3, 0xb1, 0x6b, 0x86, 0x72, 0x79, 0x2b, 0x81, 0xc5, 0x14, 0x35, 0xb1, 0x21, 0x6f, 0x33, 0xda, + 0xe6, 0x26, 0x2c, 0xdb, 0x9c, 0xa9, 0xe4, 0xb8, 0x25, 0x39, 0xe9, 0x88, 0x59, 0xfd, 0x44, 0xcd, + 0x5b, 0x85, 0x80, 0xbc, 0xa7, 0xe2, 0x3a, 0x95, 0xfb, 0xe5, 0xa6, 0x0f, 0x01, 0x9b, 0xb7, 0xc3, + 0xe1, 0x98, 0x60, 0x26, 0xa3, 0xd1, 0x8e, 0xe3, 0x52, 0xa9, 0xc2, 0x74, 0x30, 0xbd, 0x6b, 0xe0, + 0x18, 0x52, 0x48, 0xcb, 0x3a, 0x64, 0x96, 0x67, 0xf7, 0xcc, 0x86, 0x08, 0x5f, 0xdc, 0xa6, 0x82, + 0xa2, 0xc1, 0x4a, 0xb5, 0x0b, 0xab, 0x6b, 0x0c, 0x3c, 0x54, 0x7b, 0xcb, 0xea, 0xa2, 0x84, 0x4b, + 0x34, 0xa3, 0x1d, 0x13, 0xf5, 0x85, 0x68, 0xa4, 0x1d, 0x94, 0x70, 0xd2, 0x87, 0x79, 0x46, 0xfb, + 0xbe, 0xa0, 0x2a, 0xde, 0x5b, 0xbc, 0x75, 0x67, 0x26, 0xb5, 0xa2, 0x62, 0x65, 0xea, 0x35, 0xa0, + 0x2f, 0xac, 0x24, 0x04, 0x8d, 0x10, 0xd2, 0x84, 0xab, 0x8e, 0xa7, 0xb3, 0xec, 0x3b, 0x5d, 0xcf, + 0x67, 0x54, 0xc6, 0xbf, 0xf7, 0xe8, 0xa8, 0x0c, 0x2a, 0x21, 0x7f, 0xc1, 0xcc, 0xef, 0xea, 0x9d, + 0x49, 0x44, 0x38, 0x79, 0x6c, 0xf5, 0x1f, 0x32, 0x50, 0x08, 0xde, 0x29, 0xd9, 0x8b, 0x85, 0xfc, + 0x53, 0xd5, 0xdd, 0x4a, 0x67, 0x64, 0x05, 0x7b, 0x50, 0x18, 0x04, 0x19, 0x41, 0x76, 0x6a, 0x86, + 0x61, 0x36, 0x10, 0x32, 0xa9, 0xbe, 0x09, 0x2b, 0x29, 0x55, 0x9d, 0x23, 0x50, 0xfa, 0x02, 0xe4, + 0x86, 0xcc, 0xd5, 0xce, 0xc0, 0xdc, 0x9c, 0x1c, 0x60, 0xa3, 0x89, 0x0a, 0x5a, 0xfd, 0xcf, 0x79, + 0x58, 0xbc, 0xdd, 0x6a, 0xed, 0x07, 0x79, 0xd7, 0x13, 0xb6, 0x62, 0x2c, 0x8f, 0xce, 0x5e, 0x60, + 0xed, 0xcc, 0x54, 0x02, 0xe7, 0x9e, 0x71, 0x25, 0xf0, 0x45, 0x98, 0xef, 0x53, 0xd1, 0xf3, 0xdb, + 0xe9, 0xcb, 0xd2, 0xfb, 0x0a, 0x8a, 0x06, 0x9b, 0x4a, 0x46, 0xf3, 0x17, 0x9e, 0x8c, 0x7e, 0x09, + 0x16, 0x64, 0x68, 0xe2, 0x0f, 0x75, 0x90, 0x3e, 0x17, 0x69, 0xaa, 0xa5, 0xc1, 0x18, 0xe0, 0x49, + 0x17, 0x8a, 0x87, 0x16, 0x77, 0xec, 0xfa, 0x50, 0xf4, 0x4c, 0xa4, 0x3e, 0xbd, 0xbe, 0x36, 0x03, + 0x0e, 0x3a, 0x1e, 0x0c, 0x1f, 0x31, 0xe2, 0x4d, 0xbe, 0x03, 0x0b, 0x3d, 0x6a, 0xb5, 0xa5, 0x42, + 0x0a, 0x4a, 0x21, 0xf8, 0xf4, 0x0a, 0x89, 0x19, 0x60, 0xed, 0xb6, 0x66, 0xaa, 0x4b, 0x49, 0xd1, + 0xb5, 0x88, 0x86, 0x62, 0x20, 0x93, 0x1c, 0xc3, 0x92, 0xde, 0xd0, 0x06, 0x53, 0x2e, 0xaa, 0x49, + 0x7c, 0x63, 0xfa, 0x7b, 0xbe, 0x18, 0x97, 0xcd, 0xcb, 0xa7, 0x27, 0x95, 0xa5, 0x38, 0x84, 0x63, + 0x52, 0xcc, 0xda, 0x6b, 0x50, 0x8a, 0xcf, 0x70, 0xaa, 0xa2, 0xce, 0x9f, 0xcd, 0xc1, 0xe5, 0x7b, + 0x1b, 0xcd, 0xe0, 0x2e, 0x69, 0xdf, 0x77, 0x1d, 0x7b, 0x44, 0xfe, 0x04, 0xe6, 0x5d, 0xeb, 0x90, + 0xba, 0x41, 0x95, 0xe3, 0xed, 0xa7, 0xd7, 0xe3, 0x18, 0xf3, 0x5a, 0x43, 0x71, 0xd6, 0xca, 0x0c, + 0xad, 0x5b, 0x03, 0xd1, 0x88, 0x25, 0xef, 0xc0, 0xc2, 0xa1, 0x65, 0x1f, 0xf9, 0x9d, 0x8e, 0xf1, + 0x52, 0x1b, 0x4f, 0x61, 0x30, 0x6a, 0xbc, 0x0e, 0x71, 0xcd, 0x03, 0x06, 0x5c, 0xa5, 0xeb, 0xa6, + 0x8c, 0xf9, 0x6c, 0xcf, 0x33, 0x28, 0x63, 0xb5, 0x6a, 0x3f, 0xc7, 0x5c, 0xf7, 0xce, 0x24, 0x22, + 0x9c, 0x3c, 0x76, 0xed, 0xeb, 0xb0, 0x18, 0x5b, 0xdc, 0x54, 0xef, 0xe1, 0x27, 0x0b, 0x50, 0xba, + 0x67, 0x75, 0x8e, 0xac, 0x73, 0x3a, 0xbd, 0x2f, 0x42, 0x5e, 0x5d, 0x6d, 0x98, 0xb0, 0x23, 0x0c, + 0x7a, 0xd5, 0xd5, 0x07, 0x6a, 0x9c, 0x4c, 0x26, 0x07, 0x16, 0x13, 0xaa, 0x22, 0xad, 0x16, 0x96, + 0x8f, 0x92, 0xc9, 0xfd, 0x00, 0x81, 0x11, 0x4d, 0xca, 0xa9, 0xe4, 0x2e, 0xdc, 0xa9, 0x6c, 0x40, + 0x89, 0xd1, 0x87, 0x43, 0x47, 0xdd, 0xca, 0x1d, 0x71, 0x53, 0x3c, 0x0a, 0x7b, 0x61, 0x30, 0x86, + 0xc3, 0x04, 0xa5, 0x8c, 0x46, 0x6c, 0xbf, 0x3f, 0x60, 0x94, 0x73, 0xe5, 0x8f, 0x0a, 0x51, 0x34, + 0xb2, 0x65, 0xe0, 0x18, 0x52, 0xc8, 0xe8, 0xad, 0xe3, 0x0e, 0x79, 0x6f, 0x57, 0xf2, 0x90, 0x01, + 0xb2, 0x72, 0x4b, 0xf9, 0x28, 0x7a, 0xdb, 0x4d, 0x60, 0x31, 0x45, 0x1d, 0xf8, 0xfe, 0xc2, 0xa7, + 0x77, 0x0b, 0x54, 0xbc, 0xc0, 0x93, 0xec, 0x1b, 0xb0, 0x12, 0x9a, 0x80, 0xe3, 0x75, 0x83, 0x00, + 0xa6, 0xa8, 0x6f, 0x4d, 0xf7, 0x93, 0x28, 0x4c, 0xd3, 0xca, 0x93, 0x20, 0x28, 0x23, 0x2d, 0x26, + 0xcb, 0x35, 0x41, 0x09, 0x29, 0xc0, 0x93, 0xdf, 0x83, 0x1c, 0xb7, 0xb8, 0x5b, 0x2e, 0x3d, 0x6d, + 0x03, 0x44, 0xbd, 0xd9, 0x30, 0x9a, 0x53, 0x41, 0x83, 0x7c, 0x46, 0xc5, 0x92, 0x7c, 0x2f, 0x03, + 0xcb, 0xba, 0xed, 0x0a, 0x69, 0xd7, 0xe1, 0x82, 0x8d, 0xca, 0x4b, 0xd3, 0xde, 0xe6, 0x07, 0x52, + 0x12, 0x6c, 0x8c, 0x3c, 0xd5, 0x8d, 0x93, 0xc4, 0x60, 0x4a, 0x60, 0x75, 0x0f, 0xa0, 0xe1, 0x77, + 0x83, 0x1d, 0x5c, 0x87, 0x15, 0xc7, 0x13, 0x94, 0x1d, 0x5b, 0x6e, 0x93, 0xda, 0xbe, 0xd7, 0xe6, + 0x6a, 0x37, 0xe7, 0xa2, 0x6a, 0xd0, 0x9d, 0x24, 0x1a, 0xd3, 0xf4, 0xd5, 0xbf, 0x9b, 0x83, 0xc5, + 0x07, 0xf5, 0x56, 0xf3, 0x9c, 0x4e, 0x21, 0x56, 0x38, 0xcb, 0x3e, 0xa1, 0x70, 0x16, 0x33, 0xb5, + 0xb9, 0xcf, 0xec, 0xc2, 0xf1, 0xe2, 0x1d, 0xcc, 0xa7, 0x73, 0x7d, 0x5b, 0xfd, 0x61, 0x0e, 0x56, + 0xf7, 0x06, 0xd4, 0x7b, 0xbb, 0xe7, 0xf0, 0xa3, 0x58, 0xcb, 0x85, 0xaa, 0x91, 0x67, 0xce, 0xac, + 0x91, 0xc7, 0x76, 0x4e, 0xf6, 0x09, 0x3b, 0x67, 0x1d, 0x8a, 0x32, 0x72, 0xe6, 0x03, 0xcb, 0x1e, + 0xab, 0x0b, 0x3e, 0x08, 0x10, 0x18, 0xd1, 0xa8, 0xe6, 0xc0, 0xa1, 0xe8, 0xb5, 0xfc, 0x23, 0xea, + 0x4d, 0x97, 0xf8, 0xe9, 0xe6, 0xc0, 0x60, 0x2c, 0x46, 0x6c, 0xc8, 0x2d, 0x00, 0x2b, 0x6a, 0x54, + 0xd4, 0x49, 0x5f, 0xa8, 0xf1, 0x7a, 0xd4, 0xa6, 0x18, 0xa3, 0xfa, 0x75, 0xbd, 0xd9, 0x46, 0x28, + 0xc5, 0x0b, 0x15, 0xe7, 0xb8, 0x2d, 0x0b, 0xb2, 0xa6, 0xec, 0x59, 0x59, 0x53, 0xf5, 0xff, 0x8a, + 0xb0, 0xb4, 0x3f, 0x74, 0xb9, 0xc5, 0x9e, 0x65, 0x90, 0xf0, 0x59, 0x77, 0xd1, 0xc5, 0x0c, 0x24, + 0x77, 0x81, 0x06, 0x32, 0x80, 0x2b, 0xc2, 0xe5, 0x2d, 0x36, 0xe4, 0x62, 0x8b, 0x32, 0xc1, 0x4d, + 0x89, 0x24, 0x3f, 0x75, 0x0f, 0x53, 0xab, 0xd1, 0x4c, 0x73, 0xc1, 0x49, 0xac, 0xc9, 0x21, 0xac, + 0x09, 0x97, 0xd7, 0x5d, 0xd7, 0x7f, 0x14, 0x14, 0x04, 0xa2, 0xc6, 0x18, 0x13, 0xb4, 0x54, 0xcd, + 0x7c, 0xd7, 0x5a, 0x8d, 0xe6, 0x19, 0x94, 0xf8, 0x09, 0x5c, 0xc8, 0x7d, 0xb5, 0xaa, 0xb7, 0x2c, + 0xd7, 0x69, 0x5b, 0x42, 0x95, 0x14, 0x94, 0x4d, 0x2d, 0x28, 0xe6, 0x9f, 0x0f, 0x8a, 0x90, 0xad, + 0x46, 0x33, 0x4d, 0x82, 0x93, 0xc6, 0x7d, 0x5a, 0x71, 0x4e, 0x1b, 0x56, 0x42, 0xa7, 0x62, 0xf4, + 0x5e, 0x9c, 0xba, 0x9b, 0xab, 0x9e, 0xe4, 0x80, 0x69, 0x96, 0xe4, 0x3b, 0x70, 0x39, 0x6a, 0x33, + 0x32, 0x91, 0xba, 0x0a, 0x6c, 0x66, 0xc9, 0x26, 0xae, 0x9e, 0x9e, 0x54, 0x2e, 0x6f, 0xa5, 0xd9, + 0xe2, 0xb8, 0x24, 0xf2, 0xb7, 0x19, 0x58, 0x95, 0x53, 0xaa, 0x8b, 0x1e, 0xf5, 0x3e, 0x50, 0x26, + 0xc9, 0xcb, 0x8b, 0xca, 0xc2, 0xbf, 0x3d, 0x43, 0xf5, 0x33, 0xbe, 0xff, 0x6b, 0xf5, 0x14, 0x7f, + 0x9d, 0x54, 0x85, 0xfd, 0x4c, 0x69, 0x34, 0x8e, 0x4d, 0x88, 0x74, 0xe3, 0x93, 0x34, 0xef, 0xa2, + 0x34, 0x75, 0x83, 0x57, 0x3d, 0xc5, 0x02, 0xc7, 0x98, 0xae, 0x6d, 0xc1, 0xd5, 0x89, 0xb3, 0x9d, + 0x2a, 0x4b, 0xfa, 0xd3, 0x0c, 0x14, 0xd1, 0x12, 0xb4, 0xe1, 0xf4, 0x1d, 0x41, 0x6e, 0x41, 0x6e, + 0xe8, 0x39, 0xc1, 0x01, 0x7b, 0x3d, 0xf0, 0x98, 0x07, 0x9e, 0x23, 0x1e, 0x9f, 0x54, 0x96, 0x43, + 0x42, 0x2a, 0x21, 0xa8, 0x68, 0x65, 0x50, 0xa6, 0xa2, 0x78, 0x2e, 0xf8, 0x3e, 0x65, 0x12, 0xa1, + 0xa4, 0xe4, 0xa3, 0xa0, 0x0c, 0x93, 0x68, 0x4c, 0xd3, 0x57, 0x7f, 0x92, 0x85, 0xf9, 0xa6, 0x7a, + 0x2d, 0xe4, 0x5d, 0x28, 0xf4, 0xa9, 0xb0, 0xd4, 0x65, 0x89, 0x2e, 0xcf, 0xbd, 0x7c, 0xbe, 0x2b, + 0xc8, 0x3d, 0x15, 0x85, 0xdd, 0xa7, 0xc2, 0x8a, 0xfc, 0x63, 0x04, 0xc3, 0x90, 0x2b, 0xe9, 0x98, + 0xce, 0x98, 0xec, 0xac, 0xb7, 0x4b, 0x7a, 0xc6, 0xcd, 0x01, 0xb5, 0x27, 0x36, 0xc3, 0x78, 0x30, + 0xcf, 0x85, 0x25, 0x86, 0x7c, 0xf6, 0x0e, 0x61, 0x23, 0x49, 0x71, 0x8b, 0xdd, 0x20, 0xa8, 0x67, + 0x34, 0x52, 0xaa, 0xff, 0x9a, 0x01, 0xd0, 0x84, 0x0d, 0x87, 0x0b, 0xf2, 0x87, 0x63, 0x8a, 0xac, + 0x9d, 0x4f, 0x91, 0x72, 0xb4, 0x52, 0x63, 0x98, 0xee, 0x05, 0x90, 0x98, 0x12, 0x29, 0xe4, 0x1d, + 0x41, 0xfb, 0xc1, 0xe5, 0xc3, 0xeb, 0xb3, 0xae, 0x2d, 0x3a, 0x49, 0xef, 0x48, 0xb6, 0xa8, 0xb9, + 0x57, 0x3f, 0x9a, 0x0f, 0xd6, 0x24, 0x15, 0x4b, 0xbe, 0x9f, 0x81, 0x52, 0x3b, 0xb8, 0x82, 0x71, + 0x68, 0x50, 0x4b, 0xb9, 0xf3, 0xcc, 0x2e, 0x49, 0xa3, 0xc4, 0x78, 0x3b, 0x26, 0x06, 0x13, 0x42, + 0x89, 0x0f, 0x05, 0xa1, 0xbd, 0x45, 0xb0, 0xfc, 0xfa, 0xcc, 0xe7, 0x6b, 0xac, 0x6d, 0xc6, 0xb0, + 0xc6, 0x50, 0x08, 0x71, 0x63, 0x4d, 0x36, 0x33, 0x5f, 0x6e, 0x04, 0x6d, 0x39, 0xba, 0xfc, 0x3c, + 0xde, 0xa4, 0x43, 0xee, 0x02, 0x31, 0xb5, 0x98, 0x5d, 0xcb, 0x71, 0x69, 0x1b, 0xfd, 0xa1, 0xa7, + 0x4b, 0xa7, 0x85, 0xa8, 0x0b, 0x6d, 0x67, 0x8c, 0x02, 0x27, 0x8c, 0x22, 0x1b, 0x50, 0x52, 0xf3, + 0xd9, 0x1c, 0xf2, 0x58, 0x80, 0x1b, 0x2a, 0x79, 0x27, 0x86, 0xc3, 0x04, 0x25, 0xb9, 0x09, 0x05, + 0x46, 0x07, 0xae, 0x63, 0x5b, 0xba, 0xfa, 0x90, 0x0f, 0x3a, 0xb4, 0x35, 0x0c, 0x43, 0x2c, 0x69, + 0xc0, 0x73, 0x8c, 0x1e, 0x3b, 0x32, 0xa6, 0xbf, 0xed, 0x70, 0xe1, 0xb3, 0x91, 0x72, 0x51, 0xa6, + 0xfe, 0x50, 0x3e, 0x3d, 0xa9, 0x3c, 0x87, 0x13, 0xf0, 0x38, 0x71, 0x14, 0xf9, 0x51, 0x06, 0x96, + 0x5c, 0xbf, 0xdb, 0x75, 0xbc, 0xae, 0xbe, 0x00, 0x33, 0x75, 0xcf, 0xb7, 0x9f, 0x85, 0x9f, 0xa8, + 0x35, 0xe2, 0x9c, 0xf5, 0xd1, 0x72, 0xd5, 0x28, 0x63, 0x29, 0x81, 0xc3, 0xe4, 0x24, 0xd6, 0x5e, + 0x07, 0x32, 0x3e, 0x76, 0x2a, 0x47, 0xef, 0x43, 0x29, 0xee, 0x46, 0xc8, 0x3b, 0xa1, 0x7b, 0xd2, + 0xde, 0xe1, 0x6b, 0xd3, 0x27, 0xf5, 0x9f, 0xec, 0x8f, 0xbe, 0x0d, 0x8b, 0x4d, 0xd7, 0xb2, 0x8f, + 0x9a, 0x72, 0xe7, 0xb0, 0x44, 0xab, 0x55, 0xe6, 0x89, 0xad, 0x56, 0x37, 0x20, 0xe7, 0xd8, 0x61, + 0x12, 0x17, 0xba, 0xd7, 0x3b, 0xb6, 0xef, 0xa1, 0xc2, 0x54, 0xff, 0x39, 0x63, 0xf8, 0xb7, 0x7a, + 0x8c, 0x5a, 0x6d, 0xd2, 0x84, 0xab, 0x7d, 0xca, 0xb9, 0xd5, 0xa5, 0xf5, 0x6e, 0x97, 0xd1, 0xae, + 0xfa, 0x3a, 0xe4, 0x5e, 0xa0, 0x9d, 0xa8, 0xfc, 0x78, 0x7f, 0x12, 0x11, 0x4e, 0x1e, 0x4b, 0xde, + 0x81, 0xe7, 0x0f, 0x99, 0x6f, 0xb5, 0x6d, 0x4b, 0x7a, 0x40, 0x45, 0xd1, 0xf2, 0xb7, 0x7a, 0x96, + 0xe7, 0x51, 0xd7, 0xf4, 0x88, 0xfe, 0x86, 0x61, 0xfc, 0xfc, 0xe6, 0x59, 0x84, 0x78, 0x36, 0x8f, + 0xea, 0xff, 0xe6, 0xa0, 0xa4, 0x57, 0xf1, 0x2b, 0xd2, 0x11, 0x77, 0x00, 0xc0, 0xd5, 0x7c, 0x54, + 0x96, 0x9b, 0x9d, 0xba, 0xb5, 0xb5, 0x19, 0x0e, 0xc6, 0x18, 0x23, 0x99, 0x97, 0xdb, 0x46, 0x6d, + 0x73, 0xc9, 0xbc, 0x3c, 0x50, 0x52, 0x80, 0x97, 0xa4, 0xe6, 0x65, 0x98, 0xfb, 0x9a, 0x90, 0xd4, + 0x68, 0x0f, 0x03, 0x3c, 0xf9, 0x2a, 0x2c, 0x5a, 0x42, 0x58, 0x76, 0xaf, 0x2f, 0xb5, 0x60, 0xbc, + 0x4b, 0xd8, 0x72, 0x55, 0x8f, 0x50, 0x18, 0xa7, 0x53, 0x37, 0xa7, 0xae, 0x6f, 0x1f, 0xf1, 0xb1, + 0x9b, 0x53, 0x05, 0x45, 0x83, 0x25, 0x7d, 0x98, 0x17, 0xca, 0xb8, 0xcc, 0x15, 0xcb, 0x0c, 0x5f, + 0xb1, 0xc4, 0x2c, 0x35, 0x12, 0xa7, 0x9f, 0xd1, 0x08, 0x91, 0xe2, 0xb8, 0xda, 0x2b, 0x26, 0x3b, + 0x98, 0x55, 0x9c, 0xde, 0x78, 0xf1, 0x26, 0x66, 0xf9, 0x8c, 0x46, 0x48, 0xf5, 0xbf, 0xe7, 0x80, + 0x34, 0x85, 0xe5, 0xb5, 0x2d, 0xd6, 0xbe, 0xb7, 0xd1, 0xfc, 0xac, 0x3e, 0x5e, 0x7b, 0x30, 0xfe, + 0xf1, 0xda, 0xcb, 0x93, 0x3e, 0x5e, 0xfb, 0xfc, 0xbd, 0xe1, 0x21, 0x65, 0x1e, 0x15, 0x94, 0x07, + 0xb7, 0x1f, 0xbf, 0x92, 0x9f, 0xb0, 0x75, 0x60, 0x69, 0x60, 0x09, 0xbb, 0xd7, 0x14, 0xcc, 0x12, + 0xb4, 0x3b, 0x32, 0x46, 0xfc, 0x7a, 0xe0, 0xe6, 0xf7, 0xe3, 0xc8, 0xc7, 0x27, 0x95, 0xdf, 0x3a, + 0xeb, 0xcb, 0x57, 0x31, 0x1a, 0x50, 0x5e, 0x53, 0xe4, 0xaa, 0xa9, 0x2f, 0xc9, 0x96, 0xdc, 0x02, + 0x70, 0x9d, 0x63, 0xaa, 0x43, 0x5c, 0x65, 0xfa, 0x85, 0x68, 0x6e, 0x8d, 0x10, 0x83, 0x31, 0xaa, + 0xea, 0x3a, 0x94, 0xb4, 0x93, 0x36, 0x97, 0x52, 0x15, 0xc8, 0x5b, 0x32, 0xed, 0x55, 0x7e, 0x26, + 0xaf, 0xdb, 0x1d, 0x54, 0x1e, 0x8c, 0x1a, 0x5e, 0xfd, 0x41, 0x01, 0xc2, 0x10, 0x81, 0xd8, 0x63, + 0x11, 0xe5, 0xf4, 0xdf, 0x5b, 0xdd, 0x37, 0x0c, 0xf4, 0x69, 0x1e, 0x3c, 0xc5, 0x02, 0x4b, 0xd3, + 0x03, 0xef, 0xd8, 0xb4, 0x6e, 0xdb, 0xfe, 0xd0, 0xb4, 0xed, 0x65, 0xc7, 0x7b, 0xe0, 0x93, 0x14, + 0x38, 0x61, 0x14, 0xb9, 0xab, 0xbe, 0x6c, 0x13, 0x96, 0xd4, 0xa9, 0x09, 0x9c, 0x5e, 0x38, 0xe3, + 0xcb, 0x36, 0x4d, 0x14, 0x7e, 0xce, 0xa6, 0x1f, 0x31, 0x1a, 0x4e, 0x76, 0x60, 0xe1, 0xd8, 0x77, + 0x87, 0x7d, 0x1a, 0xd4, 0x58, 0xd7, 0x26, 0x71, 0x7a, 0x4b, 0x91, 0xc4, 0x8a, 0x8e, 0x7a, 0x08, + 0x06, 0x63, 0x09, 0x85, 0x15, 0x55, 0x61, 0x70, 0xc4, 0xc8, 0xf4, 0x88, 0x99, 0xfa, 0xc8, 0x8b, + 0x93, 0xd8, 0xed, 0xfb, 0xed, 0x66, 0x92, 0xda, 0x7c, 0x76, 0x95, 0x04, 0x62, 0x9a, 0x27, 0xf9, + 0x30, 0x03, 0x25, 0xcf, 0x6f, 0xd3, 0xc0, 0x37, 0x9b, 0x42, 0x61, 0x6b, 0xf6, 0xb0, 0xb1, 0xf6, + 0x20, 0xc6, 0x56, 0x47, 0x30, 0x61, 0x38, 0x17, 0x47, 0x61, 0x42, 0x3e, 0x39, 0x80, 0x45, 0xe1, + 0xbb, 0x66, 0x8f, 0x06, 0xd5, 0xc3, 0xeb, 0x93, 0xd6, 0xdc, 0x0a, 0xc9, 0x22, 0x4f, 0x1e, 0xc1, + 0x38, 0xc6, 0xf9, 0x10, 0x0f, 0x56, 0x9d, 0xbe, 0xd5, 0xa5, 0xfb, 0x43, 0xd7, 0xd5, 0x07, 0x52, + 0x10, 0xaf, 0x4d, 0xfc, 0x84, 0x51, 0x3a, 0x22, 0xd7, 0xec, 0x0b, 0xda, 0xa1, 0x8c, 0x7a, 0x36, + 0x8d, 0x72, 0xfb, 0x3b, 0x29, 0x4e, 0x38, 0xc6, 0x9b, 0xbc, 0x01, 0x97, 0x07, 0xcc, 0xf1, 0x95, + 0xaa, 0x5d, 0x8b, 0xeb, 0xa0, 0x56, 0x37, 0x42, 0x3f, 0x6f, 0xd8, 0x5c, 0xde, 0x4f, 0x13, 0xe0, + 0xf8, 0x18, 0x19, 0xde, 0x06, 0x40, 0x55, 0x40, 0x31, 0xe1, 0x6d, 0x30, 0x16, 0x43, 0x2c, 0xd9, + 0x85, 0x82, 0xd5, 0xe9, 0x38, 0x9e, 0xa4, 0x5c, 0x54, 0xa6, 0xf2, 0x85, 0x49, 0x4b, 0xab, 0x1b, + 0x1a, 0xcd, 0x27, 0x78, 0xc2, 0x70, 0xec, 0xda, 0xb7, 0xe0, 0xf2, 0xd8, 0xab, 0x9b, 0x2a, 0x80, + 0x6c, 0x02, 0x44, 0xfd, 0x94, 0xe4, 0x8b, 0x90, 0xe7, 0xc2, 0x62, 0x41, 0xa9, 0x20, 0x4c, 0xdf, + 0x9a, 0x12, 0x88, 0x1a, 0x27, 0xa3, 0x38, 0x2e, 0xfc, 0x41, 0x3a, 0x8a, 0x6b, 0x0a, 0x7f, 0x80, + 0x0a, 0x53, 0xfd, 0x8b, 0x3c, 0x2c, 0x04, 0x27, 0x0f, 0x8f, 0xa5, 0x39, 0x99, 0x59, 0x9b, 0x8d, + 0x0c, 0xd3, 0x27, 0x66, 0x3b, 0xc9, 0xe3, 0x22, 0x7b, 0xe1, 0xc7, 0xc5, 0x11, 0xcc, 0x0f, 0x94, + 0x33, 0x36, 0x0e, 0xea, 0x8d, 0xd9, 0x65, 0x2b, 0x76, 0xfa, 0xac, 0xd5, 0xbf, 0xd1, 0x88, 0x20, + 0x0f, 0x61, 0x89, 0x51, 0xc1, 0x46, 0x89, 0xb3, 0x69, 0x96, 0xda, 0x9d, 0xea, 0xa4, 0xc0, 0x38, + 0x4b, 0x4c, 0x4a, 0x20, 0x03, 0x28, 0xb2, 0xa0, 0x6a, 0x64, 0x5c, 0xdd, 0xd6, 0xd3, 0x2f, 0x31, + 0x2c, 0x40, 0x69, 0x4f, 0x1d, 0x3e, 0x62, 0x24, 0x44, 0x07, 0x85, 0x0d, 0x6a, 0x71, 0xb1, 0xe7, + 0xd9, 0xd4, 0x54, 0x81, 0x63, 0x41, 0x61, 0x88, 0xc2, 0x38, 0x5d, 0xf5, 0xbf, 0x32, 0xb0, 0x9a, + 0x7e, 0x7b, 0xe4, 0x08, 0xe6, 0x38, 0xb3, 0x8d, 0x35, 0xee, 0x3f, 0x3b, 0xb3, 0xd0, 0x31, 0x90, + 0xae, 0xe1, 0x36, 0x99, 0x8d, 0x52, 0x8a, 0xdc, 0x2d, 0x6d, 0xca, 0x45, 0x7a, 0xb7, 0x6c, 0x53, + 0x2e, 0x50, 0x61, 0x48, 0x23, 0x1e, 0x2b, 0xcd, 0x25, 0xda, 0x60, 0x13, 0xb1, 0xd2, 0xf3, 0x69, + 0x79, 0x93, 0x22, 0xa5, 0xea, 0x0f, 0xe6, 0xe0, 0xda, 0xe4, 0x89, 0x91, 0x6f, 0xc2, 0x72, 0x58, + 0xf2, 0x18, 0xc5, 0xfe, 0x43, 0x23, 0xbc, 0xcd, 0xdf, 0x4e, 0x60, 0x31, 0x45, 0x2d, 0x83, 0x13, + 0xd3, 0xf9, 0x1c, 0xfc, 0x91, 0x46, 0xec, 0x5a, 0x6b, 0x2b, 0xc4, 0x60, 0x8c, 0x8a, 0xd4, 0x61, + 0xc5, 0x3c, 0xb5, 0xe2, 0xc5, 0x8e, 0x58, 0xab, 0xff, 0x56, 0x12, 0x8d, 0x69, 0x7a, 0x99, 0x3a, + 0xc8, 0x20, 0x22, 0xf8, 0x96, 0x39, 0x96, 0x3a, 0x6c, 0x6b, 0x30, 0x06, 0x78, 0xb2, 0x01, 0x25, + 0xf9, 0xb3, 0x95, 0xfc, 0x78, 0x29, 0x2a, 0xff, 0xc4, 0x70, 0x98, 0xa0, 0x8c, 0xbe, 0xaa, 0xd2, + 0xc9, 0xc3, 0xf8, 0x57, 0x55, 0xb7, 0x00, 0x86, 0x9c, 0xa2, 0xf5, 0x48, 0x32, 0x31, 0x17, 0x05, + 0xe1, 0xe2, 0x0f, 0x42, 0x0c, 0xc6, 0xa8, 0xaa, 0x3f, 0xcf, 0xc0, 0x52, 0x62, 0xff, 0x92, 0x0e, + 0xcc, 0x1d, 0x6d, 0x04, 0xc9, 0xf9, 0xbd, 0x67, 0xd8, 0x2d, 0xa4, 0xad, 0xee, 0xde, 0x06, 0x47, + 0x29, 0x80, 0xbc, 0x17, 0xd6, 0x01, 0x66, 0xee, 0x83, 0x8f, 0xc7, 0x96, 0x26, 0xd6, 0x4f, 0x96, + 0x04, 0xfe, 0x65, 0x19, 0x56, 0x52, 0x8e, 0xf9, 0x1c, 0xad, 0x8d, 0xda, 0x98, 0xcc, 0x57, 0xa0, + 0x13, 0x8c, 0x29, 0xf8, 0x3e, 0x34, 0x46, 0x45, 0xba, 0x5a, 0x7b, 0xda, 0xa7, 0x36, 0x66, 0x5a, + 0x52, 0x2a, 0x41, 0x4a, 0xa9, 0xef, 0xfb, 0x19, 0x28, 0x59, 0xb1, 0xbf, 0xd5, 0x30, 0x2e, 0xf5, + 0xfe, 0x2c, 0x59, 0xd3, 0xd8, 0x3f, 0x8a, 0xe8, 0xce, 0xe1, 0x38, 0x02, 0x13, 0x42, 0x89, 0x0d, + 0xb9, 0x9e, 0x10, 0xc1, 0xdf, 0x37, 0xec, 0x3c, 0x93, 0x1e, 0x3d, 0xdd, 0x0f, 0x22, 0x01, 0xa8, + 0x98, 0x93, 0x47, 0x50, 0xb4, 0x1e, 0x71, 0xfd, 0x57, 0x3b, 0xe6, 0x7f, 0x1d, 0x66, 0x49, 0x0e, + 0x53, 0xff, 0xda, 0x63, 0x2e, 0xc9, 0x03, 0x28, 0x46, 0xb2, 0x08, 0x83, 0x79, 0x5b, 0x7d, 0x85, + 0x6a, 0xf2, 0xf0, 0x37, 0x9e, 0xd1, 0xd7, 0xac, 0xfa, 0xf8, 0x4a, 0x80, 0xd0, 0x48, 0x22, 0x5d, + 0xc8, 0x1f, 0x59, 0x9d, 0x23, 0xcb, 0xe4, 0xe2, 0x33, 0xec, 0x8a, 0x78, 0x0f, 0x9a, 0xf6, 0x16, + 0x0a, 0x82, 0x9a, 0xbf, 0x7c, 0x75, 0x9e, 0x25, 0xb8, 0xb9, 0xae, 0x9b, 0xe1, 0xd5, 0xc5, 0xba, + 0x5a, 0xf4, 0xab, 0x93, 0x00, 0x54, 0xcc, 0xe5, 0x6a, 0x54, 0x31, 0xc6, 0x5c, 0xd6, 0xed, 0xce, + 0x5a, 0xc8, 0x88, 0xaf, 0x46, 0x41, 0x50, 0xf3, 0x97, 0x36, 0xe2, 0x07, 0x5d, 0x1b, 0x26, 0x5c, + 0x9d, 0xc1, 0x46, 0xd2, 0x0d, 0x20, 0xda, 0x46, 0x42, 0x28, 0x46, 0xb2, 0xc8, 0x3b, 0x30, 0xe7, + 0xfa, 0x5d, 0x73, 0xd1, 0x36, 0xc3, 0xa5, 0x4e, 0xd4, 0x6d, 0xa4, 0x37, 0x7a, 0xc3, 0xef, 0xa2, + 0xe4, 0x4c, 0xfe, 0x32, 0x03, 0xcb, 0x56, 0xe2, 0x8f, 0x40, 0x4c, 0x37, 0xd4, 0x0c, 0x5f, 0x87, + 0x4d, 0xfc, 0x63, 0x11, 0xdd, 0x17, 0x95, 0x44, 0x61, 0x4a, 0xb4, 0x0a, 0x1b, 0xd5, 0xbd, 0x65, + 0x79, 0x79, 0xd6, 0x2d, 0x91, 0xb8, 0xff, 0x34, 0x61, 0xa3, 0x02, 0xa1, 0x11, 0x41, 0x7e, 0x94, + 0x51, 0x47, 0x73, 0xfc, 0x3b, 0xfc, 0xf2, 0xca, 0xcc, 0xdf, 0x95, 0x4f, 0xfe, 0xef, 0x80, 0xc4, + 0x69, 0x1f, 0x27, 0xc0, 0xf4, 0x14, 0xc8, 0x0f, 0x33, 0xb0, 0x62, 0x25, 0xff, 0x64, 0xa3, 0xbc, + 0x3a, 0x6b, 0xa4, 0x36, 0xf9, 0x5f, 0x3b, 0xcc, 0xfd, 0x78, 0x12, 0x87, 0x69, 0xe9, 0x72, 0x9b, + 0xd1, 0xbe, 0xe5, 0xb8, 0xe5, 0xcb, 0x33, 0x7f, 0x52, 0x16, 0xfb, 0x4a, 0x5a, 0x6f, 0x33, 0x05, + 0x41, 0xcd, 0xbf, 0x6a, 0xc3, 0x62, 0xec, 0x0f, 0x7d, 0xce, 0xd1, 0x0a, 0x73, 0x0b, 0xe0, 0x98, + 0x32, 0xa7, 0x33, 0xda, 0xa2, 0x4c, 0x98, 0xca, 0x75, 0x78, 0x86, 0xbe, 0x15, 0x62, 0x30, 0x46, + 0xb5, 0xf9, 0x47, 0x1f, 0x7d, 0x7c, 0xfd, 0xd2, 0x4f, 0x3f, 0xbe, 0x7e, 0xe9, 0x67, 0x1f, 0x5f, + 0xbf, 0xf4, 0xdd, 0xd3, 0xeb, 0x99, 0x8f, 0x4e, 0xaf, 0x67, 0x7e, 0x7a, 0x7a, 0x3d, 0xf3, 0xb3, + 0xd3, 0xeb, 0x99, 0x7f, 0x3f, 0xbd, 0x9e, 0xf9, 0xab, 0x9f, 0x5f, 0xbf, 0xf4, 0xfb, 0x1b, 0x4f, + 0xfb, 0xc7, 0x79, 0xff, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x22, 0xad, 0xca, 0xcf, 0x73, 0x4f, 0x00, + 0x00, } func (m *AWSLambdaTrigger) Marshal() (dAtA []byte, err error) { diff --git a/pkg/apis/sensor/v1alpha1/generated.proto b/pkg/apis/sensor/v1alpha1/generated.proto index 4fb1ec3d4e..b44ad7044a 100644 --- a/pkg/apis/sensor/v1alpha1/generated.proto +++ b/pkg/apis/sensor/v1alpha1/generated.proto @@ -27,7 +27,7 @@ import "k8s.io/apimachinery/pkg/runtime/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; // Package-wide variables from generator "generated". -option go_package = "v1alpha1"; +option go_package = "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1"; // AWSLambdaTrigger refers to specification of the trigger to invoke an AWS Lambda function message AWSLambdaTrigger { diff --git a/pkg/apis/sensor/v1alpha1/openapi_generated.go b/pkg/apis/sensor/v1alpha1/openapi_generated.go index 1b6b3318e1..87c02b804f 100644 --- a/pkg/apis/sensor/v1alpha1/openapi_generated.go +++ b/pkg/apis/sensor/v1alpha1/openapi_generated.go @@ -801,7 +801,6 @@ func schema_pkg_apis_sensor_v1alpha1_EventContext(ref common.ReferenceCallback) "time": { SchemaProps: spec.SchemaProps{ Description: "Time - A Timestamp when the event happened.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, diff --git a/pkg/client/eventbus/clientset/versioned/clientset.go b/pkg/client/eventbus/clientset/versioned/clientset.go index 9197fd65e6..a3770b1662 100644 --- a/pkg/client/eventbus/clientset/versioned/clientset.go +++ b/pkg/client/eventbus/clientset/versioned/clientset.go @@ -33,8 +33,7 @@ type Interface interface { ArgoprojV1alpha1() argoprojv1alpha1.ArgoprojV1alpha1Interface } -// Clientset contains the clients for groups. Each group has exactly one -// version included in a Clientset. +// Clientset contains the clients for groups. type Clientset struct { *discovery.DiscoveryClient argoprojV1alpha1 *argoprojv1alpha1.ArgoprojV1alpha1Client @@ -61,6 +60,10 @@ func (c *Clientset) Discovery() discovery.DiscoveryInterface { func NewForConfig(c *rest.Config) (*Clientset, error) { configShallowCopy := *c + if configShallowCopy.UserAgent == "" { + configShallowCopy.UserAgent = rest.DefaultKubernetesUserAgent() + } + // share the transport between all clients httpClient, err := rest.HTTPClientFor(&configShallowCopy) if err != nil { diff --git a/pkg/client/eventbus/clientset/versioned/doc.go b/pkg/client/eventbus/clientset/versioned/doc.go deleted file mode 100644 index 6e064c137a..0000000000 --- a/pkg/client/eventbus/clientset/versioned/doc.go +++ /dev/null @@ -1,20 +0,0 @@ -/* -Copyright 2021 BlackRock, Inc. - -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. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -// This package has the automatically generated clientset. -package versioned diff --git a/pkg/client/eventbus/clientset/versioned/typed/eventbus/v1alpha1/fake/fake_eventbus.go b/pkg/client/eventbus/clientset/versioned/typed/eventbus/v1alpha1/fake/fake_eventbus.go index 1770080a9c..51cbb1aa27 100644 --- a/pkg/client/eventbus/clientset/versioned/typed/eventbus/v1alpha1/fake/fake_eventbus.go +++ b/pkg/client/eventbus/clientset/versioned/typed/eventbus/v1alpha1/fake/fake_eventbus.go @@ -24,7 +24,6 @@ import ( v1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventbus/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" labels "k8s.io/apimachinery/pkg/labels" - schema "k8s.io/apimachinery/pkg/runtime/schema" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" testing "k8s.io/client-go/testing" @@ -36,9 +35,9 @@ type FakeEventBus struct { ns string } -var eventbusResource = schema.GroupVersionResource{Group: "argoproj.io", Version: "v1alpha1", Resource: "eventbus"} +var eventbusResource = v1alpha1.SchemeGroupVersion.WithResource("eventbus") -var eventbusKind = schema.GroupVersionKind{Group: "argoproj.io", Version: "v1alpha1", Kind: "EventBus"} +var eventbusKind = v1alpha1.SchemeGroupVersion.WithKind("EventBus") // Get takes name of the eventBus, and returns the corresponding eventBus object, and an error if there is any. func (c *FakeEventBus) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha1.EventBus, err error) { diff --git a/pkg/client/eventbus/informers/externalversions/factory.go b/pkg/client/eventbus/informers/externalversions/factory.go index b5ef39c0eb..ebfd9ef2fd 100644 --- a/pkg/client/eventbus/informers/externalversions/factory.go +++ b/pkg/client/eventbus/informers/externalversions/factory.go @@ -42,11 +42,17 @@ type sharedInformerFactory struct { lock sync.Mutex defaultResync time.Duration customResync map[reflect.Type]time.Duration + transform cache.TransformFunc informers map[reflect.Type]cache.SharedIndexInformer // startedInformers is used for tracking which informers have been started. // This allows Start() to be called multiple times safely. startedInformers map[reflect.Type]bool + // wg tracks how many goroutines were started. + wg sync.WaitGroup + // shuttingDown is true when Shutdown has been called. It may still be running + // because it needs to wait for goroutines. + shuttingDown bool } // WithCustomResyncConfig sets a custom resync period for the specified informer types. @@ -75,6 +81,14 @@ func WithNamespace(namespace string) SharedInformerOption { } } +// WithTransform sets a transform on all informers. +func WithTransform(transform cache.TransformFunc) SharedInformerOption { + return func(factory *sharedInformerFactory) *sharedInformerFactory { + factory.transform = transform + return factory + } +} + // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces. func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory { return NewSharedInformerFactoryWithOptions(client, defaultResync) @@ -107,20 +121,39 @@ func NewSharedInformerFactoryWithOptions(client versioned.Interface, defaultResy return factory } -// Start initializes all requested informers. func (f *sharedInformerFactory) Start(stopCh <-chan struct{}) { f.lock.Lock() defer f.lock.Unlock() + if f.shuttingDown { + return + } + for informerType, informer := range f.informers { if !f.startedInformers[informerType] { - go informer.Run(stopCh) + f.wg.Add(1) + // We need a new variable in each loop iteration, + // otherwise the goroutine would use the loop variable + // and that keeps changing. + informer := informer + go func() { + defer f.wg.Done() + informer.Run(stopCh) + }() f.startedInformers[informerType] = true } } } -// WaitForCacheSync waits for all started informers' cache were synced. +func (f *sharedInformerFactory) Shutdown() { + f.lock.Lock() + f.shuttingDown = true + f.lock.Unlock() + + // Will return immediately if there is nothing to wait for. + f.wg.Wait() +} + func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool { informers := func() map[reflect.Type]cache.SharedIndexInformer { f.lock.Lock() @@ -142,7 +175,7 @@ func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[ref return res } -// InternalInformerFor returns the SharedIndexInformer for obj using an internal +// InformerFor returns the SharedIndexInformer for obj using an internal // client. func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer { f.lock.Lock() @@ -160,6 +193,7 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal } informer = newFunc(f.client, resyncPeriod) + informer.SetTransform(f.transform) f.informers[informerType] = informer return informer @@ -167,11 +201,58 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal // SharedInformerFactory provides shared informers for resources in all known // API group versions. +// +// It is typically used like this: +// +// ctx, cancel := context.Background() +// defer cancel() +// factory := NewSharedInformerFactory(client, resyncPeriod) +// defer factory.WaitForStop() // Returns immediately if nothing was started. +// genericInformer := factory.ForResource(resource) +// typedInformer := factory.SomeAPIGroup().V1().SomeType() +// factory.Start(ctx.Done()) // Start processing these informers. +// synced := factory.WaitForCacheSync(ctx.Done()) +// for v, ok := range synced { +// if !ok { +// fmt.Fprintf(os.Stderr, "caches failed to sync: %v", v) +// return +// } +// } +// +// // Creating informers can also be created after Start, but then +// // Start must be called again: +// anotherGenericInformer := factory.ForResource(resource) +// factory.Start(ctx.Done()) type SharedInformerFactory interface { internalinterfaces.SharedInformerFactory - ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // Start initializes all requested informers. They are handled in goroutines + // which run until the stop channel gets closed. + Start(stopCh <-chan struct{}) + + // Shutdown marks a factory as shutting down. At that point no new + // informers can be started anymore and Start will return without + // doing anything. + // + // In addition, Shutdown blocks until all goroutines have terminated. For that + // to happen, the close channel(s) that they were started with must be closed, + // either before Shutdown gets called or while it is waiting. + // + // Shutdown may be called multiple times, even concurrently. All such calls will + // block until all goroutines have terminated. + Shutdown() + + // WaitForCacheSync blocks until all started informers' caches were synced + // or the stop channel gets closed. WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool + // ForResource gives generic access to a shared informer of the matching type. + ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // InformerFor returns the SharedIndexInformer for obj using an internal + // client. + InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer + Argoproj() eventbus.Interface } diff --git a/pkg/client/eventsource/clientset/versioned/clientset.go b/pkg/client/eventsource/clientset/versioned/clientset.go index 6d498820e2..e07839d690 100644 --- a/pkg/client/eventsource/clientset/versioned/clientset.go +++ b/pkg/client/eventsource/clientset/versioned/clientset.go @@ -33,8 +33,7 @@ type Interface interface { ArgoprojV1alpha1() argoprojv1alpha1.ArgoprojV1alpha1Interface } -// Clientset contains the clients for groups. Each group has exactly one -// version included in a Clientset. +// Clientset contains the clients for groups. type Clientset struct { *discovery.DiscoveryClient argoprojV1alpha1 *argoprojv1alpha1.ArgoprojV1alpha1Client @@ -61,6 +60,10 @@ func (c *Clientset) Discovery() discovery.DiscoveryInterface { func NewForConfig(c *rest.Config) (*Clientset, error) { configShallowCopy := *c + if configShallowCopy.UserAgent == "" { + configShallowCopy.UserAgent = rest.DefaultKubernetesUserAgent() + } + // share the transport between all clients httpClient, err := rest.HTTPClientFor(&configShallowCopy) if err != nil { diff --git a/pkg/client/eventsource/clientset/versioned/doc.go b/pkg/client/eventsource/clientset/versioned/doc.go deleted file mode 100644 index 6e064c137a..0000000000 --- a/pkg/client/eventsource/clientset/versioned/doc.go +++ /dev/null @@ -1,20 +0,0 @@ -/* -Copyright 2021 BlackRock, Inc. - -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. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -// This package has the automatically generated clientset. -package versioned diff --git a/pkg/client/eventsource/clientset/versioned/typed/eventsource/v1alpha1/fake/fake_eventsource.go b/pkg/client/eventsource/clientset/versioned/typed/eventsource/v1alpha1/fake/fake_eventsource.go index 4ce6596225..a9bcc790af 100644 --- a/pkg/client/eventsource/clientset/versioned/typed/eventsource/v1alpha1/fake/fake_eventsource.go +++ b/pkg/client/eventsource/clientset/versioned/typed/eventsource/v1alpha1/fake/fake_eventsource.go @@ -24,7 +24,6 @@ import ( v1alpha1 "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" labels "k8s.io/apimachinery/pkg/labels" - schema "k8s.io/apimachinery/pkg/runtime/schema" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" testing "k8s.io/client-go/testing" @@ -36,9 +35,9 @@ type FakeEventSources struct { ns string } -var eventsourcesResource = schema.GroupVersionResource{Group: "argoproj.io", Version: "v1alpha1", Resource: "eventsources"} +var eventsourcesResource = v1alpha1.SchemeGroupVersion.WithResource("eventsources") -var eventsourcesKind = schema.GroupVersionKind{Group: "argoproj.io", Version: "v1alpha1", Kind: "EventSource"} +var eventsourcesKind = v1alpha1.SchemeGroupVersion.WithKind("EventSource") // Get takes name of the eventSource, and returns the corresponding eventSource object, and an error if there is any. func (c *FakeEventSources) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha1.EventSource, err error) { diff --git a/pkg/client/eventsource/informers/externalversions/factory.go b/pkg/client/eventsource/informers/externalversions/factory.go index 9a6da205de..e6739cd47e 100644 --- a/pkg/client/eventsource/informers/externalversions/factory.go +++ b/pkg/client/eventsource/informers/externalversions/factory.go @@ -42,11 +42,17 @@ type sharedInformerFactory struct { lock sync.Mutex defaultResync time.Duration customResync map[reflect.Type]time.Duration + transform cache.TransformFunc informers map[reflect.Type]cache.SharedIndexInformer // startedInformers is used for tracking which informers have been started. // This allows Start() to be called multiple times safely. startedInformers map[reflect.Type]bool + // wg tracks how many goroutines were started. + wg sync.WaitGroup + // shuttingDown is true when Shutdown has been called. It may still be running + // because it needs to wait for goroutines. + shuttingDown bool } // WithCustomResyncConfig sets a custom resync period for the specified informer types. @@ -75,6 +81,14 @@ func WithNamespace(namespace string) SharedInformerOption { } } +// WithTransform sets a transform on all informers. +func WithTransform(transform cache.TransformFunc) SharedInformerOption { + return func(factory *sharedInformerFactory) *sharedInformerFactory { + factory.transform = transform + return factory + } +} + // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces. func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory { return NewSharedInformerFactoryWithOptions(client, defaultResync) @@ -107,20 +121,39 @@ func NewSharedInformerFactoryWithOptions(client versioned.Interface, defaultResy return factory } -// Start initializes all requested informers. func (f *sharedInformerFactory) Start(stopCh <-chan struct{}) { f.lock.Lock() defer f.lock.Unlock() + if f.shuttingDown { + return + } + for informerType, informer := range f.informers { if !f.startedInformers[informerType] { - go informer.Run(stopCh) + f.wg.Add(1) + // We need a new variable in each loop iteration, + // otherwise the goroutine would use the loop variable + // and that keeps changing. + informer := informer + go func() { + defer f.wg.Done() + informer.Run(stopCh) + }() f.startedInformers[informerType] = true } } } -// WaitForCacheSync waits for all started informers' cache were synced. +func (f *sharedInformerFactory) Shutdown() { + f.lock.Lock() + f.shuttingDown = true + f.lock.Unlock() + + // Will return immediately if there is nothing to wait for. + f.wg.Wait() +} + func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool { informers := func() map[reflect.Type]cache.SharedIndexInformer { f.lock.Lock() @@ -142,7 +175,7 @@ func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[ref return res } -// InternalInformerFor returns the SharedIndexInformer for obj using an internal +// InformerFor returns the SharedIndexInformer for obj using an internal // client. func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer { f.lock.Lock() @@ -160,6 +193,7 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal } informer = newFunc(f.client, resyncPeriod) + informer.SetTransform(f.transform) f.informers[informerType] = informer return informer @@ -167,11 +201,58 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal // SharedInformerFactory provides shared informers for resources in all known // API group versions. +// +// It is typically used like this: +// +// ctx, cancel := context.Background() +// defer cancel() +// factory := NewSharedInformerFactory(client, resyncPeriod) +// defer factory.WaitForStop() // Returns immediately if nothing was started. +// genericInformer := factory.ForResource(resource) +// typedInformer := factory.SomeAPIGroup().V1().SomeType() +// factory.Start(ctx.Done()) // Start processing these informers. +// synced := factory.WaitForCacheSync(ctx.Done()) +// for v, ok := range synced { +// if !ok { +// fmt.Fprintf(os.Stderr, "caches failed to sync: %v", v) +// return +// } +// } +// +// // Creating informers can also be created after Start, but then +// // Start must be called again: +// anotherGenericInformer := factory.ForResource(resource) +// factory.Start(ctx.Done()) type SharedInformerFactory interface { internalinterfaces.SharedInformerFactory - ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // Start initializes all requested informers. They are handled in goroutines + // which run until the stop channel gets closed. + Start(stopCh <-chan struct{}) + + // Shutdown marks a factory as shutting down. At that point no new + // informers can be started anymore and Start will return without + // doing anything. + // + // In addition, Shutdown blocks until all goroutines have terminated. For that + // to happen, the close channel(s) that they were started with must be closed, + // either before Shutdown gets called or while it is waiting. + // + // Shutdown may be called multiple times, even concurrently. All such calls will + // block until all goroutines have terminated. + Shutdown() + + // WaitForCacheSync blocks until all started informers' caches were synced + // or the stop channel gets closed. WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool + // ForResource gives generic access to a shared informer of the matching type. + ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // InformerFor returns the SharedIndexInformer for obj using an internal + // client. + InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer + Argoproj() eventsource.Interface } diff --git a/pkg/client/sensor/clientset/versioned/clientset.go b/pkg/client/sensor/clientset/versioned/clientset.go index 309300de60..0b221e3793 100644 --- a/pkg/client/sensor/clientset/versioned/clientset.go +++ b/pkg/client/sensor/clientset/versioned/clientset.go @@ -33,8 +33,7 @@ type Interface interface { ArgoprojV1alpha1() argoprojv1alpha1.ArgoprojV1alpha1Interface } -// Clientset contains the clients for groups. Each group has exactly one -// version included in a Clientset. +// Clientset contains the clients for groups. type Clientset struct { *discovery.DiscoveryClient argoprojV1alpha1 *argoprojv1alpha1.ArgoprojV1alpha1Client @@ -61,6 +60,10 @@ func (c *Clientset) Discovery() discovery.DiscoveryInterface { func NewForConfig(c *rest.Config) (*Clientset, error) { configShallowCopy := *c + if configShallowCopy.UserAgent == "" { + configShallowCopy.UserAgent = rest.DefaultKubernetesUserAgent() + } + // share the transport between all clients httpClient, err := rest.HTTPClientFor(&configShallowCopy) if err != nil { diff --git a/pkg/client/sensor/clientset/versioned/doc.go b/pkg/client/sensor/clientset/versioned/doc.go deleted file mode 100644 index 6e064c137a..0000000000 --- a/pkg/client/sensor/clientset/versioned/doc.go +++ /dev/null @@ -1,20 +0,0 @@ -/* -Copyright 2021 BlackRock, Inc. - -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. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -// This package has the automatically generated clientset. -package versioned diff --git a/pkg/client/sensor/clientset/versioned/typed/sensor/v1alpha1/fake/fake_sensor.go b/pkg/client/sensor/clientset/versioned/typed/sensor/v1alpha1/fake/fake_sensor.go index 7ce335c920..c2c8f1a2b2 100644 --- a/pkg/client/sensor/clientset/versioned/typed/sensor/v1alpha1/fake/fake_sensor.go +++ b/pkg/client/sensor/clientset/versioned/typed/sensor/v1alpha1/fake/fake_sensor.go @@ -24,7 +24,6 @@ import ( v1alpha1 "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" labels "k8s.io/apimachinery/pkg/labels" - schema "k8s.io/apimachinery/pkg/runtime/schema" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" testing "k8s.io/client-go/testing" @@ -36,9 +35,9 @@ type FakeSensors struct { ns string } -var sensorsResource = schema.GroupVersionResource{Group: "argoproj.io", Version: "v1alpha1", Resource: "sensors"} +var sensorsResource = v1alpha1.SchemeGroupVersion.WithResource("sensors") -var sensorsKind = schema.GroupVersionKind{Group: "argoproj.io", Version: "v1alpha1", Kind: "Sensor"} +var sensorsKind = v1alpha1.SchemeGroupVersion.WithKind("Sensor") // Get takes name of the sensor, and returns the corresponding sensor object, and an error if there is any. func (c *FakeSensors) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha1.Sensor, err error) { diff --git a/pkg/client/sensor/informers/externalversions/factory.go b/pkg/client/sensor/informers/externalversions/factory.go index 43818199a8..d741074ee6 100644 --- a/pkg/client/sensor/informers/externalversions/factory.go +++ b/pkg/client/sensor/informers/externalversions/factory.go @@ -42,11 +42,17 @@ type sharedInformerFactory struct { lock sync.Mutex defaultResync time.Duration customResync map[reflect.Type]time.Duration + transform cache.TransformFunc informers map[reflect.Type]cache.SharedIndexInformer // startedInformers is used for tracking which informers have been started. // This allows Start() to be called multiple times safely. startedInformers map[reflect.Type]bool + // wg tracks how many goroutines were started. + wg sync.WaitGroup + // shuttingDown is true when Shutdown has been called. It may still be running + // because it needs to wait for goroutines. + shuttingDown bool } // WithCustomResyncConfig sets a custom resync period for the specified informer types. @@ -75,6 +81,14 @@ func WithNamespace(namespace string) SharedInformerOption { } } +// WithTransform sets a transform on all informers. +func WithTransform(transform cache.TransformFunc) SharedInformerOption { + return func(factory *sharedInformerFactory) *sharedInformerFactory { + factory.transform = transform + return factory + } +} + // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces. func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory { return NewSharedInformerFactoryWithOptions(client, defaultResync) @@ -107,20 +121,39 @@ func NewSharedInformerFactoryWithOptions(client versioned.Interface, defaultResy return factory } -// Start initializes all requested informers. func (f *sharedInformerFactory) Start(stopCh <-chan struct{}) { f.lock.Lock() defer f.lock.Unlock() + if f.shuttingDown { + return + } + for informerType, informer := range f.informers { if !f.startedInformers[informerType] { - go informer.Run(stopCh) + f.wg.Add(1) + // We need a new variable in each loop iteration, + // otherwise the goroutine would use the loop variable + // and that keeps changing. + informer := informer + go func() { + defer f.wg.Done() + informer.Run(stopCh) + }() f.startedInformers[informerType] = true } } } -// WaitForCacheSync waits for all started informers' cache were synced. +func (f *sharedInformerFactory) Shutdown() { + f.lock.Lock() + f.shuttingDown = true + f.lock.Unlock() + + // Will return immediately if there is nothing to wait for. + f.wg.Wait() +} + func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool { informers := func() map[reflect.Type]cache.SharedIndexInformer { f.lock.Lock() @@ -142,7 +175,7 @@ func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[ref return res } -// InternalInformerFor returns the SharedIndexInformer for obj using an internal +// InformerFor returns the SharedIndexInformer for obj using an internal // client. func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer { f.lock.Lock() @@ -160,6 +193,7 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal } informer = newFunc(f.client, resyncPeriod) + informer.SetTransform(f.transform) f.informers[informerType] = informer return informer @@ -167,11 +201,58 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal // SharedInformerFactory provides shared informers for resources in all known // API group versions. +// +// It is typically used like this: +// +// ctx, cancel := context.Background() +// defer cancel() +// factory := NewSharedInformerFactory(client, resyncPeriod) +// defer factory.WaitForStop() // Returns immediately if nothing was started. +// genericInformer := factory.ForResource(resource) +// typedInformer := factory.SomeAPIGroup().V1().SomeType() +// factory.Start(ctx.Done()) // Start processing these informers. +// synced := factory.WaitForCacheSync(ctx.Done()) +// for v, ok := range synced { +// if !ok { +// fmt.Fprintf(os.Stderr, "caches failed to sync: %v", v) +// return +// } +// } +// +// // Creating informers can also be created after Start, but then +// // Start must be called again: +// anotherGenericInformer := factory.ForResource(resource) +// factory.Start(ctx.Done()) type SharedInformerFactory interface { internalinterfaces.SharedInformerFactory - ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // Start initializes all requested informers. They are handled in goroutines + // which run until the stop channel gets closed. + Start(stopCh <-chan struct{}) + + // Shutdown marks a factory as shutting down. At that point no new + // informers can be started anymore and Start will return without + // doing anything. + // + // In addition, Shutdown blocks until all goroutines have terminated. For that + // to happen, the close channel(s) that they were started with must be closed, + // either before Shutdown gets called or while it is waiting. + // + // Shutdown may be called multiple times, even concurrently. All such calls will + // block until all goroutines have terminated. + Shutdown() + + // WaitForCacheSync blocks until all started informers' caches were synced + // or the stop channel gets closed. WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool + // ForResource gives generic access to a shared informer of the matching type. + ForResource(resource schema.GroupVersionResource) (GenericInformer, error) + + // InformerFor returns the SharedIndexInformer for obj using an internal + // client. + InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer + Argoproj() sensor.Interface } diff --git a/sensors/policy/resource-labels_test.go b/sensors/policy/resource-labels_test.go index ef6a5f1651..8860ff65ff 100644 --- a/sensors/policy/resource-labels_test.go +++ b/sensors/policy/resource-labels_test.go @@ -122,7 +122,7 @@ func TestResourceLabels_ApplyPolicy(t *testing.T) { }, testFunc: func(err error) { assert.NotNil(t, err) - assert.Equal(t, wait.ErrWaitTimeout.Error(), err.Error()) + assert.True(t, wait.Interrupted(err)) }, }, } diff --git a/sensors/triggers/argo-workflow/argo-workflow.go b/sensors/triggers/argo-workflow/argo-workflow.go index d36fe8e6e9..fddd833897 100644 --- a/sensors/triggers/argo-workflow/argo-workflow.go +++ b/sensors/triggers/argo-workflow/argo-workflow.go @@ -233,13 +233,12 @@ func (t *ArgoWorkflowTrigger) ApplyPolicy(ctx context.Context, resource interfac err := p.ApplyPolicy(ctx) if err != nil { - switch err { - case wait.ErrWaitTimeout: + if wait.Interrupted(err) { if trigger.Policy.K8s.ErrorOnBackoffTimeout { return fmt.Errorf("failed to determine status of the triggered resource. setting trigger state as failed") } return nil - default: + } else { return err } } diff --git a/sensors/triggers/standard-k8s/standard-k8s.go b/sensors/triggers/standard-k8s/standard-k8s.go index b8bed70d0e..3bb0f372ae 100644 --- a/sensors/triggers/standard-k8s/standard-k8s.go +++ b/sensors/triggers/standard-k8s/standard-k8s.go @@ -248,16 +248,14 @@ func (k8sTrigger *StandardK8sTrigger) ApplyPolicy(ctx context.Context, resource err := p.ApplyPolicy(ctx) if err != nil { - switch err { - case wait.ErrWaitTimeout: + if wait.Interrupted(err) { if trigger.Policy.K8s.ErrorOnBackoffTimeout { return fmt.Errorf("failed to determine status of the triggered resource. setting trigger state as failed") } return nil - default: + } else { return err } } - return nil } From 0c25bbad8f6cdbd25d1b431f93c43837bc363548 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 13:02:55 +0000 Subject: [PATCH 091/123] chore(deps): bump google.golang.org/api from 0.172.0 to 0.175.0 (#3109) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 12 ++++++------ go.sum | 22 ++++++++++++---------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/go.mod b/go.mod index 404d32b8aa..6f68eb3ee6 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ retract v1.15.1 // Contains retractions only. retract v1.15.0 // Published accidentally. require ( - cloud.google.com/go/compute/metadata v0.2.3 + cloud.google.com/go/compute/metadata v0.3.0 cloud.google.com/go/pubsub v1.37.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 @@ -82,7 +82,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f - google.golang.org/api v0.172.0 + google.golang.org/api v0.175.0 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.29.2 @@ -100,7 +100,8 @@ require ( require ( cloud.google.com/go v0.112.1 // indirect - cloud.google.com/go/compute v1.24.0 // indirect + cloud.google.com/go/auth v0.2.2 // indirect + cloud.google.com/go/auth/oauth2adapt v0.2.1 // indirect cloud.google.com/go/iam v1.1.6 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect @@ -302,7 +303,7 @@ require ( go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.17.0 // indirect golang.org/x/net v0.24.0 // indirect - golang.org/x/oauth2 v0.18.0 // indirect + golang.org/x/oauth2 v0.19.0 // indirect golang.org/x/sync v0.7.0 // indirect golang.org/x/sys v0.19.0 // indirect golang.org/x/term v0.19.0 // indirect @@ -312,10 +313,9 @@ require ( gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/appengine v1.6.8 // indirect google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect google.golang.org/protobuf v1.33.0 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect diff --git a/go.sum b/go.sum index 4b01e4bdc0..aea9793a69 100644 --- a/go.sum +++ b/go.sum @@ -100,6 +100,10 @@ cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVo cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= +cloud.google.com/go/auth v0.2.2 h1:gmxNJs4YZYcw6YvKRtVBaF2fyUE6UrWPyzU8jHvYfmI= +cloud.google.com/go/auth v0.2.2/go.mod h1:2bDNJWtWziDT3Pu1URxHHbkHE/BbOCuyUiKIGcNvafo= +cloud.google.com/go/auth/oauth2adapt v0.2.1 h1:VSPmMmUlT8CkIZ2PzD9AlLN+R3+D1clXMWHHa6vG/Ag= +cloud.google.com/go/auth/oauth2adapt v0.2.1/go.mod h1:tOdK/k+D2e4GEwfBRA48dKNQiDsqIXxLh7VU319eV0g= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= @@ -176,13 +180,12 @@ cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOV cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.24.0 h1:phWcR2eWzRJaL/kOiJwfFsPs4BaKq1j6vnpZrc1YlVg= -cloud.google.com/go/compute v1.24.0/go.mod h1:kw1/T+h/+tK2LJK0wiPPx1intgdAM3j/g3hFDlscY40= cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc= +cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= @@ -1989,8 +1992,9 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI= golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8= +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= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2325,8 +2329,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.172.0 h1:/1OcMZGPmW1rX2LCu2CmGUD1KXK1+pfzxotxyRUCCdk= -google.golang.org/api v0.172.0/go.mod h1:+fJZq6QXWfa9pXhnIzsjx4yI22d4aI9ZpLb58gvXjis= +google.golang.org/api v0.175.0 h1:9bMDh10V9cBuU8N45Wlc3cKkItfqMRV0Fi8UscLEtbY= +google.golang.org/api v0.175.0/go.mod h1:Rra+ltKu14pps/4xTycZfobMgLpbosoaaL7c+SEMrO8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2334,8 +2338,6 @@ google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= -google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -2484,8 +2486,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be h1:LG9vZxsWGOmUKieR8wPAUR3u3MpnYFQZROPIMaXh7/A= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From 3221639ce80b2d5af55d8a926aed3f2ab14fb857 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 13:03:09 +0000 Subject: [PATCH 092/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.102.0 to 0.103.0 (#3111) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 6f68eb3ee6..6b7aae4ed0 100644 --- a/go.mod +++ b/go.mod @@ -75,7 +75,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.102.0 + github.com/xanzy/go-gitlab v0.103.0 github.com/xdg-go/scram v1.1.2 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 diff --git a/go.sum b/go.sum index aea9793a69..ffe2f046f8 100644 --- a/go.sum +++ b/go.sum @@ -1701,8 +1701,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.102.0 h1:ExHuJ1OTQ2yt25zBMMj0G96ChBirGYv8U7HyUiYkZ+4= -github.com/xanzy/go-gitlab v0.102.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.103.0 h1:J9pTQoq0GsEFqzd6srCM1QfdfKAxSNz6mT6ntrpNF2w= +github.com/xanzy/go-gitlab v0.103.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 53af23be12ee98b21d1ce3b0e7b5f1d48354e67f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 13:07:22 +0000 Subject: [PATCH 093/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.77 to 0.9.78 (#3112) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 6b7aae4ed0..50c16ab6b5 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/imdario/mergo v0.3.15 github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.77 + github.com/ktrysmt/go-bitbucket v0.9.78 github.com/minio/minio-go/v7 v7.0.69 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index ffe2f046f8..813b4de239 100644 --- a/go.sum +++ b/go.sum @@ -1361,8 +1361,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.77 h1:D/xyUFLDaxI9USElXzjQr+s4hYR22vcsIl8+dQx/gEM= -github.com/ktrysmt/go-bitbucket v0.9.77/go.mod h1:7dN/AHXCCG9TW2KzXdJJy2J2uvcvZCLJR4uXYr1Gx/A= +github.com/ktrysmt/go-bitbucket v0.9.78 h1:H5YbwRrpj7kMmyTka/GvfhMOHRb18Z5YKgo9udOMu38= +github.com/ktrysmt/go-bitbucket v0.9.78/go.mod h1:7dN/AHXCCG9TW2KzXdJJy2J2uvcvZCLJR4uXYr1Gx/A= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= From aef7a07bfe7859c3876bc968069f0eef7a7ae805 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 12:15:56 +0000 Subject: [PATCH 094/123] chore(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 (#3116) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dependabot-reviewer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-reviewer.yml b/.github/workflows/dependabot-reviewer.yml index b5864ab2f0..5d325bcda6 100644 --- a/.github/workflows/dependabot-reviewer.yml +++ b/.github/workflows/dependabot-reviewer.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v2.0.0 + uses: dependabot/fetch-metadata@v2.1.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Approve PR From c411115d4eff01a4d380d2a71abf55c764d2a74a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 13:02:13 +0000 Subject: [PATCH 095/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.78 to 0.9.79 (#3118) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 50c16ab6b5..337d4f426f 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/imdario/mergo v0.3.15 github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.78 + github.com/ktrysmt/go-bitbucket v0.9.79 github.com/minio/minio-go/v7 v7.0.69 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index 813b4de239..755eb9b6b9 100644 --- a/go.sum +++ b/go.sum @@ -1361,8 +1361,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.78 h1:H5YbwRrpj7kMmyTka/GvfhMOHRb18Z5YKgo9udOMu38= -github.com/ktrysmt/go-bitbucket v0.9.78/go.mod h1:7dN/AHXCCG9TW2KzXdJJy2J2uvcvZCLJR4uXYr1Gx/A= +github.com/ktrysmt/go-bitbucket v0.9.79 h1:hCaqgoTUuvxle5JzwakfNeRurL1Md5EfTQtU63QvKd4= +github.com/ktrysmt/go-bitbucket v0.9.79/go.mod h1:NfPQIai0Wzann6IJacKH8yNZC2CqdZo3swZDJ8qDKxg= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= @@ -1992,7 +1992,6 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8= 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= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2549,7 +2548,6 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= From e9edc97e62b74d94a0a77281c00b844ef2467418 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 13:02:26 +0000 Subject: [PATCH 096/123] chore(deps): bump google.golang.org/api from 0.175.0 to 0.176.1 (#3119) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 337d4f426f..fea2419858 100644 --- a/go.mod +++ b/go.mod @@ -82,7 +82,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f - google.golang.org/api v0.175.0 + google.golang.org/api v0.176.1 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.29.2 @@ -100,8 +100,8 @@ require ( require ( cloud.google.com/go v0.112.1 // indirect - cloud.google.com/go/auth v0.2.2 // indirect - cloud.google.com/go/auth/oauth2adapt v0.2.1 // indirect + cloud.google.com/go/auth v0.3.0 // indirect + cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/iam v1.1.6 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect diff --git a/go.sum b/go.sum index 755eb9b6b9..10c53fdef4 100644 --- a/go.sum +++ b/go.sum @@ -100,10 +100,10 @@ cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVo cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/auth v0.2.2 h1:gmxNJs4YZYcw6YvKRtVBaF2fyUE6UrWPyzU8jHvYfmI= -cloud.google.com/go/auth v0.2.2/go.mod h1:2bDNJWtWziDT3Pu1URxHHbkHE/BbOCuyUiKIGcNvafo= -cloud.google.com/go/auth/oauth2adapt v0.2.1 h1:VSPmMmUlT8CkIZ2PzD9AlLN+R3+D1clXMWHHa6vG/Ag= -cloud.google.com/go/auth/oauth2adapt v0.2.1/go.mod h1:tOdK/k+D2e4GEwfBRA48dKNQiDsqIXxLh7VU319eV0g= +cloud.google.com/go/auth v0.3.0 h1:PRyzEpGfx/Z9e8+lHsbkoUVXD0gnu4MNmm7Gp8TQNIs= +cloud.google.com/go/auth v0.3.0/go.mod h1:lBv6NKTWp8E3LPzmO1TbiiRKc4drLOfHsgmlH9ogv5w= +cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= +cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= @@ -2328,8 +2328,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.175.0 h1:9bMDh10V9cBuU8N45Wlc3cKkItfqMRV0Fi8UscLEtbY= -google.golang.org/api v0.175.0/go.mod h1:Rra+ltKu14pps/4xTycZfobMgLpbosoaaL7c+SEMrO8= +google.golang.org/api v0.176.1 h1:DJSXnV6An+NhJ1J+GWtoF2nHEuqB1VNoTfnIbjNvwD4= +google.golang.org/api v0.176.1/go.mod h1:j2MaSDYcvYV1lkZ1+SMW4IeF90SrEyFA+tluDYWRrFg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= From a49dae9ba7b688a691cd1c1b0dbfcc44c65413fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 13:09:01 +0000 Subject: [PATCH 097/123] chore(deps): bump github.com/minio/minio-go/v7 from 7.0.69 to 7.0.70 (#3120) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index fea2419858..60bbf5ed63 100644 --- a/go.mod +++ b/go.mod @@ -54,7 +54,7 @@ require ( github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.79 - github.com/minio/minio-go/v7 v7.0.69 + github.com/minio/minio-go/v7 v7.0.70 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f @@ -173,6 +173,7 @@ require ( github.com/go-openapi/validate v0.22.0 // indirect github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/gobuffalo/flect v0.2.3 // indirect + github.com/goccy/go-json v0.10.2 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect @@ -229,7 +230,6 @@ require ( github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/minio/md5-simd v1.1.2 // indirect - github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/go-wordwrap v1.0.1 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect diff --git a/go.sum b/go.sum index 10c53fdef4..7962bd12ee 100644 --- a/go.sum +++ b/go.sum @@ -1037,6 +1037,8 @@ github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY9 github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe h1:zn8tqiUbec4wR94o7Qj3LZCAT6uGobhEgnDRg6isG5U= github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= @@ -1414,11 +1416,9 @@ github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77Z github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go/v7 v7.0.29/go.mod h1:x81+AX5gHSfCSqw7jxRKHvxUXMlE5uKX0Vb75Xk5yYg= -github.com/minio/minio-go/v7 v7.0.69 h1:l8AnsQFyY1xiwa/DaQskY4NXSLA2yrGsW5iD9nRPVS0= -github.com/minio/minio-go/v7 v7.0.69/go.mod h1:XAvOPJQ5Xlzk5o3o/ArO2NMbhSGkimC+bpW/ngRKDmQ= +github.com/minio/minio-go/v7 v7.0.70 h1:1u9NtMgfK1U42kUxcsl5v0yj6TEOPR497OAQxpJnn2g= +github.com/minio/minio-go/v7 v7.0.70/go.mod h1:4yBA8v80xGA30cfM3fz0DKYMXunWl/AV/6tWEs9ryzo= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= -github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= -github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= From 8ace21bcc8af4e7e8561498e38b8fe9916aaa403 Mon Sep 17 00:00:00 2001 From: Zhongmin Date: Sat, 4 May 2024 01:42:04 +0800 Subject: [PATCH 098/123] fix spelling error (#3114) Signed-off-by: czm --- examples/event-sources/mqtt.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/event-sources/mqtt.yaml b/examples/event-sources/mqtt.yaml index 4aed863e43..c806e981bf 100644 --- a/examples/event-sources/mqtt.yaml +++ b/examples/event-sources/mqtt.yaml @@ -7,7 +7,7 @@ spec: example: # mqtt broker url url: tcp://mqtt.argo-events:1883 - # name of the popic + # name of the topic topic: bar # jsonBody specifies that all event body payload coming from this # source will be JSON From 387bed61b936ad17c7a3faeb5bdf03ede60f92bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 12:32:12 +0000 Subject: [PATCH 099/123] chore(deps): bump google.golang.org/api from 0.176.1 to 0.177.0 (#3122) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 10 +++++----- go.sum | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/go.mod b/go.mod index 60bbf5ed63..c4dcc14adf 100644 --- a/go.mod +++ b/go.mod @@ -82,7 +82,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f - google.golang.org/api v0.176.1 + google.golang.org/api v0.177.0 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.29.2 @@ -99,7 +99,7 @@ require ( ) require ( - cloud.google.com/go v0.112.1 // indirect + cloud.google.com/go v0.112.2 // indirect cloud.google.com/go/auth v0.3.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/iam v1.1.6 // indirect @@ -314,9 +314,9 @@ require ( gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect - google.golang.org/protobuf v1.33.0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect + google.golang.org/protobuf v1.34.0 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect gopkg.in/inf.v0 v0.9.1 // indirect diff --git a/go.sum b/go.sum index 7962bd12ee..a0ffce9f69 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,8 @@ cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFO cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.112.1 h1:uJSeirPke5UNZHIb4SxfZklVSiWWVqW4oXlETwZziwM= -cloud.google.com/go v0.112.1/go.mod h1:+Vbu+Y1UU+I1rjmzeMOb/8RfkKJK2Gyxi1X6jJCZLo4= +cloud.google.com/go v0.112.2 h1:ZaGT6LiG7dBzi6zNOvVZwacaXlmf3lRqnC4DQzqyRQw= +cloud.google.com/go v0.112.2/go.mod h1:iEqjp//KquGIJV/m+Pk3xecgKNhV+ry+vVTsy4TbDms= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= @@ -2328,8 +2328,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.176.1 h1:DJSXnV6An+NhJ1J+GWtoF2nHEuqB1VNoTfnIbjNvwD4= -google.golang.org/api v0.176.1/go.mod h1:j2MaSDYcvYV1lkZ1+SMW4IeF90SrEyFA+tluDYWRrFg= +google.golang.org/api v0.177.0 h1:8a0p/BbPa65GlqGWtUKxot4p0TV8OGOfyTjtmkXNXmk= +google.golang.org/api v0.177.0/go.mod h1:srbhue4MLjkjbkux5p3dw/ocYOSZTaIEvf7bCOnFQDw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2478,15 +2478,15 @@ google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go. google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 h1:rIo7ocm2roD9DcFIX67Ym8icoGCKSARAiPljFhh5suQ= -google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2/go.mod h1:O1cOfN1Cy6QEYr7VxtjOyP5AdAuR0aJ/MYZaaof623Y= +google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c h1:kaI7oewGK5YnVwj+Y+EJBO/YN1ht8iTL9XkFHtVZLsc= +google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c/go.mod h1:VQW3tUculP/D4B+xVCo+VgSq8As6wA9ZjHl//pmk+6s= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be h1:LG9vZxsWGOmUKieR8wPAUR3u3MpnYFQZROPIMaXh7/A= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 h1:DujSIu+2tC9Ht0aPNA7jgj23Iq8Ewi5sgkQ++wdvonE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -2548,8 +2548,8 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4= +google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= From 6a3030393d4c8ed431ec097360beccd3a1d6925b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:03:09 +0000 Subject: [PATCH 100/123] chore(deps): bump github.com/xanzy/go-gitlab from 0.103.0 to 0.105.0 (#3123) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index c4dcc14adf..f49e4e49f6 100644 --- a/go.mod +++ b/go.mod @@ -75,7 +75,7 @@ require ( github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.4 - github.com/xanzy/go-gitlab v0.103.0 + github.com/xanzy/go-gitlab v0.105.0 github.com/xdg-go/scram v1.1.2 github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 diff --git a/go.sum b/go.sum index a0ffce9f69..7d3e065ceb 100644 --- a/go.sum +++ b/go.sum @@ -1701,8 +1701,8 @@ github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50w github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 h1:qqllXPzXh+So+mmANlX/gCJrgo+1kQyshMoQ+NASzm0= github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0/go.mod h1:2rx5KE5FLD0HRfkkpyn8JwbVLBdhgeiOb2D2D9LLKM4= -github.com/xanzy/go-gitlab v0.103.0 h1:J9pTQoq0GsEFqzd6srCM1QfdfKAxSNz6mT6ntrpNF2w= -github.com/xanzy/go-gitlab v0.103.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.105.0 h1:3nyLq0ESez0crcaM19o5S//SvezOQguuIHZ3wgX64hM= +github.com/xanzy/go-gitlab v0.105.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= From 762da53c0c80bac5b66d7b8a06fc3d09a062c957 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:03:24 +0000 Subject: [PATCH 101/123] chore(deps): bump github.com/rabbitmq/amqp091-go from 1.8.1 to 1.10.0 (#3125) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index f49e4e49f6..22dff95ce0 100644 --- a/go.mod +++ b/go.mod @@ -63,7 +63,7 @@ require ( github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 github.com/prometheus/client_golang v1.19.0 - github.com/rabbitmq/amqp091-go v1.8.1 + github.com/rabbitmq/amqp091-go v1.10.0 github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 github.com/robfig/cron/v3 v3.0.1 diff --git a/go.sum b/go.sum index 7d3e065ceb..01411f4de0 100644 --- a/go.sum +++ b/go.sum @@ -1568,8 +1568,8 @@ github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= -github.com/rabbitmq/amqp091-go v1.8.1 h1:RejT1SBUim5doqcL6s7iN6SBmsQqyTgXb1xMlH0h1hA= -github.com/rabbitmq/amqp091-go v1.8.1/go.mod h1:+jPrT9iY2eLjRaMSRHUhc3z14E/l85kv/f+6luSD3pc= +github.com/rabbitmq/amqp091-go v1.10.0 h1:STpn5XsHlHGcecLmMFCtg7mqq0RnD+zFr4uzukfVhBw= +github.com/rabbitmq/amqp091-go v1.10.0/go.mod h1:Hy4jKW5kQART1u+JkDTF9YYOQUHXqMuhrgxOEeS7G4o= github.com/radovskyb/watcher v1.0.7 h1:AYePLih6dpmS32vlHfhCeli8127LzkIgwJGcwwe8tUE= github.com/radovskyb/watcher v1.0.7/go.mod h1:78okwvY5wPdzcb1UYnip1pvrZNIVEIh/Cm+ZuvsUYIg= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= @@ -1778,7 +1778,6 @@ go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= -go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= From 9dd42d47966f4b515956d58a8337e7146b3f9fd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:03:32 +0000 Subject: [PATCH 102/123] chore(deps): bump cloud.google.com/go/pubsub from 1.37.0 to 1.38.0 (#3124) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 28 ++++++++++++++-------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/go.mod b/go.mod index 22dff95ce0..9cceea0644 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ retract v1.15.0 // Published accidentally. require ( cloud.google.com/go/compute/metadata v0.3.0 - cloud.google.com/go/pubsub v1.37.0 + cloud.google.com/go/pubsub v1.38.0 github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2 @@ -102,7 +102,7 @@ require ( cloud.google.com/go v0.112.2 // indirect cloud.google.com/go/auth v0.3.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect - cloud.google.com/go/iam v1.1.6 // indirect + cloud.google.com/go/iam v1.1.7 // indirect dario.cat/mergo v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect @@ -313,8 +313,8 @@ require ( gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect + google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect google.golang.org/protobuf v1.34.0 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect diff --git a/go.sum b/go.sum index 01411f4de0..7f6a8eee49 100644 --- a/go.sum +++ b/go.sum @@ -319,8 +319,8 @@ cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGE cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.1.6 h1:bEa06k05IO4f4uJonbB5iAgKTPpABy1ayxaIZV/GHVc= -cloud.google.com/go/iam v1.1.6/go.mod h1:O0zxdPeGBoFdWW3HWmBxJsk0pfvNM/p/qa82rWOGTwI= +cloud.google.com/go/iam v1.1.7 h1:z4VHOhwKLF/+UYXAJDFwGtNF0b6gjsW1Pk9Ml0U/IoM= +cloud.google.com/go/iam v1.1.7/go.mod h1:J4PMPg8TtyurAUvSmPj8FF3EDgY1SPRZxcUGrn7WXGA= cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= @@ -340,8 +340,8 @@ cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4 cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.15.7 h1:7caV9K3yIxvlQPAcaFffhlT7d1qpxjB1wHBtjWa13SM= -cloud.google.com/go/kms v1.15.7/go.mod h1:ub54lbsa6tDkUwnu4W7Yt1aAIFLnspgh0kPGToDukeI= +cloud.google.com/go/kms v1.15.8 h1:szIeDCowID8th2i8XE4uRev5PMxQFqW+JjwYxL9h6xs= +cloud.google.com/go/kms v1.15.8/go.mod h1:WoUHcDjD9pluCg7pNds131awnH429QGvRM3N/4MyoVs= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= @@ -435,8 +435,8 @@ cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcd cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.37.0 h1:0uEEfaB1VIJzabPpwpZf44zWAKAme3zwKKxHk7vJQxQ= -cloud.google.com/go/pubsub v1.37.0/go.mod h1:YQOQr1uiUM092EXwKs56OPT650nwnawc+8/IjoUeGzQ= +cloud.google.com/go/pubsub v1.38.0 h1:J1OT7h51ifATIedjqk/uBNPh+1hkvUaH4VKbz4UuAsc= +cloud.google.com/go/pubsub v1.38.0/go.mod h1:IPMJSWSus/cu57UyR01Jqa/bNOQA+XnPF6Z4dKW4fAA= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= @@ -1742,8 +1742,8 @@ github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.einride.tech/aip v0.66.0 h1:XfV+NQX6L7EOYK11yoHHFtndeaWh3KbD9/cN/6iWEt8= -go.einride.tech/aip v0.66.0/go.mod h1:qAhMsfT7plxBX+Oy7Huol6YUvZ0ZzdUz26yZsQwfl1M= +go.einride.tech/aip v0.67.1 h1:d/4TW92OxXBngkSOwWS2CH5rez869KpKMaN44mdxkFI= +go.einride.tech/aip v0.67.1/go.mod h1:ZGX4/zKw8dcgzdLsrvpOOGxfxI2QSk12SlP7d6c0/XI= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= go.etcd.io/bbolt v1.3.8 h1:xs88BrvEv273UsB79e0hcVrlUWmS0a8upikMFhSyAtA= go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= @@ -1769,8 +1769,8 @@ go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= -go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= -go.opentelemetry.io/otel/sdk v1.22.0/go.mod h1:iu7luyVGYovrRpe2fmj3CVKouQNdTOkxtLzPvPz1DOc= +go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucgoDw= +go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= @@ -2471,14 +2471,14 @@ google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOl google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de h1:F6qOa9AZTYJXOUEr4jDysRDLrm4PHePlge4v4TGAlxY= -google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de/go.mod h1:VUhTRKeHn9wwcdrk73nvdC9gF178Tzhmt/qyaFcPLSo= +google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda h1:wu/KJm9KJwpfHWhkkZGohVC6KRrc1oJNr4jwtQMOQXw= +google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda/go.mod h1:g2LLCvCeCSir/JJSWosk19BR4NVxGqHUC6rxIRsd7Aw= google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c h1:kaI7oewGK5YnVwj+Y+EJBO/YN1ht8iTL9XkFHtVZLsc= -google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c/go.mod h1:VQW3tUculP/D4B+xVCo+VgSq8As6wA9ZjHl//pmk+6s= +google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 h1:DTJM0R8LECCgFeUwApvcEJHz85HLagW8uRENYxHh1ww= +google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6/go.mod h1:10yRODfgim2/T8csjQsMPgZOMvtytXKTDRzH6HRGzRw= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= From c62f49ef89ce2c52947fcc0a35212fe608cabfab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:06:29 +0000 Subject: [PATCH 103/123] chore(deps): bump github.com/go-resty/resty/v2 from 2.12.0 to 2.13.1 (#3126) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 12 ++++++------ go.sum | 23 ++++++++++++----------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/go.mod b/go.mod index 9cceea0644..5797e40bce 100644 --- a/go.mod +++ b/go.mod @@ -39,7 +39,7 @@ require ( github.com/go-git/go-git/v5 v5.12.0 github.com/go-openapi/inflect v0.21.0 github.com/go-redis/redis/v8 v8.11.5 - github.com/go-resty/resty/v2 v2.12.0 + github.com/go-resty/resty/v2 v2.13.1 github.com/go-swagger/go-swagger v0.30.4 github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe github.com/gogo/protobuf v1.3.2 @@ -80,7 +80,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 - golang.org/x/crypto v0.22.0 + golang.org/x/crypto v0.23.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f google.golang.org/api v0.177.0 google.golang.org/grpc v1.63.2 @@ -302,12 +302,12 @@ require ( go.uber.org/atomic v1.10.0 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.17.0 // indirect - golang.org/x/net v0.24.0 // indirect + golang.org/x/net v0.25.0 // indirect golang.org/x/oauth2 v0.19.0 // indirect golang.org/x/sync v0.7.0 // indirect - golang.org/x/sys v0.19.0 // indirect - golang.org/x/term v0.19.0 // indirect - golang.org/x/text v0.14.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/time v0.5.0 // indirect golang.org/x/tools v0.20.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect diff --git a/go.sum b/go.sum index 7f6a8eee49..95846d331c 100644 --- a/go.sum +++ b/go.sum @@ -993,8 +993,8 @@ github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhO github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= -github.com/go-resty/resty/v2 v2.12.0 h1:rsVL8P90LFvkUYq/V5BTVe203WfRIU4gvcf+yfzJzGA= -github.com/go-resty/resty/v2 v2.12.0/go.mod h1:o0yGPrkS3lOe1+eFajk6kBW8ScXzwU3hD69/gt2yB/0= +github.com/go-resty/resty/v2 v2.13.1 h1:x+LHXBI2nMB1vqndymf26quycC4aggYJ7DECYbiz03g= +github.com/go-resty/resty/v2 v2.13.1/go.mod h1:GznXlLxkq6Nh4sU59rPmUw3VtgpO3aS96ORAI6Q7d+0= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= @@ -1821,9 +1821,9 @@ golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58 golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= -golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= +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/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1958,9 +1958,9 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= -golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= -golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= +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/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2122,9 +2122,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +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/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= 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= @@ -2137,9 +2137,9 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= -golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= +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/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2157,8 +2157,9 @@ golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +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/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= From 239229cd825865682a5741c680af0fdf6d4296b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:13:05 +0000 Subject: [PATCH 104/123] chore(deps): bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 (#3128) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 5797e40bce..f4a397d958 100644 --- a/go.mod +++ b/go.mod @@ -62,7 +62,7 @@ require ( github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 - github.com/prometheus/client_golang v1.19.0 + github.com/prometheus/client_golang v1.19.1 github.com/rabbitmq/amqp091-go v1.10.0 github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 diff --git a/go.sum b/go.sum index 95846d331c..52c168e284 100644 --- a/go.sum +++ b/go.sum @@ -1553,8 +1553,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= -github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= -github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= +github.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQeLaYJFJBOE= +github.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= From 48746c0f6e4390dc6b5a849efec8f686f9113482 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 13:14:51 +0000 Subject: [PATCH 105/123] chore(deps): bump google.golang.org/api from 0.177.0 to 0.180.0 (#3129) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 10 +++++----- go.sum | 19 ++++++++++--------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/go.mod b/go.mod index f4a397d958..4cdbf94c4f 100644 --- a/go.mod +++ b/go.mod @@ -82,7 +82,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.23.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f - google.golang.org/api v0.177.0 + google.golang.org/api v0.180.0 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.29.2 @@ -100,7 +100,7 @@ require ( require ( cloud.google.com/go v0.112.2 // indirect - cloud.google.com/go/auth v0.3.0 // indirect + cloud.google.com/go/auth v0.4.1 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/iam v1.1.7 // indirect dario.cat/mergo v1.0.0 // indirect @@ -188,7 +188,7 @@ require ( github.com/google/gofuzz v1.2.0 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/googleapis/gax-go/v2 v2.12.3 // indirect + github.com/googleapis/gax-go/v2 v2.12.4 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -303,7 +303,7 @@ require ( go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.17.0 // indirect golang.org/x/net v0.25.0 // indirect - golang.org/x/oauth2 v0.19.0 // indirect + golang.org/x/oauth2 v0.20.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 @@ -316,7 +316,7 @@ require ( google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect - google.golang.org/protobuf v1.34.0 // indirect + google.golang.org/protobuf v1.34.1 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect gopkg.in/inf.v0 v0.9.1 // indirect diff --git a/go.sum b/go.sum index 52c168e284..c8c8a8286d 100644 --- a/go.sum +++ b/go.sum @@ -100,8 +100,8 @@ cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVo cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/auth v0.3.0 h1:PRyzEpGfx/Z9e8+lHsbkoUVXD0gnu4MNmm7Gp8TQNIs= -cloud.google.com/go/auth v0.3.0/go.mod h1:lBv6NKTWp8E3LPzmO1TbiiRKc4drLOfHsgmlH9ogv5w= +cloud.google.com/go/auth v0.4.1 h1:Z7YNIhlWRtrnKlZke7z3GMqzvuYzdc2z98F9D1NV5Hg= +cloud.google.com/go/auth v0.4.1/go.mod h1:QVBuVEKpCn4Zp58hzRGvL0tjRGU0YqdRTdCHM1IHnro= cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= @@ -1189,8 +1189,8 @@ github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38 github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.3 h1:5/zPPDvw8Q1SuXjrqrZslrqT7dL/uJT2CQii/cLCKqA= -github.com/googleapis/gax-go/v2 v2.12.3/go.mod h1:AKloxT6GtNbaLm8QTNSidHUVsHYcBHwWRvkNFJUQcS4= +github.com/googleapis/gax-go/v2 v2.12.4 h1:9gWcmF85Wvq4ryPFvGFaOgPIs1AQX0d0bcbGw4Z96qg= +github.com/googleapis/gax-go/v2 v2.12.4/go.mod h1:KYEYLorsnIGDi/rPC8b5TdlB9kbKoFubselGIoBMCwI= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= @@ -1991,8 +1991,9 @@ golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -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= +golang.org/x/oauth2 v0.20.0 h1:4mQdhULixXKP1rwYBW0vAijoXnkTG0BLCDRzfe1idMo= +golang.org/x/oauth2 v0.20.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2328,8 +2329,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.177.0 h1:8a0p/BbPa65GlqGWtUKxot4p0TV8OGOfyTjtmkXNXmk= -google.golang.org/api v0.177.0/go.mod h1:srbhue4MLjkjbkux5p3dw/ocYOSZTaIEvf7bCOnFQDw= +google.golang.org/api v0.180.0 h1:M2D87Yo0rGBPWpo1orwfCLehUUL6E7/TYe5gvMQWDh4= +google.golang.org/api v0.180.0/go.mod h1:51AiyoEg1MJPSZ9zvklA8VnRILPXxn1iVen9v25XHAE= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2548,8 +2549,8 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4= -google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= +google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= From 46c36ea719d0a91ee86f278645a30374cfbb99f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:54:59 +0000 Subject: [PATCH 106/123] chore(deps): bump github.com/go-swagger/go-swagger from 0.30.4 to 0.31.0 (#3138) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 42 +++++++------- go.sum | 169 ++++++++++++++------------------------------------------- 2 files changed, 63 insertions(+), 148 deletions(-) diff --git a/go.mod b/go.mod index 4cdbf94c4f..47d1da47fa 100644 --- a/go.mod +++ b/go.mod @@ -40,7 +40,7 @@ require ( github.com/go-openapi/inflect v0.21.0 github.com/go-redis/redis/v8 v8.11.5 github.com/go-resty/resty/v2 v2.13.1 - github.com/go-swagger/go-swagger v0.30.4 + github.com/go-swagger/go-swagger v0.31.0 github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe github.com/gogo/protobuf v1.3.2 github.com/golang/protobuf v1.5.4 @@ -50,7 +50,7 @@ require ( github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/hamba/avro v1.8.0 - github.com/imdario/mergo v0.3.15 + github.com/imdario/mergo v0.3.16 github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.79 @@ -123,7 +123,7 @@ require ( github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/DataDog/zstd v1.5.0 // indirect github.com/Masterminds/goutils v1.1.1 // indirect - github.com/Masterminds/semver/v3 v3.2.0 // indirect + github.com/Masterminds/semver/v3 v3.2.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/ProtonMail/go-crypto v1.0.0 // indirect @@ -132,7 +132,7 @@ require ( github.com/ajg/form v1.5.1 // indirect github.com/andybalholm/brotli v1.0.4 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect - github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect + github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71 // indirect github.com/benbjohnson/clock v1.3.0 // indirect github.com/beorn7/perks v1.0.1 // indirect @@ -161,16 +161,16 @@ require ( github.com/go-git/go-billy/v5 v5.5.0 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/analysis v0.21.4 // indirect - github.com/go-openapi/errors v0.20.3 // indirect - github.com/go-openapi/jsonpointer v0.19.6 // indirect - github.com/go-openapi/jsonreference v0.20.2 // indirect - github.com/go-openapi/loads v0.21.2 // indirect - github.com/go-openapi/runtime v0.25.0 // indirect - github.com/go-openapi/spec v0.20.8 // indirect - github.com/go-openapi/strfmt v0.21.3 // indirect - github.com/go-openapi/swag v0.22.3 // indirect - github.com/go-openapi/validate v0.22.0 // indirect + github.com/go-openapi/analysis v0.23.0 // indirect + github.com/go-openapi/errors v0.22.0 // indirect + github.com/go-openapi/jsonpointer v0.21.0 // indirect + github.com/go-openapi/jsonreference v0.21.0 // indirect + github.com/go-openapi/loads v0.22.0 // indirect + github.com/go-openapi/runtime v0.28.0 // indirect + github.com/go-openapi/spec v0.21.0 // indirect + github.com/go-openapi/strfmt v0.23.0 // indirect + github.com/go-openapi/swag v0.23.0 // indirect + github.com/go-openapi/validate v0.24.0 // indirect github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/gobuffalo/flect v0.2.3 // indirect github.com/goccy/go-json v0.10.2 // indirect @@ -190,7 +190,7 @@ require ( github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/googleapis/gax-go/v2 v2.12.4 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect - github.com/gorilla/handlers v1.5.1 // indirect + github.com/gorilla/handlers v1.5.2 // indirect github.com/gorilla/websocket v1.5.0 // indirect github.com/gregdel/pushover v1.1.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect @@ -201,7 +201,7 @@ require ( github.com/hashicorp/go-uuid v1.0.3 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f // indirect - github.com/huandu/xstrings v1.3.3 // indirect + github.com/huandu/xstrings v1.4.0 // indirect github.com/imkira/go-interpol v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/itchyny/timefmt-go v0.1.5 // indirect @@ -248,7 +248,7 @@ require ( github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.1.0 // indirect + github.com/pelletier/go-toml/v2 v2.1.1 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect @@ -259,7 +259,7 @@ require ( github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect - github.com/rogpeppe/go-internal v1.11.0 // indirect + github.com/rogpeppe/go-internal v1.12.0 // indirect github.com/rs/xid v1.5.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/sagikazarmark/locafero v0.4.0 // indirect @@ -267,7 +267,7 @@ require ( github.com/sanity-io/litter v1.5.5 // indirect github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect - github.com/shopspring/decimal v1.2.0 // indirect + github.com/shopspring/decimal v1.3.1 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/skeema/knownhosts v1.2.2 // indirect github.com/smartystreets/assertions v1.2.0 // indirect @@ -292,7 +292,7 @@ require ( github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect github.com/yudai/gojsondiff v1.0.0 // indirect github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect - go.mongodb.org/mongo-driver v1.11.1 // indirect + go.mongodb.org/mongo-driver v1.14.0 // indirect go.opencensus.io v0.24.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect @@ -309,7 +309,7 @@ require ( golang.org/x/term v0.20.0 // indirect golang.org/x/text v0.15.0 // indirect golang.org/x/time v0.5.0 // indirect - golang.org/x/tools v0.20.0 // indirect + golang.org/x/tools v0.21.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect diff --git a/go.sum b/go.sum index c8c8a8286d..8d1452bbe0 100644 --- a/go.sum +++ b/go.sum @@ -686,8 +686,9 @@ github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible h1 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= -github.com/Masterminds/semver/v3 v3.2.0 h1:3MEsd0SM6jqZojhjLWWeBY+Kcjy9i6MQAeY7YgDP83g= github.com/Masterminds/semver/v3 v3.2.0/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= +github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= +github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= github.com/Masterminds/sprig/v3 v3.2.3 h1:eL2fZNezLomi0uOLqjQoN6BfsDD+fyLtgbJMAj9n6YA= github.com/Masterminds/sprig/v3 v3.2.3/go.mod h1:rXcFaZ2zZbLRJv/xSysmlgIM1u11eBaRMhvYXJNkGuM= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= @@ -700,9 +701,7 @@ github.com/PagerDuty/go-pagerduty v1.6.0/go.mod h1:7eaBLzsDpK7VUvU0SJ5mohczQkoWr github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 h1:prBTRx78AQnXzivNT9Crhu564W/zPPr3ibSlpT9xKcE= github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60/go.mod h1:rjP7sIipbZcagro/6TCk6X0ZeFT2eyudH5+fve/cbBA= github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 h1:ZBbLwSJqkHBuFDA6DUhhse0IGJ7T5bemHyNILUjvOq4= @@ -746,9 +745,8 @@ github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= -github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d h1:Byv0BzEl3/e6D5CLfI0j/7hiIEtvGVFPCZ7Ei2oq8iQ= -github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71 h1:m3N1Fv5vE5IcxuTOGFGGV0grrVFHV8UY2SV0wSBXAC8= github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71/go.mod h1:/ynarkO/43wP/JM2Okn61e8WFMtdbtA8he7GJxW+SFM= github.com/aws/aws-sdk-go v1.32.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= @@ -893,7 +891,6 @@ github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo= github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= -github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= @@ -947,48 +944,32 @@ github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-logr/zapr v1.3.0 h1:XGdV8XW8zdwFiwOA2Dryh1gj2KRQyOOoNmBy4EplIcQ= github.com/go-logr/zapr v1.3.0/go.mod h1:YKepepNBd1u/oyhd/yQmtjVXmm9uML4IXUgMOwR8/Gg= -github.com/go-openapi/analysis v0.21.2/go.mod h1:HZwRk4RRisyG8vx2Oe6aqeSQcoxRp47Xkp3+K6q+LdY= -github.com/go-openapi/analysis v0.21.4 h1:ZDFLvSNxpDaomuCueM0BlSXxpANBlFYiBvr+GXrvIHc= -github.com/go-openapi/analysis v0.21.4/go.mod h1:4zQ35W4neeZTqh3ol0rv/O8JBbka9QyAgQRPp9y3pfo= -github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.20.2/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.20.3 h1:rz6kiC84sqNQoqrtulzaL/VERgkoCyB6WdEkc2ujzUc= -github.com/go-openapi/errors v0.20.3/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk= +github.com/go-openapi/analysis v0.23.0 h1:aGday7OWupfMs+LbmLZG4k0MYXIANxcuBTYUC03zFCU= +github.com/go-openapi/analysis v0.23.0/go.mod h1:9mz9ZWaSlV8TvjQHLl2mUW2PbZtemkE8yA5v22ohupo= +github.com/go-openapi/errors v0.22.0 h1:c4xY/OLxUBSTiepAg3j/MHuAv5mJhnf53LLMWFB+u/w= +github.com/go-openapi/errors v0.22.0/go.mod h1:J3DmZScxCDufmIMsdOuDHxJbdOGC0xtUynjIx092vXE= github.com/go-openapi/inflect v0.21.0 h1:FoBjBTQEcbg2cJUWX6uwL9OyIW8eqc9k4KhN4lfbeYk= github.com/go-openapi/inflect v0.21.0/go.mod h1:INezMuUu7SJQc2AyR3WO0DqqYUJSj8Kb4hBd7WtjlAw= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= -github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= +github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1rr/O9oNQ= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.19.6/go.mod h1:diGHMEHg2IqXZGKxqyvWdfWU/aim5Dprw5bqpKkTvns= -github.com/go-openapi/jsonreference v0.20.0/go.mod h1:Ag74Ico3lPc+zR+qjn4XBUmXymS4zJbYVCZmcgkasdo= -github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/loads v0.21.1/go.mod h1:/DtAMXXneXFjbQMGEtbamCZb+4x7eGwkvZCvBmwUG+g= -github.com/go-openapi/loads v0.21.2 h1:r2a/xFIYeZ4Qd2TnGpWDIQNcP80dIaZgf704za8enro= -github.com/go-openapi/loads v0.21.2/go.mod h1:Jq58Os6SSGz0rzh62ptiu8Z31I+OTHqmULx5e/gJbNw= -github.com/go-openapi/runtime v0.25.0 h1:7yQTCdRbWhX8vnIjdzU8S00tBYf7Sg71EBeorlPHvhc= -github.com/go-openapi/runtime v0.25.0/go.mod h1:Ux6fikcHXyyob6LNWxtE96hWwjBPYF0DXgVFuMTneOs= +github.com/go-openapi/jsonreference v0.21.0 h1:Rs+Y7hSXT83Jacb7kFyjn4ijOuVGSvOdF2+tg1TRrwQ= +github.com/go-openapi/jsonreference v0.21.0/go.mod h1:LmZmgsrTkVg9LG4EaHeY8cBDslNPMo06cago5JNLkm4= +github.com/go-openapi/loads v0.22.0 h1:ECPGd4jX1U6NApCGG1We+uEozOAvXvJSF4nnwHZ8Aco= +github.com/go-openapi/loads v0.22.0/go.mod h1:yLsaTCS92mnSAZX5WWoxszLj0u+Ojl+Zs5Stn1oF+rs= +github.com/go-openapi/runtime v0.28.0 h1:gpPPmWSNGo214l6n8hzdXYhPuJcGtziTOgUpvsFWGIQ= +github.com/go-openapi/runtime v0.28.0/go.mod h1:QN7OzcS+XuYmkQLw05akXk0jRH/eZ3kb18+1KwW9gyc= github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/spec v0.20.4/go.mod h1:faYFR1CvsJZ0mNsmsphTMSoRrNV3TEDoAM7FOEWeq8I= -github.com/go-openapi/spec v0.20.6/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA= -github.com/go-openapi/spec v0.20.8 h1:ubHmXNY3FCIOinT8RNrrPfGc9t7I1qhPtdOGoG2AxRU= -github.com/go-openapi/spec v0.20.8/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA= -github.com/go-openapi/strfmt v0.21.0/go.mod h1:ZRQ409bWMj+SOgXofQAGTIo2Ebu72Gs+WaRADcS5iNg= -github.com/go-openapi/strfmt v0.21.1/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k= -github.com/go-openapi/strfmt v0.21.3 h1:xwhj5X6CjXEZZHMWy1zKJxvW9AfHC9pkyUjLvHtKG7o= -github.com/go-openapi/strfmt v0.21.3/go.mod h1:k+RzNO0Da+k3FrrynSNN8F7n/peCmQQqbbXjtDfvmGg= +github.com/go-openapi/spec v0.21.0 h1:LTVzPc3p/RzRnkQqLRndbAzjY0d0BCL72A6j3CdL9ZY= +github.com/go-openapi/spec v0.21.0/go.mod h1:78u6VdPw81XU44qEWGhtr982gJ5BWg2c0I5XwVMotYk= +github.com/go-openapi/strfmt v0.23.0 h1:nlUS6BCqcnAk0pyhi9Y+kdDVZdZMHfEKQiS4HaMgO/c= +github.com/go-openapi/strfmt v0.23.0/go.mod h1:NrtIpfKtWIygRkKVsxh7XQMDQW5HKQl6S5ik2elW+K4= github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= -github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= -github.com/go-openapi/validate v0.22.0 h1:b0QecH6VslW/TxtpKgzpO1SNG7GU2FsaqKdP1E2T50Y= -github.com/go-openapi/validate v0.22.0/go.mod h1:rjnrwK57VJ7A8xqfpAOEKRH8yQSGUriMu5/zuPSQ1hg= +github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= +github.com/go-openapi/validate v0.24.0 h1:LdfDKwNbpB6Vn40xhTdNZAnfLECL81w+VX3BumrGD58= +github.com/go-openapi/validate v0.24.0/go.mod h1:iyeX1sEufmv3nPbBdX3ieNviWnOZaJ1+zquzJEf2BAQ= github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= @@ -997,43 +978,17 @@ github.com/go-resty/resty/v2 v2.13.1 h1:x+LHXBI2nMB1vqndymf26quycC4aggYJ7DECYbiz github.com/go-resty/resty/v2 v2.13.1/go.mod h1:GznXlLxkq6Nh4sU59rPmUw3VtgpO3aS96ORAI6Q7d+0= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= -github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-swagger/go-swagger v0.30.4 h1:cPrWLSXY6ZdcgfRicOj0lANg72TkTHz6uv/OlUdzO5U= -github.com/go-swagger/go-swagger v0.30.4/go.mod h1:YM5D5kR9c1ft3ynMXvDk2uo/7UZHKFEqKXcAL9f4Phc= -github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013 h1:l9rI6sNaZgNC0LnF3MiE+qTmyBA/tZAg1rtyrGbUMK0= -github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013/go.mod h1:b65mBPzqzZWxOZGxSWrqs4GInLIn+u99Q9q7p+GKni0= +github.com/go-swagger/go-swagger v0.31.0 h1:H8eOYQnY2u7vNKWDNykv2xJP3pBhRG/R+SOCAmKrLlc= +github.com/go-swagger/go-swagger v0.31.0/go.mod h1:WSigRRWEig8zV6t6Sm8Y+EmUjlzA/HoaZJ5edupq7po= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 h1:wG8n/XJQ07TmjbITcGiUaOtXxdrINDz1b0J1w0SzqDc= github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1/go.mod h1:A2S0CWkNylc2phvKXWBBdD3K0iGnDBGbzRpISP2zBl8= github.com/go-test/deep v1.0.4 h1:u2CU3YKy9I2pmu9pX0eq50wCgjfGIt539SqR7FbHiho= github.com/go-test/deep v1.0.4/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= -github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0= -github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY= -github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg= -github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs= -github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= github.com/gobuffalo/flect v0.2.3 h1:f/ZukRnSNA/DUpSNDadko7Qc0PhGvsew35p/2tu+CRY= github.com/gobuffalo/flect v0.2.3/go.mod h1:vmkQwuZYhN5Pc4ljYQZzP+1sq+NEkK+lh20jmEmX3jc= -github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk= -github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28= -github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo= -github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk= -github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw= -github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360= -github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg= -github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE= -github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8= -github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= -github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= -github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe h1:zn8tqiUbec4wR94o7Qj3LZCAT6uGobhEgnDRg6isG5U= github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= @@ -1200,8 +1155,8 @@ github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEo github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 h1:l5lAOZEym3oK3SQ2HBHWsJUfbNBiTXJDeW2QDxw9AQ0= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= -github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= +github.com/gorilla/handlers v1.5.2 h1:cLTUSsNkgcwhgRqvCNmdbRWG0A3N4F+M2nWKdScwyEE= +github.com/gorilla/handlers v1.5.2/go.mod h1:dX+xVpaxdSw+q0Qek8SSsl3dfMk3jNddUkMzo0GtH0w= github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= @@ -1261,16 +1216,17 @@ github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f h1:7LYC+Yfk github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f/go.mod h1:pFlLw2CfqZiIBOx6BuCeRLCrfxBJipTY0nIOF/VbGcI= github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c/go.mod h1:lADxMC39cJJqL93Duh1xhAs4I2Zs8mKS89XWXFGp9cs= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huandu/xstrings v1.3.3 h1:/Gcsuc1x8JVbJ9/rlye4xZnVAbEkGauT8lbebqcQws4= github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= +github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU= +github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/iancoleman/strcase v0.1.1/go.mod h1:SK73tn/9oHe+/Y0h39VT4UCxmurVJkR5NA7kMEAOgSE= github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.15 h1:M8XP7IuFNsqUx6VPK2P9OSmsYsI/YFaGil0uD21V3dM= -github.com/imdario/mergo v0.3.15/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= +github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= +github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= github.com/imkira/go-interpol v1.1.0 h1:KIiKr0VSG2CUW1hl1jpiyuzuJeKUUpC8iM1AIE7N1Vk= github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= @@ -1326,8 +1282,6 @@ github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/karrick/godirwalk v1.7.8/go.mod h1:2c9FRhkDxdIbgkOnCEvnSWs71Bhugbl46shStcFDJ34= -github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= -github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= @@ -1337,7 +1291,6 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.14.4/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= @@ -1350,7 +1303,6 @@ github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa02 github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc= github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0 h1:Jskdu9ieNAYnjxsi0LbQp1ulIKZV1LAFgK1tWhpZgl8= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -1382,13 +1334,8 @@ github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0V github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mailgun/mailgun-go v2.0.0+incompatible/go.mod h1:NWTyU+O4aczg/nsGhQnvHL6v2n5Gy6Sv5tNDVvC6FbU= github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= -github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= @@ -1432,8 +1379,6 @@ github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTS github.com/mitchellh/hashstructure/v2 v2.0.2 h1:vGKWl0YJqUNxE8d+h8f6NJLcCJrgbhC4NcD46KavDd4= github.com/mitchellh/hashstructure/v2 v2.0.2/go.mod h1:MG3aRVU/N29oo/V/IhBX8GR/zz4kQkprJgF2EVszyDE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= @@ -1448,7 +1393,6 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/moul/http2curl v1.0.0/go.mod h1:8UbvGypXm98wA/IqH45anm5Y2Z6ep6O31QGOAZ3H0fQ= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= @@ -1519,11 +1463,10 @@ github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 h1:AnS8ZCC5dle8P4X4FZ+IOlX9v0jAkCM github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5/go.mod h1:f0ezb0R/mrB9Hpm5RrIS6EX3ydjsR2nAB88nYYXZcNY= github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= -github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/pelletier/go-toml/v2 v2.1.1 h1:LWAJwfNvjQZCFIDKWYQaM62NcYeYViCmWIwmOStowAI= +github.com/pelletier/go-toml/v2 v2.1.1/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= @@ -1581,12 +1524,11 @@ github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -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/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= github.com/rs/xid v1.5.0 h1:mKX4bl4iPYJtEIxp6CYiUuLQ/8DYMoz0PUdtGgMFRVc= github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= @@ -1606,11 +1548,10 @@ github.com/santhosh-tekuri/jsonschema/v5 v5.0.0/go.mod h1:FKdcjfQW6rpZSnxxUvEA5H github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= -github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= +github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= @@ -1685,7 +1626,6 @@ github.com/tidwall/gjson v1.17.1 h1:wlYEnwqAHgzmhNUFfw7Xalt2JzQvsMx2Se4PcoFCT/U= github.com/tidwall/gjson v1.17.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= -github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs= github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tidwall/sjson v1.2.4 h1:cuiLzLnaMeBhRmEv00Lpk3tkYrcxpmbU81tAY4Dw0tc= @@ -1707,12 +1647,8 @@ github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= -github.com/xdg-go/scram v1.1.1/go.mod h1:RaEWvsqvNKKvBPvcKeFjrG2cJqOkHTiyTpzz23ni57g= github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY= github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4= -github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= -github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8= github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8= github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= @@ -1724,7 +1660,6 @@ github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17 github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 h1:6fRhSjgLCkTD3JnJxvaJ4Sj+TYblw757bqYgZaOq5ZY= github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= github.com/yudai/gojsondiff v1.0.0 h1:27cbfqXLVEJ1o8I6v3y9lg8Ydm53EKqHXAOMxEGlCOA= github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 h1:BHyfKlQyqbsFN5p3IfnEUduWvb9is428/nNb5L3U01M= @@ -1747,11 +1682,8 @@ go.einride.tech/aip v0.67.1/go.mod h1:ZGX4/zKw8dcgzdLsrvpOOGxfxI2QSk12SlP7d6c0/X go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= go.etcd.io/bbolt v1.3.8 h1:xs88BrvEv273UsB79e0hcVrlUWmS0a8upikMFhSyAtA= go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= -go.mongodb.org/mongo-driver v1.7.3/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg= -go.mongodb.org/mongo-driver v1.7.5/go.mod h1:VXEWRZ6URJIkUq2SCAyapmhH0ZLRBP+FT4xhp5Zvxng= -go.mongodb.org/mongo-driver v1.10.0/go.mod h1:wsihk0Kdgv8Kqu1Anit4sfK+22vSFbUrAVEYRhCXrA8= -go.mongodb.org/mongo-driver v1.11.1 h1:QP0znIRTuL0jf1oBQoAoM0C6ZJfBK4kx0Uumtv1A7w8= -go.mongodb.org/mongo-driver v1.11.1/go.mod h1:s7p5vEtfbeR1gYi6pnj3c3/urpbLv2T5Sfd6Rp2HBB8= +go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= +go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= @@ -1786,12 +1718,10 @@ go.uber.org/ratelimit v0.3.1 h1:K4qVE+byfv/B3tC+4nYWP7v/6SimcO7HzHekoMNBma0= go.uber.org/ratelimit v0.3.1/go.mod h1:6euWsTB6U/Nb3X++xEUXA8ciPJvr19Q/0h1+oDcJhRk= go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190422183909-d864b10871cd/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= @@ -1799,7 +1729,6 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= @@ -1930,7 +1859,6 @@ golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= @@ -1998,7 +1926,6 @@ golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2017,7 +1944,6 @@ golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181019160139-8e24a49d80f8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190124100055-b90733256f2e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2026,13 +1952,10 @@ golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2076,7 +1999,6 @@ golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -2181,14 +2103,10 @@ golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3 golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190424220101-1e8e1cfdf96b/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= @@ -2243,8 +2161,8 @@ golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -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.0 h1:qc0xYgIbsSDt9EyWz05J5wfa7LOVW0YTLOXrqdLAWIw= +golang.org/x/tools v0.21.0/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= @@ -2556,7 +2474,6 @@ gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= @@ -2595,8 +2512,6 @@ gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= From 7b2253a22be0347b5c1b225a2d4bcd723097264f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:55:17 +0000 Subject: [PATCH 107/123] chore(deps): bump github.com/nats-io/nats.go from 1.34.1 to 1.35.0 (#3139) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 47d1da47fa..9db98fb0b7 100644 --- a/go.mod +++ b/go.mod @@ -58,7 +58,7 @@ require ( github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 github.com/nats-io/graft v0.0.0-20220215174245-93d18541496f - github.com/nats-io/nats.go v1.34.1 + github.com/nats-io/nats.go v1.35.0 github.com/nats-io/stan.go v0.10.4 github.com/nsqio/go-nsq v1.1.0 github.com/pkg/sftp v1.13.6 diff --git a/go.sum b/go.sum index 8d1452bbe0..ec544e637a 100644 --- a/go.sum +++ b/go.sum @@ -1416,8 +1416,8 @@ github.com/nats-io/nats.go v1.13.0/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/ github.com/nats-io/nats.go v1.13.1-0.20220121202836-972a071d373d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d/go.mod h1:BPko4oXsySz4aSWeFgOHLZs3G4Jq4ZAyE6/zMCxRT6w= github.com/nats-io/nats.go v1.22.1/go.mod h1:tLqubohF7t4z3du1QDPYJIQQyhb4wl6DhjxEajSI7UA= -github.com/nats-io/nats.go v1.34.1 h1:syWey5xaNHZgicYBemv0nohUPPmaLteiBEUT6Q5+F/4= -github.com/nats-io/nats.go v1.34.1/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= +github.com/nats-io/nats.go v1.35.0 h1:XFNqNM7v5B+MQMKqVGAyHwYhyKb48jrenXNxIU20ULk= +github.com/nats-io/nats.go v1.35.0/go.mod h1:Ubdu4Nh9exXdSz0RVWRFBbRfrbSxOYd26oF0wkWclB8= github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV6A5y4= github.com/nats-io/nkeys v0.4.7 h1:RwNJbbIdYCoClSDNY7QVKZlyb/wfT6ugvFCiKy6vDvI= github.com/nats-io/nkeys v0.4.7/go.mod h1:kqXRgRDPlGy7nGaEDMuYzmiJCIAAWDK0IMBtDmGD0nc= From 46a68b898508063cb7f496b6990707cd7e7e316d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:59:16 +0000 Subject: [PATCH 108/123] chore(deps): bump google.golang.org/api from 0.180.0 to 0.181.0 (#3140) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 8 ++++---- go.sum | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 9db98fb0b7..f6a0fc6b76 100644 --- a/go.mod +++ b/go.mod @@ -82,7 +82,7 @@ require ( go.uber.org/zap v1.27.0 golang.org/x/crypto v0.23.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f - google.golang.org/api v0.180.0 + google.golang.org/api v0.181.0 google.golang.org/grpc v1.63.2 gopkg.in/jcmturner/gokrb5.v5 v5.3.0 k8s.io/api v0.29.2 @@ -99,7 +99,7 @@ require ( ) require ( - cloud.google.com/go v0.112.2 // indirect + cloud.google.com/go v0.113.0 // indirect cloud.google.com/go/auth v0.4.1 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/iam v1.1.7 // indirect @@ -314,8 +314,8 @@ require ( gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect google.golang.org/protobuf v1.34.1 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect diff --git a/go.sum b/go.sum index ec544e637a..77aedb7eac 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,8 @@ cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFO cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.112.2 h1:ZaGT6LiG7dBzi6zNOvVZwacaXlmf3lRqnC4DQzqyRQw= -cloud.google.com/go v0.112.2/go.mod h1:iEqjp//KquGIJV/m+Pk3xecgKNhV+ry+vVTsy4TbDms= +cloud.google.com/go v0.113.0 h1:g3C70mn3lWfckKBiCVsAshabrDg01pQ0pnX1MNtnMkA= +cloud.google.com/go v0.113.0/go.mod h1:glEqlogERKYeePz6ZdkcLJ28Q2I6aERgDDErBg9GzO8= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= @@ -2247,8 +2247,8 @@ google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjY google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.180.0 h1:M2D87Yo0rGBPWpo1orwfCLehUUL6E7/TYe5gvMQWDh4= -google.golang.org/api v0.180.0/go.mod h1:51AiyoEg1MJPSZ9zvklA8VnRILPXxn1iVen9v25XHAE= +google.golang.org/api v0.181.0 h1:rPdjwnWgiPPOJx3IcSAQ2III5aX5tCer6wMpa/xmZi4= +google.golang.org/api v0.181.0/go.mod h1:MnQ+M0CFsfUwA5beZ+g/vCBCPXvtmZwRz2qzZk8ih1k= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2397,15 +2397,15 @@ google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go. google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 h1:DTJM0R8LECCgFeUwApvcEJHz85HLagW8uRENYxHh1ww= -google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6/go.mod h1:10yRODfgim2/T8csjQsMPgZOMvtytXKTDRzH6HRGzRw= +google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae h1:AH34z6WAGVNkllnKs5raNq3yRq93VnjBG6rpfub/jYk= +google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae/go.mod h1:FfiGhwUm6CJviekPrc0oJ+7h29e+DmWU6UtjX0ZvI7Y= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 h1:DujSIu+2tC9Ht0aPNA7jgj23Iq8Ewi5sgkQ++wdvonE= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 h1:mxSlqyb8ZAHsYDCfiXN1EDdNTdvjUJSLY+OnAUtYNYA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8/go.mod h1:I7Y+G38R2bu5j1aLzfFmQfTcU/WnFuqDwLZAbvKTKpM= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= From decb1fe2384ba690675b6666d998a4de69164c09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 13:00:12 +0000 Subject: [PATCH 109/123] chore(deps): bump github.com/slack-go/slack from 0.12.5 to 0.13.0 (#3141) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index f6a0fc6b76..8292257b0e 100644 --- a/go.mod +++ b/go.mod @@ -67,7 +67,7 @@ require ( github.com/radovskyb/watcher v1.0.7 github.com/riferrei/srclient v0.5.4 github.com/robfig/cron/v3 v3.0.1 - github.com/slack-go/slack v0.12.5 + github.com/slack-go/slack v0.13.0 github.com/smartystreets/goconvey v1.7.2 github.com/spf13/cobra v1.8.0 github.com/spf13/viper v1.18.2 diff --git a/go.sum b/go.sum index 77aedb7eac..9b8bf91263 100644 --- a/go.sum +++ b/go.sum @@ -1559,8 +1559,8 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A= github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= -github.com/slack-go/slack v0.12.5 h1:ddZ6uz6XVaB+3MTDhoW04gG+Vc/M/X1ctC+wssy2cqs= -github.com/slack-go/slack v0.12.5/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= +github.com/slack-go/slack v0.13.0 h1:7my/pR2ubZJ9912p9FtvALYpbt0cQPAqkRy2jaSI1PQ= +github.com/slack-go/slack v0.13.0/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= From 7d8068a24d97ae2bbf35f526f4362a104b680449 Mon Sep 17 00:00:00 2001 From: florian-feicht <122281485+florian-feicht@users.noreply.github.com> Date: Mon, 20 May 2024 23:25:58 +0200 Subject: [PATCH 110/123] Use authorized key parsing instead of reading binary certificates (#3113) Signed-off-by: florian-feicht --- api/event-source.html | 2 +- api/event-source.md | 3 ++- api/jsonschema/schema.json | 2 +- api/openapi-spec/swagger.json | 2 +- eventsources/sources/sftp/start.go | 2 +- pkg/apis/eventsource/v1alpha1/generated.proto | 2 +- pkg/apis/eventsource/v1alpha1/openapi_generated.go | 2 +- pkg/apis/eventsource/v1alpha1/types.go | 2 +- 8 files changed, 9 insertions(+), 8 deletions(-) diff --git a/api/event-source.html b/api/event-source.html index b85496ceb1..ef8dddeae1 100644 --- a/api/event-source.html +++ b/api/event-source.html @@ -5413,7 +5413,7 @@

SFTPEventSource -

SSHKeySecret refers to the secret that contains SSH key

+

SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key.

diff --git a/api/event-source.md b/api/event-source.md index e2af9a372d..b915312a77 100644 --- a/api/event-source.md +++ b/api/event-source.md @@ -5526,7 +5526,8 @@ Kubernetes core/v1.SecretKeySelector

-SSHKeySecret refers to the secret that contains SSH key +SSHKeySecret refers to the secret that contains SSH key. Key needs to +contain private key and public key.

diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index da379ed97b..438ce4b86d 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -2711,7 +2711,7 @@ }, "sshKeySecret": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", - "description": "SSHKeySecret refers to the secret that contains SSH key" + "description": "SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key." }, "username": { "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index cb8cdbed52..70982960a3 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2698,7 +2698,7 @@ "type": "string" }, "sshKeySecret": { - "description": "SSHKeySecret refers to the secret that contains SSH key", + "description": "SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" }, "username": { diff --git a/eventsources/sources/sftp/start.go b/eventsources/sources/sftp/start.go index 47feaa6fa7..d8becd3ebe 100644 --- a/eventsources/sources/sftp/start.go +++ b/eventsources/sources/sftp/start.go @@ -95,7 +95,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt if err != nil { return fmt.Errorf("failed to parse private ssh key. err: %+v", err) } - publicKey, err := ssh.ParsePublicKey(sshKey) + publicKey, _, _, _, err := ssh.ParseAuthorizedKey(sshKey) if err != nil { return fmt.Errorf("failed to parse public ssh key. err: %+v", err) } diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index f4b469b04b..1bc06dc721 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -1423,7 +1423,7 @@ message SFTPEventSource { // Password required for authentication if any. optional k8s.io.api.core.v1.SecretKeySelector password = 4; - // SSHKeySecret refers to the secret that contains SSH key + // SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key. optional k8s.io.api.core.v1.SecretKeySelector sshKeySecret = 5; // Address sftp address. diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index 3d19b36fbd..2cfb60121b 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -3692,7 +3692,7 @@ func schema_pkg_apis_eventsource_v1alpha1_SFTPEventSource(ref common.ReferenceCa }, "sshKeySecret": { SchemaProps: spec.SchemaProps{ - Description: "SSHKeySecret refers to the secret that contains SSH key", + Description: "SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key.", Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), }, }, diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go index 41da881ebd..c2db254f85 100644 --- a/pkg/apis/eventsource/v1alpha1/types.go +++ b/pkg/apis/eventsource/v1alpha1/types.go @@ -303,7 +303,7 @@ type SFTPEventSource struct { Username *corev1.SecretKeySelector `json:"username,omitempty" protobuf:"bytes,3,opt,name=username"` // Password required for authentication if any. Password *corev1.SecretKeySelector `json:"password,omitempty" protobuf:"bytes,4,opt,name=password"` - // SSHKeySecret refers to the secret that contains SSH key + // SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key. SSHKeySecret *corev1.SecretKeySelector `json:"sshKeySecret,omitempty" protobuf:"bytes,5,opt,name=sshKeySecret"` // Address sftp address. Address *corev1.SecretKeySelector `json:"address,omitempty" protobuf:"bytes,6,opt,name=address"` From 546129637287e7a4586333b840dbea55050c43b6 Mon Sep 17 00:00:00 2001 From: sysr9 <38893296+sysr9@users.noreply.github.com> Date: Tue, 21 May 2024 23:34:45 +0300 Subject: [PATCH 111/123] Optional use QueueSubscribe for NATS events source (#3131) Signed-off-by: sysr9 --- api/event-source.html | 13 + api/event-source.md | 13 + api/jsonschema/schema.json | 4 + api/openapi-spec/swagger.json | 4 + eventsources/sources/nats/start.go | 15 +- eventsources/sources/nats/validate.go | 3 + examples/event-sources/nats.yaml | 9 + pkg/apis/eventsource/v1alpha1/generated.pb.go | 965 +++++++++--------- pkg/apis/eventsource/v1alpha1/generated.proto | 5 + .../eventsource/v1alpha1/openapi_generated.go | 7 + pkg/apis/eventsource/v1alpha1/types.go | 4 + .../v1alpha1/zz_generated.deepcopy.go | 5 + 12 files changed, 584 insertions(+), 463 deletions(-) diff --git a/api/event-source.html b/api/event-source.html index ef8dddeae1..9f18c1ecd6 100644 --- a/api/event-source.html +++ b/api/event-source.html @@ -4357,6 +4357,19 @@

NATSEventsSource

Filter

+ + +queue
+ +string + + + +(Optional) +

Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe +logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic.

+ +

NSQEventSource diff --git a/api/event-source.md b/api/event-source.md index b915312a77..2496e283d4 100644 --- a/api/event-source.md +++ b/api/event-source.md @@ -4449,6 +4449,19 @@ Filter

+ + +queue
string + + +(Optional) +

+Queue is the name of the queue group to subscribe as if specified. Uses +QueueSubscribe logic to subscribe as queue group. If the queue is empty, +uses default Subscribe logic. +

+ +

diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index 438ce4b86d..42abf12d38 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -2288,6 +2288,10 @@ "description": "Metadata holds the user defined metadata which will passed along the event payload.", "type": "object" }, + "queue": { + "description": "Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic.", + "type": "string" + }, "subject": { "description": "Subject holds the name of the subject onto which messages are published", "type": "string" diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 70982960a3..69123f12bc 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2276,6 +2276,10 @@ "type": "string" } }, + "queue": { + "description": "Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic.", + "type": "string" + }, "subject": { "description": "Subject holds the name of the subject onto which messages are published", "type": "string" diff --git a/eventsources/sources/nats/start.go b/eventsources/sources/nats/start.go index 5e6286fdd1..f73c326dd6 100644 --- a/eventsources/sources/nats/start.go +++ b/eventsources/sources/nats/start.go @@ -129,8 +129,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt log.Info("assuming all events have a json body...") } - log.Info("subscribing to messages on the queue...") - _, err := conn.Subscribe(natsEventSource.Subject, func(msg *natslib.Msg) { + handler := func(msg *natslib.Msg) { defer func(start time.Time) { el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond)) }(time.Now()) @@ -157,7 +156,17 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt log.Errorw("failed to dispatch a NATS event", zap.Error(err)) el.Metrics.EventProcessingFailed(el.GetEventSourceName(), el.GetEventName()) } - }) + } + + var err error + if natsEventSource.Queue != nil { + log.Infof("subscribing to messages on the subject %s queue %s", natsEventSource.Subject, *natsEventSource.Queue) + _, err = conn.QueueSubscribe(natsEventSource.Subject, *natsEventSource.Queue, handler) + } else { + log.Infof("subscribing to messages on the subject %s", natsEventSource.Subject) + _, err = conn.Subscribe(natsEventSource.Subject, handler) + } + if err != nil { return fmt.Errorf("failed to subscribe to the subject %s for event source %s, %w", natsEventSource.Subject, el.GetEventName(), err) } diff --git a/eventsources/sources/nats/validate.go b/eventsources/sources/nats/validate.go index 38a86e54b9..db9f365da7 100644 --- a/eventsources/sources/nats/validate.go +++ b/eventsources/sources/nats/validate.go @@ -43,5 +43,8 @@ func validate(eventSource *v1alpha1.NATSEventsSource) error { if eventSource.TLS != nil { return apicommon.ValidateTLSConfig(eventSource.TLS) } + if eventSource.Queue != nil && *eventSource.Queue == "" { + return fmt.Errorf("queue group cannot be empty if specified") + } return nil } diff --git a/examples/event-sources/nats.yaml b/examples/event-sources/nats.yaml index 50ce10ccd9..d1bc417c95 100644 --- a/examples/event-sources/nats.yaml +++ b/examples/event-sources/nats.yaml @@ -79,3 +79,12 @@ spec: # name: my-secret # key: my-credential +# example-queued-subscription: +# url: nats://nats.argo-events.svc:4222 +# jsonBody: true +# subject: "foo" +# queue: "my-queue" +# auth: +# credential: +# name: my-secret +# key: my-credential diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index aa9bbeda68..9109e8edfb 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1770,466 +1770,466 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7331 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x6c, 0x24, 0xc7, - 0x75, 0xa8, 0x86, 0x33, 0x1c, 0xce, 0x9c, 0xe1, 0xb3, 0x76, 0xb5, 0x1a, 0xd1, 0xda, 0xc7, 0xa5, - 0xe0, 0x85, 0x74, 0xaf, 0x44, 0x5e, 0xed, 0xbd, 0xbe, 0x96, 0xa5, 0x6b, 0x19, 0x33, 0xe4, 0x72, - 0x97, 0x5a, 0x92, 0x3b, 0xac, 0xe6, 0x4a, 0x2b, 0xcb, 0x92, 0xdc, 0xec, 0x29, 0x0e, 0xdb, 0xec, - 0xe9, 0x1e, 0x76, 0xf7, 0xec, 0x2e, 0x17, 0x88, 0x6d, 0x18, 0x70, 0x62, 0xeb, 0x61, 0x5b, 0x49, - 0x9c, 0x04, 0x09, 0x0c, 0xc4, 0x49, 0xe0, 0x7c, 0x24, 0xc8, 0x5f, 0x8c, 0xfc, 0x06, 0xc9, 0x87, - 0x91, 0xe4, 0xc3, 0xc9, 0x97, 0x63, 0x03, 0x0b, 0x9b, 0x41, 0xfe, 0xf2, 0x13, 0xf8, 0x2b, 0xf9, - 0x0a, 0xea, 0xd1, 0xd5, 0xd5, 0x8f, 0xe1, 0x72, 0x38, 0x3d, 0xe4, 0xae, 0x91, 0x2f, 0x72, 0xea, - 0x9c, 0x3a, 0xe7, 0x74, 0xf5, 0x39, 0xa7, 0x4e, 0x9d, 0xaa, 0x3a, 0x0d, 0x6b, 0x2d, 0xd3, 0xdf, - 0xe9, 0x6e, 0xcd, 0x1b, 0x4e, 0x7b, 0x41, 0x77, 0x5b, 0x4e, 0xc7, 0x75, 0xbe, 0xc4, 0xfe, 0x79, - 0x91, 0xdc, 0x21, 0xb6, 0xef, 0x2d, 0x74, 0x76, 0x5b, 0x0b, 0x7a, 0xc7, 0xf4, 0x16, 0xf8, 0x6f, - 0xa7, 0xeb, 0x1a, 0x64, 0xe1, 0xce, 0x4b, 0xba, 0xd5, 0xd9, 0xd1, 0x5f, 0x5a, 0x68, 0x11, 0x9b, - 0xb8, 0xba, 0x4f, 0x9a, 0xf3, 0x1d, 0xd7, 0xf1, 0x1d, 0xf4, 0xd9, 0x90, 0xdc, 0x7c, 0x40, 0x8e, - 0xfd, 0xf3, 0x1e, 0xef, 0x3e, 0xdf, 0xd9, 0x6d, 0xcd, 0x53, 0x72, 0xf3, 0x0a, 0xb9, 0xf9, 0x80, - 0xdc, 0xec, 0xe7, 0x8e, 0x2c, 0x8d, 0xe1, 0xb4, 0xdb, 0x8e, 0x1d, 0xe7, 0x3f, 0xfb, 0xa2, 0x42, - 0xa0, 0xe5, 0xb4, 0x9c, 0x05, 0xd6, 0xbc, 0xd5, 0xdd, 0x66, 0xbf, 0xd8, 0x0f, 0xf6, 0x9f, 0x40, - 0x9f, 0xdb, 0x7d, 0xd9, 0x9b, 0x37, 0x1d, 0x4a, 0x72, 0xc1, 0x70, 0x5c, 0xfa, 0x60, 0x09, 0x92, - 0xff, 0x37, 0xc4, 0x69, 0xeb, 0xc6, 0x8e, 0x69, 0x13, 0x77, 0x3f, 0x94, 0xa3, 0x4d, 0x7c, 0x3d, - 0xad, 0xd7, 0x42, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0x7f, 0x0f, 0xeb, - 0xe0, 0x19, 0x3b, 0xa4, 0xad, 0xc7, 0xfb, 0xcd, 0xfd, 0x47, 0x0e, 0x66, 0x6a, 0x6b, 0x1b, 0x8d, - 0x45, 0xc7, 0xf6, 0xba, 0x6d, 0xb2, 0xe8, 0xd8, 0xdb, 0x66, 0x0b, 0x7d, 0x0a, 0x2a, 0x06, 0x6f, - 0x70, 0x37, 0xf5, 0x56, 0x35, 0x77, 0x29, 0xf7, 0x5c, 0xb9, 0x7e, 0xe6, 0x47, 0x0f, 0x2e, 0x3e, - 0x71, 0xf0, 0xe0, 0x62, 0x65, 0x31, 0x04, 0x61, 0x15, 0x0f, 0x3d, 0x0f, 0x63, 0x7a, 0xd7, 0x77, - 0x6a, 0xc6, 0x6e, 0x75, 0xe4, 0x52, 0xee, 0xb9, 0x52, 0x7d, 0x4a, 0x74, 0x19, 0xab, 0xf1, 0x66, - 0x1c, 0xc0, 0xd1, 0x02, 0x94, 0xc9, 0x3d, 0xc3, 0xea, 0x7a, 0xe6, 0x1d, 0x52, 0xcd, 0x33, 0xe4, - 0x19, 0x81, 0x5c, 0xbe, 0x1a, 0x00, 0x70, 0x88, 0x43, 0x69, 0xdb, 0xce, 0xaa, 0x63, 0xe8, 0x56, - 0xb5, 0x10, 0xa5, 0xbd, 0xce, 0x9b, 0x71, 0x00, 0x47, 0x97, 0xa1, 0x68, 0x3b, 0x6f, 0xea, 0xa6, - 0x5f, 0x1d, 0x65, 0x98, 0x93, 0x02, 0xb3, 0xb8, 0xce, 0x5a, 0xb1, 0x80, 0xce, 0xfd, 0x5b, 0x05, - 0xa6, 0xe8, 0xb3, 0x5f, 0xa5, 0xca, 0xa1, 0x31, 0x5d, 0x42, 0xe7, 0x21, 0xdf, 0x75, 0x2d, 0xf1, - 0xc4, 0x15, 0xd1, 0x31, 0x7f, 0x0b, 0xaf, 0x62, 0xda, 0x8e, 0x5e, 0x86, 0x71, 0x72, 0xcf, 0xd8, - 0xd1, 0xed, 0x16, 0x59, 0xd7, 0xdb, 0x84, 0x3d, 0x66, 0xb9, 0x7e, 0x56, 0xe0, 0x8d, 0x5f, 0x55, - 0x60, 0x38, 0x82, 0xa9, 0xf6, 0xdc, 0xdc, 0xef, 0xf0, 0x67, 0x4e, 0xe9, 0x49, 0x61, 0x38, 0x82, - 0x89, 0xae, 0x00, 0xb8, 0x4e, 0xd7, 0x37, 0xed, 0xd6, 0x0d, 0xb2, 0xcf, 0x1e, 0xbe, 0x5c, 0x47, - 0xa2, 0x1f, 0x60, 0x09, 0xc1, 0x0a, 0x16, 0xfa, 0x35, 0x98, 0x31, 0x1c, 0xdb, 0x26, 0x86, 0x6f, - 0x3a, 0x76, 0x5d, 0x37, 0x76, 0x9d, 0xed, 0x6d, 0x36, 0x1a, 0x95, 0x2b, 0x2f, 0xcf, 0x1f, 0xd9, - 0xc8, 0xb8, 0x95, 0xcc, 0x8b, 0xfe, 0xf5, 0x27, 0x0f, 0x1e, 0x5c, 0x9c, 0x59, 0x8c, 0x93, 0xc5, - 0x49, 0x4e, 0xe8, 0x05, 0x28, 0x7d, 0xc9, 0x73, 0xec, 0xba, 0xd3, 0xdc, 0xaf, 0x16, 0xd9, 0x3b, - 0x98, 0x16, 0x02, 0x97, 0x5e, 0xd7, 0x6e, 0xae, 0xd3, 0x76, 0x2c, 0x31, 0xd0, 0x2d, 0xc8, 0xfb, - 0x96, 0x57, 0x1d, 0x63, 0xe2, 0xbd, 0xd2, 0xb7, 0x78, 0x9b, 0xab, 0x1a, 0x57, 0xdb, 0xfa, 0x18, - 0x7d, 0x57, 0x9b, 0xab, 0x1a, 0xa6, 0xf4, 0xd0, 0xfb, 0x39, 0x28, 0x51, 0xfb, 0x6a, 0xea, 0xbe, - 0x5e, 0x2d, 0x5d, 0xca, 0x3f, 0x57, 0xb9, 0xf2, 0x85, 0xf9, 0x81, 0x1c, 0xcc, 0x7c, 0x4c, 0x5b, - 0xe6, 0xd7, 0x04, 0xf9, 0xab, 0xb6, 0xef, 0xee, 0x87, 0xcf, 0x18, 0x34, 0x63, 0xc9, 0x1f, 0xfd, - 0x6e, 0x0e, 0xa6, 0x82, 0xb7, 0xba, 0x44, 0x0c, 0x4b, 0x77, 0x49, 0xb5, 0xcc, 0x1e, 0xf8, 0x76, - 0x16, 0x32, 0x45, 0x29, 0x8b, 0xe1, 0x38, 0x73, 0xf0, 0xe0, 0xe2, 0x54, 0x0c, 0x84, 0xe3, 0x52, - 0xa0, 0x0f, 0x72, 0x30, 0xbe, 0xd7, 0x25, 0x5d, 0x29, 0x16, 0x30, 0xb1, 0x6e, 0x65, 0x20, 0xd6, - 0x86, 0x42, 0x56, 0xc8, 0x34, 0x4d, 0x95, 0x5d, 0x6d, 0xc7, 0x11, 0xe6, 0xe8, 0x2b, 0x50, 0x66, - 0xbf, 0xeb, 0xa6, 0xdd, 0xac, 0x56, 0x98, 0x24, 0x38, 0x2b, 0x49, 0x28, 0x4d, 0x21, 0xc6, 0x04, - 0xf5, 0x33, 0xb2, 0x11, 0x87, 0x3c, 0xd1, 0x5d, 0x18, 0x13, 0x2e, 0xad, 0x3a, 0xce, 0xd8, 0x37, - 0x32, 0x60, 0x1f, 0xf1, 0xae, 0xf5, 0x0a, 0xf5, 0x5a, 0xa2, 0x09, 0x07, 0xdc, 0xd0, 0x6d, 0x28, - 0xe8, 0x5d, 0x7f, 0xa7, 0x3a, 0x71, 0x4c, 0x33, 0xa8, 0xeb, 0x9e, 0x69, 0xd4, 0xba, 0xfe, 0x4e, - 0xbd, 0x74, 0xf0, 0xe0, 0x62, 0x81, 0xfe, 0x87, 0x19, 0x45, 0x84, 0xa1, 0xdc, 0x75, 0x2d, 0x8d, - 0x18, 0x2e, 0xf1, 0xab, 0x93, 0x8c, 0xfc, 0x27, 0xe7, 0xf9, 0x7c, 0x41, 0x29, 0xcc, 0xd3, 0xa9, - 0x6b, 0xfe, 0xce, 0x4b, 0xf3, 0x1c, 0xe3, 0x06, 0xd9, 0xd7, 0x88, 0x45, 0x0c, 0xdf, 0x71, 0xf9, - 0x30, 0xdd, 0xc2, 0xab, 0x1c, 0x82, 0x43, 0x32, 0xc8, 0x87, 0xe2, 0xb6, 0x69, 0xf9, 0xc4, 0xad, - 0x4e, 0x65, 0x32, 0x4a, 0x8a, 0x55, 0x2d, 0x33, 0xba, 0x75, 0xa0, 0x1e, 0x9b, 0xff, 0x8f, 0x05, - 0xaf, 0xd9, 0x57, 0x61, 0x22, 0x62, 0x72, 0x68, 0x1a, 0xf2, 0xbb, 0x64, 0x9f, 0xbb, 0x6b, 0x4c, - 0xff, 0x45, 0x67, 0x61, 0xf4, 0x8e, 0x6e, 0x75, 0x85, 0x6b, 0xc6, 0xfc, 0xc7, 0x2b, 0x23, 0x2f, - 0xe7, 0xe6, 0x7e, 0x9c, 0x83, 0xa7, 0x7b, 0x1a, 0x0b, 0x9d, 0x5f, 0x9a, 0x5d, 0x57, 0xdf, 0xb2, - 0x08, 0xa3, 0xa6, 0xcc, 0x2f, 0x4b, 0xbc, 0x19, 0x07, 0x70, 0xea, 0x90, 0xe9, 0x34, 0xb6, 0x44, - 0x2c, 0xe2, 0x13, 0x31, 0xd3, 0x49, 0x87, 0x5c, 0x93, 0x10, 0xac, 0x60, 0x51, 0x8f, 0x68, 0xda, - 0x3e, 0x71, 0x6d, 0xdd, 0x12, 0xd3, 0x9d, 0xf4, 0x16, 0x2b, 0xa2, 0x1d, 0x4b, 0x0c, 0x65, 0x06, - 0x2b, 0x1c, 0x3a, 0x83, 0x7d, 0x16, 0xce, 0xa4, 0x68, 0xb7, 0xd2, 0x3d, 0x77, 0x68, 0xf7, 0x3f, - 0x1e, 0x81, 0x73, 0xe9, 0x76, 0x8a, 0x2e, 0x41, 0xc1, 0xa6, 0x13, 0x1c, 0x9f, 0x08, 0xc7, 0x05, - 0x81, 0x02, 0x9b, 0xd8, 0x18, 0x44, 0x1d, 0xb0, 0x91, 0xbe, 0x06, 0x2c, 0x7f, 0xa4, 0x01, 0x8b, - 0x04, 0x08, 0x85, 0x23, 0x04, 0x08, 0x47, 0x9c, 0xf5, 0x29, 0x61, 0xdd, 0x6d, 0x75, 0xdb, 0x54, - 0x09, 0xd9, 0xe4, 0x54, 0x0e, 0x09, 0xd7, 0x02, 0x00, 0x0e, 0x71, 0xe6, 0xde, 0x1f, 0x85, 0xa7, - 0x6b, 0xf7, 0xbb, 0x2e, 0x61, 0x3a, 0xea, 0x5d, 0xef, 0x6e, 0xa9, 0x01, 0xc3, 0x25, 0x28, 0x6c, - 0xef, 0x35, 0xed, 0xf8, 0x40, 0x2d, 0x6f, 0x2c, 0xad, 0x63, 0x06, 0x41, 0x1d, 0x38, 0xe3, 0xed, - 0xe8, 0x2e, 0x69, 0xd6, 0x0c, 0x83, 0x78, 0xde, 0x0d, 0xb2, 0x2f, 0x43, 0x87, 0x23, 0x1b, 0xe2, - 0x53, 0x07, 0x0f, 0x2e, 0x9e, 0xd1, 0x92, 0x54, 0x70, 0x1a, 0x69, 0xd4, 0x84, 0xa9, 0x58, 0x33, - 0x1b, 0xf4, 0x23, 0x73, 0x63, 0x13, 0x47, 0x8c, 0x1b, 0x8e, 0x93, 0xa4, 0x0a, 0xb0, 0xd3, 0xdd, - 0x62, 0xcf, 0xc2, 0x83, 0x12, 0xa9, 0x00, 0xd7, 0x79, 0x33, 0x0e, 0xe0, 0xe8, 0xb7, 0xd5, 0xa9, - 0x78, 0x94, 0x4d, 0xc5, 0xdb, 0x83, 0xba, 0xd5, 0x5e, 0x6f, 0xa4, 0x8f, 0x49, 0x39, 0x74, 0x62, - 0xc5, 0xc7, 0xc5, 0x89, 0xfd, 0x61, 0x11, 0x9e, 0x61, 0x8f, 0xce, 0x6c, 0x56, 0xf3, 0x1d, 0x57, - 0x6f, 0x11, 0x55, 0x1f, 0x5f, 0x07, 0xe4, 0xf1, 0xd6, 0x9a, 0x61, 0x38, 0x5d, 0xdb, 0x5f, 0x0f, - 0xcd, 0x78, 0x56, 0x8c, 0x05, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x6a, 0xc1, 0x74, 0x18, 0xdb, - 0x69, 0xbe, 0x6b, 0xda, 0xad, 0xfe, 0xd4, 0xf6, 0xec, 0xc1, 0x83, 0x8b, 0xd3, 0x8b, 0x31, 0x12, - 0x38, 0x41, 0x94, 0xda, 0x24, 0x9b, 0x81, 0x99, 0xac, 0xf9, 0xa8, 0x4d, 0x6e, 0x04, 0x00, 0x1c, - 0xe2, 0x44, 0x02, 0xcc, 0xc2, 0x43, 0x03, 0xcc, 0xf3, 0x90, 0x6f, 0x5a, 0x7b, 0xc2, 0x2f, 0xc8, - 0xa0, 0x7e, 0x69, 0x75, 0x03, 0xd3, 0x76, 0x1a, 0x9b, 0x85, 0xda, 0x59, 0x64, 0xda, 0x69, 0x66, - 0xa1, 0x9d, 0x3d, 0x5e, 0xd1, 0xb1, 0x14, 0x74, 0xec, 0xe4, 0x14, 0x14, 0xbd, 0x0a, 0x13, 0x4d, - 0x62, 0x38, 0x4d, 0xb2, 0x46, 0x3c, 0x4f, 0x6f, 0x91, 0x6a, 0x89, 0x0d, 0xdc, 0x93, 0x42, 0xd0, - 0x89, 0x25, 0x15, 0x88, 0xa3, 0xb8, 0x68, 0x11, 0x66, 0xee, 0xea, 0xa6, 0xbf, 0x69, 0xb6, 0xc9, - 0x8a, 0xad, 0x11, 0xc3, 0xb1, 0x9b, 0x1e, 0x8b, 0x74, 0x47, 0xf9, 0xfa, 0xe1, 0xcd, 0x38, 0x10, - 0x27, 0xf1, 0x07, 0x33, 0x91, 0x9f, 0x14, 0x61, 0x96, 0x8d, 0xbf, 0x46, 0xdc, 0x3b, 0xa6, 0x41, - 0xea, 0x5d, 0x4f, 0x35, 0x90, 0x34, 0xa5, 0xce, 0x0d, 0x5d, 0xa9, 0x47, 0x8e, 0xa0, 0xd4, 0x0b, - 0x50, 0xf6, 0x9d, 0x8e, 0x69, 0xa4, 0x59, 0xc1, 0x66, 0x00, 0xc0, 0x21, 0x0e, 0x5a, 0x82, 0x69, - 0xaf, 0xbb, 0xe5, 0x19, 0xae, 0xd9, 0xa1, 0x7c, 0x15, 0x57, 0x5c, 0x15, 0xfd, 0xa6, 0xb5, 0x18, - 0x1c, 0x27, 0x7a, 0x04, 0xcb, 0xaf, 0xd1, 0x8c, 0x97, 0x5f, 0xfd, 0xad, 0x01, 0xbf, 0xab, 0xda, - 0xe0, 0x18, 0xb3, 0xc1, 0x56, 0x16, 0x36, 0x98, 0xaa, 0x03, 0xc7, 0xb2, 0xc0, 0xd2, 0x09, 0x5a, - 0xe0, 0x5b, 0xf0, 0xd4, 0x76, 0xd7, 0xb2, 0xf6, 0x37, 0xba, 0xba, 0x65, 0x6e, 0x9b, 0xa4, 0x49, - 0x5f, 0x94, 0xd7, 0xd1, 0x0d, 0xbe, 0x68, 0x2c, 0xd7, 0x2f, 0x0a, 0x91, 0x9f, 0x5a, 0x4e, 0x47, - 0xc3, 0xbd, 0xfa, 0x0f, 0x66, 0x5a, 0x3f, 0xcd, 0xc1, 0x44, 0xdd, 0xf4, 0xb7, 0xba, 0xc6, 0x2e, - 0xf1, 0xe9, 0x0a, 0x03, 0xb9, 0x30, 0xba, 0x45, 0x17, 0x1e, 0xc2, 0x84, 0x36, 0x06, 0x1c, 0x1e, - 0x49, 0x3c, 0x5c, 0xcd, 0x94, 0x0f, 0x1e, 0x5c, 0x1c, 0x65, 0x3f, 0x31, 0x67, 0x85, 0x6e, 0x01, - 0x38, 0x74, 0x61, 0xb3, 0xe9, 0xec, 0x12, 0xbb, 0xbf, 0x09, 0x69, 0x92, 0x46, 0x9c, 0x37, 0x6b, - 0x41, 0x67, 0xac, 0x10, 0x9a, 0xfb, 0x61, 0x0e, 0x50, 0x92, 0x3f, 0xba, 0x09, 0xa5, 0xae, 0x47, - 0xc3, 0x72, 0x31, 0x8d, 0x1e, 0x99, 0xd7, 0x38, 0x55, 0xa9, 0x5b, 0xa2, 0x2b, 0x96, 0x44, 0x28, - 0xc1, 0x8e, 0xee, 0x79, 0x77, 0x1d, 0xb7, 0xd9, 0x9f, 0xf0, 0x8c, 0x60, 0x43, 0x74, 0xc5, 0x92, - 0xc8, 0xdc, 0x2f, 0xc7, 0xe0, 0xac, 0x14, 0x3c, 0x16, 0x0b, 0x34, 0x59, 0x34, 0x7d, 0xdd, 0x71, - 0x76, 0x6f, 0xda, 0xcb, 0xa6, 0x6d, 0x7a, 0x3b, 0x62, 0x4d, 0x20, 0x63, 0x81, 0xa5, 0x04, 0x06, - 0x4e, 0xe9, 0x85, 0xbe, 0xad, 0x1a, 0xe8, 0x08, 0x33, 0x50, 0x3d, 0xab, 0x97, 0x7d, 0x5c, 0xd3, - 0x1c, 0xbb, 0x4b, 0xb6, 0x76, 0x1c, 0x67, 0x57, 0x44, 0xb7, 0x6b, 0x03, 0xca, 0xf3, 0x26, 0xa7, - 0xb6, 0xe8, 0xd8, 0x3e, 0xb9, 0xe7, 0xf3, 0x65, 0xba, 0x68, 0xc3, 0x01, 0x2b, 0xf4, 0x25, 0xb1, - 0x4c, 0x2f, 0x30, 0x96, 0xab, 0x59, 0x0d, 0x41, 0xea, 0xc2, 0x7d, 0x0e, 0x8a, 0xbc, 0x17, 0x8b, - 0x99, 0xcb, 0xdc, 0x55, 0xf0, 0x98, 0x17, 0x0b, 0x08, 0x7a, 0x11, 0x46, 0x9d, 0xbb, 0xb6, 0x08, - 0x61, 0xcb, 0xf5, 0xa7, 0xc4, 0x80, 0x4d, 0x2d, 0x91, 0x8e, 0x4b, 0x0c, 0xdd, 0x27, 0xcd, 0x9b, - 0x14, 0x8c, 0x39, 0x16, 0xfa, 0xff, 0x00, 0x54, 0x44, 0x62, 0x50, 0xcd, 0x62, 0x51, 0x45, 0xb9, - 0xfe, 0x8c, 0xe8, 0x73, 0x36, 0xec, 0xd3, 0x90, 0x38, 0x58, 0xc1, 0x47, 0xd7, 0x61, 0xd2, 0x25, - 0x1d, 0xc7, 0x33, 0x7d, 0xc7, 0xdd, 0xd7, 0xac, 0x6e, 0x8b, 0x79, 0xc5, 0x72, 0xfd, 0x92, 0xa0, - 0x50, 0x0d, 0x29, 0xe0, 0x08, 0x1e, 0x8e, 0xf5, 0x43, 0x1f, 0xe6, 0x60, 0x5c, 0x36, 0x99, 0x84, - 0x86, 0x08, 0xf9, 0x0c, 0x72, 0x3d, 0x72, 0x3c, 0x43, 0xf6, 0x61, 0x8e, 0x15, 0x2b, 0xfc, 0x70, - 0x84, 0xbb, 0xe2, 0xe6, 0xe1, 0x71, 0x59, 0x09, 0xdc, 0x87, 0x33, 0x29, 0x4f, 0x8b, 0x9e, 0x0d, - 0xf4, 0x81, 0x87, 0xfc, 0x13, 0xe2, 0xe1, 0x47, 0x23, 0x5a, 0xf0, 0x5a, 0xe2, 0x3d, 0xf2, 0xf8, - 0xe4, 0x9c, 0xc0, 0x9e, 0x3c, 0xfc, 0xed, 0xcd, 0xfd, 0x69, 0x05, 0x66, 0x25, 0x73, 0x3a, 0xc5, - 0x12, 0x57, 0xf5, 0x3b, 0x8a, 0x65, 0xe6, 0x4e, 0xce, 0x32, 0xa3, 0xaa, 0x3d, 0x32, 0xb0, 0x6a, - 0xe7, 0x8f, 0xa9, 0xda, 0xcf, 0x41, 0x49, 0xd0, 0xf5, 0xaa, 0x05, 0x66, 0xb7, 0xdc, 0x71, 0x8b, - 0x36, 0x2c, 0xa1, 0xe8, 0x37, 0xe3, 0x46, 0xc0, 0x97, 0xc6, 0xb7, 0xb3, 0x32, 0x02, 0xfe, 0x66, - 0xfa, 0x34, 0x85, 0xd0, 0xe9, 0x14, 0x7b, 0x3a, 0x9d, 0x5d, 0x38, 0xef, 0xed, 0x9a, 0x9d, 0xba, - 0xab, 0xdb, 0xc6, 0x0e, 0x26, 0xdb, 0xde, 0x22, 0xcb, 0xa8, 0x35, 0x6f, 0xda, 0x37, 0x3b, 0xc4, - 0x6e, 0x60, 0xe6, 0x58, 0x4a, 0xf5, 0x4f, 0x0a, 0x76, 0xe7, 0xb5, 0xc3, 0x90, 0xf1, 0xe1, 0xb4, - 0xd0, 0x6d, 0xa8, 0xe8, 0x2c, 0xe9, 0xc0, 0xe7, 0xfb, 0x52, 0x3f, 0x53, 0xe6, 0xd4, 0xc1, 0x83, - 0x8b, 0x95, 0x5a, 0xd8, 0x1b, 0xab, 0xa4, 0xd0, 0xbb, 0x30, 0x21, 0x94, 0x47, 0x24, 0x47, 0xcb, - 0xfd, 0xd0, 0x9e, 0xa1, 0x6b, 0xa1, 0x37, 0xd5, 0xfe, 0x38, 0x4a, 0x0e, 0xbd, 0x01, 0xe7, 0xb6, - 0x82, 0x77, 0xe1, 0xb1, 0x77, 0x51, 0xd7, 0x3d, 0x72, 0x0b, 0xaf, 0x32, 0x2f, 0x53, 0xae, 0x5f, - 0x10, 0xe3, 0x73, 0x2e, 0xf6, 0xc6, 0x04, 0x16, 0xee, 0xd1, 0xbb, 0xc7, 0xbc, 0x5e, 0x39, 0xd6, - 0xbc, 0x1e, 0x09, 0xbc, 0xc7, 0x33, 0x09, 0xbc, 0x7b, 0x7b, 0x86, 0x63, 0x05, 0xde, 0x13, 0x27, - 0x18, 0x78, 0x8b, 0xb5, 0xd0, 0x64, 0xc6, 0x6b, 0xa1, 0x57, 0x61, 0xc2, 0xd8, 0x21, 0xc6, 0x2e, - 0x4b, 0xf5, 0xde, 0xd1, 0x2d, 0x96, 0x34, 0x2f, 0x87, 0x2b, 0xea, 0x45, 0x15, 0x88, 0xa3, 0xb8, - 0x83, 0xcd, 0x12, 0xdf, 0xce, 0xc1, 0xd3, 0x3d, 0xfd, 0x01, 0xba, 0x12, 0x71, 0x99, 0xb9, 0xe8, - 0xd6, 0x62, 0x0f, 0x47, 0x39, 0xe8, 0xdc, 0xf1, 0x27, 0xa3, 0x70, 0x66, 0x51, 0xb7, 0x88, 0xdd, - 0xd4, 0x23, 0x93, 0xc6, 0x0b, 0x50, 0xf2, 0x8c, 0x1d, 0xd2, 0xec, 0x5a, 0x41, 0xba, 0x4a, 0xaa, - 0x87, 0x26, 0xda, 0xb1, 0xc4, 0x90, 0xf9, 0x74, 0x3a, 0x98, 0x23, 0x51, 0x6c, 0x39, 0x8e, 0x12, - 0x03, 0xbd, 0x02, 0x93, 0x22, 0x51, 0xec, 0xd8, 0x4b, 0xba, 0x4f, 0xbc, 0x6a, 0x9e, 0xf9, 0x36, - 0x44, 0xe5, 0xbd, 0x1a, 0x81, 0xe0, 0x18, 0x26, 0xe5, 0xe4, 0x9b, 0x6d, 0x72, 0xdf, 0xb1, 0x83, - 0xc5, 0xb5, 0xe4, 0xb4, 0x29, 0xda, 0xb1, 0xc4, 0x40, 0xdf, 0x4a, 0x66, 0x3a, 0xbf, 0x38, 0xa0, - 0xe6, 0xa6, 0x0c, 0x56, 0x1f, 0x76, 0xf4, 0xb5, 0x1c, 0x54, 0x3a, 0xc4, 0xf5, 0x4c, 0xcf, 0x27, - 0xb6, 0x41, 0x44, 0xa6, 0xf3, 0x66, 0x16, 0xd6, 0xd4, 0x08, 0xc9, 0x72, 0x47, 0xab, 0x34, 0x60, - 0x95, 0xe9, 0xe9, 0xac, 0xa2, 0x07, 0x33, 0x9c, 0x7b, 0x70, 0x76, 0x51, 0xf7, 0x8d, 0x9d, 0x6e, - 0x87, 0x5b, 0x74, 0xd7, 0xd5, 0x7d, 0xd3, 0xb1, 0xd1, 0xf3, 0x30, 0x46, 0x6c, 0x7d, 0xcb, 0x22, - 0xcd, 0xf8, 0x3e, 0xd1, 0x55, 0xde, 0x8c, 0x03, 0x38, 0xfa, 0x14, 0x54, 0xda, 0xfa, 0xbd, 0x25, - 0xd1, 0x53, 0xa8, 0xa9, 0x3c, 0x45, 0xb1, 0x16, 0x82, 0xb0, 0x8a, 0x37, 0xf7, 0x65, 0x38, 0xcb, - 0x59, 0xae, 0xe9, 0x1d, 0x65, 0x44, 0x8f, 0xb0, 0x25, 0xb3, 0x04, 0xd3, 0x86, 0x4b, 0x74, 0x9f, - 0xac, 0x6c, 0xaf, 0x3b, 0xfe, 0xd5, 0x7b, 0xa6, 0xe7, 0x8b, 0xbd, 0x19, 0x99, 0x0f, 0x5a, 0x8c, - 0xc1, 0x71, 0xa2, 0xc7, 0xdc, 0x77, 0xc6, 0x00, 0x5d, 0x6d, 0x9b, 0xbe, 0x1f, 0x0d, 0xea, 0x2e, - 0x43, 0x71, 0xcb, 0x75, 0x76, 0x65, 0x64, 0x29, 0xf7, 0x57, 0xea, 0xac, 0x15, 0x0b, 0x28, 0xf5, - 0x29, 0xc6, 0x8e, 0x6e, 0xdb, 0xc4, 0x0a, 0xc3, 0x30, 0xe9, 0x53, 0x16, 0x25, 0x04, 0x2b, 0x58, - 0xec, 0xbc, 0x09, 0xff, 0xa5, 0xe4, 0xbe, 0xc2, 0xf3, 0x26, 0x21, 0x08, 0xab, 0x78, 0x91, 0xa5, - 0x79, 0x21, 0xeb, 0xa5, 0xf9, 0x68, 0x06, 0x4b, 0xf3, 0xf4, 0x73, 0x18, 0xc5, 0x53, 0x39, 0x87, - 0x31, 0x76, 0xd4, 0x73, 0x18, 0xa5, 0x8c, 0x27, 0xbf, 0x8f, 0x54, 0x97, 0xc8, 0x97, 0x79, 0xef, - 0x0d, 0x6a, 0xff, 0x09, 0xf5, 0x3c, 0x56, 0x64, 0xf1, 0xd8, 0xac, 0xf5, 0x3e, 0x1e, 0x81, 0xe9, - 0xb8, 0xcb, 0x45, 0xf7, 0x61, 0xcc, 0xe0, 0x1e, 0x4a, 0xac, 0xb2, 0xb4, 0x81, 0x27, 0x9a, 0xa4, - 0xbf, 0x13, 0x87, 0x15, 0x38, 0x04, 0x07, 0x0c, 0xd1, 0x57, 0x73, 0x50, 0x36, 0x02, 0x27, 0x25, - 0xb2, 0x58, 0x03, 0xb3, 0x4f, 0x71, 0x7a, 0xfc, 0x04, 0x82, 0x84, 0xe0, 0x90, 0xe9, 0xdc, 0xcf, - 0x46, 0xa0, 0xa2, 0xfa, 0xa7, 0x2f, 0x2a, 0x5a, 0xc6, 0xc7, 0xe3, 0x7f, 0x2b, 0xb6, 0x2b, 0x0f, - 0xc5, 0x85, 0x42, 0x50, 0x6c, 0x6a, 0xcd, 0x37, 0xb7, 0x68, 0x68, 0x43, 0x5f, 0x4e, 0xe8, 0xa7, - 0xc2, 0x36, 0x45, 0x71, 0x3a, 0x50, 0xf0, 0x3a, 0xc4, 0x10, 0x8f, 0xbb, 0x9e, 0x9d, 0xda, 0x68, - 0x1d, 0x62, 0x84, 0x0e, 0x9d, 0xfe, 0xc2, 0x8c, 0x13, 0xba, 0x07, 0x45, 0xcf, 0xd7, 0xfd, 0xae, - 0x27, 0x32, 0x5c, 0x19, 0xaa, 0xaa, 0xc6, 0xe8, 0x86, 0x5e, 0x9c, 0xff, 0xc6, 0x82, 0xdf, 0xdc, - 0x35, 0x98, 0x49, 0xe8, 0x35, 0x75, 0xed, 0xe4, 0x5e, 0xc7, 0x25, 0x1e, 0x8d, 0x8e, 0xe2, 0xe1, - 0xe2, 0x55, 0x09, 0xc1, 0x0a, 0xd6, 0xdc, 0xcf, 0x73, 0x30, 0xa5, 0x50, 0x5a, 0x35, 0x3d, 0x1f, - 0x7d, 0x21, 0xf1, 0xaa, 0xe6, 0x8f, 0xf6, 0xaa, 0x68, 0x6f, 0xf6, 0xa2, 0xa4, 0x7d, 0x07, 0x2d, - 0xca, 0x6b, 0x72, 0x60, 0xd4, 0xf4, 0x49, 0xdb, 0x13, 0x59, 0xca, 0xd7, 0xb3, 0x1b, 0xb3, 0x30, - 0x9b, 0xb2, 0x42, 0x19, 0x60, 0xce, 0x67, 0xee, 0x6f, 0x96, 0x23, 0x8f, 0x48, 0xdf, 0x1f, 0x3b, - 0xee, 0x47, 0x9b, 0xea, 0x5d, 0x4f, 0xd9, 0x80, 0x0d, 0x8f, 0xfb, 0x29, 0x30, 0x1c, 0xc1, 0x44, - 0x7b, 0x50, 0xf2, 0x49, 0xbb, 0x63, 0xe9, 0x7e, 0x70, 0x46, 0xe0, 0xda, 0x80, 0x4f, 0xb0, 0x29, - 0xc8, 0xf1, 0x59, 0x2a, 0xf8, 0x85, 0x25, 0x1b, 0xd4, 0x86, 0x31, 0x8f, 0xef, 0x93, 0x08, 0x3d, - 0x5b, 0x1e, 0x90, 0x63, 0xb0, 0xeb, 0xc2, 0x9c, 0x87, 0xf8, 0x81, 0x03, 0x1e, 0xe8, 0xcb, 0x30, - 0xda, 0x36, 0x6d, 0xd3, 0x61, 0xd9, 0x91, 0xca, 0x95, 0xb7, 0xb2, 0x35, 0xa4, 0xf9, 0x35, 0x4a, - 0x9b, 0x4f, 0x03, 0xf2, 0x7d, 0xb1, 0x36, 0xcc, 0xd9, 0xb2, 0x83, 0x81, 0x86, 0x08, 0xaa, 0x45, - 0x8c, 0xfe, 0x85, 0x8c, 0x65, 0x90, 0x31, 0x7b, 0x74, 0x36, 0x0a, 0x9a, 0xb1, 0xe4, 0x8f, 0xee, - 0x43, 0x61, 0xdb, 0xb4, 0x88, 0xd8, 0x77, 0xbe, 0x9d, 0xb1, 0x1c, 0xcb, 0xa6, 0x45, 0xb8, 0x0c, - 0xe1, 0xc9, 0x14, 0xd3, 0x22, 0x98, 0xf1, 0x64, 0x03, 0xe1, 0x12, 0x4e, 0x43, 0x6c, 0xba, 0x65, - 0x3d, 0x10, 0x58, 0x90, 0x8f, 0x0d, 0x44, 0xd0, 0x8c, 0x25, 0x7f, 0xf4, 0xeb, 0xb9, 0x30, 0x6b, - 0xc8, 0x4f, 0x6b, 0xbe, 0x9d, 0xb1, 0x2c, 0x22, 0x57, 0xc3, 0x45, 0x91, 0x61, 0x7b, 0x22, 0x8f, - 0x78, 0x1f, 0x0a, 0x7a, 0x7b, 0xaf, 0x23, 0x42, 0x95, 0xac, 0xdf, 0x48, 0xad, 0xbd, 0xd7, 0x89, - 0xbd, 0x91, 0xda, 0xda, 0x46, 0x03, 0x33, 0x9e, 0xd4, 0x34, 0x76, 0xf5, 0xed, 0x5d, 0xbd, 0x0a, - 0x43, 0x31, 0x8d, 0x1b, 0x94, 0x76, 0xcc, 0x34, 0x58, 0x1b, 0xe6, 0x6c, 0xe9, 0xb3, 0xb7, 0xf7, - 0x7c, 0xbf, 0x5a, 0x19, 0xca, 0xb3, 0xaf, 0xed, 0xf9, 0x7e, 0xec, 0xd9, 0xd7, 0x36, 0x36, 0x37, - 0x31, 0xe3, 0x49, 0x79, 0xdb, 0xba, 0xef, 0x89, 0x24, 0x54, 0xd6, 0xbc, 0xd7, 0x75, 0xdf, 0x8b, - 0xf1, 0x5e, 0xaf, 0x6d, 0x6a, 0x98, 0xf1, 0x44, 0x77, 0x20, 0xef, 0xd9, 0x5e, 0x75, 0x82, 0xb1, - 0x7e, 0x33, 0x63, 0xd6, 0x9a, 0x2d, 0x38, 0xcb, 0xa3, 0x27, 0xda, 0xba, 0x86, 0x29, 0x43, 0xc6, - 0x77, 0xcf, 0xab, 0x4e, 0x0e, 0x87, 0xef, 0x5e, 0x82, 0xef, 0x06, 0xe5, 0xbb, 0xe7, 0xa1, 0xaf, - 0xe5, 0xa0, 0xd8, 0xe9, 0x6e, 0x69, 0xdd, 0xad, 0xea, 0x14, 0xe3, 0xfd, 0xf9, 0x8c, 0x79, 0x37, - 0x18, 0x71, 0xce, 0x5e, 0xc6, 0x18, 0xbc, 0x11, 0x0b, 0xce, 0x4c, 0x08, 0xce, 0xb5, 0x3a, 0x3d, - 0x14, 0x21, 0xae, 0x31, 0x6a, 0x31, 0x21, 0x78, 0x23, 0x16, 0x9c, 0x03, 0x21, 0x2c, 0x7d, 0xab, - 0x3a, 0x33, 0x2c, 0x21, 0x2c, 0x3d, 0x45, 0x08, 0x4b, 0xe7, 0x42, 0x58, 0xfa, 0x16, 0x55, 0xfd, - 0x9d, 0xe6, 0xb6, 0x57, 0x45, 0x43, 0x51, 0xfd, 0xeb, 0xcd, 0xed, 0xb8, 0xea, 0x5f, 0x5f, 0x5a, - 0xd6, 0x30, 0xe3, 0x49, 0x5d, 0x8e, 0x67, 0xe9, 0xc6, 0x6e, 0xf5, 0xcc, 0x50, 0x5c, 0x8e, 0x46, - 0x69, 0xc7, 0x5c, 0x0e, 0x6b, 0xc3, 0x9c, 0x2d, 0xfa, 0x9d, 0x1c, 0x54, 0xc4, 0xd9, 0xb3, 0x6b, - 0xae, 0xd9, 0xac, 0x9e, 0xcd, 0x66, 0x85, 0x18, 0x17, 0x23, 0xe4, 0xc0, 0x85, 0x91, 0xd9, 0x05, - 0x05, 0x82, 0x55, 0x41, 0xd0, 0x1f, 0xe5, 0x60, 0x52, 0x8f, 0x9c, 0x32, 0xac, 0x3e, 0xc9, 0x64, - 0xdb, 0xca, 0x7a, 0x4a, 0x88, 0x1e, 0x65, 0x64, 0xe2, 0xc9, 0x6c, 0x6a, 0x14, 0x88, 0x63, 0x12, - 0x31, 0xf5, 0xf5, 0x7c, 0xd7, 0xec, 0x90, 0xea, 0xb9, 0xa1, 0xa8, 0xaf, 0xc6, 0x88, 0xc7, 0xd4, - 0x97, 0x37, 0x62, 0xc1, 0x99, 0x4d, 0xdd, 0x84, 0x2f, 0xc9, 0xab, 0x4f, 0x0d, 0x65, 0xea, 0x0e, - 0x16, 0xfc, 0xd1, 0xa9, 0x5b, 0xb4, 0xe2, 0x80, 0x39, 0xd5, 0x65, 0x97, 0x34, 0x4d, 0xaf, 0x5a, - 0x1d, 0x8a, 0x2e, 0x63, 0x4a, 0x3b, 0xa6, 0xcb, 0xac, 0x0d, 0x73, 0xb6, 0xd4, 0x9d, 0xdb, 0xde, - 0x5e, 0xf5, 0xe9, 0xa1, 0xb8, 0xf3, 0x75, 0x6f, 0x2f, 0xe6, 0xce, 0xd7, 0xb5, 0x0d, 0x4c, 0x19, - 0x0a, 0x77, 0x6e, 0x79, 0xba, 0x5b, 0x9d, 0x1d, 0x92, 0x3b, 0xa7, 0xc4, 0x13, 0xee, 0x9c, 0x36, - 0x62, 0xc1, 0x99, 0x69, 0x01, 0xbb, 0x5e, 0x66, 0x1a, 0xd5, 0x4f, 0x0c, 0x45, 0x0b, 0xae, 0x71, - 0xea, 0x31, 0x2d, 0x10, 0xad, 0x38, 0x60, 0x8e, 0x9e, 0xa3, 0x51, 0x6d, 0xc7, 0x32, 0x0d, 0xdd, - 0xab, 0x3e, 0xc3, 0x4e, 0x1e, 0x8e, 0xf3, 0x98, 0x93, 0xb7, 0x61, 0x09, 0x45, 0x3f, 0xc8, 0xc1, - 0x54, 0x6c, 0x8f, 0xad, 0x7a, 0x9e, 0x89, 0x6e, 0x64, 0x2c, 0x7a, 0x3d, 0xca, 0x85, 0x3f, 0x82, - 0x3c, 0xac, 0x11, 0xdf, 0xa1, 0x89, 0x0b, 0x85, 0xbe, 0x95, 0x83, 0xb2, 0x6c, 0xab, 0x5e, 0x60, - 0x22, 0xbe, 0x33, 0x2c, 0x11, 0xb9, 0x70, 0xf2, 0xe8, 0x61, 0x78, 0xca, 0x20, 0x14, 0x81, 0x79, - 0x6d, 0xa6, 0xf3, 0x9a, 0xef, 0x12, 0xbd, 0x5d, 0xbd, 0x38, 0x14, 0xaf, 0x8d, 0x43, 0x0e, 0x31, - 0xaf, 0xad, 0x40, 0xb0, 0x2a, 0x08, 0x7b, 0xa5, 0x7a, 0xf4, 0xe4, 0x5f, 0xf5, 0xd2, 0x50, 0x5e, - 0x69, 0xfc, 0x7c, 0x61, 0xf4, 0x95, 0xc6, 0xa0, 0x38, 0x2e, 0x14, 0xfa, 0x8b, 0x1c, 0xcc, 0xe8, - 0xf1, 0x63, 0xc2, 0xd5, 0xff, 0xc1, 0x44, 0x25, 0xc3, 0x10, 0x35, 0x72, 0x1c, 0x99, 0x09, 0xfb, - 0xb4, 0x10, 0x76, 0x26, 0x01, 0xc7, 0x49, 0xd1, 0x68, 0x90, 0xe2, 0x6d, 0xfb, 0x9d, 0xea, 0xdc, - 0x50, 0x82, 0x14, 0x6d, 0xdb, 0x8f, 0xaf, 0x8b, 0xb4, 0xe5, 0xcd, 0x06, 0x66, 0x3c, 0x79, 0x94, - 0x46, 0x5c, 0xd7, 0xf4, 0xab, 0xcf, 0x0e, 0x27, 0x4a, 0x63, 0xc4, 0xe3, 0x51, 0x1a, 0x6b, 0xc4, - 0x82, 0xf3, 0x6c, 0x17, 0x20, 0xcc, 0x2d, 0xa4, 0xe4, 0x6f, 0x37, 0xd4, 0xfc, 0x6d, 0xe5, 0xca, - 0xab, 0x7d, 0x67, 0xd0, 0xb5, 0xff, 0x53, 0x73, 0x7d, 0x73, 0x5b, 0x37, 0x7c, 0x25, 0xf9, 0x3b, - 0xfb, 0xed, 0x1c, 0x4c, 0x44, 0xf2, 0x09, 0x29, 0xac, 0x77, 0xa2, 0xac, 0x71, 0xf6, 0x5b, 0x8e, - 0xaa, 0x44, 0xbf, 0x91, 0x83, 0xb2, 0xcc, 0x2c, 0xa4, 0x48, 0xd3, 0x8c, 0x4a, 0x33, 0x68, 0xa6, - 0x94, 0xb1, 0x4a, 0x97, 0x84, 0x8e, 0x4d, 0x24, 0xc5, 0x30, 0xfc, 0xb1, 0x91, 0xec, 0xd2, 0x25, - 0xfa, 0x28, 0x07, 0xe3, 0x6a, 0xa2, 0x21, 0x45, 0xa0, 0x56, 0x54, 0xa0, 0x8d, 0x6c, 0x0e, 0x47, - 0x1d, 0xf2, 0xae, 0x64, 0xce, 0x61, 0xf8, 0xef, 0x2a, 0x76, 0x43, 0x56, 0x95, 0xe4, 0x9b, 0x39, - 0x80, 0x30, 0x01, 0x91, 0x22, 0x0a, 0x89, 0x8a, 0x32, 0xe8, 0x1e, 0x35, 0xe7, 0xd5, 0x7b, 0x54, - 0x64, 0x36, 0x62, 0xf8, 0xa3, 0xb2, 0xb6, 0xb1, 0xb9, 0xd9, 0x43, 0x92, 0x6f, 0xe4, 0xa0, 0x2c, - 0x73, 0x13, 0xc3, 0x1f, 0x94, 0xf5, 0xda, 0xa6, 0xc6, 0x57, 0x0f, 0x49, 0x51, 0xbe, 0x9e, 0x83, - 0x52, 0x90, 0xab, 0x48, 0x91, 0xc4, 0x88, 0x4a, 0x32, 0xe8, 0x99, 0x3e, 0x6d, 0x5d, 0xeb, 0x31, - 0x24, 0x4c, 0x8e, 0xbd, 0x13, 0x93, 0x63, 0xa3, 0x97, 0x1c, 0x1f, 0xe4, 0xa0, 0xa2, 0xe4, 0x31, - 0x52, 0x44, 0xd9, 0x8e, 0x8a, 0x32, 0xe8, 0xf6, 0x8c, 0x60, 0xd6, 0x5b, 0x1a, 0x25, 0xa1, 0x31, - 0x7c, 0x69, 0x04, 0xb3, 0x43, 0xa5, 0x09, 0x32, 0x1b, 0x27, 0x22, 0x0d, 0x65, 0xd6, 0xdb, 0x9c, - 0x65, 0x96, 0x63, 0xf8, 0xe6, 0x7c, 0x7d, 0x69, 0x59, 0x3b, 0xc4, 0xc9, 0x85, 0x29, 0x8f, 0xe1, - 0xdb, 0x33, 0xe7, 0x95, 0x2e, 0xcb, 0x77, 0x73, 0x30, 0x1d, 0xcf, 0x7b, 0xa4, 0x48, 0xb4, 0x1b, - 0x95, 0x68, 0xd0, 0x8b, 0xff, 0x2a, 0xc7, 0x74, 0xb9, 0xfe, 0x20, 0x07, 0x67, 0x52, 0x72, 0x1e, - 0x29, 0xa2, 0xd9, 0x51, 0xd1, 0x6e, 0x0f, 0xeb, 0xce, 0x68, 0x5c, 0xb3, 0x95, 0xa4, 0xc7, 0xf0, - 0x35, 0x5b, 0x30, 0xeb, 0x1d, 0x4e, 0xa8, 0xc9, 0x8f, 0xe1, 0x87, 0x13, 0xc9, 0xb3, 0x15, 0x71, - 0xfd, 0x0e, 0xd3, 0x20, 0xc3, 0xd7, 0x6f, 0xce, 0xab, 0xf7, 0x3c, 0x11, 0x24, 0x45, 0x86, 0x3f, - 0x4f, 0xac, 0x6b, 0x1b, 0x87, 0xce, 0x13, 0x32, 0x41, 0x72, 0x12, 0xf3, 0x04, 0x63, 0xd6, 0x5b, - 0x63, 0xd4, 0x44, 0xc9, 0xf0, 0x35, 0x26, 0xe0, 0x96, 0x2e, 0xcf, 0xf7, 0x72, 0xca, 0xed, 0x24, - 0x25, 0xfb, 0x91, 0x22, 0x97, 0x13, 0x95, 0xeb, 0xad, 0xa1, 0x9d, 0x43, 0x56, 0xe5, 0xfb, 0x38, - 0x07, 0x93, 0xd1, 0xd4, 0x47, 0x8a, 0x64, 0x66, 0x54, 0x32, 0x6d, 0x08, 0x37, 0x9f, 0xe2, 0x9e, - 0x3b, 0x9e, 0xfb, 0x18, 0xbe, 0xe7, 0x56, 0x39, 0xf6, 0x7e, 0x97, 0x69, 0x69, 0x8f, 0xe1, 0xbf, - 0xcb, 0xde, 0x97, 0x39, 0x55, 0xf9, 0xbe, 0x9f, 0x83, 0x73, 0xe9, 0xb9, 0x8e, 0x14, 0x09, 0xf7, - 0xa2, 0x12, 0xbe, 0x3d, 0xc4, 0x2b, 0xdf, 0xf1, 0x58, 0x45, 0x26, 0x3b, 0x86, 0x1f, 0xab, 0x68, - 0xcb, 0x9b, 0x8d, 0xc3, 0x62, 0xb8, 0x30, 0xef, 0x71, 0x02, 0x31, 0x1c, 0x67, 0x96, 0x2a, 0xcd, - 0x9c, 0x1f, 0x39, 0x71, 0xc4, 0x8f, 0x23, 0xa1, 0xf7, 0xe4, 0x01, 0x28, 0x7e, 0x4e, 0xe8, 0xd3, - 0xfd, 0xe7, 0x54, 0x0e, 0x3f, 0xe7, 0xf4, 0xd7, 0x05, 0x98, 0x8a, 0xe5, 0x17, 0x58, 0xe9, 0x11, - 0xfa, 0x93, 0xd5, 0xe9, 0xca, 0x45, 0xef, 0x61, 0x5f, 0x0d, 0x00, 0x38, 0xc4, 0x41, 0x1f, 0xe7, - 0x60, 0xea, 0xae, 0xee, 0x1b, 0x3b, 0x0d, 0xdd, 0xdf, 0xe1, 0x87, 0xd5, 0x32, 0x7a, 0x7b, 0x6f, - 0x46, 0xa9, 0x86, 0xe9, 0xc5, 0x18, 0x00, 0xc7, 0xf9, 0xa3, 0xe7, 0x61, 0xac, 0xe3, 0x58, 0x96, - 0x69, 0xb7, 0x44, 0xc1, 0x15, 0x99, 0x2f, 0x6f, 0xf0, 0x66, 0x1c, 0xc0, 0xa3, 0x85, 0xb2, 0x0a, - 0x99, 0x1c, 0x03, 0x89, 0x0d, 0xe9, 0xb1, 0x4e, 0x67, 0x8e, 0x3e, 0x2e, 0xa7, 0x33, 0xff, 0xb1, - 0x00, 0x28, 0x39, 0x07, 0x3e, 0xac, 0x94, 0xdc, 0x65, 0x28, 0x1a, 0xa1, 0xaa, 0x28, 0xe7, 0xa9, - 0xc5, 0x1b, 0x15, 0x50, 0x7e, 0xd3, 0xc1, 0x23, 0x46, 0xd7, 0x25, 0xc9, 0xca, 0x41, 0xbc, 0x1d, - 0x4b, 0x8c, 0x3e, 0x0b, 0x63, 0x7c, 0x94, 0xbc, 0xad, 0xf0, 0x5e, 0xe6, 0xc1, 0x40, 0x1f, 0x2f, - 0xff, 0x16, 0x2b, 0x14, 0xb4, 0x23, 0x6e, 0x63, 0x15, 0xfb, 0xbe, 0xd9, 0x5d, 0x93, 0x9d, 0xb1, - 0x42, 0xe8, 0x74, 0xca, 0x68, 0x0c, 0xa6, 0x53, 0x3f, 0x2b, 0xc2, 0x4c, 0xc2, 0x5d, 0x9e, 0xd2, - 0xc5, 0xca, 0x17, 0xa0, 0x44, 0xff, 0x2a, 0x75, 0x2c, 0xe4, 0x3b, 0xbc, 0x2e, 0xda, 0xb1, 0xc4, - 0x50, 0xee, 0x0f, 0xe6, 0x7b, 0xde, 0x1f, 0xbc, 0x1d, 0xb9, 0x44, 0x9d, 0x65, 0xad, 0xb3, 0x57, - 0x61, 0x82, 0x67, 0xeb, 0x83, 0x9b, 0x76, 0xa3, 0xd1, 0x9b, 0x56, 0xd7, 0x54, 0x20, 0x8e, 0xe2, - 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd6, 0xbd, 0xba, 0x0f, 0x93, 0x05, 0x2d, 0xde, 0xcd, 0x7a, 0xfa, - 0xec, 0xc3, 0xb2, 0xd4, 0x4b, 0xa9, 0xa5, 0x43, 0x2f, 0xa5, 0x2e, 0x40, 0xd9, 0xf3, 0xac, 0x37, - 0x88, 0x6b, 0x6e, 0xef, 0xb3, 0x0b, 0x91, 0x4a, 0xe1, 0x2d, 0x2d, 0x00, 0xe0, 0x10, 0xe7, 0x71, - 0x3c, 0x4f, 0xff, 0x0f, 0x39, 0x98, 0xe4, 0xe9, 0xad, 0x5a, 0xa7, 0xb3, 0xe8, 0x92, 0xa6, 0x47, - 0x5d, 0x4f, 0xc7, 0x35, 0xef, 0xe8, 0x3e, 0x09, 0xae, 0xc2, 0xf5, 0xe7, 0x7a, 0x1a, 0xb2, 0x33, - 0x56, 0x08, 0xa1, 0x67, 0x61, 0x54, 0xef, 0x74, 0x56, 0x96, 0x98, 0x0c, 0xf9, 0xf0, 0xd8, 0x40, - 0x8d, 0x36, 0x62, 0x0e, 0x43, 0xaf, 0xc1, 0xa4, 0x69, 0x7b, 0xbe, 0x6e, 0x59, 0xec, 0xcc, 0xfd, - 0xca, 0x12, 0x73, 0xf4, 0xf9, 0xf0, 0x10, 0xc8, 0x4a, 0x04, 0x8a, 0x63, 0xd8, 0x73, 0x7f, 0x5b, - 0x81, 0x99, 0x44, 0xb6, 0x0e, 0xcd, 0xc2, 0x88, 0xc9, 0x2f, 0x29, 0xe5, 0xeb, 0x20, 0x28, 0x8d, - 0xac, 0x2c, 0xe1, 0x11, 0xb3, 0xa9, 0x3a, 0x92, 0x91, 0x93, 0x73, 0x24, 0xb2, 0x56, 0x41, 0xfe, - 0xa8, 0xb5, 0x0a, 0xc2, 0xbb, 0x83, 0xe2, 0xee, 0x5d, 0xca, 0x85, 0xee, 0xf0, 0xbe, 0x21, 0x56, - 0xf0, 0x8f, 0x54, 0x3c, 0xe1, 0x26, 0x94, 0xf4, 0x8e, 0xc9, 0xef, 0x15, 0x17, 0xfb, 0xbe, 0xef, - 0x53, 0x6b, 0xac, 0xf0, 0x4b, 0xc5, 0x92, 0x48, 0xf2, 0x46, 0xf1, 0x58, 0xb6, 0x37, 0x8a, 0xd5, - 0x60, 0xa0, 0xf4, 0xd0, 0x60, 0xe0, 0x32, 0x14, 0x75, 0xc3, 0x37, 0xef, 0x10, 0x61, 0xc7, 0x32, - 0xc4, 0xa8, 0xb1, 0x56, 0x2c, 0xa0, 0xa2, 0xdc, 0xaf, 0x1f, 0x84, 0xbc, 0x90, 0x28, 0xf7, 0x1b, - 0x80, 0xb0, 0x8a, 0xc7, 0x7c, 0x2d, 0x53, 0x9a, 0xc0, 0xd7, 0x56, 0x62, 0xbe, 0x56, 0x05, 0xe2, - 0x28, 0x2e, 0xaa, 0xc1, 0x14, 0x6f, 0xb8, 0xd5, 0xb1, 0x1c, 0xbd, 0x49, 0xbb, 0x8f, 0x47, 0xb5, - 0xe2, 0x5a, 0x14, 0x8c, 0xe3, 0xf8, 0x3d, 0xdc, 0xf5, 0xc4, 0xe0, 0xee, 0x7a, 0x32, 0x1b, 0x77, - 0x1d, 0xb7, 0xc8, 0x3e, 0xdc, 0xf5, 0xfb, 0xf1, 0xca, 0x00, 0xfc, 0x94, 0xe6, 0xa0, 0xae, 0x95, - 0x9a, 0x57, 0x53, 0xbd, 0xfb, 0x7f, 0xa4, 0x8a, 0x00, 0x9f, 0x86, 0x09, 0xc7, 0x6d, 0xe9, 0xb6, - 0x79, 0x9f, 0x39, 0x1c, 0x8f, 0x9d, 0xd6, 0x2c, 0x73, 0x6d, 0xbd, 0xa9, 0x02, 0x70, 0x14, 0x0f, - 0xdd, 0x87, 0x72, 0x2b, 0xf0, 0xb2, 0xd5, 0x99, 0x4c, 0xfc, 0x4c, 0xd4, 0x6b, 0xf3, 0xeb, 0x41, - 0xb2, 0x0d, 0x87, 0xec, 0x94, 0x59, 0x09, 0x3d, 0x2e, 0xb3, 0xd2, 0xfb, 0x25, 0xe6, 0xc6, 0xa3, - 0xdb, 0x1c, 0xa7, 0x14, 0xf3, 0x7d, 0x06, 0xca, 0x22, 0x22, 0x10, 0x73, 0x57, 0xb9, 0xfe, 0x09, - 0xa1, 0x2a, 0x67, 0x12, 0xb5, 0x34, 0x56, 0x96, 0x70, 0x88, 0x7d, 0xc4, 0x00, 0x30, 0x52, 0xd3, - 0xa1, 0x90, 0x5d, 0x4d, 0x07, 0x0d, 0x9e, 0xe4, 0xf7, 0x6f, 0x35, 0x6d, 0x95, 0x05, 0x28, 0xa6, - 0xc1, 0xaf, 0xdf, 0xf2, 0xea, 0x7f, 0xe7, 0xc5, 0x43, 0x3c, 0x79, 0x35, 0x0d, 0x09, 0xa7, 0xf7, - 0x15, 0x9e, 0xce, 0xd2, 0xa5, 0xa7, 0x2b, 0x26, 0x3c, 0x5d, 0x08, 0xc4, 0x51, 0xdc, 0x1e, 0x6e, - 0xaa, 0x34, 0xb8, 0x9b, 0x2a, 0x67, 0xe5, 0xa6, 0xa2, 0x1a, 0x77, 0xcc, 0xa8, 0x12, 0x0e, 0x8d, - 0x2a, 0x6f, 0x43, 0xc5, 0x63, 0x6f, 0x92, 0xbf, 0xf0, 0x4a, 0xdf, 0x2f, 0x5c, 0x0b, 0x7b, 0x63, - 0x95, 0x94, 0x62, 0xe8, 0xe3, 0x27, 0x58, 0x28, 0x62, 0x0e, 0x8a, 0x2d, 0xd7, 0xe9, 0x76, 0xf8, - 0x9d, 0x01, 0xa1, 0xe4, 0xd7, 0x58, 0x0b, 0x16, 0x90, 0xc1, 0x9c, 0xc1, 0xf7, 0xca, 0x30, 0x15, - 0xdb, 0x67, 0x4c, 0xcd, 0x33, 0xe5, 0x4e, 0x39, 0xcf, 0x74, 0x09, 0x0a, 0x3e, 0x0d, 0x1a, 0x46, - 0xa2, 0xb7, 0xd2, 0x59, 0xb4, 0xc0, 0x20, 0xc9, 0xe2, 0x17, 0xf9, 0xa3, 0x17, 0xbf, 0x40, 0xff, - 0x0b, 0xca, 0x7a, 0xb3, 0xe9, 0x12, 0xcf, 0x23, 0x41, 0x35, 0x1d, 0xe6, 0xf3, 0x6b, 0x41, 0x23, - 0x0e, 0xe1, 0x6c, 0xa1, 0xda, 0xdc, 0xf6, 0x6e, 0x79, 0x22, 0x7b, 0xa4, 0x2e, 0x54, 0x97, 0x96, - 0x35, 0xda, 0x8e, 0x25, 0x06, 0x6a, 0xc2, 0xd4, 0xae, 0xbb, 0xb5, 0xb8, 0xa8, 0x1b, 0x3b, 0xe4, - 0x38, 0x19, 0x07, 0x56, 0x25, 0xf7, 0x46, 0x94, 0x02, 0x8e, 0x93, 0x14, 0x5c, 0x6e, 0x90, 0x7d, - 0x5f, 0xdf, 0x3a, 0x4e, 0x4c, 0x18, 0x70, 0x51, 0x29, 0xe0, 0x38, 0x49, 0x1a, 0xc1, 0xed, 0xba, - 0x5b, 0xc1, 0x8d, 0x76, 0x51, 0x95, 0x4b, 0x46, 0x70, 0x37, 0x42, 0x10, 0x56, 0xf1, 0xe8, 0x80, - 0xed, 0xba, 0x5b, 0x98, 0xe8, 0x56, 0x5b, 0x14, 0x16, 0x94, 0x03, 0x76, 0x43, 0xb4, 0x63, 0x89, - 0x81, 0x3a, 0x80, 0xe8, 0xd3, 0xb1, 0xf7, 0x2e, 0xaf, 0xe4, 0x8a, 0x45, 0xdf, 0x73, 0x69, 0x4f, - 0x23, 0x91, 0xd4, 0x07, 0x3a, 0x47, 0xdd, 0xdd, 0x8d, 0x04, 0x1d, 0x9c, 0x42, 0x1b, 0xbd, 0x05, - 0x4f, 0xed, 0xba, 0x5b, 0x22, 0xed, 0xdf, 0x70, 0x4d, 0xdb, 0x30, 0x3b, 0x3a, 0xaf, 0x11, 0x50, - 0x89, 0xd6, 0x41, 0xbc, 0x91, 0x8e, 0x86, 0x7b, 0xf5, 0x8f, 0x26, 0x3d, 0xc7, 0x33, 0x49, 0x7a, - 0xc6, 0xcc, 0xf5, 0x51, 0x2f, 0x76, 0x33, 0x98, 0x7f, 0xfa, 0x61, 0x0e, 0x10, 0x3b, 0x61, 0x15, - 0x7c, 0x0d, 0x84, 0x39, 0x3f, 0xb4, 0x00, 0x65, 0xe6, 0xfd, 0x94, 0x4b, 0xaf, 0x32, 0x7b, 0x70, - 0x2d, 0x00, 0xe0, 0x10, 0x87, 0xae, 0x51, 0x1c, 0xab, 0x49, 0x64, 0xa5, 0x0a, 0xb9, 0x46, 0xb9, - 0xc9, 0x5a, 0xb1, 0x80, 0xa2, 0x6b, 0x30, 0xe3, 0x92, 0x2d, 0xdd, 0xd2, 0x6d, 0x83, 0x68, 0xbe, - 0xab, 0xfb, 0xa4, 0xb5, 0x2f, 0x3c, 0x89, 0x3c, 0xc6, 0x8a, 0xe3, 0x08, 0x38, 0xd9, 0x67, 0xee, - 0x9f, 0x4b, 0x30, 0x1d, 0x3f, 0x1a, 0xf6, 0xb0, 0x5c, 0xed, 0x02, 0x94, 0x3b, 0xba, 0xeb, 0x9b, - 0x4a, 0x1d, 0x0f, 0xf9, 0x54, 0x8d, 0x00, 0x80, 0x43, 0x1c, 0xba, 0xec, 0x67, 0x65, 0x5a, 0x85, - 0x84, 0x72, 0xd9, 0xcf, 0xca, 0xb8, 0x62, 0x0e, 0x4b, 0x2f, 0x0e, 0x51, 0x38, 0xb1, 0xe2, 0x10, - 0x8f, 0x44, 0xdd, 0xd7, 0x0f, 0x92, 0x69, 0xb2, 0x77, 0x32, 0x3e, 0xf7, 0xd7, 0xdf, 0xb2, 0x6b, - 0xc2, 0x50, 0xf5, 0x59, 0x14, 0xc3, 0xd8, 0xc8, 0x42, 0xa4, 0x88, 0xa1, 0xf0, 0xd5, 0x53, 0xa4, - 0x09, 0x47, 0x59, 0xa3, 0x06, 0x9c, 0xb5, 0xcc, 0xb6, 0x48, 0xf8, 0x79, 0x0d, 0xe2, 0xf2, 0xea, - 0xc8, 0xcc, 0x51, 0xe7, 0xc3, 0x44, 0xc8, 0x6a, 0x0a, 0x0e, 0x4e, 0xed, 0x89, 0x9e, 0x87, 0xb1, - 0x3b, 0xc4, 0x65, 0x97, 0xf7, 0x21, 0x5a, 0xb1, 0xfd, 0x0d, 0xde, 0x8c, 0x03, 0x38, 0x7a, 0x0b, - 0x0a, 0x9e, 0xee, 0x59, 0x22, 0x50, 0x3b, 0xc6, 0x51, 0xe6, 0x9a, 0xb6, 0x2a, 0xd4, 0x83, 0xa5, - 0x68, 0xe9, 0x6f, 0xcc, 0x48, 0x9e, 0x52, 0xc0, 0x16, 0x6e, 0xb7, 0x4c, 0x1c, 0xb6, 0xdd, 0x32, - 0x98, 0x53, 0xfc, 0x7e, 0x11, 0xa6, 0x62, 0x67, 0x3d, 0x1f, 0xe6, 0x5a, 0xa4, 0xa7, 0x18, 0x39, - 0xc4, 0x53, 0xbc, 0x00, 0x25, 0xc3, 0x32, 0x89, 0xed, 0xaf, 0x34, 0x85, 0x47, 0x09, 0xaf, 0x94, - 0xf3, 0xf6, 0x25, 0x2c, 0x31, 0x4e, 0xdb, 0xaf, 0xa8, 0x0e, 0x60, 0xf4, 0xa8, 0x45, 0x67, 0x8a, - 0xc3, 0xfc, 0xf8, 0x4f, 0x36, 0x57, 0xdb, 0x63, 0x2f, 0xf6, 0x91, 0x2f, 0x22, 0x1d, 0x6c, 0xb2, - 0x94, 0xb3, 0xde, 0x64, 0x19, 0xcc, 0x46, 0xfe, 0x7e, 0x04, 0x4a, 0xeb, 0xb5, 0x4d, 0x8d, 0x15, - 0x57, 0x7e, 0x3b, 0x5a, 0x3e, 0x7a, 0x10, 0x21, 0x93, 0x75, 0xa2, 0x97, 0xa9, 0x69, 0xf5, 0x5d, - 0x22, 0xba, 0xcc, 0xad, 0x8f, 0xae, 0x33, 0x79, 0x77, 0xb4, 0x08, 0x05, 0x7b, 0xb7, 0xdf, 0x6f, - 0x68, 0xb0, 0x31, 0x5b, 0xbf, 0x41, 0xf6, 0x31, 0xeb, 0x8c, 0x6e, 0x01, 0x18, 0x2e, 0x69, 0x12, - 0xdb, 0x37, 0xc5, 0x27, 0xcc, 0xfa, 0xdb, 0x5f, 0x58, 0x94, 0x9d, 0xb1, 0x42, 0x68, 0xee, 0x1b, - 0x45, 0x98, 0x8e, 0x9f, 0xe9, 0x7e, 0x98, 0xcb, 0x79, 0x1e, 0xc6, 0xbc, 0x2e, 0x2b, 0x70, 0x23, - 0x9c, 0x8e, 0x9c, 0x06, 0x34, 0xde, 0x8c, 0x03, 0x78, 0xba, 0x2b, 0xc9, 0x9f, 0x8a, 0x2b, 0x29, - 0x1c, 0xd5, 0x95, 0x64, 0x1d, 0xd0, 0x7c, 0x90, 0xfc, 0x3c, 0xc4, 0x3b, 0x19, 0x9f, 0xc2, 0xef, - 0xc3, 0x97, 0x10, 0x61, 0xd5, 0x63, 0x99, 0x94, 0x86, 0x09, 0x0c, 0x31, 0xb1, 0x8f, 0xfa, 0x18, - 0x56, 0xec, 0xfb, 0xe9, 0x28, 0x4c, 0x46, 0x0f, 0x69, 0xd2, 0x65, 0xf1, 0x8e, 0xe3, 0xf9, 0x22, - 0x59, 0x10, 0xff, 0x8e, 0xe1, 0xf5, 0x10, 0x84, 0x55, 0xbc, 0xa3, 0xcd, 0xc9, 0xcf, 0xc3, 0x98, - 0xa8, 0x45, 0x27, 0xa6, 0x64, 0x69, 0x45, 0xa2, 0x5e, 0x1d, 0x0e, 0xe0, 0xff, 0x3d, 0x21, 0x5b, - 0x1e, 0xfa, 0x66, 0x72, 0x42, 0x7e, 0x3b, 0xd3, 0x13, 0xb9, 0x8f, 0xfa, 0x7c, 0x3c, 0x98, 0x72, - 0xbf, 0x05, 0x33, 0x89, 0xcd, 0x9b, 0xa3, 0xd5, 0xfa, 0xbe, 0x08, 0xa3, 0xb6, 0xde, 0x26, 0xbc, - 0x1c, 0x56, 0x99, 0x4f, 0x6f, 0xec, 0x73, 0x10, 0x98, 0xb7, 0xcf, 0xfd, 0xa0, 0x08, 0x33, 0x89, - 0x9b, 0x27, 0x6c, 0xc9, 0x2b, 0x37, 0x00, 0x62, 0x0b, 0xf9, 0xd4, 0xb4, 0xff, 0x6b, 0x30, 0xc9, - 0x0c, 0xa3, 0x11, 0xdb, 0x36, 0x90, 0x9b, 0xd8, 0x9b, 0x11, 0x28, 0x8e, 0x61, 0x1f, 0x6d, 0xc9, - 0xfc, 0x1a, 0x4c, 0xaa, 0xdf, 0x2f, 0x59, 0x59, 0x12, 0xdb, 0xc2, 0x92, 0x89, 0x16, 0x81, 0xe2, - 0x18, 0x36, 0xfb, 0xf8, 0x8b, 0x9c, 0x3c, 0x45, 0x3a, 0x6e, 0xb4, 0xff, 0x8f, 0xbf, 0xc4, 0x48, - 0xe0, 0x04, 0x51, 0xb4, 0x05, 0xb3, 0x3c, 0x7d, 0xaf, 0x0a, 0x14, 0x3b, 0x52, 0x32, 0x27, 0x84, - 0x9e, 0x5d, 0xea, 0x89, 0x89, 0x0f, 0xa1, 0xd2, 0x67, 0x75, 0xc7, 0x0f, 0x93, 0x9f, 0xc3, 0x7c, - 0x37, 0xeb, 0xfb, 0x4a, 0xc7, 0xb2, 0xc1, 0xf2, 0xe3, 0x62, 0x83, 0x3f, 0xa8, 0x50, 0x43, 0x89, - 0x1d, 0xbd, 0x47, 0x73, 0x50, 0x64, 0xba, 0x49, 0xa7, 0x17, 0xb9, 0x13, 0xc0, 0x94, 0xd6, 0xc3, - 0x02, 0x72, 0x84, 0x24, 0xb9, 0x08, 0xd9, 0xf2, 0x3d, 0x42, 0xb6, 0x0e, 0x9c, 0xf1, 0x2d, 0x6f, - 0xd3, 0xed, 0x7a, 0xfe, 0x22, 0x71, 0x7d, 0x4f, 0xa8, 0x6e, 0xa1, 0xef, 0x6f, 0xc8, 0x6d, 0xae, - 0x6a, 0x71, 0x2a, 0x38, 0x8d, 0x34, 0x55, 0x60, 0xdf, 0xf2, 0x6a, 0x96, 0xe5, 0xdc, 0x0d, 0x4e, - 0x16, 0x84, 0x93, 0x8d, 0x98, 0x46, 0xa4, 0x02, 0x6f, 0xae, 0x6a, 0x3d, 0x30, 0xf1, 0x21, 0x54, - 0xd0, 0x1a, 0x7b, 0xaa, 0x37, 0x74, 0xcb, 0x6c, 0xea, 0x3e, 0xa1, 0xd3, 0x31, 0xcb, 0x5e, 0x73, - 0xeb, 0x90, 0xdb, 0x8d, 0x9b, 0xab, 0x5a, 0x1c, 0x05, 0xa7, 0xf5, 0x1b, 0xd6, 0x77, 0x64, 0x53, - 0x67, 0xef, 0xd2, 0xa9, 0xcc, 0xde, 0xe5, 0xfe, 0xac, 0x1c, 0x32, 0xb2, 0xf2, 0x98, 0xca, 0xf7, - 0x61, 0xe5, 0x4d, 0x98, 0x92, 0x1f, 0xd8, 0x11, 0x3a, 0x5b, 0xe9, 0x7b, 0xf7, 0xa3, 0x16, 0xa5, - 0x80, 0xe3, 0x24, 0x4f, 0x29, 0xa3, 0xf4, 0xe7, 0x39, 0x98, 0xa6, 0x92, 0xd4, 0xfc, 0x1d, 0x62, - 0xdf, 0x6f, 0xe8, 0xae, 0xde, 0x0e, 0x2a, 0x88, 0x6d, 0x67, 0x3e, 0xe4, 0xb5, 0x18, 0x23, 0x3e, - 0xf4, 0xb2, 0xac, 0x73, 0x1c, 0x8c, 0x13, 0x92, 0xd1, 0xa9, 0x2f, 0x6c, 0x3b, 0xce, 0xc7, 0x60, - 0xcf, 0x46, 0x19, 0x05, 0x53, 0x5f, 0x9c, 0xe8, 0x40, 0x3e, 0x76, 0x76, 0x11, 0x9e, 0x4c, 0x7d, - 0xd4, 0xbe, 0x1c, 0xf5, 0xd7, 0x8b, 0xe2, 0xfa, 0x4c, 0x06, 0x6b, 0x81, 0xac, 0xbf, 0xd6, 0x44, - 0x03, 0x2b, 0x5b, 0x7e, 0xcd, 0x2b, 0xf6, 0x95, 0xb7, 0xf0, 0xfb, 0x5d, 0x21, 0x0e, 0x9a, 0x85, - 0x91, 0xe6, 0x16, 0x73, 0xf5, 0xa3, 0xe1, 0x39, 0xbe, 0xa5, 0x3a, 0x1e, 0x69, 0x6e, 0xa1, 0xe7, - 0xa0, 0x24, 0x16, 0x19, 0xc1, 0x31, 0x37, 0xc6, 0x56, 0xac, 0x40, 0x3c, 0x2c, 0xa1, 0xc3, 0x0a, - 0xeb, 0x87, 0x90, 0xbf, 0x8f, 0xbf, 0xb9, 0x47, 0x3e, 0xd1, 0xd6, 0x9f, 0x87, 0x7e, 0x41, 0x29, - 0x5a, 0x0e, 0xd1, 0x5c, 0x6e, 0xb2, 0x22, 0xf9, 0x60, 0x01, 0xcb, 0x5f, 0x15, 0xe1, 0x5c, 0xfa, - 0xa5, 0xae, 0x47, 0xc6, 0x1a, 0xb8, 0x72, 0xe7, 0x53, 0x95, 0xfb, 0x93, 0x30, 0xe6, 0x31, 0xc1, - 0x83, 0x9d, 0x7f, 0x5e, 0x4e, 0x96, 0x37, 0xe1, 0x00, 0x86, 0x5e, 0x07, 0xd4, 0xd6, 0xef, 0xad, - 0x79, 0xad, 0x45, 0xa7, 0xcb, 0x2a, 0x64, 0x63, 0xa2, 0xf3, 0xf2, 0xed, 0xa3, 0xe1, 0xf9, 0x9a, - 0xb5, 0x04, 0x06, 0x4e, 0xe9, 0xc5, 0xce, 0x2a, 0x44, 0xf6, 0x7f, 0x62, 0x07, 0x7d, 0x0e, 0xdd, - 0xb0, 0x19, 0x52, 0xfc, 0xf1, 0x71, 0x32, 0x70, 0x37, 0x86, 0x72, 0xd3, 0xef, 0x51, 0x8f, 0xde, - 0x4f, 0xd2, 0x74, 0x7e, 0x56, 0x80, 0x33, 0x29, 0x95, 0x5e, 0xa2, 0xde, 0x3b, 0x77, 0x04, 0xef, - 0xbd, 0x27, 0x47, 0x2a, 0x9b, 0x83, 0xd6, 0x81, 0x50, 0x87, 0x0c, 0xd3, 0x87, 0x39, 0x38, 0xcb, - 0x36, 0xd8, 0x83, 0x5d, 0xbd, 0xa0, 0xc4, 0x6f, 0x5e, 0x68, 0xe6, 0x91, 0x6a, 0x6d, 0x5f, 0x4b, - 0xa1, 0x10, 0xee, 0x3a, 0xa6, 0x41, 0x71, 0x2a, 0x57, 0xb4, 0x08, 0x20, 0xaf, 0xca, 0x05, 0x96, - 0xfc, 0x2c, 0xab, 0x18, 0x2e, 0x5b, 0xff, 0x93, 0x6d, 0xde, 0x2b, 0xa3, 0xcd, 0x56, 0x46, 0x4a, - 0xb7, 0x61, 0x7c, 0x57, 0x25, 0xe5, 0xf5, 0x1e, 0xdd, 0x02, 0x06, 0xd3, 0xae, 0x3f, 0xcb, 0xc3, - 0x64, 0xf4, 0x45, 0xa2, 0xcb, 0x50, 0xec, 0xb8, 0x64, 0xdb, 0xbc, 0x17, 0xff, 0xbc, 0x46, 0x83, - 0xb5, 0x62, 0x01, 0x45, 0x0e, 0x14, 0x2d, 0x7d, 0x8b, 0xce, 0xf7, 0xbc, 0xbc, 0xf9, 0xb5, 0x81, - 0x4b, 0x75, 0x07, 0xbb, 0x0c, 0x01, 0xc3, 0x55, 0x46, 0x1e, 0x0b, 0x36, 0x94, 0xe1, 0xb6, 0x49, - 0xac, 0x26, 0x3f, 0xce, 0x39, 0x0c, 0x86, 0xcb, 0x8c, 0x3c, 0x16, 0x6c, 0xd0, 0xdb, 0x50, 0xe6, - 0xdf, 0x24, 0x69, 0xd6, 0xf7, 0xc5, 0x0a, 0xf7, 0x7f, 0x1e, 0x4d, 0x65, 0x37, 0xcd, 0x36, 0x09, - 0xcd, 0x71, 0x31, 0x20, 0x82, 0x43, 0x7a, 0xec, 0x53, 0xf4, 0xdb, 0x3e, 0x71, 0x35, 0x5f, 0x77, - 0x83, 0x2f, 0xc5, 0x87, 0x9f, 0xa2, 0x97, 0x10, 0xac, 0x60, 0xcd, 0xfd, 0xe5, 0x18, 0x4c, 0xc5, - 0xae, 0xd1, 0xfe, 0x6a, 0xdc, 0x11, 0x55, 0xbf, 0x9f, 0x92, 0xcf, 0xfa, 0xfb, 0x29, 0x85, 0x2c, - 0xc2, 0x83, 0xb7, 0x61, 0xdc, 0xf3, 0x76, 0x18, 0x66, 0xff, 0xb9, 0xba, 0xe9, 0x83, 0x07, 0x17, - 0xc7, 0x35, 0xed, 0xba, 0xec, 0x8e, 0x23, 0xc4, 0xd0, 0x2a, 0x8c, 0x89, 0xb3, 0x83, 0xfd, 0x1d, - 0xfc, 0x63, 0x61, 0x48, 0x10, 0x1e, 0x05, 0x24, 0x86, 0xb1, 0xe3, 0x1c, 0x53, 0xba, 0x47, 0x3e, - 0x10, 0x6e, 0xc0, 0xd9, 0x8e, 0x63, 0x59, 0xc1, 0xe1, 0x4d, 0xf9, 0xe5, 0xa3, 0x72, 0xf4, 0xea, - 0x4e, 0x23, 0x05, 0x07, 0xa7, 0xf6, 0x1c, 0xcc, 0xcb, 0xfe, 0x6b, 0x11, 0x26, 0xa3, 0x55, 0xa6, - 0x4e, 0xef, 0x02, 0x25, 0x4b, 0x04, 0xd6, 0x5c, 0x3b, 0x7e, 0x81, 0x72, 0x53, 0xb4, 0x63, 0x89, - 0x81, 0x30, 0x94, 0xf9, 0x81, 0xf6, 0x1b, 0xfd, 0xee, 0x39, 0xf3, 0x93, 0xb1, 0x41, 0x5f, 0x1c, - 0x92, 0xa1, 0x34, 0xbd, 0x00, 0xbd, 0x3f, 0xcb, 0x64, 0x34, 0x65, 0x33, 0x0e, 0xc9, 0xd0, 0x19, - 0xcb, 0x25, 0xad, 0x20, 0x1b, 0xa8, 0xcc, 0x58, 0x98, 0xb5, 0x62, 0x01, 0x45, 0xcf, 0xc3, 0x98, - 0xeb, 0x58, 0xa4, 0x86, 0xd7, 0x45, 0x34, 0x2d, 0x37, 0xca, 0x30, 0x6f, 0xc6, 0x01, 0x7c, 0x18, - 0x9b, 0x44, 0x51, 0x05, 0xe8, 0xc3, 0x84, 0xae, 0xc1, 0xcc, 0x1d, 0x91, 0x61, 0xd4, 0xcc, 0x96, - 0xad, 0xfb, 0xe1, 0x9d, 0x2b, 0x79, 0xe0, 0xf0, 0x8d, 0x38, 0x02, 0x4e, 0xf6, 0x39, 0xbd, 0x58, - 0x99, 0xd8, 0xcd, 0x8e, 0x63, 0xda, 0x7e, 0x3c, 0x56, 0xbe, 0x2a, 0xda, 0xb1, 0xc4, 0x18, 0xcc, - 0xce, 0xfe, 0x6e, 0x0c, 0x26, 0xa3, 0x55, 0xd4, 0xa2, 0x3a, 0x9c, 0x1b, 0x82, 0x0e, 0x8f, 0x64, - 0xad, 0xc3, 0xf9, 0x43, 0x75, 0xf8, 0x59, 0x18, 0x65, 0xdf, 0xe9, 0x17, 0xdb, 0x4d, 0x72, 0x73, - 0x8a, 0xd5, 0xfb, 0xc0, 0x1c, 0x86, 0x6a, 0x74, 0x86, 0x37, 0x7d, 0x1a, 0x85, 0xf0, 0x03, 0x77, - 0xfc, 0x2c, 0x42, 0x5e, 0x9d, 0x91, 0x23, 0x60, 0x1c, 0xc7, 0xef, 0xc7, 0x56, 0xfa, 0xdb, 0xfd, - 0x79, 0x0d, 0x26, 0x99, 0x90, 0x35, 0xc3, 0xa0, 0xeb, 0xdd, 0x95, 0xa6, 0x38, 0x23, 0x2e, 0x37, - 0xce, 0x36, 0x54, 0xe8, 0x12, 0x8e, 0x61, 0x47, 0x2d, 0xb3, 0x9c, 0x8d, 0x65, 0x6e, 0x1c, 0xd3, - 0x32, 0xcf, 0x43, 0xbe, 0x69, 0xed, 0x31, 0xad, 0x2e, 0x85, 0x7b, 0x25, 0x4b, 0xab, 0x1b, 0x98, - 0xb6, 0x2b, 0xf6, 0x56, 0x39, 0x25, 0x7b, 0x1b, 0x7f, 0x98, 0xbd, 0xb1, 0xb8, 0x86, 0x7f, 0x20, - 0x89, 0xdf, 0x87, 0x99, 0xe8, 0x3f, 0xae, 0x51, 0xba, 0xe3, 0x08, 0xb1, 0xc1, 0x8c, 0xf9, 0x2b, - 0x50, 0x0a, 0x18, 0xd1, 0x81, 0x96, 0xfd, 0xc2, 0x81, 0xa6, 0x26, 0xc4, 0x88, 0x2c, 0x40, 0xd9, - 0xe9, 0x90, 0xc8, 0xd7, 0x0d, 0x65, 0x0c, 0x7c, 0x33, 0x00, 0xe0, 0x10, 0x87, 0x5a, 0x11, 0xe7, - 0x1a, 0xdb, 0xe2, 0x7d, 0x83, 0x36, 0x0a, 0x21, 0xe6, 0xbe, 0x9a, 0x83, 0xe0, 0x93, 0x41, 0x68, - 0x09, 0x46, 0x3b, 0x8e, 0xeb, 0xf3, 0xad, 0xb5, 0xca, 0x95, 0x8b, 0xe9, 0xe3, 0xc3, 0x4f, 0xf7, - 0x3b, 0xae, 0x1f, 0x52, 0xa4, 0xbf, 0x3c, 0xcc, 0x3b, 0x53, 0x39, 0x0d, 0xab, 0xeb, 0xf9, 0xc4, - 0x5d, 0x69, 0xc4, 0xe5, 0x5c, 0x0c, 0x00, 0x38, 0xc4, 0x99, 0xfb, 0xf7, 0x02, 0x4c, 0xc7, 0x0b, - 0xeb, 0xa1, 0x77, 0x61, 0xc2, 0x33, 0x5b, 0xb6, 0x69, 0xb7, 0x44, 0x2c, 0x9a, 0xeb, 0xfb, 0x6a, - 0xaf, 0xa6, 0xf6, 0xc7, 0x51, 0x72, 0x99, 0x9d, 0x56, 0x3b, 0x9d, 0xcf, 0xe2, 0x7f, 0x90, 0xac, - 0x21, 0xf3, 0x4e, 0xc6, 0xa5, 0x0d, 0x7f, 0xb5, 0x8b, 0xc8, 0xfc, 0x72, 0x14, 0xce, 0xa5, 0x97, - 0x4e, 0x3c, 0xa5, 0xa0, 0x35, 0xbc, 0xc6, 0x39, 0xd2, 0xf3, 0x1a, 0x67, 0x38, 0xce, 0xf9, 0x8c, - 0x4a, 0x21, 0xca, 0x01, 0x38, 0xdc, 0xd5, 0xca, 0x70, 0xba, 0xf0, 0xd0, 0x70, 0xfa, 0x32, 0x14, - 0x45, 0xd9, 0xfc, 0x58, 0x98, 0x5a, 0xe7, 0x45, 0xed, 0x05, 0x54, 0x09, 0x05, 0x8a, 0x87, 0x86, - 0x02, 0x34, 0xb4, 0x09, 0xf6, 0x1f, 0xfb, 0xbb, 0xca, 0xc5, 0x43, 0x9b, 0xa0, 0x2f, 0x0e, 0xc9, - 0xb0, 0x8b, 0xfa, 0x1d, 0xf3, 0x16, 0x5e, 0x15, 0xb3, 0x72, 0x78, 0x51, 0xbf, 0xb1, 0x72, 0x0b, - 0xaf, 0x62, 0x01, 0x8d, 0xa6, 0x82, 0xcb, 0x99, 0xa4, 0x82, 0xd3, 0x75, 0xee, 0xa4, 0x12, 0x61, - 0x06, 0xcc, 0x24, 0xde, 0xf9, 0x91, 0x53, 0x61, 0x97, 0xa1, 0xe8, 0x75, 0xb7, 0x29, 0x5e, 0xac, - 0x82, 0x92, 0xc6, 0x5a, 0xb1, 0x80, 0xce, 0x7d, 0xa7, 0x40, 0xb9, 0xc4, 0x8a, 0x6c, 0x9e, 0x92, - 0x55, 0xbd, 0x0a, 0x13, 0x3c, 0x19, 0xf5, 0xa6, 0x52, 0x7e, 0xa3, 0xa4, 0x6c, 0x30, 0xa8, 0x40, - 0x1c, 0xc5, 0x45, 0x2b, 0x4c, 0x4d, 0xfa, 0x5e, 0x16, 0x82, 0xd0, 0x24, 0x3a, 0x71, 0x0b, 0x02, - 0xe8, 0x25, 0xa8, 0xb0, 0x87, 0xe0, 0x43, 0x2e, 0xb2, 0xb2, 0xec, 0xa2, 0xed, 0xd5, 0xb0, 0x19, - 0xab, 0x38, 0xd1, 0xa3, 0x05, 0xa3, 0x99, 0x1c, 0x2d, 0x48, 0xbc, 0x95, 0x93, 0xd2, 0xbb, 0x6f, - 0x95, 0x40, 0x7e, 0x08, 0x11, 0x19, 0x89, 0xcf, 0x51, 0x7e, 0xa6, 0xef, 0xcd, 0x9b, 0x40, 0x14, - 0x9e, 0xc9, 0x4a, 0x99, 0x92, 0x5e, 0x07, 0x24, 0xbe, 0x7f, 0x28, 0x82, 0x6a, 0xa5, 0x9c, 0x92, - 0xdc, 0xa5, 0xd2, 0x12, 0x18, 0x38, 0xa5, 0x17, 0x7a, 0x9d, 0x7d, 0x7c, 0xd5, 0xd7, 0x4d, 0x5b, - 0x7a, 0xde, 0xf3, 0x3d, 0xee, 0x5f, 0x72, 0x24, 0xf9, 0x19, 0x55, 0xfe, 0x13, 0x87, 0xdd, 0xd1, - 0x55, 0x18, 0xbb, 0xe3, 0x58, 0xdd, 0xb6, 0x48, 0xcd, 0x57, 0xae, 0xcc, 0xa6, 0x51, 0x7a, 0x83, - 0xa1, 0x28, 0xf7, 0x85, 0x78, 0x17, 0x1c, 0xf4, 0x45, 0x04, 0xa6, 0xd8, 0xf1, 0x1e, 0xd3, 0xdf, - 0x17, 0x06, 0x20, 0xa6, 0xde, 0xcb, 0x69, 0xe4, 0x1a, 0x4e, 0x53, 0x8b, 0x62, 0xf3, 0x93, 0x1e, - 0xb1, 0x46, 0x1c, 0xa7, 0x89, 0x96, 0xa1, 0xa4, 0x6f, 0x6f, 0x9b, 0xb6, 0xe9, 0xef, 0x8b, 0x9c, - 0xdd, 0x33, 0x69, 0xf4, 0x6b, 0x02, 0x47, 0xd4, 0x69, 0x11, 0xbf, 0xb0, 0xec, 0x8b, 0x6e, 0x41, - 0xc5, 0x77, 0x2c, 0x11, 0x97, 0x7a, 0x22, 0xd5, 0x70, 0x21, 0x8d, 0xd4, 0xa6, 0x44, 0x0b, 0xb7, - 0x47, 0xc3, 0x36, 0x0f, 0xab, 0x74, 0xd0, 0x6f, 0xe5, 0x60, 0xdc, 0x76, 0x9a, 0x24, 0x30, 0x3d, - 0xb1, 0x5d, 0xf7, 0x56, 0x46, 0x1f, 0xf0, 0x9c, 0x5f, 0x57, 0x68, 0x73, 0x0b, 0x91, 0xf5, 0x3b, - 0x54, 0x10, 0x8e, 0x08, 0x81, 0x6c, 0x98, 0x36, 0xdb, 0x7a, 0x8b, 0x34, 0xba, 0x96, 0x38, 0x9e, - 0xe8, 0x89, 0xc9, 0x23, 0xf5, 0xd6, 0xee, 0xaa, 0x63, 0xe8, 0x16, 0xff, 0x00, 0x2e, 0x26, 0xdb, - 0xc4, 0x65, 0xdf, 0xe1, 0x95, 0x27, 0x4d, 0x56, 0x62, 0x94, 0x70, 0x82, 0x36, 0xba, 0x06, 0x33, - 0x1d, 0xd7, 0x74, 0xd8, 0x7b, 0xb3, 0x74, 0x8f, 0x7f, 0x00, 0x15, 0xa2, 0x57, 0x35, 0x1b, 0x71, - 0x04, 0x9c, 0xec, 0xc3, 0xcb, 0x0b, 0xf0, 0x46, 0xb6, 0x96, 0x1b, 0x0d, 0xca, 0x0b, 0xf0, 0x36, - 0x2c, 0xa1, 0xb3, 0x9f, 0x83, 0x99, 0xc4, 0xd8, 0xf4, 0xe5, 0x10, 0x7e, 0x2f, 0x07, 0xf1, 0x7c, - 0x39, 0x5d, 0x37, 0x34, 0x4d, 0x97, 0x11, 0xdc, 0x8f, 0xe7, 0xf8, 0x97, 0x02, 0x00, 0x0e, 0x71, - 0xd0, 0x25, 0x28, 0x74, 0x74, 0x7f, 0x27, 0x7e, 0xcc, 0x8f, 0x92, 0xc4, 0x0c, 0x82, 0xae, 0x00, - 0xd0, 0xbf, 0x98, 0xb4, 0xc8, 0xbd, 0x8e, 0x58, 0x06, 0xc9, 0xed, 0x87, 0x86, 0x84, 0x60, 0x05, - 0x6b, 0xee, 0x9f, 0x46, 0x61, 0x32, 0x3a, 0xb7, 0x44, 0x16, 0x9b, 0xb9, 0x87, 0x2e, 0x36, 0x2f, - 0x43, 0xb1, 0x4d, 0xfc, 0x1d, 0xa7, 0x19, 0x9f, 0x27, 0xd7, 0x58, 0x2b, 0x16, 0x50, 0x26, 0xbe, - 0xe3, 0xfa, 0x42, 0xac, 0x50, 0x7c, 0xc7, 0xf5, 0x31, 0x83, 0x04, 0xa7, 0x14, 0x0b, 0x3d, 0x4e, - 0x29, 0xb6, 0x60, 0x9a, 0x17, 0xf8, 0x5d, 0x24, 0xae, 0x7f, 0xec, 0xd3, 0xb5, 0x5a, 0x8c, 0x04, - 0x4e, 0x10, 0x45, 0x4d, 0xea, 0x6d, 0x68, 0x5b, 0xb8, 0x33, 0xd0, 0xff, 0xd5, 0x7d, 0x2d, 0x4a, - 0x01, 0xc7, 0x49, 0x0e, 0x23, 0x1b, 0x19, 0x7d, 0x8f, 0xc7, 0xae, 0x8c, 0x58, 0xca, 0xaa, 0x32, - 0xe2, 0x2b, 0x30, 0xd9, 0xd6, 0xef, 0x35, 0xf4, 0x7d, 0xcb, 0xd1, 0x9b, 0x9a, 0x79, 0x9f, 0x88, - 0xdb, 0xa5, 0xe8, 0xe0, 0xc1, 0xc5, 0xc9, 0xb5, 0x08, 0x04, 0xc7, 0x30, 0x07, 0x9b, 0x80, 0x7f, - 0x7f, 0x04, 0x50, 0xf2, 0xc3, 0x25, 0xe8, 0xa3, 0x1c, 0x4c, 0xde, 0x8d, 0x8c, 0xd1, 0x70, 0x82, - 0x33, 0x99, 0xf6, 0x8a, 0xb6, 0xe3, 0x18, 0x73, 0x65, 0x81, 0x33, 0x72, 0x72, 0x0b, 0xc9, 0xba, - 0xf1, 0xa3, 0x5f, 0x5c, 0x78, 0xe2, 0xc7, 0xbf, 0xb8, 0xf0, 0xc4, 0x4f, 0x7e, 0x71, 0xe1, 0x89, - 0xaf, 0x1e, 0x5c, 0xc8, 0xfd, 0xe8, 0xe0, 0x42, 0xee, 0xc7, 0x07, 0x17, 0x72, 0x3f, 0x39, 0xb8, - 0x90, 0xfb, 0xf9, 0xc1, 0x85, 0xdc, 0x77, 0xfe, 0xe5, 0xc2, 0x13, 0x9f, 0xff, 0x6c, 0x28, 0xca, - 0x42, 0x20, 0x0a, 0xfb, 0xe7, 0x45, 0xce, 0x7a, 0xa1, 0xb3, 0xdb, 0x5a, 0xa0, 0xa2, 0x2c, 0x28, - 0xa2, 0x2c, 0x04, 0xa2, 0xfc, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x15, 0xf0, 0xeb, 0x47, 0xbb, - 0xa5, 0x00, 0x00, + // 7343 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0xc7, + 0x75, 0xa0, 0x86, 0x33, 0x1c, 0xce, 0xbc, 0xe1, 0x67, 0xed, 0x6a, 0x35, 0xa2, 0xb5, 0xcb, 0x3d, + 0x0a, 0x5e, 0x48, 0x77, 0x12, 0x79, 0xda, 0x3b, 0x9f, 0x65, 0xe9, 0x2c, 0x63, 0x86, 0x5c, 0xee, + 0x52, 0x4b, 0x72, 0x87, 0xd5, 0x5c, 0x69, 0x65, 0x59, 0x92, 0x9b, 0x3d, 0xc5, 0x61, 0x9b, 0x3d, + 0xdd, 0xc3, 0xee, 0x9e, 0xdd, 0xe5, 0x02, 0x67, 0x1b, 0x06, 0x7c, 0x77, 0xd6, 0x87, 0x6d, 0xdd, + 0xc5, 0x49, 0x90, 0xc0, 0x40, 0x9c, 0x04, 0x0e, 0x82, 0x04, 0xf9, 0x17, 0x23, 0x7f, 0x83, 0xe4, + 0x87, 0x91, 0xe4, 0x87, 0x93, 0x5f, 0x4e, 0x0c, 0x2c, 0x6c, 0x06, 0xf9, 0x97, 0x3f, 0x81, 0x7f, + 0x25, 0xbf, 0x82, 0xfa, 0xe8, 0xea, 0xea, 0x8f, 0xe1, 0x72, 0x38, 0x3d, 0xe4, 0xca, 0xc8, 0x2f, + 0x72, 0xea, 0xbd, 0x7a, 0xef, 0x75, 0xf5, 0x7b, 0xaf, 0x5e, 0xbd, 0xaa, 0x7a, 0x0d, 0xeb, 0x2d, + 0xd3, 0xdf, 0xed, 0x6e, 0x2f, 0x18, 0x4e, 0x7b, 0x51, 0x77, 0x5b, 0x4e, 0xc7, 0x75, 0xbe, 0xc2, + 0xfe, 0x79, 0x91, 0xdc, 0x25, 0xb6, 0xef, 0x2d, 0x76, 0xf6, 0x5a, 0x8b, 0x7a, 0xc7, 0xf4, 0x16, + 0xf9, 0x6f, 0xa7, 0xeb, 0x1a, 0x64, 0xf1, 0xee, 0x4b, 0xba, 0xd5, 0xd9, 0xd5, 0x5f, 0x5a, 0x6c, + 0x11, 0x9b, 0xb8, 0xba, 0x4f, 0x9a, 0x0b, 0x1d, 0xd7, 0xf1, 0x1d, 0xf4, 0xf9, 0x90, 0xdc, 0x42, + 0x40, 0x8e, 0xfd, 0xf3, 0x1e, 0xef, 0xbe, 0xd0, 0xd9, 0x6b, 0x2d, 0x50, 0x72, 0x0b, 0x0a, 0xb9, + 0x85, 0x80, 0xdc, 0xec, 0x17, 0x8e, 0x2d, 0x8d, 0xe1, 0xb4, 0xdb, 0x8e, 0x1d, 0xe7, 0x3f, 0xfb, + 0xa2, 0x42, 0xa0, 0xe5, 0xb4, 0x9c, 0x45, 0xd6, 0xbc, 0xdd, 0xdd, 0x61, 0xbf, 0xd8, 0x0f, 0xf6, + 0x9f, 0x40, 0x9f, 0xdf, 0x7b, 0xd9, 0x5b, 0x30, 0x1d, 0x4a, 0x72, 0xd1, 0x70, 0x5c, 0xfa, 0x60, + 0x09, 0x92, 0xff, 0x3d, 0xc4, 0x69, 0xeb, 0xc6, 0xae, 0x69, 0x13, 0xf7, 0x20, 0x94, 0xa3, 0x4d, + 0x7c, 0x3d, 0xad, 0xd7, 0x62, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0x1f, + 0x8f, 0xea, 0xe0, 0x19, 0xbb, 0xa4, 0xad, 0xc7, 0xfb, 0xcd, 0xff, 0x6b, 0x0e, 0x66, 0x6a, 0xeb, + 0x9b, 0x8d, 0x25, 0xc7, 0xf6, 0xba, 0x6d, 0xb2, 0xe4, 0xd8, 0x3b, 0x66, 0x0b, 0x7d, 0x06, 0x2a, + 0x06, 0x6f, 0x70, 0xb7, 0xf4, 0x56, 0x35, 0x77, 0x39, 0xf7, 0x5c, 0xb9, 0x7e, 0xee, 0xc7, 0x0f, + 0xe7, 0x9e, 0x38, 0x7c, 0x38, 0x57, 0x59, 0x0a, 0x41, 0x58, 0xc5, 0x43, 0xcf, 0xc3, 0x98, 0xde, + 0xf5, 0x9d, 0x9a, 0xb1, 0x57, 0x1d, 0xb9, 0x9c, 0x7b, 0xae, 0x54, 0x9f, 0x12, 0x5d, 0xc6, 0x6a, + 0xbc, 0x19, 0x07, 0x70, 0xb4, 0x08, 0x65, 0x72, 0xdf, 0xb0, 0xba, 0x9e, 0x79, 0x97, 0x54, 0xf3, + 0x0c, 0x79, 0x46, 0x20, 0x97, 0xaf, 0x05, 0x00, 0x1c, 0xe2, 0x50, 0xda, 0xb6, 0xb3, 0xe6, 0x18, + 0xba, 0x55, 0x2d, 0x44, 0x69, 0x6f, 0xf0, 0x66, 0x1c, 0xc0, 0xd1, 0x15, 0x28, 0xda, 0xce, 0x9b, + 0xba, 0xe9, 0x57, 0x47, 0x19, 0xe6, 0xa4, 0xc0, 0x2c, 0x6e, 0xb0, 0x56, 0x2c, 0xa0, 0xf3, 0xff, + 0x5c, 0x81, 0x29, 0xfa, 0xec, 0xd7, 0xa8, 0x72, 0x68, 0x4c, 0x97, 0xd0, 0x45, 0xc8, 0x77, 0x5d, + 0x4b, 0x3c, 0x71, 0x45, 0x74, 0xcc, 0xdf, 0xc6, 0x6b, 0x98, 0xb6, 0xa3, 0x97, 0x61, 0x9c, 0xdc, + 0x37, 0x76, 0x75, 0xbb, 0x45, 0x36, 0xf4, 0x36, 0x61, 0x8f, 0x59, 0xae, 0x9f, 0x17, 0x78, 0xe3, + 0xd7, 0x14, 0x18, 0x8e, 0x60, 0xaa, 0x3d, 0xb7, 0x0e, 0x3a, 0xfc, 0x99, 0x53, 0x7a, 0x52, 0x18, + 0x8e, 0x60, 0xa2, 0xab, 0x00, 0xae, 0xd3, 0xf5, 0x4d, 0xbb, 0x75, 0x93, 0x1c, 0xb0, 0x87, 0x2f, + 0xd7, 0x91, 0xe8, 0x07, 0x58, 0x42, 0xb0, 0x82, 0x85, 0xfe, 0x17, 0xcc, 0x18, 0x8e, 0x6d, 0x13, + 0xc3, 0x37, 0x1d, 0xbb, 0xae, 0x1b, 0x7b, 0xce, 0xce, 0x0e, 0x1b, 0x8d, 0xca, 0xd5, 0x97, 0x17, + 0x8e, 0x6d, 0x64, 0xdc, 0x4a, 0x16, 0x44, 0xff, 0xfa, 0x93, 0x87, 0x0f, 0xe7, 0x66, 0x96, 0xe2, + 0x64, 0x71, 0x92, 0x13, 0x7a, 0x01, 0x4a, 0x5f, 0xf1, 0x1c, 0xbb, 0xee, 0x34, 0x0f, 0xaa, 0x45, + 0xf6, 0x0e, 0xa6, 0x85, 0xc0, 0xa5, 0xd7, 0xb5, 0x5b, 0x1b, 0xb4, 0x1d, 0x4b, 0x0c, 0x74, 0x1b, + 0xf2, 0xbe, 0xe5, 0x55, 0xc7, 0x98, 0x78, 0xaf, 0xf4, 0x2d, 0xde, 0xd6, 0x9a, 0xc6, 0xd5, 0xb6, + 0x3e, 0x46, 0xdf, 0xd5, 0xd6, 0x9a, 0x86, 0x29, 0x3d, 0xf4, 0x7e, 0x0e, 0x4a, 0xd4, 0xbe, 0x9a, + 0xba, 0xaf, 0x57, 0x4b, 0x97, 0xf3, 0xcf, 0x55, 0xae, 0x7e, 0x69, 0x61, 0x20, 0x07, 0xb3, 0x10, + 0xd3, 0x96, 0x85, 0x75, 0x41, 0xfe, 0x9a, 0xed, 0xbb, 0x07, 0xe1, 0x33, 0x06, 0xcd, 0x58, 0xf2, + 0x47, 0xbf, 0x91, 0x83, 0xa9, 0xe0, 0xad, 0x2e, 0x13, 0xc3, 0xd2, 0x5d, 0x52, 0x2d, 0xb3, 0x07, + 0xbe, 0x93, 0x85, 0x4c, 0x51, 0xca, 0x62, 0x38, 0xce, 0x1d, 0x3e, 0x9c, 0x9b, 0x8a, 0x81, 0x70, + 0x5c, 0x0a, 0xf4, 0x41, 0x0e, 0xc6, 0xf7, 0xbb, 0xa4, 0x2b, 0xc5, 0x02, 0x26, 0xd6, 0xed, 0x0c, + 0xc4, 0xda, 0x54, 0xc8, 0x0a, 0x99, 0xa6, 0xa9, 0xb2, 0xab, 0xed, 0x38, 0xc2, 0x1c, 0x7d, 0x0d, + 0xca, 0xec, 0x77, 0xdd, 0xb4, 0x9b, 0xd5, 0x0a, 0x93, 0x04, 0x67, 0x25, 0x09, 0xa5, 0x29, 0xc4, + 0x98, 0xa0, 0x7e, 0x46, 0x36, 0xe2, 0x90, 0x27, 0xba, 0x07, 0x63, 0xc2, 0xa5, 0x55, 0xc7, 0x19, + 0xfb, 0x46, 0x06, 0xec, 0x23, 0xde, 0xb5, 0x5e, 0xa1, 0x5e, 0x4b, 0x34, 0xe1, 0x80, 0x1b, 0xba, + 0x03, 0x05, 0xbd, 0xeb, 0xef, 0x56, 0x27, 0x4e, 0x68, 0x06, 0x75, 0xdd, 0x33, 0x8d, 0x5a, 0xd7, + 0xdf, 0xad, 0x97, 0x0e, 0x1f, 0xce, 0x15, 0xe8, 0x7f, 0x98, 0x51, 0x44, 0x18, 0xca, 0x5d, 0xd7, + 0xd2, 0x88, 0xe1, 0x12, 0xbf, 0x3a, 0xc9, 0xc8, 0x7f, 0x7a, 0x81, 0xcf, 0x17, 0x94, 0xc2, 0x02, + 0x9d, 0xba, 0x16, 0xee, 0xbe, 0xb4, 0xc0, 0x31, 0x6e, 0x92, 0x03, 0x8d, 0x58, 0xc4, 0xf0, 0x1d, + 0x97, 0x0f, 0xd3, 0x6d, 0xbc, 0xc6, 0x21, 0x38, 0x24, 0x83, 0x7c, 0x28, 0xee, 0x98, 0x96, 0x4f, + 0xdc, 0xea, 0x54, 0x26, 0xa3, 0xa4, 0x58, 0xd5, 0x0a, 0xa3, 0x5b, 0x07, 0xea, 0xb1, 0xf9, 0xff, + 0x58, 0xf0, 0x9a, 0x7d, 0x15, 0x26, 0x22, 0x26, 0x87, 0xa6, 0x21, 0xbf, 0x47, 0x0e, 0xb8, 0xbb, + 0xc6, 0xf4, 0x5f, 0x74, 0x1e, 0x46, 0xef, 0xea, 0x56, 0x57, 0xb8, 0x66, 0xcc, 0x7f, 0xbc, 0x32, + 0xf2, 0x72, 0x6e, 0xfe, 0x27, 0x39, 0x78, 0xba, 0xa7, 0xb1, 0xd0, 0xf9, 0xa5, 0xd9, 0x75, 0xf5, + 0x6d, 0x8b, 0x30, 0x6a, 0xca, 0xfc, 0xb2, 0xcc, 0x9b, 0x71, 0x00, 0xa7, 0x0e, 0x99, 0x4e, 0x63, + 0xcb, 0xc4, 0x22, 0x3e, 0x11, 0x33, 0x9d, 0x74, 0xc8, 0x35, 0x09, 0xc1, 0x0a, 0x16, 0xf5, 0x88, + 0xa6, 0xed, 0x13, 0xd7, 0xd6, 0x2d, 0x31, 0xdd, 0x49, 0x6f, 0xb1, 0x2a, 0xda, 0xb1, 0xc4, 0x50, + 0x66, 0xb0, 0xc2, 0x91, 0x33, 0xd8, 0xe7, 0xe1, 0x5c, 0x8a, 0x76, 0x2b, 0xdd, 0x73, 0x47, 0x76, + 0xff, 0xbd, 0x11, 0xb8, 0x90, 0x6e, 0xa7, 0xe8, 0x32, 0x14, 0x6c, 0x3a, 0xc1, 0xf1, 0x89, 0x70, + 0x5c, 0x10, 0x28, 0xb0, 0x89, 0x8d, 0x41, 0xd4, 0x01, 0x1b, 0xe9, 0x6b, 0xc0, 0xf2, 0xc7, 0x1a, + 0xb0, 0x48, 0x80, 0x50, 0x38, 0x46, 0x80, 0x70, 0xcc, 0x59, 0x9f, 0x12, 0xd6, 0xdd, 0x56, 0xb7, + 0x4d, 0x95, 0x90, 0x4d, 0x4e, 0xe5, 0x90, 0x70, 0x2d, 0x00, 0xe0, 0x10, 0x67, 0xfe, 0xfd, 0x51, + 0x78, 0xba, 0xf6, 0xa0, 0xeb, 0x12, 0xa6, 0xa3, 0xde, 0x8d, 0xee, 0xb6, 0x1a, 0x30, 0x5c, 0x86, + 0xc2, 0xce, 0x7e, 0xd3, 0x8e, 0x0f, 0xd4, 0xca, 0xe6, 0xf2, 0x06, 0x66, 0x10, 0xd4, 0x81, 0x73, + 0xde, 0xae, 0xee, 0x92, 0x66, 0xcd, 0x30, 0x88, 0xe7, 0xdd, 0x24, 0x07, 0x32, 0x74, 0x38, 0xb6, + 0x21, 0x3e, 0x75, 0xf8, 0x70, 0xee, 0x9c, 0x96, 0xa4, 0x82, 0xd3, 0x48, 0xa3, 0x26, 0x4c, 0xc5, + 0x9a, 0xd9, 0xa0, 0x1f, 0x9b, 0x1b, 0x9b, 0x38, 0x62, 0xdc, 0x70, 0x9c, 0x24, 0x55, 0x80, 0xdd, + 0xee, 0x36, 0x7b, 0x16, 0x1e, 0x94, 0x48, 0x05, 0xb8, 0xc1, 0x9b, 0x71, 0x00, 0x47, 0xbf, 0xa6, + 0x4e, 0xc5, 0xa3, 0x6c, 0x2a, 0xde, 0x19, 0xd4, 0xad, 0xf6, 0x7a, 0x23, 0x7d, 0x4c, 0xca, 0xa1, + 0x13, 0x2b, 0x7e, 0x52, 0x9c, 0xd8, 0xef, 0x14, 0xe1, 0x19, 0xf6, 0xe8, 0xcc, 0x66, 0x35, 0xdf, + 0x71, 0xf5, 0x16, 0x51, 0xf5, 0xf1, 0x75, 0x40, 0x1e, 0x6f, 0xad, 0x19, 0x86, 0xd3, 0xb5, 0xfd, + 0x8d, 0xd0, 0x8c, 0x67, 0xc5, 0x58, 0x20, 0x2d, 0x81, 0x81, 0x53, 0x7a, 0xa1, 0x16, 0x4c, 0x87, + 0xb1, 0x9d, 0xe6, 0xbb, 0xa6, 0xdd, 0xea, 0x4f, 0x6d, 0xcf, 0x1f, 0x3e, 0x9c, 0x9b, 0x5e, 0x8a, + 0x91, 0xc0, 0x09, 0xa2, 0xd4, 0x26, 0xd9, 0x0c, 0xcc, 0x64, 0xcd, 0x47, 0x6d, 0x72, 0x33, 0x00, + 0xe0, 0x10, 0x27, 0x12, 0x60, 0x16, 0x1e, 0x19, 0x60, 0x5e, 0x84, 0x7c, 0xd3, 0xda, 0x17, 0x7e, + 0x41, 0x06, 0xf5, 0xcb, 0x6b, 0x9b, 0x98, 0xb6, 0xd3, 0xd8, 0x2c, 0xd4, 0xce, 0x22, 0xd3, 0x4e, + 0x33, 0x0b, 0xed, 0xec, 0xf1, 0x8a, 0x4e, 0xa4, 0xa0, 0x63, 0xa7, 0xa7, 0xa0, 0xe8, 0x55, 0x98, + 0x68, 0x12, 0xc3, 0x69, 0x92, 0x75, 0xe2, 0x79, 0x7a, 0x8b, 0x54, 0x4b, 0x6c, 0xe0, 0x9e, 0x14, + 0x82, 0x4e, 0x2c, 0xab, 0x40, 0x1c, 0xc5, 0x45, 0x4b, 0x30, 0x73, 0x4f, 0x37, 0xfd, 0x2d, 0xb3, + 0x4d, 0x56, 0x6d, 0x8d, 0x18, 0x8e, 0xdd, 0xf4, 0x58, 0xa4, 0x3b, 0xca, 0xd7, 0x0f, 0x6f, 0xc6, + 0x81, 0x38, 0x89, 0x3f, 0x98, 0x89, 0xfc, 0xb4, 0x08, 0xb3, 0x6c, 0xfc, 0x35, 0xe2, 0xde, 0x35, + 0x0d, 0x52, 0xef, 0x7a, 0xaa, 0x81, 0xa4, 0x29, 0x75, 0x6e, 0xe8, 0x4a, 0x3d, 0x72, 0x0c, 0xa5, + 0x5e, 0x84, 0xb2, 0xef, 0x74, 0x4c, 0x23, 0xcd, 0x0a, 0xb6, 0x02, 0x00, 0x0e, 0x71, 0xd0, 0x32, + 0x4c, 0x7b, 0xdd, 0x6d, 0xcf, 0x70, 0xcd, 0x0e, 0xe5, 0xab, 0xb8, 0xe2, 0xaa, 0xe8, 0x37, 0xad, + 0xc5, 0xe0, 0x38, 0xd1, 0x23, 0x58, 0x7e, 0x8d, 0x66, 0xbc, 0xfc, 0xea, 0x6f, 0x0d, 0xf8, 0x3d, + 0xd5, 0x06, 0xc7, 0x98, 0x0d, 0xb6, 0xb2, 0xb0, 0xc1, 0x54, 0x1d, 0x38, 0x91, 0x05, 0x96, 0x4e, + 0xd1, 0x02, 0xdf, 0x82, 0xa7, 0x76, 0xba, 0x96, 0x75, 0xb0, 0xd9, 0xd5, 0x2d, 0x73, 0xc7, 0x24, + 0x4d, 0xfa, 0xa2, 0xbc, 0x8e, 0x6e, 0xf0, 0x45, 0x63, 0xb9, 0x3e, 0x27, 0x44, 0x7e, 0x6a, 0x25, + 0x1d, 0x0d, 0xf7, 0xea, 0x3f, 0x98, 0x69, 0xfd, 0x43, 0x0e, 0x26, 0xea, 0xa6, 0xbf, 0xdd, 0x35, + 0xf6, 0x88, 0x4f, 0x57, 0x18, 0xc8, 0x85, 0xd1, 0x6d, 0xba, 0xf0, 0x10, 0x26, 0xb4, 0x39, 0xe0, + 0xf0, 0x48, 0xe2, 0xe1, 0x6a, 0xa6, 0x7c, 0xf8, 0x70, 0x6e, 0x94, 0xfd, 0xc4, 0x9c, 0x15, 0xba, + 0x0d, 0xe0, 0xd0, 0x85, 0xcd, 0x96, 0xb3, 0x47, 0xec, 0xfe, 0x26, 0xa4, 0x49, 0x1a, 0x71, 0xde, + 0xaa, 0x05, 0x9d, 0xb1, 0x42, 0x68, 0xfe, 0x47, 0x39, 0x40, 0x49, 0xfe, 0xe8, 0x16, 0x94, 0xba, + 0x1e, 0x0d, 0xcb, 0xc5, 0x34, 0x7a, 0x6c, 0x5e, 0xe3, 0x54, 0xa5, 0x6e, 0x8b, 0xae, 0x58, 0x12, + 0xa1, 0x04, 0x3b, 0xba, 0xe7, 0xdd, 0x73, 0xdc, 0x66, 0x7f, 0xc2, 0x33, 0x82, 0x0d, 0xd1, 0x15, + 0x4b, 0x22, 0xf3, 0xbf, 0x1c, 0x83, 0xf3, 0x52, 0xf0, 0x58, 0x2c, 0xd0, 0x64, 0xd1, 0xf4, 0x0d, + 0xc7, 0xd9, 0xbb, 0x65, 0xaf, 0x98, 0xb6, 0xe9, 0xed, 0x8a, 0x35, 0x81, 0x8c, 0x05, 0x96, 0x13, + 0x18, 0x38, 0xa5, 0x17, 0xfa, 0x8e, 0x6a, 0xa0, 0x23, 0xcc, 0x40, 0xf5, 0xac, 0x5e, 0xf6, 0x49, + 0x4d, 0x73, 0xec, 0x1e, 0xd9, 0xde, 0x75, 0x9c, 0x3d, 0x11, 0xdd, 0xae, 0x0f, 0x28, 0xcf, 0x9b, + 0x9c, 0xda, 0x92, 0x63, 0xfb, 0xe4, 0xbe, 0xcf, 0x97, 0xe9, 0xa2, 0x0d, 0x07, 0xac, 0xd0, 0x57, + 0xc4, 0x32, 0xbd, 0xc0, 0x58, 0xae, 0x65, 0x35, 0x04, 0xa9, 0x0b, 0xf7, 0x79, 0x28, 0xf2, 0x5e, + 0x2c, 0x66, 0x2e, 0x73, 0x57, 0xc1, 0x63, 0x5e, 0x2c, 0x20, 0xe8, 0x45, 0x18, 0x75, 0xee, 0xd9, + 0x22, 0x84, 0x2d, 0xd7, 0x9f, 0x12, 0x03, 0x36, 0xb5, 0x4c, 0x3a, 0x2e, 0x31, 0x74, 0x9f, 0x34, + 0x6f, 0x51, 0x30, 0xe6, 0x58, 0xe8, 0x7f, 0x02, 0x50, 0x11, 0x89, 0x41, 0x35, 0x8b, 0x45, 0x15, + 0xe5, 0xfa, 0x33, 0xa2, 0xcf, 0xf9, 0xb0, 0x4f, 0x43, 0xe2, 0x60, 0x05, 0x1f, 0xdd, 0x80, 0x49, + 0x97, 0x74, 0x1c, 0xcf, 0xf4, 0x1d, 0xf7, 0x40, 0xb3, 0xba, 0x2d, 0xe6, 0x15, 0xcb, 0xf5, 0xcb, + 0x82, 0x42, 0x35, 0xa4, 0x80, 0x23, 0x78, 0x38, 0xd6, 0x0f, 0x7d, 0x98, 0x83, 0x71, 0xd9, 0x64, + 0x12, 0x1a, 0x22, 0xe4, 0x33, 0xc8, 0xf5, 0xc8, 0xf1, 0x0c, 0xd9, 0x87, 0x39, 0x56, 0xac, 0xf0, + 0xc3, 0x11, 0xee, 0x8a, 0x9b, 0x87, 0x4f, 0xca, 0x4a, 0xe0, 0x01, 0x9c, 0x4b, 0x79, 0x5a, 0xf4, + 0x6c, 0xa0, 0x0f, 0x3c, 0xe4, 0x9f, 0x10, 0x0f, 0x3f, 0x1a, 0xd1, 0x82, 0xd7, 0x12, 0xef, 0x91, + 0xc7, 0x27, 0x17, 0x04, 0xf6, 0xe4, 0xd1, 0x6f, 0x6f, 0xfe, 0x0f, 0x2a, 0x30, 0x2b, 0x99, 0xd3, + 0x29, 0x96, 0xb8, 0xaa, 0xdf, 0x51, 0x2c, 0x33, 0x77, 0x7a, 0x96, 0x19, 0x55, 0xed, 0x91, 0x81, + 0x55, 0x3b, 0x7f, 0x42, 0xd5, 0x7e, 0x0e, 0x4a, 0x82, 0xae, 0x57, 0x2d, 0x30, 0xbb, 0xe5, 0x8e, + 0x5b, 0xb4, 0x61, 0x09, 0x45, 0xff, 0x2f, 0x6e, 0x04, 0x7c, 0x69, 0x7c, 0x27, 0x2b, 0x23, 0xe0, + 0x6f, 0xa6, 0x4f, 0x53, 0x08, 0x9d, 0x4e, 0xb1, 0xa7, 0xd3, 0xd9, 0x83, 0x8b, 0xde, 0x9e, 0xd9, + 0xa9, 0xbb, 0xba, 0x6d, 0xec, 0x62, 0xb2, 0xe3, 0x2d, 0xb1, 0x8c, 0x5a, 0xf3, 0x96, 0x7d, 0xab, + 0x43, 0xec, 0x06, 0x66, 0x8e, 0xa5, 0x54, 0xff, 0xb4, 0x60, 0x77, 0x51, 0x3b, 0x0a, 0x19, 0x1f, + 0x4d, 0x0b, 0xdd, 0x81, 0x8a, 0xce, 0x92, 0x0e, 0x7c, 0xbe, 0x2f, 0xf5, 0x33, 0x65, 0x4e, 0x1d, + 0x3e, 0x9c, 0xab, 0xd4, 0xc2, 0xde, 0x58, 0x25, 0x85, 0xde, 0x85, 0x09, 0xa1, 0x3c, 0x22, 0x39, + 0x5a, 0xee, 0x87, 0xf6, 0x0c, 0x5d, 0x0b, 0xbd, 0xa9, 0xf6, 0xc7, 0x51, 0x72, 0xe8, 0x0d, 0xb8, + 0xb0, 0x1d, 0xbc, 0x0b, 0x8f, 0xbd, 0x8b, 0xba, 0xee, 0x91, 0xdb, 0x78, 0x8d, 0x79, 0x99, 0x72, + 0xfd, 0x92, 0x18, 0x9f, 0x0b, 0xb1, 0x37, 0x26, 0xb0, 0x70, 0x8f, 0xde, 0x3d, 0xe6, 0xf5, 0xca, + 0x89, 0xe6, 0xf5, 0x48, 0xe0, 0x3d, 0x9e, 0x49, 0xe0, 0xdd, 0xdb, 0x33, 0x9c, 0x28, 0xf0, 0x9e, + 0x38, 0xc5, 0xc0, 0x5b, 0xac, 0x85, 0x26, 0x33, 0x5e, 0x0b, 0xbd, 0x0a, 0x13, 0xc6, 0x2e, 0x31, + 0xf6, 0x58, 0xaa, 0xf7, 0xae, 0x6e, 0xb1, 0xa4, 0x79, 0x39, 0x5c, 0x51, 0x2f, 0xa9, 0x40, 0x1c, + 0xc5, 0x1d, 0x6c, 0x96, 0xf8, 0x4e, 0x0e, 0x9e, 0xee, 0xe9, 0x0f, 0xd0, 0xd5, 0x88, 0xcb, 0xcc, + 0x45, 0xb7, 0x16, 0x7b, 0x38, 0xca, 0x41, 0xe7, 0x8e, 0xdf, 0x1f, 0x85, 0x73, 0x4b, 0xba, 0x45, + 0xec, 0xa6, 0x1e, 0x99, 0x34, 0x5e, 0x80, 0x92, 0x67, 0xec, 0x92, 0x66, 0xd7, 0x0a, 0xd2, 0x55, + 0x52, 0x3d, 0x34, 0xd1, 0x8e, 0x25, 0x86, 0xcc, 0xa7, 0xd3, 0xc1, 0x1c, 0x89, 0x62, 0xcb, 0x71, + 0x94, 0x18, 0xe8, 0x15, 0x98, 0x14, 0x89, 0x62, 0xc7, 0x5e, 0xd6, 0x7d, 0xe2, 0x55, 0xf3, 0xcc, + 0xb7, 0x21, 0x2a, 0xef, 0xb5, 0x08, 0x04, 0xc7, 0x30, 0x29, 0x27, 0xdf, 0x6c, 0x93, 0x07, 0x8e, + 0x1d, 0x2c, 0xae, 0x25, 0xa7, 0x2d, 0xd1, 0x8e, 0x25, 0x06, 0xfa, 0x76, 0x32, 0xd3, 0xf9, 0xe5, + 0x01, 0x35, 0x37, 0x65, 0xb0, 0xfa, 0xb0, 0xa3, 0x6f, 0xe4, 0xa0, 0xd2, 0x21, 0xae, 0x67, 0x7a, + 0x3e, 0xb1, 0x0d, 0x22, 0x32, 0x9d, 0xb7, 0xb2, 0xb0, 0xa6, 0x46, 0x48, 0x96, 0x3b, 0x5a, 0xa5, + 0x01, 0xab, 0x4c, 0xcf, 0x66, 0x15, 0x3d, 0x98, 0xe1, 0xdc, 0x87, 0xf3, 0x4b, 0xba, 0x6f, 0xec, + 0x76, 0x3b, 0xdc, 0xa2, 0xbb, 0xae, 0xee, 0x9b, 0x8e, 0x8d, 0x9e, 0x87, 0x31, 0x62, 0xeb, 0xdb, + 0x16, 0x69, 0xc6, 0xf7, 0x89, 0xae, 0xf1, 0x66, 0x1c, 0xc0, 0xd1, 0x67, 0xa0, 0xd2, 0xd6, 0xef, + 0x2f, 0x8b, 0x9e, 0x42, 0x4d, 0xe5, 0x29, 0x8a, 0xf5, 0x10, 0x84, 0x55, 0xbc, 0xf9, 0xaf, 0xc2, + 0x79, 0xce, 0x72, 0x5d, 0xef, 0x28, 0x23, 0x7a, 0x8c, 0x2d, 0x99, 0x65, 0x98, 0x36, 0x5c, 0xa2, + 0xfb, 0x64, 0x75, 0x67, 0xc3, 0xf1, 0xaf, 0xdd, 0x37, 0x3d, 0x5f, 0xec, 0xcd, 0xc8, 0x7c, 0xd0, + 0x52, 0x0c, 0x8e, 0x13, 0x3d, 0xe6, 0xbf, 0x3b, 0x06, 0xe8, 0x5a, 0xdb, 0xf4, 0xfd, 0x68, 0x50, + 0x77, 0x05, 0x8a, 0xdb, 0xae, 0xb3, 0x27, 0x23, 0x4b, 0xb9, 0xbf, 0x52, 0x67, 0xad, 0x58, 0x40, + 0xa9, 0x4f, 0x31, 0x76, 0x75, 0xdb, 0x26, 0x56, 0x18, 0x86, 0x49, 0x9f, 0xb2, 0x24, 0x21, 0x58, + 0xc1, 0x62, 0xe7, 0x4d, 0xf8, 0x2f, 0x25, 0xf7, 0x15, 0x9e, 0x37, 0x09, 0x41, 0x58, 0xc5, 0x8b, + 0x2c, 0xcd, 0x0b, 0x59, 0x2f, 0xcd, 0x47, 0x33, 0x58, 0x9a, 0xa7, 0x9f, 0xc3, 0x28, 0x9e, 0xc9, + 0x39, 0x8c, 0xb1, 0xe3, 0x9e, 0xc3, 0x28, 0x65, 0x3c, 0xf9, 0x7d, 0xa4, 0xba, 0x44, 0xbe, 0xcc, + 0x7b, 0x6f, 0x50, 0xfb, 0x4f, 0xa8, 0xe7, 0x89, 0x22, 0x8b, 0x4f, 0xcc, 0x5a, 0xef, 0xe3, 0x11, + 0x98, 0x8e, 0xbb, 0x5c, 0xf4, 0x00, 0xc6, 0x0c, 0xee, 0xa1, 0xc4, 0x2a, 0x4b, 0x1b, 0x78, 0xa2, + 0x49, 0xfa, 0x3b, 0x71, 0x58, 0x81, 0x43, 0x70, 0xc0, 0x10, 0x7d, 0x3d, 0x07, 0x65, 0x23, 0x70, + 0x52, 0x22, 0x8b, 0x35, 0x30, 0xfb, 0x14, 0xa7, 0xc7, 0x4f, 0x20, 0x48, 0x08, 0x0e, 0x99, 0xce, + 0xff, 0x6c, 0x04, 0x2a, 0xaa, 0x7f, 0xfa, 0xb2, 0xa2, 0x65, 0x7c, 0x3c, 0xfe, 0xab, 0x62, 0xbb, + 0xf2, 0x50, 0x5c, 0x28, 0x04, 0xc5, 0xa6, 0xd6, 0x7c, 0x6b, 0x9b, 0x86, 0x36, 0xf4, 0xe5, 0x84, + 0x7e, 0x2a, 0x6c, 0x53, 0x14, 0xa7, 0x03, 0x05, 0xaf, 0x43, 0x0c, 0xf1, 0xb8, 0x1b, 0xd9, 0xa9, + 0x8d, 0xd6, 0x21, 0x46, 0xe8, 0xd0, 0xe9, 0x2f, 0xcc, 0x38, 0xa1, 0xfb, 0x50, 0xf4, 0x7c, 0xdd, + 0xef, 0x7a, 0x22, 0xc3, 0x95, 0xa1, 0xaa, 0x6a, 0x8c, 0x6e, 0xe8, 0xc5, 0xf9, 0x6f, 0x2c, 0xf8, + 0xcd, 0x5f, 0x87, 0x99, 0x84, 0x5e, 0x53, 0xd7, 0x4e, 0xee, 0x77, 0x5c, 0xe2, 0xd1, 0xe8, 0x28, + 0x1e, 0x2e, 0x5e, 0x93, 0x10, 0xac, 0x60, 0xcd, 0xff, 0x3c, 0x07, 0x53, 0x0a, 0xa5, 0x35, 0xd3, + 0xf3, 0xd1, 0x97, 0x12, 0xaf, 0x6a, 0xe1, 0x78, 0xaf, 0x8a, 0xf6, 0x66, 0x2f, 0x4a, 0xda, 0x77, + 0xd0, 0xa2, 0xbc, 0x26, 0x07, 0x46, 0x4d, 0x9f, 0xb4, 0x3d, 0x91, 0xa5, 0x7c, 0x3d, 0xbb, 0x31, + 0x0b, 0xb3, 0x29, 0xab, 0x94, 0x01, 0xe6, 0x7c, 0xe6, 0xff, 0x62, 0x25, 0xf2, 0x88, 0xf4, 0xfd, + 0xb1, 0xe3, 0x7e, 0xb4, 0xa9, 0xde, 0xf5, 0x94, 0x0d, 0xd8, 0xf0, 0xb8, 0x9f, 0x02, 0xc3, 0x11, + 0x4c, 0xb4, 0x0f, 0x25, 0x9f, 0xb4, 0x3b, 0x96, 0xee, 0x07, 0x67, 0x04, 0xae, 0x0f, 0xf8, 0x04, + 0x5b, 0x82, 0x1c, 0x9f, 0xa5, 0x82, 0x5f, 0x58, 0xb2, 0x41, 0x6d, 0x18, 0xf3, 0xf8, 0x3e, 0x89, + 0xd0, 0xb3, 0x95, 0x01, 0x39, 0x06, 0xbb, 0x2e, 0xcc, 0x79, 0x88, 0x1f, 0x38, 0xe0, 0x81, 0xbe, + 0x0a, 0xa3, 0x6d, 0xd3, 0x36, 0x1d, 0x96, 0x1d, 0xa9, 0x5c, 0x7d, 0x2b, 0x5b, 0x43, 0x5a, 0x58, + 0xa7, 0xb4, 0xf9, 0x34, 0x20, 0xdf, 0x17, 0x6b, 0xc3, 0x9c, 0x2d, 0x3b, 0x18, 0x68, 0x88, 0xa0, + 0x5a, 0xc4, 0xe8, 0x5f, 0xca, 0x58, 0x06, 0x19, 0xb3, 0x47, 0x67, 0xa3, 0xa0, 0x19, 0x4b, 0xfe, + 0xe8, 0x01, 0x14, 0x76, 0x4c, 0x8b, 0x88, 0x7d, 0xe7, 0x3b, 0x19, 0xcb, 0xb1, 0x62, 0x5a, 0x84, + 0xcb, 0x10, 0x9e, 0x4c, 0x31, 0x2d, 0x82, 0x19, 0x4f, 0x36, 0x10, 0x2e, 0xe1, 0x34, 0xc4, 0xa6, + 0x5b, 0xd6, 0x03, 0x81, 0x05, 0xf9, 0xd8, 0x40, 0x04, 0xcd, 0x58, 0xf2, 0x47, 0xff, 0x3b, 0x17, + 0x66, 0x0d, 0xf9, 0x69, 0xcd, 0xb7, 0x33, 0x96, 0x45, 0xe4, 0x6a, 0xb8, 0x28, 0x32, 0x6c, 0x4f, + 0xe4, 0x11, 0x1f, 0x40, 0x41, 0x6f, 0xef, 0x77, 0x44, 0xa8, 0x92, 0xf5, 0x1b, 0xa9, 0xb5, 0xf7, + 0x3b, 0xb1, 0x37, 0x52, 0x5b, 0xdf, 0x6c, 0x60, 0xc6, 0x93, 0x9a, 0xc6, 0x9e, 0xbe, 0xb3, 0xa7, + 0x57, 0x61, 0x28, 0xa6, 0x71, 0x93, 0xd2, 0x8e, 0x99, 0x06, 0x6b, 0xc3, 0x9c, 0x2d, 0x7d, 0xf6, + 0xf6, 0xbe, 0xef, 0x57, 0x2b, 0x43, 0x79, 0xf6, 0xf5, 0x7d, 0xdf, 0x8f, 0x3d, 0xfb, 0xfa, 0xe6, + 0xd6, 0x16, 0x66, 0x3c, 0x29, 0x6f, 0x5b, 0xf7, 0x3d, 0x91, 0x84, 0xca, 0x9a, 0xf7, 0x86, 0xee, + 0x7b, 0x31, 0xde, 0x1b, 0xb5, 0x2d, 0x0d, 0x33, 0x9e, 0xe8, 0x2e, 0xe4, 0x3d, 0xdb, 0xab, 0x4e, + 0x30, 0xd6, 0x6f, 0x66, 0xcc, 0x5a, 0xb3, 0x05, 0x67, 0x79, 0xf4, 0x44, 0xdb, 0xd0, 0x30, 0x65, + 0xc8, 0xf8, 0xee, 0x7b, 0xd5, 0xc9, 0xe1, 0xf0, 0xdd, 0x4f, 0xf0, 0xdd, 0xa4, 0x7c, 0xf7, 0x3d, + 0xf4, 0x8d, 0x1c, 0x14, 0x3b, 0xdd, 0x6d, 0xad, 0xbb, 0x5d, 0x9d, 0x62, 0xbc, 0xbf, 0x98, 0x31, + 0xef, 0x06, 0x23, 0xce, 0xd9, 0xcb, 0x18, 0x83, 0x37, 0x62, 0xc1, 0x99, 0x09, 0xc1, 0xb9, 0x56, + 0xa7, 0x87, 0x22, 0xc4, 0x75, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0xc4, 0x82, 0x73, 0x20, 0x84, 0xa5, + 0x6f, 0x57, 0x67, 0x86, 0x25, 0x84, 0xa5, 0xa7, 0x08, 0x61, 0xe9, 0x5c, 0x08, 0x4b, 0xdf, 0xa6, + 0xaa, 0xbf, 0xdb, 0xdc, 0xf1, 0xaa, 0x68, 0x28, 0xaa, 0x7f, 0xa3, 0xb9, 0x13, 0x57, 0xfd, 0x1b, + 0xcb, 0x2b, 0x1a, 0x66, 0x3c, 0xa9, 0xcb, 0xf1, 0x2c, 0xdd, 0xd8, 0xab, 0x9e, 0x1b, 0x8a, 0xcb, + 0xd1, 0x28, 0xed, 0x98, 0xcb, 0x61, 0x6d, 0x98, 0xb3, 0x45, 0xbf, 0x9e, 0x83, 0x8a, 0x38, 0x7b, + 0x76, 0xdd, 0x35, 0x9b, 0xd5, 0xf3, 0xd9, 0xac, 0x10, 0xe3, 0x62, 0x84, 0x1c, 0xb8, 0x30, 0x32, + 0xbb, 0xa0, 0x40, 0xb0, 0x2a, 0x08, 0xfa, 0xdd, 0x1c, 0x4c, 0xea, 0x91, 0x53, 0x86, 0xd5, 0x27, + 0x99, 0x6c, 0xdb, 0x59, 0x4f, 0x09, 0xd1, 0xa3, 0x8c, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x02, 0x71, + 0x4c, 0x22, 0xa6, 0xbe, 0x9e, 0xef, 0x9a, 0x1d, 0x52, 0xbd, 0x30, 0x14, 0xf5, 0xd5, 0x18, 0xf1, + 0x98, 0xfa, 0xf2, 0x46, 0x2c, 0x38, 0xb3, 0xa9, 0x9b, 0xf0, 0x25, 0x79, 0xf5, 0xa9, 0xa1, 0x4c, + 0xdd, 0xc1, 0x82, 0x3f, 0x3a, 0x75, 0x8b, 0x56, 0x1c, 0x30, 0xa7, 0xba, 0xec, 0x92, 0xa6, 0xe9, + 0x55, 0xab, 0x43, 0xd1, 0x65, 0x4c, 0x69, 0xc7, 0x74, 0x99, 0xb5, 0x61, 0xce, 0x96, 0xba, 0x73, + 0xdb, 0xdb, 0xaf, 0x3e, 0x3d, 0x14, 0x77, 0xbe, 0xe1, 0xed, 0xc7, 0xdc, 0xf9, 0x86, 0xb6, 0x89, + 0x29, 0x43, 0xe1, 0xce, 0x2d, 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, + 0xd3, 0x46, 0x2c, 0x38, 0x33, 0x2d, 0x60, 0xd7, 0xcb, 0x4c, 0xa3, 0xfa, 0xa9, 0xa1, 0x68, 0xc1, + 0x75, 0x4e, 0x3d, 0xa6, 0x05, 0xa2, 0x15, 0x07, 0xcc, 0xd1, 0x73, 0x34, 0xaa, 0xed, 0x58, 0xa6, + 0xa1, 0x7b, 0xd5, 0x67, 0xd8, 0xc9, 0xc3, 0x71, 0x1e, 0x73, 0xf2, 0x36, 0x2c, 0xa1, 0xe8, 0x87, + 0x39, 0x98, 0x8a, 0xed, 0xb1, 0x55, 0x2f, 0x32, 0xd1, 0x8d, 0x8c, 0x45, 0xaf, 0x47, 0xb9, 0xf0, + 0x47, 0x90, 0x87, 0x35, 0xe2, 0x3b, 0x34, 0x71, 0xa1, 0xd0, 0xb7, 0x73, 0x50, 0x96, 0x6d, 0xd5, + 0x4b, 0x4c, 0xc4, 0x77, 0x86, 0x25, 0x22, 0x17, 0x4e, 0x1e, 0x3d, 0x0c, 0x4f, 0x19, 0x84, 0x22, + 0x30, 0xaf, 0xcd, 0x74, 0x5e, 0xf3, 0x5d, 0xa2, 0xb7, 0xab, 0x73, 0x43, 0xf1, 0xda, 0x38, 0xe4, + 0x10, 0xf3, 0xda, 0x0a, 0x04, 0xab, 0x82, 0xb0, 0x57, 0xaa, 0x47, 0x4f, 0xfe, 0x55, 0x2f, 0x0f, + 0xe5, 0x95, 0xc6, 0xcf, 0x17, 0x46, 0x5f, 0x69, 0x0c, 0x8a, 0xe3, 0x42, 0xa1, 0x3f, 0xc9, 0xc1, + 0x8c, 0x1e, 0x3f, 0x26, 0x5c, 0xfd, 0x4f, 0x4c, 0x54, 0x32, 0x0c, 0x51, 0x23, 0xc7, 0x91, 0x99, + 0xb0, 0x4f, 0x0b, 0x61, 0x67, 0x12, 0x70, 0x9c, 0x14, 0x8d, 0x06, 0x29, 0xde, 0x8e, 0xdf, 0xa9, + 0xce, 0x0f, 0x25, 0x48, 0xd1, 0x76, 0xfc, 0xf8, 0xba, 0x48, 0x5b, 0xd9, 0x6a, 0x60, 0xc6, 0x93, + 0x47, 0x69, 0xc4, 0x75, 0x4d, 0xbf, 0xfa, 0xec, 0x70, 0xa2, 0x34, 0x46, 0x3c, 0x1e, 0xa5, 0xb1, + 0x46, 0x2c, 0x38, 0xcf, 0x76, 0x01, 0xc2, 0xdc, 0x42, 0x4a, 0xfe, 0x76, 0x53, 0xcd, 0xdf, 0x56, + 0xae, 0xbe, 0xda, 0x77, 0x06, 0x5d, 0xfb, 0x6f, 0x35, 0xd7, 0x37, 0x77, 0x74, 0xc3, 0x57, 0x92, + 0xbf, 0xb3, 0xdf, 0xc9, 0xc1, 0x44, 0x24, 0x9f, 0x90, 0xc2, 0x7a, 0x37, 0xca, 0x1a, 0x67, 0xbf, + 0xe5, 0xa8, 0x4a, 0xf4, 0x7f, 0x72, 0x50, 0x96, 0x99, 0x85, 0x14, 0x69, 0x9a, 0x51, 0x69, 0x06, + 0xcd, 0x94, 0x32, 0x56, 0xe9, 0x92, 0xd0, 0xb1, 0x89, 0xa4, 0x18, 0x86, 0x3f, 0x36, 0x92, 0x5d, + 0xba, 0x44, 0x1f, 0xe5, 0x60, 0x5c, 0x4d, 0x34, 0xa4, 0x08, 0xd4, 0x8a, 0x0a, 0xb4, 0x99, 0xcd, + 0xe1, 0xa8, 0x23, 0xde, 0x95, 0xcc, 0x39, 0x0c, 0xff, 0x5d, 0xc5, 0x6e, 0xc8, 0xaa, 0x92, 0x7c, + 0x2b, 0x07, 0x10, 0x26, 0x20, 0x52, 0x44, 0x21, 0x51, 0x51, 0x06, 0xdd, 0xa3, 0xe6, 0xbc, 0x7a, + 0x8f, 0x8a, 0xcc, 0x46, 0x0c, 0x7f, 0x54, 0xd6, 0x37, 0xb7, 0xb6, 0x7a, 0x48, 0xf2, 0x7f, 0x73, + 0x50, 0x96, 0xb9, 0x89, 0xe1, 0x0f, 0xca, 0x46, 0x6d, 0x4b, 0xe3, 0xab, 0x87, 0xa4, 0x28, 0xdf, + 0xcc, 0x41, 0x29, 0xc8, 0x55, 0xa4, 0x48, 0x62, 0x44, 0x25, 0x19, 0xf4, 0x4c, 0x9f, 0xb6, 0xa1, + 0xf5, 0x18, 0x12, 0x26, 0xc7, 0xfe, 0xa9, 0xc9, 0xb1, 0xd9, 0x4b, 0x8e, 0x0f, 0x72, 0x50, 0x51, + 0xf2, 0x18, 0x29, 0xa2, 0xec, 0x44, 0x45, 0x19, 0x74, 0x7b, 0x46, 0x30, 0xeb, 0x2d, 0x8d, 0x92, + 0xd0, 0x18, 0xbe, 0x34, 0x82, 0xd9, 0x91, 0xd2, 0x04, 0x99, 0x8d, 0x53, 0x91, 0x86, 0x32, 0xeb, + 0x6d, 0xce, 0x32, 0xcb, 0x31, 0x7c, 0x73, 0xbe, 0xb1, 0xbc, 0xa2, 0x1d, 0xe1, 0xe4, 0xc2, 0x94, + 0xc7, 0xf0, 0xed, 0x99, 0xf3, 0x4a, 0x97, 0xe5, 0x7b, 0x39, 0x98, 0x8e, 0xe7, 0x3d, 0x52, 0x24, + 0xda, 0x8b, 0x4a, 0x34, 0xe8, 0xc5, 0x7f, 0x95, 0x63, 0xba, 0x5c, 0xbf, 0x9d, 0x83, 0x73, 0x29, + 0x39, 0x8f, 0x14, 0xd1, 0xec, 0xa8, 0x68, 0x77, 0x86, 0x75, 0x67, 0x34, 0xae, 0xd9, 0x4a, 0xd2, + 0x63, 0xf8, 0x9a, 0x2d, 0x98, 0xf5, 0x0e, 0x27, 0xd4, 0xe4, 0xc7, 0xf0, 0xc3, 0x89, 0xe4, 0xd9, + 0x8a, 0xb8, 0x7e, 0x87, 0x69, 0x90, 0xe1, 0xeb, 0x37, 0xe7, 0xd5, 0x7b, 0x9e, 0x08, 0x92, 0x22, + 0xc3, 0x9f, 0x27, 0x36, 0xb4, 0xcd, 0x23, 0xe7, 0x09, 0x99, 0x20, 0x39, 0x8d, 0x79, 0x82, 0x31, + 0xeb, 0xad, 0x31, 0x6a, 0xa2, 0x64, 0xf8, 0x1a, 0x13, 0x70, 0x4b, 0x97, 0xe7, 0xfb, 0x39, 0xe5, + 0x76, 0x92, 0x92, 0xfd, 0x48, 0x91, 0xcb, 0x89, 0xca, 0xf5, 0xd6, 0xd0, 0xce, 0x21, 0xab, 0xf2, + 0x7d, 0x9c, 0x83, 0xc9, 0x68, 0xea, 0x23, 0x45, 0x32, 0x33, 0x2a, 0x99, 0x36, 0x84, 0x9b, 0x4f, + 0x71, 0xcf, 0x1d, 0xcf, 0x7d, 0x0c, 0xdf, 0x73, 0xab, 0x1c, 0x7b, 0xbf, 0xcb, 0xb4, 0xb4, 0xc7, + 0xf0, 0xdf, 0x65, 0xef, 0xcb, 0x9c, 0xaa, 0x7c, 0x3f, 0xc8, 0xc1, 0x85, 0xf4, 0x5c, 0x47, 0x8a, + 0x84, 0xfb, 0x51, 0x09, 0xdf, 0x1e, 0xe2, 0x95, 0xef, 0x78, 0xac, 0x22, 0x93, 0x1d, 0xc3, 0x8f, + 0x55, 0xb4, 0x95, 0xad, 0xc6, 0x51, 0x31, 0x5c, 0x98, 0xf7, 0x38, 0x85, 0x18, 0x8e, 0x33, 0x4b, + 0x95, 0x66, 0xde, 0x8f, 0x9c, 0x38, 0xe2, 0xc7, 0x91, 0xd0, 0x7b, 0xf2, 0x00, 0x14, 0x3f, 0x27, + 0xf4, 0xd9, 0xfe, 0x73, 0x2a, 0x47, 0x9f, 0x73, 0xfa, 0xf3, 0x02, 0x4c, 0xc5, 0xf2, 0x0b, 0xac, + 0xf4, 0x08, 0xfd, 0xc9, 0xea, 0x74, 0xe5, 0xa2, 0xf7, 0xb0, 0xaf, 0x05, 0x00, 0x1c, 0xe2, 0xa0, + 0x8f, 0x73, 0x30, 0x75, 0x4f, 0xf7, 0x8d, 0xdd, 0x86, 0xee, 0xef, 0xf2, 0xc3, 0x6a, 0x19, 0xbd, + 0xbd, 0x37, 0xa3, 0x54, 0xc3, 0xf4, 0x62, 0x0c, 0x80, 0xe3, 0xfc, 0xd1, 0xf3, 0x30, 0xd6, 0x71, + 0x2c, 0xcb, 0xb4, 0x5b, 0xa2, 0xe0, 0x8a, 0xcc, 0x97, 0x37, 0x78, 0x33, 0x0e, 0xe0, 0xd1, 0x42, + 0x59, 0x85, 0x4c, 0x8e, 0x81, 0xc4, 0x86, 0xf4, 0x44, 0xa7, 0x33, 0x47, 0x3f, 0x29, 0xa7, 0x33, + 0xff, 0xb6, 0x00, 0x28, 0x39, 0x07, 0x3e, 0xaa, 0x94, 0xdc, 0x15, 0x28, 0x1a, 0xa1, 0xaa, 0x28, + 0xe7, 0xa9, 0xc5, 0x1b, 0x15, 0x50, 0x7e, 0xd3, 0xc1, 0x23, 0x46, 0xd7, 0x25, 0xc9, 0xca, 0x41, + 0xbc, 0x1d, 0x4b, 0x8c, 0x3e, 0x0b, 0x63, 0x7c, 0x94, 0xbc, 0xad, 0xf0, 0x5e, 0xe6, 0xc1, 0x40, + 0x1f, 0x2f, 0xff, 0x36, 0x2b, 0x14, 0xb4, 0x2b, 0x6e, 0x63, 0x15, 0xfb, 0xbe, 0xd9, 0x5d, 0x93, + 0x9d, 0xb1, 0x42, 0xe8, 0x6c, 0xca, 0x68, 0x0c, 0xa6, 0x53, 0x3f, 0x2b, 0xc2, 0x4c, 0xc2, 0x5d, + 0x9e, 0xd1, 0xc5, 0xca, 0x17, 0xa0, 0x44, 0xff, 0x2a, 0x75, 0x2c, 0xe4, 0x3b, 0xbc, 0x21, 0xda, + 0xb1, 0xc4, 0x50, 0xee, 0x0f, 0xe6, 0x7b, 0xde, 0x1f, 0xbc, 0x13, 0xb9, 0x44, 0x9d, 0x65, 0xad, + 0xb3, 0x57, 0x61, 0x82, 0x67, 0xeb, 0x83, 0x9b, 0x76, 0xa3, 0xd1, 0x9b, 0x56, 0xd7, 0x55, 0x20, + 0x8e, 0xe2, 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd1, 0xbd, 0xba, 0x0f, 0x93, 0x05, 0x2d, 0xde, 0xcd, + 0x7a, 0xfa, 0xec, 0xc3, 0xb2, 0xd4, 0x4b, 0xa9, 0xa5, 0x23, 0x2f, 0xa5, 0x2e, 0x42, 0xd9, 0xf3, + 0xac, 0x37, 0x88, 0x6b, 0xee, 0x1c, 0xb0, 0x0b, 0x91, 0x4a, 0xe1, 0x2d, 0x2d, 0x00, 0xe0, 0x10, + 0xe7, 0x93, 0x78, 0x9e, 0xfe, 0x6f, 0x72, 0x30, 0xc9, 0xd3, 0x5b, 0xb5, 0x4e, 0x67, 0xc9, 0x25, + 0x4d, 0x8f, 0xba, 0x9e, 0x8e, 0x6b, 0xde, 0xd5, 0x7d, 0x12, 0x5c, 0x85, 0xeb, 0xcf, 0xf5, 0x34, + 0x64, 0x67, 0xac, 0x10, 0x42, 0xcf, 0xc2, 0xa8, 0xde, 0xe9, 0xac, 0x2e, 0x33, 0x19, 0xf2, 0xe1, + 0xb1, 0x81, 0x1a, 0x6d, 0xc4, 0x1c, 0x86, 0x5e, 0x83, 0x49, 0xd3, 0xf6, 0x7c, 0xdd, 0xb2, 0xd8, + 0x99, 0xfb, 0xd5, 0x65, 0xe6, 0xe8, 0xf3, 0xe1, 0x21, 0x90, 0xd5, 0x08, 0x14, 0xc7, 0xb0, 0xe7, + 0xff, 0xb2, 0x02, 0x33, 0x89, 0x6c, 0x1d, 0x9a, 0x85, 0x11, 0x93, 0x5f, 0x52, 0xca, 0xd7, 0x41, + 0x50, 0x1a, 0x59, 0x5d, 0xc6, 0x23, 0x66, 0x53, 0x75, 0x24, 0x23, 0xa7, 0xe7, 0x48, 0x64, 0xad, + 0x82, 0xfc, 0x71, 0x6b, 0x15, 0x84, 0x77, 0x07, 0xc5, 0xdd, 0xbb, 0x94, 0x0b, 0xdd, 0xe1, 0x7d, + 0x43, 0xac, 0xe0, 0x1f, 0xab, 0x78, 0xc2, 0x2d, 0x28, 0xe9, 0x1d, 0x93, 0xdf, 0x2b, 0x2e, 0xf6, + 0x7d, 0xdf, 0xa7, 0xd6, 0x58, 0xe5, 0x97, 0x8a, 0x25, 0x91, 0xe4, 0x8d, 0xe2, 0xb1, 0x6c, 0x6f, + 0x14, 0xab, 0xc1, 0x40, 0xe9, 0x91, 0xc1, 0xc0, 0x15, 0x28, 0xea, 0x86, 0x6f, 0xde, 0x25, 0xc2, + 0x8e, 0x65, 0x88, 0x51, 0x63, 0xad, 0x58, 0x40, 0x45, 0xb9, 0x5f, 0x3f, 0x08, 0x79, 0x21, 0x51, + 0xee, 0x37, 0x00, 0x61, 0x15, 0x8f, 0xf9, 0x5a, 0xa6, 0x34, 0x81, 0xaf, 0xad, 0xc4, 0x7c, 0xad, + 0x0a, 0xc4, 0x51, 0x5c, 0x54, 0x83, 0x29, 0xde, 0x70, 0xbb, 0x63, 0x39, 0x7a, 0x93, 0x76, 0x1f, + 0x8f, 0x6a, 0xc5, 0xf5, 0x28, 0x18, 0xc7, 0xf1, 0x7b, 0xb8, 0xeb, 0x89, 0xc1, 0xdd, 0xf5, 0x64, + 0x36, 0xee, 0x3a, 0x6e, 0x91, 0x7d, 0xb8, 0xeb, 0xf7, 0xe3, 0x95, 0x01, 0xf8, 0x29, 0xcd, 0x41, + 0x5d, 0x2b, 0x35, 0xaf, 0xa6, 0x7a, 0xf7, 0xff, 0x58, 0x15, 0x01, 0x3e, 0x0b, 0x13, 0x8e, 0xdb, + 0xd2, 0x6d, 0xf3, 0x01, 0x73, 0x38, 0x1e, 0x3b, 0xad, 0x59, 0xe6, 0xda, 0x7a, 0x4b, 0x05, 0xe0, + 0x28, 0x1e, 0x7a, 0x00, 0xe5, 0x56, 0xe0, 0x65, 0xab, 0x33, 0x99, 0xf8, 0x99, 0xa8, 0xd7, 0xe6, + 0xd7, 0x83, 0x64, 0x1b, 0x0e, 0xd9, 0x29, 0xb3, 0x12, 0xfa, 0xa4, 0xcc, 0x4a, 0xef, 0x97, 0x98, + 0x1b, 0x8f, 0x6e, 0x73, 0x9c, 0x51, 0xcc, 0xf7, 0x39, 0x28, 0x8b, 0x88, 0x40, 0xcc, 0x5d, 0xe5, + 0xfa, 0xa7, 0x84, 0xaa, 0x9c, 0x4b, 0xd4, 0xd2, 0x58, 0x5d, 0xc6, 0x21, 0xf6, 0x31, 0x03, 0xc0, + 0x48, 0x4d, 0x87, 0x42, 0x76, 0x35, 0x1d, 0x34, 0x78, 0x92, 0xdf, 0xbf, 0xd5, 0xb4, 0x35, 0x16, + 0xa0, 0x98, 0x06, 0xbf, 0x7e, 0xcb, 0xab, 0xff, 0x5d, 0x14, 0x0f, 0xf1, 0xe4, 0xb5, 0x34, 0x24, + 0x9c, 0xde, 0x57, 0x78, 0x3a, 0x4b, 0x97, 0x9e, 0xae, 0x98, 0xf0, 0x74, 0x21, 0x10, 0x47, 0x71, + 0x7b, 0xb8, 0xa9, 0xd2, 0xe0, 0x6e, 0xaa, 0x9c, 0x95, 0x9b, 0x8a, 0x6a, 0xdc, 0x09, 0xa3, 0x4a, + 0x38, 0x32, 0xaa, 0xbc, 0x03, 0x15, 0x8f, 0xbd, 0x49, 0xfe, 0xc2, 0x2b, 0x7d, 0xbf, 0x70, 0x2d, + 0xec, 0x8d, 0x55, 0x52, 0x8a, 0xa1, 0x8f, 0x9f, 0x62, 0xa1, 0x88, 0x79, 0x28, 0xb6, 0x5c, 0xa7, + 0xdb, 0xe1, 0x77, 0x06, 0x84, 0x92, 0x5f, 0x67, 0x2d, 0x58, 0x40, 0x06, 0x73, 0x06, 0xdf, 0x2f, + 0xc3, 0x54, 0x6c, 0x9f, 0x31, 0x35, 0xcf, 0x94, 0x3b, 0xe3, 0x3c, 0xd3, 0x65, 0x28, 0xf8, 0x34, + 0x68, 0x18, 0x89, 0xde, 0x4a, 0x67, 0xd1, 0x02, 0x83, 0x24, 0x8b, 0x5f, 0xe4, 0x8f, 0x5f, 0xfc, + 0x02, 0xfd, 0x17, 0x28, 0xeb, 0xcd, 0xa6, 0x4b, 0x3c, 0x8f, 0x04, 0xd5, 0x74, 0x98, 0xcf, 0xaf, + 0x05, 0x8d, 0x38, 0x84, 0xb3, 0x85, 0x6a, 0x73, 0xc7, 0xbb, 0xed, 0x89, 0xec, 0x91, 0xba, 0x50, + 0x5d, 0x5e, 0xd1, 0x68, 0x3b, 0x96, 0x18, 0xa8, 0x09, 0x53, 0x7b, 0xee, 0xf6, 0xd2, 0x92, 0x6e, + 0xec, 0x92, 0x93, 0x64, 0x1c, 0x58, 0x95, 0xdc, 0x9b, 0x51, 0x0a, 0x38, 0x4e, 0x52, 0x70, 0xb9, + 0x49, 0x0e, 0x7c, 0x7d, 0xfb, 0x24, 0x31, 0x61, 0xc0, 0x45, 0xa5, 0x80, 0xe3, 0x24, 0x69, 0x04, + 0xb7, 0xe7, 0x6e, 0x07, 0x37, 0xda, 0x45, 0x55, 0x2e, 0x19, 0xc1, 0xdd, 0x0c, 0x41, 0x58, 0xc5, + 0xa3, 0x03, 0xb6, 0xe7, 0x6e, 0x63, 0xa2, 0x5b, 0x6d, 0x51, 0x58, 0x50, 0x0e, 0xd8, 0x4d, 0xd1, + 0x8e, 0x25, 0x06, 0xea, 0x00, 0xa2, 0x4f, 0xc7, 0xde, 0xbb, 0xbc, 0x92, 0x2b, 0x16, 0x7d, 0xcf, + 0xa5, 0x3d, 0x8d, 0x44, 0x52, 0x1f, 0xe8, 0x02, 0x75, 0x77, 0x37, 0x13, 0x74, 0x70, 0x0a, 0x6d, + 0xf4, 0x16, 0x3c, 0xb5, 0xe7, 0x6e, 0x8b, 0xb4, 0x7f, 0xc3, 0x35, 0x6d, 0xc3, 0xec, 0xe8, 0xbc, + 0x46, 0x40, 0x25, 0x5a, 0x07, 0xf1, 0x66, 0x3a, 0x1a, 0xee, 0xd5, 0x3f, 0x9a, 0xf4, 0x1c, 0xcf, + 0x24, 0xe9, 0x19, 0x33, 0xd7, 0xc7, 0xbd, 0xd8, 0xcd, 0x60, 0xfe, 0xe9, 0x47, 0x39, 0x40, 0xec, + 0x84, 0x55, 0xf0, 0x35, 0x10, 0xe6, 0xfc, 0xd0, 0x22, 0x94, 0x99, 0xf7, 0x53, 0x2e, 0xbd, 0xca, + 0xec, 0xc1, 0xf5, 0x00, 0x80, 0x43, 0x1c, 0xba, 0x46, 0x71, 0xac, 0x26, 0x91, 0x95, 0x2a, 0xe4, + 0x1a, 0xe5, 0x16, 0x6b, 0xc5, 0x02, 0x8a, 0xae, 0xc3, 0x8c, 0x4b, 0xb6, 0x75, 0x4b, 0xb7, 0x0d, + 0xa2, 0xf9, 0xae, 0xee, 0x93, 0xd6, 0x81, 0xf0, 0x24, 0xf2, 0x18, 0x2b, 0x8e, 0x23, 0xe0, 0x64, + 0x9f, 0xf9, 0xbf, 0x2f, 0xc1, 0x74, 0xfc, 0x68, 0xd8, 0xa3, 0x72, 0xb5, 0x8b, 0x50, 0xee, 0xe8, + 0xae, 0x6f, 0x2a, 0x75, 0x3c, 0xe4, 0x53, 0x35, 0x02, 0x00, 0x0e, 0x71, 0xe8, 0xb2, 0x9f, 0x95, + 0x69, 0x15, 0x12, 0xca, 0x65, 0x3f, 0x2b, 0xe3, 0x8a, 0x39, 0x2c, 0xbd, 0x38, 0x44, 0xe1, 0xd4, + 0x8a, 0x43, 0x3c, 0x16, 0x75, 0x5f, 0x3f, 0x48, 0xa6, 0xc9, 0xde, 0xc9, 0xf8, 0xdc, 0x5f, 0x7f, + 0xcb, 0xae, 0x09, 0x43, 0xd5, 0x67, 0x51, 0x0c, 0x63, 0x33, 0x0b, 0x91, 0x22, 0x86, 0xc2, 0x57, + 0x4f, 0x91, 0x26, 0x1c, 0x65, 0x8d, 0x1a, 0x70, 0xde, 0x32, 0xdb, 0x22, 0xe1, 0xe7, 0x35, 0x88, + 0xcb, 0xab, 0x23, 0x33, 0x47, 0x9d, 0x0f, 0x13, 0x21, 0x6b, 0x29, 0x38, 0x38, 0xb5, 0x27, 0x7a, + 0x1e, 0xc6, 0xee, 0x12, 0x97, 0x5d, 0xde, 0x87, 0x68, 0xc5, 0xf6, 0x37, 0x78, 0x33, 0x0e, 0xe0, + 0xe8, 0x2d, 0x28, 0x78, 0xba, 0x67, 0x89, 0x40, 0xed, 0x04, 0x47, 0x99, 0x6b, 0xda, 0x9a, 0x50, + 0x0f, 0x96, 0xa2, 0xa5, 0xbf, 0x31, 0x23, 0x79, 0x46, 0x01, 0x5b, 0xb8, 0xdd, 0x32, 0x71, 0xd4, + 0x76, 0xcb, 0x60, 0x4e, 0xf1, 0x07, 0x45, 0x98, 0x8a, 0x9d, 0xf5, 0x7c, 0x94, 0x6b, 0x91, 0x9e, + 0x62, 0xe4, 0x08, 0x4f, 0xf1, 0x02, 0x94, 0x0c, 0xcb, 0x24, 0xb6, 0xbf, 0xda, 0x14, 0x1e, 0x25, + 0xbc, 0x52, 0xce, 0xdb, 0x97, 0xb1, 0xc4, 0x38, 0x6b, 0xbf, 0xa2, 0x3a, 0x80, 0xd1, 0xe3, 0x16, + 0x9d, 0x29, 0x0e, 0xf3, 0xe3, 0x3f, 0xd9, 0x5c, 0x6d, 0x8f, 0xbd, 0xd8, 0xc7, 0xbe, 0x88, 0x74, + 0xb0, 0xc9, 0x52, 0xce, 0x7a, 0x93, 0x65, 0x30, 0x1b, 0xf9, 0xeb, 0x11, 0x28, 0x6d, 0xd4, 0xb6, + 0x34, 0x56, 0x5c, 0xf9, 0xed, 0x68, 0xf9, 0xe8, 0x41, 0x84, 0x4c, 0xd6, 0x89, 0x5e, 0xa1, 0xa6, + 0xd5, 0x77, 0x89, 0xe8, 0x32, 0xb7, 0x3e, 0xba, 0xce, 0xe4, 0xdd, 0xd1, 0x12, 0x14, 0xec, 0xbd, + 0x7e, 0xbf, 0xa1, 0xc1, 0xc6, 0x6c, 0xe3, 0x26, 0x39, 0xc0, 0xac, 0x33, 0xba, 0x0d, 0x60, 0xb8, + 0xa4, 0x49, 0x6c, 0xdf, 0x14, 0x9f, 0x30, 0xeb, 0x6f, 0x7f, 0x61, 0x49, 0x76, 0xc6, 0x0a, 0xa1, + 0xf9, 0x3f, 0x2c, 0xc2, 0x74, 0xfc, 0x4c, 0xf7, 0xa3, 0x5c, 0xce, 0xf3, 0x30, 0xe6, 0x75, 0x59, + 0x81, 0x1b, 0xe1, 0x74, 0xe4, 0x34, 0xa0, 0xf1, 0x66, 0x1c, 0xc0, 0xd3, 0x5d, 0x49, 0xfe, 0x4c, + 0x5c, 0x49, 0xe1, 0xb8, 0xae, 0x24, 0xeb, 0x80, 0xe6, 0x83, 0xe4, 0xe7, 0x21, 0xde, 0xc9, 0xf8, + 0x14, 0x7e, 0x1f, 0xbe, 0x84, 0x08, 0xab, 0x1e, 0xcb, 0xa4, 0x34, 0x4c, 0x60, 0x88, 0x89, 0x7d, + 0xd4, 0xb3, 0x71, 0x59, 0x73, 0x30, 0xca, 0x3e, 0x87, 0x20, 0x16, 0xa3, 0xcc, 0x14, 0xd9, 0x91, + 0x2a, 0xcc, 0xdb, 0x07, 0xac, 0x5e, 0x3f, 0x0a, 0x93, 0xd1, 0x53, 0x9c, 0x74, 0xdd, 0xbc, 0xeb, + 0x78, 0xbe, 0xc8, 0x26, 0xc4, 0x3f, 0x74, 0x78, 0x23, 0x04, 0x61, 0x15, 0xef, 0x78, 0x93, 0xf6, + 0xf3, 0x30, 0x26, 0x8a, 0xd5, 0x89, 0x39, 0x5b, 0x9a, 0x99, 0x28, 0x68, 0x87, 0x03, 0xf8, 0x7f, + 0xcc, 0xd8, 0x96, 0x87, 0xbe, 0x95, 0x9c, 0xb1, 0xdf, 0xce, 0xf4, 0xc8, 0xee, 0xe3, 0x3e, 0x61, + 0x0f, 0xa6, 0xdc, 0x6f, 0xc1, 0x4c, 0x62, 0x77, 0xe7, 0x78, 0xc5, 0xc0, 0xe7, 0x60, 0xd4, 0xd6, + 0xdb, 0x84, 0xd7, 0xcb, 0x12, 0x46, 0xc7, 0xbe, 0x17, 0x81, 0x79, 0xfb, 0xfc, 0x0f, 0x8b, 0x30, + 0x93, 0xb8, 0x9a, 0xc2, 0xd6, 0xc4, 0x72, 0x87, 0x20, 0xb6, 0xd2, 0x4f, 0xdd, 0x17, 0x78, 0x0d, + 0x26, 0x99, 0x61, 0x34, 0x62, 0xfb, 0x0a, 0x72, 0x97, 0x7b, 0x2b, 0x02, 0xc5, 0x31, 0xec, 0xe3, + 0xad, 0xa9, 0x5f, 0x83, 0x49, 0xf5, 0x03, 0x27, 0xab, 0xcb, 0x62, 0xdf, 0x58, 0x32, 0xd1, 0x22, + 0x50, 0x1c, 0xc3, 0x66, 0x5f, 0x87, 0x91, 0xb3, 0xab, 0xc8, 0xd7, 0x8d, 0xf6, 0xff, 0x75, 0x98, + 0x18, 0x09, 0x9c, 0x20, 0x8a, 0xb6, 0x61, 0x96, 0xe7, 0xf7, 0x55, 0x81, 0x62, 0x67, 0x4e, 0xe6, + 0x85, 0xd0, 0xb3, 0xcb, 0x3d, 0x31, 0xf1, 0x11, 0x54, 0xfa, 0x2c, 0xff, 0xf8, 0x61, 0xf2, 0x7b, + 0x99, 0xef, 0x66, 0x7d, 0xa1, 0xe9, 0x44, 0x36, 0x58, 0xfe, 0xa4, 0xd8, 0xe0, 0x0f, 0x2b, 0xd4, + 0x50, 0x62, 0x67, 0xf3, 0xd1, 0x3c, 0x14, 0x99, 0x6e, 0xd2, 0xe9, 0x45, 0x6e, 0x15, 0x30, 0xa5, + 0xf5, 0xb0, 0x80, 0x1c, 0x23, 0x8b, 0x2e, 0x62, 0xba, 0x7c, 0x8f, 0x98, 0xae, 0x03, 0xe7, 0x7c, + 0xcb, 0xdb, 0x72, 0xbb, 0x9e, 0xbf, 0x44, 0x5c, 0xdf, 0x13, 0xaa, 0x5b, 0xe8, 0xfb, 0x23, 0x73, + 0x5b, 0x6b, 0x5a, 0x9c, 0x0a, 0x4e, 0x23, 0x4d, 0x15, 0xd8, 0xb7, 0xbc, 0x9a, 0x65, 0x39, 0xf7, + 0x82, 0xa3, 0x07, 0xe1, 0x64, 0x23, 0xa6, 0x11, 0xa9, 0xc0, 0x5b, 0x6b, 0x5a, 0x0f, 0x4c, 0x7c, + 0x04, 0x15, 0xb4, 0xce, 0x9e, 0xea, 0x0d, 0xdd, 0x32, 0x9b, 0xba, 0x4f, 0xe8, 0x74, 0xcc, 0xd2, + 0xdb, 0xdc, 0x3a, 0xe4, 0x7e, 0xe4, 0xd6, 0x9a, 0x16, 0x47, 0xc1, 0x69, 0xfd, 0x86, 0xf5, 0xa1, + 0xd9, 0xd4, 0xd9, 0xbb, 0x74, 0x26, 0xb3, 0x77, 0xb9, 0x3f, 0x2b, 0x87, 0x8c, 0xac, 0x3c, 0xa6, + 0xf2, 0x7d, 0x58, 0x79, 0x13, 0xa6, 0xe4, 0x17, 0x78, 0x84, 0xce, 0x56, 0xfa, 0xde, 0x1e, 0xa9, + 0x45, 0x29, 0xe0, 0x38, 0xc9, 0x33, 0x4a, 0x39, 0xfd, 0x71, 0x0e, 0xa6, 0xa9, 0x24, 0x35, 0x7f, + 0x97, 0xd8, 0x0f, 0x1a, 0xba, 0xab, 0xb7, 0x83, 0x12, 0x63, 0x3b, 0x99, 0x0f, 0x79, 0x2d, 0xc6, + 0x88, 0x0f, 0xbd, 0xac, 0xfb, 0x1c, 0x07, 0xe3, 0x84, 0x64, 0x74, 0xea, 0x0b, 0xdb, 0x4e, 0xf2, + 0xb5, 0xd8, 0xf3, 0x51, 0x46, 0xc1, 0xd4, 0x17, 0x27, 0x3a, 0x90, 0x8f, 0x9d, 0x5d, 0x82, 0x27, + 0x53, 0x1f, 0xb5, 0x2f, 0x47, 0xfd, 0xcd, 0xa2, 0xb8, 0x5f, 0x93, 0xc1, 0x5a, 0x20, 0xeb, 0xcf, + 0x39, 0xd1, 0xc0, 0xca, 0x96, 0x9f, 0xfb, 0x8a, 0x7d, 0x06, 0x2e, 0xfc, 0xc0, 0x57, 0x88, 0x83, + 0x66, 0x61, 0xa4, 0xb9, 0xcd, 0x5c, 0xfd, 0x68, 0x78, 0xd0, 0x6f, 0xb9, 0x8e, 0x47, 0x9a, 0xdb, + 0xe8, 0x39, 0x28, 0x89, 0x45, 0x46, 0x70, 0x0e, 0x8e, 0xb1, 0x15, 0x2b, 0x10, 0x0f, 0x4b, 0xe8, + 0xb0, 0xc2, 0xfa, 0x21, 0x24, 0xf8, 0xe3, 0x6f, 0xee, 0xb1, 0xcf, 0xc4, 0xf5, 0xe7, 0xa1, 0x5f, + 0x50, 0xaa, 0x9a, 0x43, 0x34, 0xd9, 0x9b, 0x2c, 0x59, 0x3e, 0x58, 0xc0, 0xf2, 0x67, 0x45, 0xb8, + 0x90, 0x7e, 0xeb, 0xeb, 0xb1, 0xb1, 0x06, 0xae, 0xdc, 0xf9, 0x54, 0xe5, 0xfe, 0x34, 0x8c, 0x79, + 0x4c, 0xf0, 0xe0, 0x68, 0x00, 0xaf, 0x37, 0xcb, 0x9b, 0x70, 0x00, 0x43, 0xaf, 0x03, 0x6a, 0xeb, + 0xf7, 0xd7, 0xbd, 0xd6, 0x92, 0xd3, 0x65, 0x25, 0xb4, 0x31, 0xd1, 0x79, 0x7d, 0xf7, 0xd1, 0xf0, + 0x00, 0xce, 0x7a, 0x02, 0x03, 0xa7, 0xf4, 0x62, 0x87, 0x19, 0x22, 0x1b, 0x44, 0xb1, 0x93, 0x40, + 0x47, 0xee, 0xe8, 0x0c, 0x29, 0xfe, 0xf8, 0x38, 0x19, 0xb8, 0x1b, 0x43, 0xb9, 0x0a, 0xf8, 0xb8, + 0x47, 0xef, 0xa7, 0x69, 0x3a, 0x3f, 0x2b, 0xc0, 0xb9, 0x94, 0x52, 0x30, 0x51, 0xef, 0x9d, 0x3b, + 0x86, 0xf7, 0xde, 0x97, 0x23, 0x95, 0xcd, 0x49, 0xec, 0x40, 0xa8, 0x23, 0x86, 0xe9, 0xc3, 0x1c, + 0x9c, 0x67, 0x3b, 0xf0, 0xc1, 0xb6, 0x5f, 0x50, 0x03, 0x38, 0x2f, 0x34, 0xf3, 0x58, 0xc5, 0xb8, + 0xaf, 0xa7, 0x50, 0x08, 0xb7, 0x25, 0xd3, 0xa0, 0x38, 0x95, 0x2b, 0x5a, 0x02, 0x90, 0x77, 0xe9, + 0x02, 0x4b, 0x7e, 0x96, 0x95, 0x14, 0x97, 0xad, 0xff, 0xc6, 0x76, 0xf7, 0x95, 0xd1, 0x66, 0x2b, + 0x23, 0xa5, 0xdb, 0x30, 0x3e, 0xbc, 0x92, 0xf2, 0x7a, 0x8f, 0x6f, 0x01, 0x83, 0x69, 0xd7, 0x1f, + 0xe5, 0x61, 0x32, 0xfa, 0x22, 0xd1, 0x15, 0x28, 0x76, 0x5c, 0xb2, 0x63, 0xde, 0x8f, 0x7f, 0x7f, + 0xa3, 0xc1, 0x5a, 0xb1, 0x80, 0x22, 0x07, 0x8a, 0x96, 0xbe, 0x4d, 0xe7, 0x7b, 0x5e, 0xff, 0xfc, + 0xfa, 0xc0, 0xb5, 0xbc, 0x83, 0x6d, 0x88, 0x80, 0xe1, 0x1a, 0x23, 0x8f, 0x05, 0x1b, 0xca, 0x70, + 0xc7, 0x24, 0x56, 0x93, 0x9f, 0xf7, 0x1c, 0x06, 0xc3, 0x15, 0x46, 0x1e, 0x0b, 0x36, 0xe8, 0x6d, + 0x28, 0xf3, 0x8f, 0x96, 0x34, 0xeb, 0x07, 0x62, 0x85, 0xfb, 0x9f, 0x8f, 0xa7, 0xb2, 0x5b, 0x66, + 0x9b, 0x84, 0xe6, 0xb8, 0x14, 0x10, 0xc1, 0x21, 0x3d, 0xf6, 0xad, 0xfa, 0x1d, 0x9f, 0xb8, 0x9a, + 0xaf, 0xbb, 0xc1, 0xa7, 0xe4, 0xc3, 0x6f, 0xd5, 0x4b, 0x08, 0x56, 0xb0, 0xe6, 0xff, 0x74, 0x0c, + 0xa6, 0x62, 0xf7, 0x6c, 0x7f, 0x35, 0x2e, 0x91, 0xaa, 0x1f, 0x58, 0xc9, 0x67, 0xfd, 0x81, 0x95, + 0x42, 0x16, 0xe1, 0xc1, 0xdb, 0x30, 0xee, 0x79, 0xbb, 0x0c, 0xb3, 0xff, 0x5c, 0xdd, 0xf4, 0xe1, + 0xc3, 0xb9, 0x71, 0x4d, 0xbb, 0x21, 0xbb, 0xe3, 0x08, 0x31, 0xb4, 0x06, 0x63, 0xe2, 0x70, 0x61, + 0x7f, 0x27, 0x03, 0x59, 0x18, 0x12, 0x84, 0x47, 0x01, 0x89, 0x61, 0x6c, 0x49, 0xc7, 0x94, 0xee, + 0xb1, 0x0f, 0x84, 0x1b, 0x70, 0xbe, 0xe3, 0x58, 0x56, 0x70, 0xba, 0x53, 0x7e, 0x1a, 0xa9, 0x1c, + 0xbd, 0xdb, 0xd3, 0x48, 0xc1, 0xc1, 0xa9, 0x3d, 0x07, 0xf3, 0xb2, 0xff, 0x54, 0x84, 0xc9, 0x68, + 0x19, 0xaa, 0xb3, 0xbb, 0x61, 0xc9, 0x12, 0x81, 0x35, 0xd7, 0x8e, 0xdf, 0xb0, 0xdc, 0x12, 0xed, + 0x58, 0x62, 0x20, 0x0c, 0x65, 0x7e, 0xe2, 0xfd, 0x66, 0xbf, 0x9b, 0xd2, 0xfc, 0xe8, 0x6c, 0xd0, + 0x17, 0x87, 0x64, 0x28, 0x4d, 0x2f, 0x40, 0xef, 0xcf, 0x32, 0x19, 0x4d, 0xd9, 0x8c, 0x43, 0x32, + 0x74, 0xc6, 0x72, 0x49, 0x2b, 0xc8, 0x06, 0x2a, 0x33, 0x16, 0x66, 0xad, 0x58, 0x40, 0xd1, 0xf3, + 0x30, 0xe6, 0x3a, 0x16, 0xa9, 0xe1, 0x0d, 0x11, 0x4d, 0xcb, 0x8d, 0x32, 0xcc, 0x9b, 0x71, 0x00, + 0x1f, 0xc6, 0x26, 0x51, 0x54, 0x01, 0xfa, 0x30, 0xa1, 0xeb, 0x30, 0x73, 0x57, 0x64, 0x18, 0x35, + 0xb3, 0x65, 0xeb, 0x7e, 0x78, 0x29, 0x4b, 0x9e, 0x48, 0x7c, 0x23, 0x8e, 0x80, 0x93, 0x7d, 0xce, + 0x2e, 0x56, 0x26, 0x76, 0xb3, 0xe3, 0x98, 0xb6, 0x1f, 0x8f, 0x95, 0xaf, 0x89, 0x76, 0x2c, 0x31, + 0x06, 0xb3, 0xb3, 0xbf, 0x1a, 0x83, 0xc9, 0x68, 0x99, 0xb5, 0xa8, 0x0e, 0xe7, 0x86, 0xa0, 0xc3, + 0x23, 0x59, 0xeb, 0x70, 0xfe, 0x48, 0x1d, 0x7e, 0x36, 0xd8, 0xb9, 0x2e, 0x44, 0x37, 0xa7, 0xd4, + 0xdd, 0x6b, 0x54, 0xa3, 0x33, 0xbc, 0xe9, 0xd3, 0x28, 0x84, 0x9f, 0xc8, 0xe3, 0x87, 0x15, 0xf2, + 0xea, 0x8c, 0x1c, 0x01, 0xe3, 0x38, 0x7e, 0x3f, 0xb6, 0xd2, 0xdf, 0xee, 0xcf, 0x6b, 0x30, 0xc9, + 0x84, 0xac, 0x19, 0x06, 0x5d, 0xef, 0xae, 0x36, 0xc5, 0x21, 0x72, 0xb9, 0x71, 0xb6, 0xa9, 0x42, + 0x97, 0x71, 0x0c, 0x3b, 0x6a, 0x99, 0xe5, 0x6c, 0x2c, 0x73, 0xf3, 0x84, 0x96, 0x79, 0x11, 0xf2, + 0x4d, 0x6b, 0x9f, 0x69, 0x75, 0x29, 0xdc, 0x2b, 0x59, 0x5e, 0xdb, 0xc4, 0xb4, 0x5d, 0xb1, 0xb7, + 0xca, 0x19, 0xd9, 0xdb, 0xf8, 0xa3, 0xec, 0x8d, 0xc5, 0x35, 0xfc, 0x0b, 0x4a, 0xfc, 0xc2, 0xcc, + 0x44, 0xff, 0x71, 0x8d, 0xd2, 0x1d, 0x47, 0x88, 0x0d, 0x66, 0xcc, 0x5f, 0x83, 0x52, 0xc0, 0x88, + 0x0e, 0xb4, 0xec, 0x17, 0x0e, 0x34, 0x35, 0x21, 0x46, 0x64, 0x11, 0xca, 0x4e, 0x87, 0x44, 0x3e, + 0x7f, 0x28, 0x63, 0xe0, 0x5b, 0x01, 0x00, 0x87, 0x38, 0xd4, 0x8a, 0x38, 0xd7, 0xd8, 0x16, 0xef, + 0x1b, 0xb4, 0x51, 0x08, 0x31, 0xff, 0xf5, 0x1c, 0x04, 0xdf, 0x14, 0x42, 0xcb, 0x30, 0xda, 0x71, + 0x5c, 0x9f, 0x6f, 0xad, 0x55, 0xae, 0xce, 0xa5, 0x8f, 0x0f, 0x3f, 0xfe, 0xef, 0xb8, 0x7e, 0x48, + 0x91, 0xfe, 0xf2, 0x30, 0xef, 0x4c, 0xe5, 0x34, 0xac, 0xae, 0xe7, 0x13, 0x77, 0xb5, 0x11, 0x97, + 0x73, 0x29, 0x00, 0xe0, 0x10, 0x67, 0xfe, 0x5f, 0x0a, 0x30, 0x1d, 0xaf, 0xbc, 0x87, 0xde, 0x85, + 0x09, 0xcf, 0x6c, 0xd9, 0xa6, 0xdd, 0x12, 0xb1, 0x68, 0xae, 0xef, 0xbb, 0xbf, 0x9a, 0xda, 0x1f, + 0x47, 0xc9, 0x65, 0x76, 0x9c, 0xed, 0x6c, 0xbe, 0x9b, 0xff, 0x41, 0xb2, 0xc8, 0xcc, 0x3b, 0x19, + 0xd7, 0x3e, 0xfc, 0xd5, 0xae, 0x32, 0xf3, 0xcb, 0x51, 0xb8, 0x90, 0x5e, 0x5b, 0xf1, 0x8c, 0x82, + 0xd6, 0xf0, 0x9e, 0xe7, 0x48, 0xcf, 0x7b, 0x9e, 0xe1, 0x38, 0xe7, 0x33, 0xaa, 0x95, 0x28, 0x07, + 0xe0, 0x68, 0x57, 0x2b, 0xc3, 0xe9, 0xc2, 0x23, 0xc3, 0xe9, 0x2b, 0x50, 0x14, 0x75, 0xf5, 0x63, + 0x61, 0x6a, 0x9d, 0x57, 0xbd, 0x17, 0x50, 0x25, 0x14, 0x28, 0x1e, 0x19, 0x0a, 0xd0, 0xd0, 0x26, + 0xd8, 0x7f, 0xec, 0xef, 0xae, 0x17, 0x0f, 0x6d, 0x82, 0xbe, 0x38, 0x24, 0xc3, 0x6e, 0xf2, 0x77, + 0xcc, 0xdb, 0x78, 0x4d, 0xcc, 0xca, 0xe1, 0x4d, 0xfe, 0xc6, 0xea, 0x6d, 0xbc, 0x86, 0x05, 0x34, + 0x9a, 0x0a, 0x2e, 0x67, 0x92, 0x0a, 0x4e, 0xd7, 0xb9, 0xd3, 0x4a, 0x84, 0x19, 0x30, 0x93, 0x78, + 0xe7, 0xc7, 0x4e, 0x85, 0x5d, 0x81, 0xa2, 0xd7, 0xdd, 0xa1, 0x78, 0xb1, 0x12, 0x4b, 0x1a, 0x6b, + 0xc5, 0x02, 0x3a, 0xff, 0xdd, 0x02, 0xe5, 0x12, 0xab, 0xc2, 0x79, 0x46, 0x56, 0xf5, 0x2a, 0x4c, + 0xf0, 0x64, 0xd4, 0x9b, 0x4a, 0x7d, 0x8e, 0x92, 0xb2, 0xc1, 0xa0, 0x02, 0x71, 0x14, 0x17, 0xad, + 0x32, 0x35, 0xe9, 0x7b, 0x59, 0x08, 0x42, 0x93, 0xe8, 0xc4, 0x2d, 0x08, 0xa0, 0x97, 0xa0, 0xc2, + 0x1e, 0x82, 0x0f, 0xb9, 0xc8, 0xca, 0xb2, 0x9b, 0xb8, 0xd7, 0xc2, 0x66, 0xac, 0xe2, 0x44, 0x8f, + 0x16, 0x8c, 0x66, 0x72, 0xb4, 0x20, 0xf1, 0x56, 0x4e, 0x4b, 0xef, 0xbe, 0x5d, 0x02, 0xf9, 0xa5, + 0x44, 0x64, 0x24, 0xbe, 0x57, 0xf9, 0xb9, 0xbe, 0x37, 0x6f, 0x02, 0x51, 0x78, 0x26, 0x2b, 0x65, + 0x4a, 0x7a, 0x1d, 0x90, 0xf8, 0x40, 0xa2, 0x08, 0xaa, 0x95, 0x7a, 0x4b, 0x72, 0x97, 0x4a, 0x4b, + 0x60, 0xe0, 0x94, 0x5e, 0xe8, 0x75, 0xf6, 0x75, 0x56, 0x5f, 0x37, 0x6d, 0xe9, 0x79, 0x2f, 0xf6, + 0xb8, 0xa0, 0xc9, 0x91, 0xe4, 0x77, 0x56, 0xf9, 0x4f, 0x1c, 0x76, 0x47, 0xd7, 0x60, 0xec, 0xae, + 0x63, 0x75, 0xdb, 0x22, 0x35, 0x5f, 0xb9, 0x3a, 0x9b, 0x46, 0xe9, 0x0d, 0x86, 0xa2, 0x5c, 0x28, + 0xe2, 0x5d, 0x70, 0xd0, 0x17, 0x11, 0x98, 0x62, 0xc7, 0x7b, 0x4c, 0xff, 0x40, 0x18, 0x80, 0x98, + 0x7a, 0xaf, 0xa4, 0x91, 0x6b, 0x38, 0x4d, 0x2d, 0x8a, 0xcd, 0x4f, 0x7a, 0xc4, 0x1a, 0x71, 0x9c, + 0x26, 0x5a, 0x81, 0x92, 0xbe, 0xb3, 0x63, 0xda, 0xa6, 0x7f, 0x20, 0x72, 0x76, 0xcf, 0xa4, 0xd1, + 0xaf, 0x09, 0x1c, 0x51, 0xc8, 0x45, 0xfc, 0xc2, 0xb2, 0x2f, 0xba, 0x0d, 0x15, 0xdf, 0xb1, 0x44, + 0x5c, 0xea, 0x89, 0x54, 0xc3, 0xa5, 0x34, 0x52, 0x5b, 0x12, 0x2d, 0xdc, 0x1e, 0x0d, 0xdb, 0x3c, + 0xac, 0xd2, 0x41, 0xff, 0x3f, 0x07, 0xe3, 0xb6, 0xd3, 0x24, 0x81, 0xe9, 0x89, 0xed, 0xba, 0xb7, + 0x32, 0xfa, 0xc2, 0xe7, 0xc2, 0x86, 0x42, 0x9b, 0x5b, 0x88, 0x2c, 0xf0, 0xa1, 0x82, 0x70, 0x44, + 0x08, 0x64, 0xc3, 0xb4, 0xd9, 0xd6, 0x5b, 0xa4, 0xd1, 0xb5, 0xc4, 0xf1, 0x44, 0x4f, 0x4c, 0x1e, + 0xa9, 0xd7, 0x7a, 0xd7, 0x1c, 0x43, 0xb7, 0xf8, 0x17, 0x72, 0x31, 0xd9, 0x21, 0x2e, 0xfb, 0x50, + 0xaf, 0x3c, 0x69, 0xb2, 0x1a, 0xa3, 0x84, 0x13, 0xb4, 0xd1, 0x75, 0x98, 0xe9, 0xb8, 0xa6, 0xc3, + 0xde, 0x9b, 0xa5, 0x7b, 0xfc, 0x0b, 0xa9, 0x10, 0xbd, 0xcb, 0xd9, 0x88, 0x23, 0xe0, 0x64, 0x1f, + 0x5e, 0x7f, 0x80, 0x37, 0xb2, 0xb5, 0xdc, 0x68, 0x50, 0x7f, 0x80, 0xb7, 0x61, 0x09, 0x9d, 0xfd, + 0x02, 0xcc, 0x24, 0xc6, 0xa6, 0x2f, 0x87, 0xf0, 0x9b, 0x39, 0x88, 0xe7, 0xcb, 0xe9, 0xba, 0xa1, + 0x69, 0xba, 0x8c, 0xe0, 0x41, 0x3c, 0xc7, 0xbf, 0x1c, 0x00, 0x70, 0x88, 0x83, 0x2e, 0x43, 0xa1, + 0xa3, 0xfb, 0xbb, 0xf1, 0x63, 0x7e, 0x94, 0x24, 0x66, 0x10, 0x74, 0x15, 0x80, 0xfe, 0xc5, 0xa4, + 0x45, 0xee, 0x77, 0xc4, 0x32, 0x48, 0x6e, 0x3f, 0x34, 0x24, 0x04, 0x2b, 0x58, 0xf3, 0x7f, 0x37, + 0x0a, 0x93, 0xd1, 0xb9, 0x25, 0xb2, 0xd8, 0xcc, 0x3d, 0x72, 0xb1, 0x79, 0x05, 0x8a, 0x6d, 0xe2, + 0xef, 0x3a, 0xcd, 0xf8, 0x3c, 0xb9, 0xce, 0x5a, 0xb1, 0x80, 0x32, 0xf1, 0x1d, 0xd7, 0x17, 0x62, + 0x85, 0xe2, 0x3b, 0xae, 0x8f, 0x19, 0x24, 0x38, 0xa5, 0x58, 0xe8, 0x71, 0x4a, 0xb1, 0x05, 0xd3, + 0xbc, 0x02, 0xf0, 0x12, 0x71, 0xfd, 0x13, 0x9f, 0xae, 0xd5, 0x62, 0x24, 0x70, 0x82, 0x28, 0x6a, + 0x52, 0x6f, 0x43, 0xdb, 0xc2, 0x9d, 0x81, 0xfe, 0xef, 0xf6, 0x6b, 0x51, 0x0a, 0x38, 0x4e, 0x72, + 0x18, 0xd9, 0xc8, 0xe8, 0x7b, 0x3c, 0x71, 0xe9, 0xc4, 0x52, 0x56, 0xa5, 0x13, 0x5f, 0x81, 0xc9, + 0xb6, 0x7e, 0xbf, 0xa1, 0x1f, 0x58, 0x8e, 0xde, 0xd4, 0xcc, 0x07, 0x44, 0x5c, 0x3f, 0x45, 0x87, + 0x0f, 0xe7, 0x26, 0xd7, 0x23, 0x10, 0x1c, 0xc3, 0x1c, 0x6c, 0x02, 0xfe, 0xad, 0x11, 0x40, 0xc9, + 0x2f, 0x9b, 0xa0, 0x8f, 0x72, 0x30, 0x79, 0x2f, 0x32, 0x46, 0xc3, 0x09, 0xce, 0x64, 0xda, 0x2b, + 0xda, 0x8e, 0x63, 0xcc, 0x95, 0x05, 0xce, 0xc8, 0xe9, 0x2d, 0x24, 0xeb, 0xc6, 0x8f, 0x7f, 0x71, + 0xe9, 0x89, 0x9f, 0xfc, 0xe2, 0xd2, 0x13, 0x3f, 0xfd, 0xc5, 0xa5, 0x27, 0xbe, 0x7e, 0x78, 0x29, + 0xf7, 0xe3, 0xc3, 0x4b, 0xb9, 0x9f, 0x1c, 0x5e, 0xca, 0xfd, 0xf4, 0xf0, 0x52, 0xee, 0xe7, 0x87, + 0x97, 0x72, 0xdf, 0xfd, 0xc7, 0x4b, 0x4f, 0x7c, 0xf1, 0xf3, 0xa1, 0x28, 0x8b, 0x81, 0x28, 0xec, + 0x9f, 0x17, 0x39, 0xeb, 0xc5, 0xce, 0x5e, 0x6b, 0x91, 0x8a, 0xb2, 0xa8, 0x88, 0xb2, 0x18, 0x88, + 0xf2, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x62, 0x2f, 0xb6, 0x86, 0xdc, 0xa5, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { @@ -6134,6 +6134,13 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Queue != nil { + i -= len(*m.Queue) + copy(dAtA[i:], *m.Queue) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Queue))) + i-- + dAtA[i] = 0x4a + } if m.Filter != nil { { size, err := m.Filter.MarshalToSizedBuffer(dAtA[:i]) @@ -9536,6 +9543,10 @@ func (m *NATSEventsSource) Size() (n int) { l = m.Filter.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.Queue != nil { + l = len(*m.Queue) + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -11328,6 +11339,7 @@ func (this *NATSEventsSource) String() string { `Metadata:` + mapStringForMetadata + `,`, `Auth:` + strings.Replace(this.Auth.String(), "NATSAuth", "NATSAuth", 1) + `,`, `Filter:` + strings.Replace(this.Filter.String(), "EventSourceFilter", "EventSourceFilter", 1) + `,`, + `Queue:` + valueToStringGenerated(this.Queue) + `,`, `}`, }, "") return s @@ -26303,6 +26315,39 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Queue", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + s := string(dAtA[iNdEx:postIndex]) + m.Queue = &s + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto index 1bc06dc721..11e4ff76b2 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.proto +++ b/pkg/apis/eventsource/v1alpha1/generated.proto @@ -1106,6 +1106,11 @@ message NATSEventsSource { // Filter // +optional optional EventSourceFilter filter = 8; + + // Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe + // logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic. + // +optional + optional string queue = 9; } // NSQEventSource describes the event source for NSQ PubSub diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go index 2cfb60121b..e130c5b545 100644 --- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go +++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go @@ -2962,6 +2962,13 @@ func schema_pkg_apis_eventsource_v1alpha1_NATSEventsSource(ref common.ReferenceC Ref: ref("github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.EventSourceFilter"), }, }, + "queue": { + SchemaProps: spec.SchemaProps{ + Description: "Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic.", + Type: []string{"string"}, + Format: "", + }, + }, }, Required: []string{"url", "subject"}, }, diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go index c2db254f85..099067b250 100644 --- a/pkg/apis/eventsource/v1alpha1/types.go +++ b/pkg/apis/eventsource/v1alpha1/types.go @@ -631,6 +631,10 @@ type NATSEventsSource struct { // Filter // +optional Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,8,opt,name=filter"` + // Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe + // logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic. + // +optional + Queue *string `json:"queue" protobuf:"bytes,9,opt,name=queue"` } // NATSAuth refers to the auth info for NATS EventSource diff --git a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go index e33de9dc68..7bc8ed5c23 100644 --- a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go @@ -1430,6 +1430,11 @@ func (in *NATSEventsSource) DeepCopyInto(out *NATSEventsSource) { *out = new(EventSourceFilter) **out = **in } + if in.Queue != nil { + in, out := &in.Queue, &out.Queue + *out = new(string) + **out = **in + } return } From 6f6d6b5554d0b4a14cf96947dd630b4cfea372d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 12:51:49 +0000 Subject: [PATCH 112/123] chore(deps): bump github.com/ktrysmt/go-bitbucket from 0.9.79 to 0.9.80 (#3145) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 1294 +------------------------------------------------------- 2 files changed, 3 insertions(+), 1293 deletions(-) diff --git a/go.mod b/go.mod index 8292257b0e..eb2a403c2f 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/imdario/mergo v0.3.16 github.com/itchyny/gojq v0.12.15 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 - github.com/ktrysmt/go-bitbucket v0.9.79 + github.com/ktrysmt/go-bitbucket v0.9.80 github.com/minio/minio-go/v7 v7.0.70 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index 9b8bf91263..0fa3172fbc 100644 --- a/go.sum +++ b/go.sum @@ -1,618 +1,23 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= cloud.google.com/go v0.113.0 h1:g3C70mn3lWfckKBiCVsAshabrDg01pQ0pnX1MNtnMkA= cloud.google.com/go v0.113.0/go.mod h1:glEqlogERKYeePz6ZdkcLJ28Q2I6aERgDDErBg9GzO8= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= -cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= -cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= -cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= -cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= cloud.google.com/go/auth v0.4.1 h1:Z7YNIhlWRtrnKlZke7z3GMqzvuYzdc2z98F9D1NV5Hg= cloud.google.com/go/auth v0.4.1/go.mod h1:QVBuVEKpCn4Zp58hzRGvL0tjRGU0YqdRTdCHM1IHnro= cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= -cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= -cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= -cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc= cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= -cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= -cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= cloud.google.com/go/iam v1.1.7 h1:z4VHOhwKLF/+UYXAJDFwGtNF0b6gjsW1Pk9Ml0U/IoM= cloud.google.com/go/iam v1.1.7/go.mod h1:J4PMPg8TtyurAUvSmPj8FF3EDgY1SPRZxcUGrn7WXGA= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= -cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= -cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= cloud.google.com/go/kms v1.15.8 h1:szIeDCowID8th2i8XE4uRev5PMxQFqW+JjwYxL9h6xs= cloud.google.com/go/kms v1.15.8/go.mod h1:WoUHcDjD9pluCg7pNds131awnH429QGvRM3N/4MyoVs= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= -cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= cloud.google.com/go/pubsub v1.38.0 h1:J1OT7h51ifATIedjqk/uBNPh+1hkvUaH4VKbz4UuAsc= cloud.google.com/go/pubsub v1.38.0/go.mod h1:IPMJSWSus/cu57UyR01Jqa/bNOQA+XnPF6Z4dKW4fAA= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= -cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= -cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4= github.com/99designs/keyring v1.2.1 h1:tYLp1ULvO7i3fI5vE21ReQuj99QFSs7lGm0xWyJo87o= @@ -681,7 +86,6 @@ github.com/IBM/sarama v1.43.0 h1:YFFDn8mMI2QL0wOrG0J2sFoVIAFl7hS9JQi2YZsXtJc= github.com/IBM/sarama v1.43.0/go.mod h1:zlE6HEbC/SMQ9mhEYaF7nNLYOUyrs0obySKCckWP9BM= github.com/Jeffail/gabs v1.4.0 h1://5fYRRTq1edjfIrQGvdkcd22pkYUrHZ5YC/H2GJVAo= github.com/Jeffail/gabs v1.4.0/go.mod h1:6xMvQMK4k33lb7GUUpaAPh6nKMmemQeg5d4gn7/bOXc= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= @@ -695,7 +99,6 @@ github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/PagerDuty/go-pagerduty v1.6.0 h1:am81SzvG5Pw+s3JZ5yEy6kGvsXXklTNRrGr3d8WKpsU= github.com/PagerDuty/go-pagerduty v1.6.0/go.mod h1:7eaBLzsDpK7VUvU0SJ5mohczQkoWrrr5CjDaw5gh1as= github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= @@ -711,10 +114,6 @@ github.com/ahmetb/gen-crd-api-reference-docs v0.3.0 h1:+XfOU14S4bGuwyvCijJwhhBIj github.com/ahmetb/gen-crd-api-reference-docs v0.3.0/go.mod h1:TdjdkYhlOifCQWPs1UdTma97kQQMozf5h26hTuG70u8= github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU= github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY= github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/andygrunwald/go-gerrit v0.0.0-20230325081502-da63a5c62d80 h1:7GeFYBed/nHbicP+zd2xzKHUjJnTyn3Ljgme8FXJykQ= @@ -724,13 +123,10 @@ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuW github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/antonmedv/expr v1.15.5 h1:y0Iz3cEwmpRz5/r3w4qQR0MfIqJGdGM1zbhD/v0G5Vg= github.com/antonmedv/expr v1.15.5/go.mod h1:0E/6TxnOlRNp81GMzX9QfDPAmHo2Phg00y4JUv1ihsE= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= github.com/apache/openwhisk-client-go v0.0.0-20190915054138-716c6f973eb2 h1:mOsBfI/27csXzqNYu7XAf14RPGsRrcXJ8fjaYIhkuVU= github.com/apache/openwhisk-client-go v0.0.0-20190915054138-716c6f973eb2/go.mod h1:jLLKYP7+1+LFlIJW1n9U1gqeveLM1HIwa4ZHNOFxjPw= github.com/apache/pulsar-client-go v0.12.0 h1:rrMlwpr6IgLRPXLRRh2vSlcw5tGV2PUSjZwmqgh2B2I= github.com/apache/pulsar-client-go v0.12.0/go.mod h1:dkutuH4oS2pXiGm+Ti7fQZ4MRjrMPZ8IJeEGAWMeckk= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/appscode/go v0.0.0-20191119085241-0887d8ec2ecc/go.mod h1:OawnOmAL4ZX3YaPdN+8HTNwBveT1jMsqP74moa9XUbE= github.com/ardielle/ardielle-go v1.5.2 h1:TilHTpHIQJ27R1Tl/iITBzMwiUGSlVfiVhwDNGM3Zj4= github.com/ardielle/ardielle-go v1.5.2/go.mod h1:I4hy1n795cUhaVt/ojz83SNVCYIGsAFAONtv2Dr7HUI= @@ -765,23 +161,14 @@ github.com/bits-and-blooms/bitset v1.4.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edY github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 h1:mV+hh0rMjzrhg7Jc/GKwpa+y/0BMHGOHdM9yY1GYyFI= github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9/go.mod h1:nDeXEIaeDV+mAK1gBD3/RJH67DYPC0GdaznWN7sB07s= github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 h1:XWuWBRFEpqVrHepQob9yPS3Xg4K3Wr9QCx4fu8HbUNg= github.com/bradleyfalzon/ghinstallation/v2 v2.10.0/go.mod h1:qoGA4DxWPaYTgVCrmEspVSjlTu4WYAiSxMIhorMRXXc= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/bwmarrin/discordgo v0.19.0/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= @@ -793,18 +180,6 @@ github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBS github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 h1:tuijfIjZyjZaHq9xDUh0tNitwXshJpbLkqMOJv4H3do= github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21/go.mod h1:po7NpZ/QiTKzBKyrsEAxwnTamCoh8uDk/egRpQ7siIc= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27/go.mod h1:VQx0hjo2oUeQkQUET7wRwradO6f+fN5jzXgB/zROxxE= github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 h1:N98Et5DzDoJ1IO1cd8cZkXXT81W5+CR5S8rDU2I0HnM= @@ -836,7 +211,6 @@ github.com/dimfeld/httptreemux v5.0.1+incompatible/go.mod h1:rbUlSV+CCpv/SuqUTP/ 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/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 h1:7nllYTGLnq4CqBL27lV6oNfXzM2tJ2mrKF8E+aBXOV0= github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3/go.mod h1:v/MTKot4he5oRHGirOYGN4/hEOONNnWtDBLAzllSGMw= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= @@ -866,18 +240,7 @@ github.com/emitter-io/go/v2 v2.0.9/go.mod h1:St++epE1u/6ueCVw47xhu4shpkGNxKRVtkW github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= -github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= @@ -894,8 +257,6 @@ github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= @@ -915,11 +276,6 @@ github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32/go.mod h1:GIjDIg/heH github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY= github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE= github.com/gliderlabs/ssh v0.3.7/go.mod h1:zpHEXBstFnQYtGnB8k8kQLol82umzn/2/snG7alWVD8= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= @@ -928,11 +284,7 @@ github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMj github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= @@ -970,8 +322,6 @@ github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+Gr github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= github.com/go-openapi/validate v0.24.0 h1:LdfDKwNbpB6Vn40xhTdNZAnfLECL81w+VX3BumrGD58= github.com/go-openapi/validate v0.24.0/go.mod h1:iyeX1sEufmv3nPbBdX3ieNviWnOZaJ1+zquzJEf2BAQ= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= github.com/go-resty/resty/v2 v2.13.1 h1:x+LHXBI2nMB1vqndymf26quycC4aggYJ7DECYbiz03g= @@ -991,7 +341,6 @@ github.com/gobuffalo/flect v0.2.3 h1:f/ZukRnSNA/DUpSNDadko7Qc0PhGvsew35p/2tu+CRY github.com/gobuffalo/flect v0.2.3/go.mod h1:vmkQwuZYhN5Pc4ljYQZzP+1sq+NEkK+lh20jmEmX3jc= github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe h1:zn8tqiUbec4wR94o7Qj3LZCAT6uGobhEgnDRg6isG5U= github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= @@ -1008,27 +357,17 @@ github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOW github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk= github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/glog v1.2.0 h1:uCdmnmatrKCgMBlM4rMuJZWOkPDqdbZPnrMXDY4gI68= github.com/golang/glog v1.2.0/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -1036,8 +375,6 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= @@ -1046,10 +383,6 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= @@ -1058,23 +391,19 @@ github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= @@ -1092,63 +421,21 @@ github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/ github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= -github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o= github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs= github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= github.com/googleapis/gax-go/v2 v2.12.4 h1:9gWcmF85Wvq4ryPFvGFaOgPIs1AQX0d0bcbGw4Z96qg= github.com/googleapis/gax-go/v2 v2.12.4/go.mod h1:KYEYLorsnIGDi/rPC8b5TdlB9kbKoFubselGIoBMCwI= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopackage/ddp v0.0.0-20170117053602-652027933df4 h1:4EZlYQIiyecYJlUbVkFXCXHz1QPhVXcHnQKAzBTPfQo= github.com/gopackage/ddp v0.0.0-20170117053602-652027933df4/go.mod h1:lEO7XoHJ/xNRBCxrn4h/CEB67h0kW1B0t4ooP2yrjUA= github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= @@ -1171,8 +458,6 @@ github.com/gregdel/pushover v1.1.0/go.mod h1:EcaO66Nn1StkpEm1iKtBTV3d2A16SoMsVER github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/hamba/avro v1.8.0 h1:eCVrLX7UYThA3R3yBZ+rpmafA5qTc3ZjpTz6gYJoVGU= @@ -1220,9 +505,6 @@ github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU= github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/iancoleman/strcase v0.1.1/go.mod h1:SK73tn/9oHe+/Y0h39VT4UCxmurVJkR5NA7kMEAOgSE= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= @@ -1274,32 +556,25 @@ github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/karrick/godirwalk v1.7.8/go.mod h1:2c9FRhkDxdIbgkOnCEvnSWs71Bhugbl46shStcFDJ34= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.14.4/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4= github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc= github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -1315,8 +590,8 @@ 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/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.9.79 h1:hCaqgoTUuvxle5JzwakfNeRurL1Md5EfTQtU63QvKd4= -github.com/ktrysmt/go-bitbucket v0.9.79/go.mod h1:NfPQIai0Wzann6IJacKH8yNZC2CqdZo3swZDJ8qDKxg= +github.com/ktrysmt/go-bitbucket v0.9.80 h1:S+vZTXKx/VG5yCaX4I3Bmwo8lxWr4ifvuHdTboHTMMc= +github.com/ktrysmt/go-bitbucket v0.9.80/go.mod h1:b8ogWEGxQMWoeFnT1ZE4aHIPGindI+9z/zAW/OVFjk0= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= @@ -1327,9 +602,6 @@ github.com/linkedin/goavro/v2 v2.11.1 h1:4cuAtbDfqkKnBXp9E+tRkIJGa6W6iAjwonwt8O1 github.com/linkedin/goavro/v2 v2.11.1/go.mod h1:UgQUb2N/pmueQYH9bfqFioWxzYCZXSfF8Jw03O5sjqA= github.com/lusis/go-slackbot v0.0.0-20180109053408-401027ccfef5/go.mod h1:c2mYKRyMb1BPkO5St0c/ps62L4S0W2NAkaTXj9qEI+0= github.com/lusis/slack-test v0.0.0-20190426140909-c40012f20018/go.mod h1:sFlOUpQL1YcjhFVXhg1CG8ZASEs/Mf1oVb6H75JL/zg= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mailgun/mailgun-go v2.0.0+incompatible/go.mod h1:NWTyU+O4aczg/nsGhQnvHL6v2n5Gy6Sv5tNDVvC6FbU= @@ -1345,17 +617,13 @@ github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNx github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/minio/highwayhash v1.0.1/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLTk+kldvVxY= github.com/minio/highwayhash v1.0.2 h1:Aak5U0nElisjDCfPSG79Tgzkn2gl66NxOMspRrKnA/g= github.com/minio/highwayhash v1.0.2/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLTk+kldvVxY= @@ -1468,12 +736,8 @@ github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCko github.com/pelletier/go-toml/v2 v2.1.1 h1:LWAJwfNvjQZCFIDKWYQaM62NcYeYViCmWIwmOStowAI= github.com/pelletier/go-toml/v2 v2.1.1/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= github.com/pierrec/lz4 v2.6.1+incompatible h1:9UY3+iC23yxF0UfGaYrGplQ+79Rg+h/q9FV9ix19jjM= github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ= github.com/pierrec/lz4/v4 v4.1.21/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= @@ -1486,8 +750,6 @@ github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pkg/sftp v1.13.6 h1:JFZT4XbOU7l77xGSpOdW+pwIMqP044IyjXX6FGyEKFo= github.com/pkg/sftp v1.13.6/go.mod h1:tz1ryNURKu77RL+GuCzmoJYxQczL3wLNNpPWagdg4Qk= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= @@ -1500,8 +762,6 @@ github.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQ github.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= @@ -1517,14 +777,12 @@ github.com/radovskyb/watcher v1.0.7 h1:AYePLih6dpmS32vlHfhCeli8127LzkIgwJGcwwe8t github.com/radovskyb/watcher v1.0.7/go.mod h1:78okwvY5wPdzcb1UYnip1pvrZNIVEIh/Cm+ZuvsUYIg= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/riferrei/srclient v0.5.4 h1:dfwyR5u23QF7beuVl2WemUY2KXh5+Sc4DHKyPXBNYuc= github.com/riferrei/srclient v0.5.4/go.mod h1:vbkLmWcgYa7JgfPvuy/+K8fTS0p1bApqadxrxi/S1MI= github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= @@ -1535,8 +793,6 @@ github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ= github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4= github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE= @@ -1572,13 +828,9 @@ github.com/sony/sonyflake v1.0.0 h1:MpU6Ro7tfXwgn2l5eluf9xQvQJDROTBImNCfRXn/YeM= github.com/sony/sonyflake v1.0.0/go.mod h1:Jv3cfhf/UFtolOTTRd3q4Nl6ENqM+KfyZ5PseKfZGF4= github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= @@ -1666,17 +918,11 @@ github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 h1:BHyfKlQyqbsFN5p3Ifn github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= github.com/yudai/pp v2.0.1+incompatible h1:Q4//iY4pNF6yPLZIigmvcl7k/bPgrcTPIFIcmawg5bI= github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M= github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.einride.tech/aip v0.67.1 h1:d/4TW92OxXBngkSOwWS2CH5rez869KpKMaN44mdxkFI= go.einride.tech/aip v0.67.1/go.mod h1:ZGX4/zKw8dcgzdLsrvpOOGxfxI2QSk12SlP7d6c0/XI= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= @@ -1685,12 +931,6 @@ go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= @@ -1705,9 +945,6 @@ go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucg go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= @@ -1723,23 +960,17 @@ golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190422183909-d864b10871cd/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= @@ -1748,72 +979,29 @@ golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2Uz golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= 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/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200908183739-ae8ad444f925/go.mod h1:1phAWC201xIgDyaFpmDeZkgf70Q4Pd/CNqfRtVPtxNw= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f h1:99ci1mjWVBWwJiEKYY6jWa4d2nTQVIEhZIptnrVb1XY= golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.1-0.20200828183125-ce943fd02449/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1826,64 +1014,32 @@ golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190607181551-461777fb6f67/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= @@ -1892,34 +1048,7 @@ golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= -golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8= golang.org/x/oauth2 v0.20.0 h1:4mQdhULixXKP1rwYBW0vAijoXnkTG0BLCDRzfe1idMo= golang.org/x/oauth2 v0.20.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1928,17 +1057,10 @@ golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1954,11 +1076,6 @@ golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1966,83 +1083,32 @@ golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220111092808-5a964db01320/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220307203707-22a9840ba4d7/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220406155245-289d7a0edf71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 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.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= @@ -2053,11 +1119,9 @@ golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9sn golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= @@ -2069,13 +1133,10 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= @@ -2085,92 +1146,34 @@ 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/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= 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-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190424220101-1e8e1cfdf96b/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201211185031-d93e913c1a58/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= golang.org/x/tools v0.21.0 h1:qc0xYgIbsSDt9EyWz05J5wfa7LOVW0YTLOXrqdLAWIw= golang.org/x/tools v0.21.0/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= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 h1:juzzlx91nWAOsHuOVfXZPMXHtJEKouZvY9bBbwlOeYs= gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45/go.mod h1:41y72mzHT7+jFNgyBpJRrZWuZJcLmLrTpq6iGgOFJMQ= gomodules.xyz/jsonpatch/v2 v2.4.0 h1:Ci3iUJyx9UeRx7CeFN8ARgGbkESwJK+KB9lLcWxY/Zw= @@ -2178,278 +1181,33 @@ gomodules.xyz/jsonpatch/v2 v2.4.0/go.mod h1:AH3dM2RI6uoBZxn3LVrfvJ3E0/9dG4cSrbuB gomodules.xyz/notify v0.1.1 h1:1tTuoyswmPvzqPCTEDQK8SZ3ukCxLsonAAwst2+y1a0= gomodules.xyz/notify v0.1.1/go.mod h1:QgQyU4xEA/plJcDeT66J2Go2V7U4c0pD9wjo7HfFil4= gomodules.xyz/version v0.1.0/go.mod h1:Y8xuV02mL/45psyPKG3NCVOwvAOy6T5Kx0l3rCjKSjU= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= -google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= -google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= -google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= google.golang.org/api v0.181.0 h1:rPdjwnWgiPPOJx3IcSAQ2III5aX5tCer6wMpa/xmZi4= google.golang.org/api v0.181.0/go.mod h1:MnQ+M0CFsfUwA5beZ+g/vCBCPXvtmZwRz2qzZk8ih1k= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= -google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda h1:wu/KJm9KJwpfHWhkkZGohVC6KRrc1oJNr4jwtQMOQXw= google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda/go.mod h1:g2LLCvCeCSir/JJSWosk19BR4NVxGqHUC6rxIRsd7Aw= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae h1:AH34z6WAGVNkllnKs5raNq3yRq93VnjBG6rpfub/jYk= google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae/go.mod h1:FfiGhwUm6CJviekPrc0oJ+7h29e+DmWU6UtjX0ZvI7Y= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 h1:mxSlqyb8ZAHsYDCfiXN1EDdNTdvjUJSLY+OnAUtYNYA= google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8/go.mod h1:I7Y+G38R2bu5j1aLzfFmQfTcU/WnFuqDwLZAbvKTKpM= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM= google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -2460,13 +1218,6 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= @@ -2517,12 +1268,7 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= k8s.io/api v0.17.8/go.mod h1:N++Llhs8kCixMUoCaXXAyMMPbo8dDVnh+IQ36xZV2/0= k8s.io/api v0.29.2 h1:hBC7B9+MU+ptchxEqTNW2DkUosJpp1P+Wn6YncZ474A= k8s.io/api v0.29.2/go.mod h1:sdIaaKuU7P44aoyyLlikSLayT6Vb7bvJNCX105xZXY0= @@ -2557,46 +1303,10 @@ k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdz k8s.io/utils v0.0.0-20191114184206-e782cd3c129f/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI= k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs= moul.io/http2curl/v2 v2.3.0/go.mod h1:RW4hyBjTWSYDOxapodpNEtX0g5Eb16sxklBqmd2RHcE= nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q= nhooyr.io/websocket v1.8.10/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= From f5f394ef70a459ea377257713296cbdfc36403ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 12:58:55 +0000 Subject: [PATCH 113/123] chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus from 1.7.0 to 1.7.1 (#3146) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 18 ++++++++---------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/go.mod b/go.mod index eb2a403c2f..168d01dcea 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8 github.com/Azure/azure-event-hubs-go/v3 v3.6.2 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2 - github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0 + github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.1 github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/IBM/sarama v1.43.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible @@ -109,8 +109,8 @@ require ( github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.7.0 // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.28 // indirect diff --git a/go.sum b/go.sum index 0fa3172fbc..a8976958d1 100644 --- a/go.sum +++ b/go.sum @@ -32,14 +32,14 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7 github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +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/messaging/azservicebus v1.7.0 h1:QISzMrspEvZj4zrrN2wlNwfum5RmnKQhQNiSujwH7oU= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0/go.mod h1:xNjFERdhyMqZncbNJSPBsTCddk5kwsUVUzELQPMj/LA= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.7.0 h1:rTfKOCZGy5ViVrlA74ZPE99a+SgoEE2K/yg3RyW9dFA= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.7.0/go.mod h1:4OG6tQ9EOP/MT0NMjDlRzWoVFxfu9rN9B2X+tlSVktg= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.1 h1:o/Ws6bEqMeKZUfj1RRm3mQ51O8JGU5w+Qdg2AhHib6A= +github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.1/go.mod h1:6QAMYBAbQeeKX+REFJMZ1nFWu9XLw/PPcjYpuc9RDFs= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 h1:lJwNFV+xYjHREUTHJKx/ZF6CJSt9znxmLw9DqSTvyRU= github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0/go.mod h1:GfT0aGew8Qj5yiQVqOO5v7N8fanbJGyUoHqXg56qcVY= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= @@ -208,8 +208,6 @@ github.com/dimchansky/utfbom v1.1.0 h1:FcM3g+nofKgUteL8dm/UpdRXNC9KmADgTpLKsu0TR github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= github.com/dimfeld/httptreemux v5.0.1+incompatible h1:Qj3gVcDNoOthBAqftuD596rm4wg/adLLz5xh5CmpiCA= github.com/dimfeld/httptreemux v5.0.1+incompatible/go.mod h1:rbUlSV+CCpv/SuqUTP/8Bk2O3LyUV436/yaRGkhP6Z0= -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/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 h1:7nllYTGLnq4CqBL27lV6oNfXzM2tJ2mrKF8E+aBXOV0= github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3/go.mod h1:v/MTKot4he5oRHGirOYGN4/hEOONNnWtDBLAzllSGMw= @@ -1305,8 +1303,8 @@ k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSn k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs= moul.io/http2curl/v2 v2.3.0/go.mod h1:RW4hyBjTWSYDOxapodpNEtX0g5Eb16sxklBqmd2RHcE= -nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q= -nhooyr.io/websocket v1.8.10/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c= +nhooyr.io/websocket v1.8.11 h1:f/qXNc2/3DpoSZkHt1DQu6rj4zGC8JmkkLkWss0MgN0= +nhooyr.io/websocket v1.8.11/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= From 97cbbd062a541747ce00222f291dc6733787bbe8 Mon Sep 17 00:00:00 2001 From: Nicolas Lamirault Date: Thu, 30 May 2024 00:16:53 +0200 Subject: [PATCH 114/123] feat: new Prometheus metrics build_info (#3144) Signed-off-by: Nicolas Lamirault --- metrics/metrics.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/metrics/metrics.go b/metrics/metrics.go index 1b24e29959..84dc74c86c 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -3,6 +3,7 @@ package metrics import ( "context" "net/http" + "runtime" "github.com/prometheus/client_golang/prometheus/collectors" @@ -10,6 +11,7 @@ import ( "github.com/prometheus/client_golang/prometheus/promhttp" "go.uber.org/zap" + argoevents "github.com/argoproj/argo-events" "github.com/argoproj/argo-events/common/logging" ) @@ -23,6 +25,16 @@ const ( labelTriggerName = "trigger_name" ) +var ( + buildInfo = prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Name: "build_info", + Help: "A metric with a constant '1' value labeled by version from which Argo-Events was built.", + }, + []string{"version", "goversion", "goarch", "commit"}, + ) +) + // Metrics represents EventSource metrics information type Metrics struct { namespace string @@ -170,6 +182,9 @@ func (m *Metrics) Run(ctx context.Context, addr string) { log := logging.FromContext(ctx) metricsRegistry := prometheus.NewRegistry() metricsRegistry.MustRegister(collectors.NewGoCollector(), m) + metricsRegistry.MustRegister(buildInfo) + recordBuildInfo() + http.Handle("/metrics", promhttp.HandlerFor(metricsRegistry, promhttp.HandlerOpts{})) log.Info("starting metrics server") @@ -177,3 +192,9 @@ func (m *Metrics) Run(ctx context.Context, addr string) { log.Fatalw("failed to start metrics server", zap.Error(err)) } } + +// recordBuildInfo publishes information about Argo-Rollouts version and runtime info through an info metric (gauge). +func recordBuildInfo() { + vers := argoevents.GetVersion() + buildInfo.WithLabelValues(vers.Version, runtime.Version(), runtime.GOARCH, vers.GitCommit).Set(1) +} From 4cb99d9b15e62061f02dd5bc679fd1f9a63a0bd1 Mon Sep 17 00:00:00 2001 From: Aaron <52056643+aaron-arellano@users.noreply.github.com> Date: Wed, 29 May 2024 15:18:27 -0700 Subject: [PATCH 115/123] Add more EventSource event logs for failed to publish events (#3147) Signed-off-by: Derek Wang --- USERS.md | 1 + eventsources/eventing.go | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/USERS.md b/USERS.md index f1156d9f6a..614751872e 100644 --- a/USERS.md +++ b/USERS.md @@ -52,3 +52,4 @@ Organizations below are **officially** using Argo Events. Please send a PR with 1. [Yubo](https://www.yubo.live/) 1. [WooliesX](https://wooliesx.com.au/) 1. [Woolworths Group](https://www.woolworthsgroup.com.au/) +1. [Zillow Group](https://www.zillow.com) \ No newline at end of file diff --git a/eventsources/eventing.go b/eventsources/eventing.go index 149e5e8a4b..ad36a38005 100644 --- a/eventsources/eventing.go +++ b/eventsources/eventing.go @@ -579,12 +579,12 @@ func (e *EventSourceAdaptor) run(ctx context.Context, servers map[apicommon.Even }, Body: eventBody, } - + logger.Debugw(string(data), zap.String("eventID", event.ID())) if err = common.DoWithRetry(&common.DefaultBackoff, func() error { return e.eventBusConn.Publish(ctx, msg) }); err != nil { logger.Errorw("Failed to publish an event", zap.Error(err), zap.String(logging.LabelEventName, - s.GetEventName()), zap.Any(logging.LabelEventSourceType, s.GetEventSourceType())) + s.GetEventName()), zap.Any(logging.LabelEventSourceType, s.GetEventSourceType()), zap.String("eventID", event.ID())) e.metrics.EventSentFailed(s.GetEventSourceName(), s.GetEventName()) return eventbuscommon.NewEventBusError(err) } From a661561343b2afc992b473fbb6852f94d7835c35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 12:23:27 +0000 Subject: [PATCH 116/123] chore(deps): bump github.com/bradleyfalzon/ghinstallation/v2 from 2.10.0 to 2.11.0 (#3149) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 168d01dcea..eb96bb5db9 100644 --- a/go.mod +++ b/go.mod @@ -26,7 +26,7 @@ require ( github.com/argoproj/pkg v0.13.6 github.com/aws/aws-sdk-go v1.44.209 github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 - github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 + github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 github.com/cloudevents/sdk-go/v2 v2.15.2 github.com/colinmarc/hdfs v1.1.4-0.20180802165501-48eb8d6c34a9 github.com/doublerebel/bellows v0.0.0-20160303004610-f177d92a03d3 @@ -183,7 +183,7 @@ require ( github.com/golang/snappy v0.0.4 // indirect github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-github/v41 v41.0.0 // indirect - github.com/google/go-github/v60 v60.0.0 // indirect + github.com/google/go-github/v62 v62.0.0 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/s2a-go v0.1.7 // indirect diff --git a/go.sum b/go.sum index a8976958d1..53c0f40f89 100644 --- a/go.sum +++ b/go.sum @@ -161,8 +161,8 @@ github.com/bits-and-blooms/bitset v1.4.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edY github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9 h1:mV+hh0rMjzrhg7Jc/GKwpa+y/0BMHGOHdM9yY1GYyFI= github.com/blushft/go-diagrams v0.0.0-20201006005127-c78c821223d9/go.mod h1:nDeXEIaeDV+mAK1gBD3/RJH67DYPC0GdaznWN7sB07s= github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= -github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 h1:XWuWBRFEpqVrHepQob9yPS3Xg4K3Wr9QCx4fu8HbUNg= -github.com/bradleyfalzon/ghinstallation/v2 v2.10.0/go.mod h1:qoGA4DxWPaYTgVCrmEspVSjlTu4WYAiSxMIhorMRXXc= +github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 h1:R9d0v+iobRHSaE4wKUnXFiZp53AL4ED5MzgEMwGTZag= +github.com/bradleyfalzon/ghinstallation/v2 v2.11.0/go.mod h1:0LWKQwOHewXO/1acI6TtyE0Xc4ObDb2rFN7eHBAG71M= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/bwmarrin/discordgo v0.19.0/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= @@ -409,8 +409,8 @@ github.com/google/go-github/v41 v41.0.0 h1:HseJrM2JFf2vfiZJ8anY2hqBjdfY1Vlj/K27u github.com/google/go-github/v41 v41.0.0/go.mod h1:XgmCA5H323A9rtgExdTcnDkcqp6S30AVACCBDOonIxg= github.com/google/go-github/v50 v50.2.0 h1:j2FyongEHlO9nxXLc+LP3wuBSVU9mVxfpdYUexMpIfk= github.com/google/go-github/v50 v50.2.0/go.mod h1:VBY8FB6yPIjrtKhozXv4FQupxKLS6H4m6xFZlT43q8Q= -github.com/google/go-github/v60 v60.0.0 h1:oLG98PsLauFvvu4D/YPxq374jhSxFYdzQGNCyONLfn8= -github.com/google/go-github/v60 v60.0.0/go.mod h1:ByhX2dP9XT9o/ll2yXAu2VD8l5eNVg8hD4Cr0S/LmQk= +github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4= +github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= From 4fa96464a259214a4878bb6d310ee0aa8c48d40a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:54:35 +0000 Subject: [PATCH 117/123] chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 (#3152) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 6 +++--- go.sum | 11 ++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index eb96bb5db9..f1d2d1e228 100644 --- a/go.mod +++ b/go.mod @@ -70,7 +70,7 @@ require ( github.com/slack-go/slack v0.13.0 github.com/smartystreets/goconvey v1.7.2 github.com/spf13/cobra v1.8.0 - github.com/spf13/viper v1.18.2 + github.com/spf13/viper v1.19.0 github.com/stretchr/testify v1.9.0 github.com/stripe/stripe-go v70.15.0+incompatible github.com/tidwall/gjson v1.17.1 @@ -194,7 +194,7 @@ require ( github.com/gorilla/websocket v1.5.0 // indirect github.com/gregdel/pushover v1.1.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect - github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-retryablehttp v0.7.2 // indirect @@ -248,7 +248,7 @@ require ( github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.1.1 // indirect + github.com/pelletier/go-toml/v2 v2.2.2 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect diff --git a/go.sum b/go.sum index 53c0f40f89..c583b47e26 100644 --- a/go.sum +++ b/go.sum @@ -460,8 +460,9 @@ github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8 github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/hamba/avro v1.8.0 h1:eCVrLX7UYThA3R3yBZ+rpmafA5qTc3ZjpTz6gYJoVGU= github.com/hamba/avro v1.8.0/go.mod h1:NiGUcrLLT+CKfGu5REWQtD9OVPPYUGMVFiC+DE0lQfY= -github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= +github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= @@ -731,8 +732,8 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.1.1 h1:LWAJwfNvjQZCFIDKWYQaM62NcYeYViCmWIwmOStowAI= -github.com/pelletier/go-toml/v2 v2.1.1/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= +github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/pierrec/lz4 v2.6.1+incompatible h1:9UY3+iC23yxF0UfGaYrGplQ+79Rg+h/q9FV9ix19jjM= github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= @@ -842,8 +843,8 @@ github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzu github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.18.2 h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ= -github.com/spf13/viper v1.18.2/go.mod h1:EKmWIqdnk5lOcmR72yw6hS+8OPYcwD0jteitLMVB+yk= +github.com/spf13/viper v1.19.0 h1:RWq5SEjt8o25SROyN3z2OrDB9l7RPd3lwTWU8EcEdcI= +github.com/spf13/viper v1.19.0/go.mod h1:GQUN9bilAbhU/jgc1bKs99f/suXKeUMct8Adx5+Ntkg= github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf/go.mod h1:RJID2RhlZKId02nZ62WenDCkgHFerpIOmW0iT7GKmXM= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= From 94b9cde787a8352f257852cf4f7ddd48923d9cbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:58:40 +0000 Subject: [PATCH 118/123] chore(deps): bump github.com/itchyny/gojq from 0.12.15 to 0.12.16 (#3154) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index f1d2d1e228..61f5e23590 100644 --- a/go.mod +++ b/go.mod @@ -51,7 +51,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/hamba/avro v1.8.0 github.com/imdario/mergo v0.3.16 - github.com/itchyny/gojq v0.12.15 + github.com/itchyny/gojq v0.12.16 github.com/joncalhoun/qson v0.0.0-20200422171543-84433dcd3da0 github.com/ktrysmt/go-bitbucket v0.9.80 github.com/minio/minio-go/v7 v7.0.70 @@ -204,7 +204,7 @@ require ( github.com/huandu/xstrings v1.4.0 // indirect github.com/imkira/go-interpol v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/itchyny/timefmt-go v0.1.5 // indirect + github.com/itchyny/timefmt-go v0.1.6 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jcmturner/aescts/v2 v2.0.0 // indirect github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect diff --git a/go.sum b/go.sum index c583b47e26..b25bf0f65e 100644 --- a/go.sum +++ b/go.sum @@ -513,10 +513,10 @@ github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/C github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/itchyny/gojq v0.12.15 h1:WC1Nxbx4Ifw5U2oQWACYz32JK8G9qxNtHzrvW4KEcqI= -github.com/itchyny/gojq v0.12.15/go.mod h1:uWAHCbCIla1jiNxmeT5/B5mOjSdfkCq6p8vxWg+BM10= -github.com/itchyny/timefmt-go v0.1.5 h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE= -github.com/itchyny/timefmt-go v0.1.5/go.mod h1:nEP7L+2YmAbT2kZ2HfSs1d8Xtw9LY8D2stDBckWakZ8= +github.com/itchyny/gojq v0.12.16 h1:yLfgLxhIr/6sJNVmYfQjTIv0jGctu6/DgDoivmxTr7g= +github.com/itchyny/gojq v0.12.16/go.mod h1:6abHbdC2uB9ogMS38XsErnfqJ94UlngIJGlRAIj4jTM= +github.com/itchyny/timefmt-go v0.1.6 h1:ia3s54iciXDdzWzwaVKXZPbiXzxxnv1SPGFfM/myJ5Q= +github.com/itchyny/timefmt-go v0.1.6/go.mod h1:RRDZYC5s9ErkjQvTvvU7keJjxUYzIISJGxm9/mAERQg= github.com/jawher/mow.cli v1.0.4/go.mod h1:5hQj2V8g+qYmLUVWqu4Wuja1pI57M83EChYLVZ0sMKk= github.com/jawher/mow.cli v1.2.0/go.mod h1:y+pcA3jBAdo/GIZx/0rFjw/K2bVEODP9rfZOfaiq8Ko= github.com/jaytaylor/html2text v0.0.0-20190408195923-01ec452cbe43/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk= From 09e4624c22174a7542bbd51b9013fbc7c46926c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:59:50 +0000 Subject: [PATCH 119/123] chore(deps): bump golang.org/x/crypto from 0.23.0 to 0.24.0 (#3155) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 10 +++++----- go.sum | 16 ++++++++++------ 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/go.mod b/go.mod index 61f5e23590..ee57cb8854 100644 --- a/go.mod +++ b/go.mod @@ -80,7 +80,7 @@ require ( github.com/yuin/gopher-lua v1.1.1 go.uber.org/ratelimit v0.3.1 go.uber.org/zap v1.27.0 - golang.org/x/crypto v0.23.0 + golang.org/x/crypto v0.24.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f google.golang.org/api v0.181.0 google.golang.org/grpc v1.63.2 @@ -305,11 +305,11 @@ require ( golang.org/x/net v0.25.0 // indirect golang.org/x/oauth2 v0.20.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 - golang.org/x/tools v0.21.0 // indirect + golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/notify v0.1.1 // indirect diff --git a/go.sum b/go.sum index b25bf0f65e..b49eba1213 100644 --- a/go.sum +++ b/go.sum @@ -980,8 +980,9 @@ golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58 golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= -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-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20200908183739-ae8ad444f925/go.mod h1:1phAWC201xIgDyaFpmDeZkgf70Q4Pd/CNqfRtVPtxNw= @@ -1111,8 +1112,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -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-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= 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= @@ -1124,8 +1126,9 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= -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.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1141,8 +1144,9 @@ golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -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.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1167,8 +1171,8 @@ golang.org/x/tools v0.0.0-20201211185031-d93e913c1a58/go.mod h1:emZCQorbCU4vsT4f 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.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.21.0 h1:qc0xYgIbsSDt9EyWz05J5wfa7LOVW0YTLOXrqdLAWIw= -golang.org/x/tools v0.21.0/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= +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= From 8dd63f1305746e6503269a7675288b1f65e53df5 Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Thu, 13 Jun 2024 17:22:49 -0700 Subject: [PATCH 120/123] Update manifests to v1.9.2 Signed-off-by: Derek Wang --- Makefile | 4 ++-- api/openapi-spec/swagger.json | 2 +- manifests/base/kustomization.yaml | 4 ++-- manifests/extensions/validating-webhook/kustomization.yaml | 2 +- manifests/install-validating-webhook.yaml | 2 +- manifests/install.yaml | 4 ++-- manifests/namespace-install.yaml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index f5574d19b8..cf89575fa9 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ EXECUTABLES = curl docker gzip go # docker image publishing options DOCKER_PUSH?=false IMAGE_NAMESPACE?=quay.io/argoproj -VERSION?=v1.9.1 -BASE_VERSION:=v1.9.1 +VERSION?=v1.9.2 +BASE_VERSION:=v1.9.2 override LDFLAGS += \ -X ${PACKAGE}.version=${VERSION} \ diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 69123f12bc..62666309f6 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Argo Events", - "version": "v1.9.1" + "version": "v1.9.2" }, "paths": {}, "definitions": { diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index c30fcfcbaa..bfb50011f1 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -12,7 +12,7 @@ resources: images: - name: quay.io/argoproj/argo-events - newTag: v1.9.1 + newTag: v1.9.2 patches: - patch: |- @@ -27,4 +27,4 @@ patches: - name: controller-manager env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.1 + value: quay.io/argoproj/argo-events:v1.9.2 diff --git a/manifests/extensions/validating-webhook/kustomization.yaml b/manifests/extensions/validating-webhook/kustomization.yaml index 97a885c4b0..f1e8f59d9f 100644 --- a/manifests/extensions/validating-webhook/kustomization.yaml +++ b/manifests/extensions/validating-webhook/kustomization.yaml @@ -11,4 +11,4 @@ namespace: argo-events images: - name: quay.io/argoproj/argo-events - newTag: v1.9.1 + newTag: v1.9.2 diff --git a/manifests/install-validating-webhook.yaml b/manifests/install-validating-webhook.yaml index ecf5776e52..a7158db7b3 100644 --- a/manifests/install-validating-webhook.yaml +++ b/manifests/install-validating-webhook.yaml @@ -116,7 +116,7 @@ spec: fieldPath: metadata.namespace - name: PORT value: "443" - image: quay.io/argoproj/argo-events:v1.9.1 + image: quay.io/argoproj/argo-events:v1.9.2 imagePullPolicy: Always name: webhook serviceAccountName: argo-events-webhook-sa diff --git a/manifests/install.yaml b/manifests/install.yaml index e190eeef79..3d4e8fa768 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -401,12 +401,12 @@ spec: - controller env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.1 + value: quay.io/argoproj/argo-events:v1.9.2 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/argoproj/argo-events:v1.9.1 + image: quay.io/argoproj/argo-events:v1.9.2 imagePullPolicy: Always livenessProbe: httpGet: diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index b1bacbdfe9..b9f946df45 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -322,12 +322,12 @@ spec: - --namespaced env: - name: ARGO_EVENTS_IMAGE - value: quay.io/argoproj/argo-events:v1.9.1 + value: quay.io/argoproj/argo-events:v1.9.2 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/argoproj/argo-events:v1.9.1 + image: quay.io/argoproj/argo-events:v1.9.2 imagePullPolicy: Always livenessProbe: httpGet: From e0e9c3bd2b56ed6424952fecf4b541f92fae1f19 Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 18 Jul 2024 14:16:24 +0300 Subject: [PATCH 121/123] upgrade version --- Makefile | 4 ++-- .../controller-manager/controller-manager-deployment.yaml | 4 ++-- manifests/base/kustomization.yaml | 4 ++-- .../validating-webhook/events-webhook-deployment.yaml | 2 +- manifests/extensions/validating-webhook/kustomization.yaml | 2 +- manifests/install-validating-webhook.yaml | 2 +- manifests/install.yaml | 4 ++-- manifests/namespace-install.yaml | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index cf89575fa9..22019a8b3c 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ EXECUTABLES = curl docker gzip go # docker image publishing options DOCKER_PUSH?=false IMAGE_NAMESPACE?=quay.io/argoproj -VERSION?=v1.9.2 -BASE_VERSION:=v1.9.2 +VERSION?=v1.9.2-cap-CR-24607 +BASE_VERSION:=v1.9.2-cap-CR-24607 override LDFLAGS += \ -X ${PACKAGE}.version=${VERSION} \ diff --git a/manifests/base/controller-manager/controller-manager-deployment.yaml b/manifests/base/controller-manager/controller-manager-deployment.yaml index d6b1a36328..9ba1386615 100644 --- a/manifests/base/controller-manager/controller-manager-deployment.yaml +++ b/manifests/base/controller-manager/controller-manager-deployment.yaml @@ -18,7 +18,7 @@ spec: runAsUser: 9731 containers: - name: controller-manager - image: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + image: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 imagePullPolicy: Always args: - controller @@ -28,7 +28,7 @@ spec: fieldRef: fieldPath: metadata.namespace - name: ARGO_EVENTS_IMAGE - value: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + value: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 volumeMounts: - mountPath: /etc/argo-events name: controller-config-volume diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index 1ae2da51f1..9526096a94 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -13,7 +13,7 @@ resources: images: - name: quay.io/argoproj/argo-events newName: quay.io/codefresh/argo-events - newTag: v1.9.0-cap-CR-22221 + newTag: v1.9.2-cap-CR-24607 patches: - patch: |- @@ -28,4 +28,4 @@ patches: - name: controller-manager env: - name: ARGO_EVENTS_IMAGE - value: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + value: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 diff --git a/manifests/extensions/validating-webhook/events-webhook-deployment.yaml b/manifests/extensions/validating-webhook/events-webhook-deployment.yaml index f4522ac1e6..b98914a33e 100644 --- a/manifests/extensions/validating-webhook/events-webhook-deployment.yaml +++ b/manifests/extensions/validating-webhook/events-webhook-deployment.yaml @@ -14,7 +14,7 @@ spec: spec: containers: - name: webhook - image: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + image: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 imagePullPolicy: Always args: - webhook-service diff --git a/manifests/extensions/validating-webhook/kustomization.yaml b/manifests/extensions/validating-webhook/kustomization.yaml index 4a6a415168..0e35fa60fd 100644 --- a/manifests/extensions/validating-webhook/kustomization.yaml +++ b/manifests/extensions/validating-webhook/kustomization.yaml @@ -12,4 +12,4 @@ namespace: argo-events images: - name: quay.io/argoproj/argo-events newName: quay.io/codefresh/argo-events - newTag: v1.9.0-cap-CR-22221 + newTag: v1.9.2-cap-CR-24607 diff --git a/manifests/install-validating-webhook.yaml b/manifests/install-validating-webhook.yaml index 1242176f2a..96c68fa7e2 100644 --- a/manifests/install-validating-webhook.yaml +++ b/manifests/install-validating-webhook.yaml @@ -123,7 +123,7 @@ spec: fieldPath: metadata.namespace - name: PORT value: "443" - image: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + image: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 imagePullPolicy: Always name: webhook serviceAccountName: argo-events-webhook-sa diff --git a/manifests/install.yaml b/manifests/install.yaml index caaee9b758..66717ea5d4 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -401,12 +401,12 @@ spec: - controller env: - name: ARGO_EVENTS_IMAGE - value: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + value: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + image: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 imagePullPolicy: Always livenessProbe: httpGet: diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index 8fdcac909e..a311831a01 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -322,12 +322,12 @@ spec: - --namespaced env: - name: ARGO_EVENTS_IMAGE - value: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + value: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 - name: NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - image: quay.io/codefresh/argo-events:v1.9.0-cap-CR-22221 + image: quay.io/codefresh/argo-events:v1.9.2-cap-CR-24607 imagePullPolicy: Always livenessProbe: httpGet: From fe466cdcc4454b8413c8f1f3ff1339a81dbd0f5c Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 18 Jul 2024 14:21:06 +0300 Subject: [PATCH 122/123] resolve conflict --- go.mod | 111 ++++++++++----------------------------------------------- 1 file changed, 19 insertions(+), 92 deletions(-) diff --git a/go.mod b/go.mod index db002bee3c..16326f0237 100644 --- a/go.mod +++ b/go.mod @@ -109,9 +109,9 @@ require ( github.com/99designs/keyring v1.2.1 // indirect github.com/AthenZ/athenz v1.10.39 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect - github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.7.0 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/DataDog/zstd v1.5.0 // indirect github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect @@ -123,22 +123,20 @@ require ( github.com/danieljoos/wincred v1.1.2 // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect - github.com/emicklei/go-restful/v3 v3.8.0 // indirect + github.com/emicklei/go-restful/v3 v3.11.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/spec v0.20.8 // indirect + github.com/go-openapi/spec v0.21.0 // indirect github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible // indirect - github.com/golang-jwt/jwt/v5 v5.0.0 // indirect - github.com/google/gnostic v0.5.7-v3refs // indirect + github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/google/go-github/v41 v41.0.0 // indirect - github.com/google/go-github/v57 v57.0.0 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/gregdel/pushover v1.1.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect - github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/klauspost/cpuid/v2 v2.2.6 // indirect github.com/kr/fs v0.1.0 // indirect @@ -150,41 +148,36 @@ require ( github.com/oklog/ulid v1.3.1 // indirect github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect - github.com/pelletier/go-toml/v2 v2.1.0 // indirect - github.com/pierrec/lz4/v4 v4.1.18 // indirect + github.com/pelletier/go-toml/v2 v2.2.2 // indirect + github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect - github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect + github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/sagikazarmark/locafero v0.4.0 // indirect github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sanity-io/litter v1.5.5 // indirect github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect - github.com/skeema/knownhosts v1.2.1 // indirect + github.com/skeema/knownhosts v1.2.2 // indirect github.com/sourcegraph/conc v0.3.0 // indirect github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect - go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/metric v1.21.0 // indirect - go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect + go.opentelemetry.io/otel v1.24.0 // indirect + go.opentelemetry.io/otel/metric v1.24.0 // indirect + go.opentelemetry.io/otel/trace v1.24.0 // indirect gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/notify v0.1.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231211222908-989df2bf70f3 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect moul.io/http2curl/v2 v2.3.0 // indirect - sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect + sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect ) require ( - cloud.google.com/go v0.110.10 // indirect - cloud.google.com/go/iam v1.1.5 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.7.0 // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.28 // indirect @@ -194,84 +187,57 @@ require ( github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect github.com/Azure/go-autorest/logger v0.2.1 // indirect github.com/Azure/go-autorest/tracing v0.6.0 // indirect - github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect - github.com/DataDog/zstd v1.5.0 // indirect github.com/Masterminds/goutils v1.1.1 // indirect github.com/Masterminds/semver/v3 v3.2.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect - github.com/PagerDuty/go-pagerduty v1.6.0 // indirect github.com/ProtonMail/go-crypto v1.0.0 // indirect - github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210112200207-10ab4d695d60 // indirect - github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 // indirect github.com/ajg/form v1.5.1 // indirect - github.com/andybalholm/brotli v1.0.4 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/awalterschulze/gographviz v0.0.0-20200901124122-0eecad45bd71 // indirect github.com/benbjohnson/clock v1.3.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/bits-and-blooms/bitset v1.4.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect - github.com/cloudflare/circl v1.3.7 // indirect github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 // indirect github.com/danielm-codefresh/argo-multi-cluster v0.0.0-20220327145759-1c387c8ebc5f - github.com/cyphar/filepath-securejoin v0.2.4 // indirect - github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/devigned/tab v0.1.1 // indirect - github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/dustin/go-humanize v1.0.1 // indirect - github.com/dvsekhvalnov/jose2go v1.6.0 // indirect github.com/eapache/go-resiliency v1.6.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect github.com/eapache/queue v1.1.0 // indirect - github.com/emicklei/go-restful/v3 v3.11.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/evanphx/json-patch v5.6.0+incompatible // indirect github.com/evanphx/json-patch/v5 v5.8.0 // indirect github.com/fatih/color v1.15.0 // indirect github.com/fatih/structs v1.1.0 // indirect - github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect github.com/go-logr/logr v1.4.1 // indirect - github.com/go-logr/stdr v1.2.2 // indirect github.com/go-openapi/analysis v0.23.0 // indirect github.com/go-openapi/errors v0.22.0 // indirect github.com/go-openapi/jsonpointer v0.21.0 // indirect github.com/go-openapi/jsonreference v0.21.0 // indirect github.com/go-openapi/loads v0.22.0 // indirect github.com/go-openapi/runtime v0.28.0 // indirect - github.com/go-openapi/spec v0.21.0 // indirect github.com/go-openapi/strfmt v0.23.0 // indirect github.com/go-openapi/swag v0.23.0 // indirect github.com/go-openapi/validate v0.24.0 // indirect - github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect github.com/gobuffalo/flect v0.2.3 // indirect github.com/goccy/go-json v0.10.2 // indirect - github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect - github.com/golang-jwt/jwt v3.2.2+incompatible // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect - github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/golang/glog v1.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/gnostic-models v0.6.8 // indirect - github.com/google/go-github/v41 v41.0.0 // indirect github.com/google/go-github/v62 v62.0.0 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/google/s2a-go v0.1.7 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/googleapis/gax-go/v2 v2.12.4 // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect github.com/gorilla/handlers v1.5.2 // indirect github.com/gorilla/websocket v1.5.0 // indirect - github.com/gregdel/pushover v1.1.0 // indirect - github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect - github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-retryablehttp v0.7.2 // indirect github.com/hashicorp/go-uuid v1.0.3 // indirect github.com/hashicorp/hcl v1.0.0 // indirect @@ -294,43 +260,26 @@ require ( github.com/jtolds/gls v4.20.0+incompatible // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/klauspost/compress v1.17.7 // indirect - github.com/klauspost/cpuid/v2 v2.2.6 // indirect - github.com/kr/fs v0.1.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect - github.com/kylelemons/godebug v1.1.0 // indirect - github.com/linkedin/goavro/v2 v2.11.1 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/minio/md5-simd v1.1.2 // indirect - github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect - github.com/mitchellh/go-wordwrap v1.0.1 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/moby/spdystream v0.2.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/mtibben/percent v0.2.1 // indirect - github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect github.com/nats-io/nats-server/v2 v2.9.23 // indirect github.com/nats-io/nats-streaming-server v0.24.3 // indirect github.com/nats-io/nkeys v0.4.7 // indirect github.com/nats-io/nuid v1.0.1 // indirect github.com/nicksnyder/go-i18n v1.10.1-0.20190510212457-b280125b035a // indirect - github.com/oklog/ulid v1.3.1 // indirect - github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect - github.com/opsgenie/opsgenie-go-sdk-v2 v1.0.5 // indirect github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.2.2 // indirect github.com/pierrec/lz4 v2.6.1+incompatible // indirect - github.com/pierrec/lz4/v4 v4.1.21 // indirect - github.com/pjbgf/sha1cd v0.3.0 // indirect - github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect - github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.48.0 // indirect @@ -339,16 +288,10 @@ require ( github.com/rogpeppe/go-internal v1.12.0 // indirect github.com/rs/xid v1.5.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/sagikazarmark/locafero v0.4.0 // indirect - github.com/sagikazarmark/slog-shim v0.1.0 // indirect - github.com/sanity-io/litter v1.5.5 // indirect - github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect github.com/shopspring/decimal v1.3.1 // indirect github.com/sirupsen/logrus v1.9.3 // indirect - github.com/skeema/knownhosts v1.2.2 // indirect github.com/smartystreets/assertions v1.2.0 // indirect - github.com/sourcegraph/conc v0.3.0 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect github.com/spf13/afero v1.11.0 // indirect github.com/spf13/cast v1.6.0 // indirect @@ -359,10 +302,7 @@ require ( github.com/toqueteos/webbrowser v1.2.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.34.0 // indirect - github.com/whilp/git-urls v0.0.0-20191001220047-6db9661140c0 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect - github.com/xdg-go/pbkdf2 v1.0.0 // indirect - github.com/xdg-go/stringprep v1.0.4 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect github.com/xeipuuv/gojsonschema v1.2.0 // indirect @@ -371,11 +311,6 @@ require ( github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect go.mongodb.org/mongo-driver v1.14.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect - go.opentelemetry.io/otel v1.24.0 // indirect - go.opentelemetry.io/otel/metric v1.24.0 // indirect - go.opentelemetry.io/otel/trace v1.24.0 // indirect go.uber.org/atomic v1.10.0 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.17.0 // indirect @@ -387,15 +322,9 @@ require ( golang.org/x/text v0.16.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect - gomodules.xyz/envconfig v1.3.1-0.20190308184047-426f31af0d45 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect - gomodules.xyz/notify v0.1.1 // indirect google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect google.golang.org/protobuf v1.34.1 // indirect - gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect - gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect @@ -408,7 +337,5 @@ require ( k8s.io/apiextensions-apiserver v0.29.0 // indirect k8s.io/component-base v0.29.0 // indirect k8s.io/klog v1.0.0 // indirect - moul.io/http2curl/v2 v2.3.0 // indirect - sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect ) From 1bda840e6290828e22cfd3cb36b7b92b5531b3fb Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 18 Jul 2024 14:32:09 +0300 Subject: [PATCH 123/123] generate codegen --- api/openapi-spec/swagger.json | 24 +- pkg/apis/eventsource/v1alpha1/generated.pb.go | 1202 ++++++++++------- 2 files changed, 744 insertions(+), 482 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index e83cca93e6..fdfb33903e 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Argo Events", - "version": "v1.9.2" + "version": "v1.9.2-cap-CR-24607" }, "paths": {}, "definitions": { @@ -1920,6 +1920,10 @@ "description": "DeprecatedOwner refers to GitHub owner name i.e. argoproj Deprecated: use Repositories instead. Will be unsupported in v 1.6", "type": "string" }, + "payloadEnrichment": { + "description": "PayloadEnrichment holds flags that determine whether to enrich GitHub's original payload with additional information.", + "$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.PayloadEnrichmentFlags" + }, "repositories": { "description": "Repositories holds the information of repositories, which uses repo owner as the key, and list of repo names as the value. Not required if Organizations is set.", "type": "array", @@ -2356,6 +2360,15 @@ } } }, + "io.argoproj.eventsource.v1alpha1.PayloadEnrichmentFlags": { + "type": "object", + "properties": { + "fetchPROnPRCommentAdded": { + "description": "FetchPROnPRCommentAdded determines whether to enrich the payload provided by GitHub on \"pull request comment added\" events, with the full pull request info", + "type": "boolean" + } + } + }, "io.argoproj.eventsource.v1alpha1.PubSubEventSource": { "description": "PubSubEventSource refers to event-source for GCP PubSub related events.", "type": "object", @@ -2598,9 +2611,14 @@ "group", "version", "resource", - "eventTypes" + "eventTypes", + "cluster" ], "properties": { + "cluster": { + "description": "Cluster from which events will be listened to", + "type": "string" + }, "eventTypes": { "description": "EventTypes is the list of event type to watch. Possible values are - ADD, UPDATE and DELETE.", "type": "array", @@ -22218,4 +22236,4 @@ } } } -} +} \ No newline at end of file diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go index 9109e8edfb..f93cf11654 100644 --- a/pkg/apis/eventsource/v1alpha1/generated.pb.go +++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go @@ -1110,10 +1110,38 @@ func (m *OwnedRepositories) XXX_DiscardUnknown() { var xxx_messageInfo_OwnedRepositories proto.InternalMessageInfo +func (m *PayloadEnrichmentFlags) Reset() { *m = PayloadEnrichmentFlags{} } +func (*PayloadEnrichmentFlags) ProtoMessage() {} +func (*PayloadEnrichmentFlags) Descriptor() ([]byte, []int) { + return fileDescriptor_c9ac5d6cd016403b, []int{38} +} +func (m *PayloadEnrichmentFlags) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PayloadEnrichmentFlags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *PayloadEnrichmentFlags) XXX_Merge(src proto.Message) { + xxx_messageInfo_PayloadEnrichmentFlags.Merge(m, src) +} +func (m *PayloadEnrichmentFlags) XXX_Size() int { + return m.Size() +} +func (m *PayloadEnrichmentFlags) XXX_DiscardUnknown() { + xxx_messageInfo_PayloadEnrichmentFlags.DiscardUnknown(m) +} + +var xxx_messageInfo_PayloadEnrichmentFlags proto.InternalMessageInfo + func (m *PubSubEventSource) Reset() { *m = PubSubEventSource{} } func (*PubSubEventSource) ProtoMessage() {} func (*PubSubEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{38} + return fileDescriptor_c9ac5d6cd016403b, []int{39} } func (m *PubSubEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1141,7 +1169,7 @@ var xxx_messageInfo_PubSubEventSource proto.InternalMessageInfo func (m *PulsarEventSource) Reset() { *m = PulsarEventSource{} } func (*PulsarEventSource) ProtoMessage() {} func (*PulsarEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{39} + return fileDescriptor_c9ac5d6cd016403b, []int{40} } func (m *PulsarEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1169,7 +1197,7 @@ var xxx_messageInfo_PulsarEventSource proto.InternalMessageInfo func (m *RedisEventSource) Reset() { *m = RedisEventSource{} } func (*RedisEventSource) ProtoMessage() {} func (*RedisEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{40} + return fileDescriptor_c9ac5d6cd016403b, []int{41} } func (m *RedisEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1197,7 +1225,7 @@ var xxx_messageInfo_RedisEventSource proto.InternalMessageInfo func (m *RedisStreamEventSource) Reset() { *m = RedisStreamEventSource{} } func (*RedisStreamEventSource) ProtoMessage() {} func (*RedisStreamEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{41} + return fileDescriptor_c9ac5d6cd016403b, []int{42} } func (m *RedisStreamEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1225,7 +1253,7 @@ var xxx_messageInfo_RedisStreamEventSource proto.InternalMessageInfo func (m *ResourceEventSource) Reset() { *m = ResourceEventSource{} } func (*ResourceEventSource) ProtoMessage() {} func (*ResourceEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{42} + return fileDescriptor_c9ac5d6cd016403b, []int{43} } func (m *ResourceEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1253,7 +1281,7 @@ var xxx_messageInfo_ResourceEventSource proto.InternalMessageInfo func (m *ResourceFilter) Reset() { *m = ResourceFilter{} } func (*ResourceFilter) ProtoMessage() {} func (*ResourceFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{43} + return fileDescriptor_c9ac5d6cd016403b, []int{44} } func (m *ResourceFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1281,7 +1309,7 @@ var xxx_messageInfo_ResourceFilter proto.InternalMessageInfo func (m *SFTPEventSource) Reset() { *m = SFTPEventSource{} } func (*SFTPEventSource) ProtoMessage() {} func (*SFTPEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{44} + return fileDescriptor_c9ac5d6cd016403b, []int{45} } func (m *SFTPEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1309,7 +1337,7 @@ var xxx_messageInfo_SFTPEventSource proto.InternalMessageInfo func (m *SNSEventSource) Reset() { *m = SNSEventSource{} } func (*SNSEventSource) ProtoMessage() {} func (*SNSEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{45} + return fileDescriptor_c9ac5d6cd016403b, []int{46} } func (m *SNSEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1337,7 +1365,7 @@ var xxx_messageInfo_SNSEventSource proto.InternalMessageInfo func (m *SQSEventSource) Reset() { *m = SQSEventSource{} } func (*SQSEventSource) ProtoMessage() {} func (*SQSEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{46} + return fileDescriptor_c9ac5d6cd016403b, []int{47} } func (m *SQSEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1365,7 +1393,7 @@ var xxx_messageInfo_SQSEventSource proto.InternalMessageInfo func (m *Selector) Reset() { *m = Selector{} } func (*Selector) ProtoMessage() {} func (*Selector) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{47} + return fileDescriptor_c9ac5d6cd016403b, []int{48} } func (m *Selector) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1393,7 +1421,7 @@ var xxx_messageInfo_Selector proto.InternalMessageInfo func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} func (*Service) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{48} + return fileDescriptor_c9ac5d6cd016403b, []int{49} } func (m *Service) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1421,7 +1449,7 @@ var xxx_messageInfo_Service proto.InternalMessageInfo func (m *SlackEventSource) Reset() { *m = SlackEventSource{} } func (*SlackEventSource) ProtoMessage() {} func (*SlackEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{49} + return fileDescriptor_c9ac5d6cd016403b, []int{50} } func (m *SlackEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1449,7 +1477,7 @@ var xxx_messageInfo_SlackEventSource proto.InternalMessageInfo func (m *StorageGridEventSource) Reset() { *m = StorageGridEventSource{} } func (*StorageGridEventSource) ProtoMessage() {} func (*StorageGridEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{50} + return fileDescriptor_c9ac5d6cd016403b, []int{51} } func (m *StorageGridEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1477,7 +1505,7 @@ var xxx_messageInfo_StorageGridEventSource proto.InternalMessageInfo func (m *StorageGridFilter) Reset() { *m = StorageGridFilter{} } func (*StorageGridFilter) ProtoMessage() {} func (*StorageGridFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{51} + return fileDescriptor_c9ac5d6cd016403b, []int{52} } func (m *StorageGridFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1505,7 +1533,7 @@ var xxx_messageInfo_StorageGridFilter proto.InternalMessageInfo func (m *StripeEventSource) Reset() { *m = StripeEventSource{} } func (*StripeEventSource) ProtoMessage() {} func (*StripeEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{52} + return fileDescriptor_c9ac5d6cd016403b, []int{53} } func (m *StripeEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1533,7 +1561,7 @@ var xxx_messageInfo_StripeEventSource proto.InternalMessageInfo func (m *Template) Reset() { *m = Template{} } func (*Template) ProtoMessage() {} func (*Template) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{53} + return fileDescriptor_c9ac5d6cd016403b, []int{54} } func (m *Template) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1561,7 +1589,7 @@ var xxx_messageInfo_Template proto.InternalMessageInfo func (m *WatchPathConfig) Reset() { *m = WatchPathConfig{} } func (*WatchPathConfig) ProtoMessage() {} func (*WatchPathConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{54} + return fileDescriptor_c9ac5d6cd016403b, []int{55} } func (m *WatchPathConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1589,7 +1617,7 @@ var xxx_messageInfo_WatchPathConfig proto.InternalMessageInfo func (m *WebhookContext) Reset() { *m = WebhookContext{} } func (*WebhookContext) ProtoMessage() {} func (*WebhookContext) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{55} + return fileDescriptor_c9ac5d6cd016403b, []int{56} } func (m *WebhookContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1617,7 +1645,7 @@ var xxx_messageInfo_WebhookContext proto.InternalMessageInfo func (m *WebhookEventSource) Reset() { *m = WebhookEventSource{} } func (*WebhookEventSource) ProtoMessage() {} func (*WebhookEventSource) Descriptor() ([]byte, []int) { - return fileDescriptor_c9ac5d6cd016403b, []int{56} + return fileDescriptor_c9ac5d6cd016403b, []int{57} } func (m *WebhookEventSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1730,6 +1758,7 @@ func init() { proto.RegisterType((*NSQEventSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NSQEventSource") proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NSQEventSource.MetadataEntry") proto.RegisterType((*OwnedRepositories)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.OwnedRepositories") + proto.RegisterType((*PayloadEnrichmentFlags)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.PayloadEnrichmentFlags") proto.RegisterType((*PubSubEventSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.PubSubEventSource") proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.PubSubEventSource.MetadataEntry") proto.RegisterType((*PulsarEventSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.PulsarEventSource") @@ -1770,466 +1799,472 @@ func init() { } var fileDescriptor_c9ac5d6cd016403b = []byte{ - // 7343 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0xc7, - 0x75, 0xa0, 0x86, 0x33, 0x1c, 0xce, 0xbc, 0xe1, 0x67, 0xed, 0x6a, 0x35, 0xa2, 0xb5, 0xcb, 0x3d, - 0x0a, 0x5e, 0x48, 0x77, 0x12, 0x79, 0xda, 0x3b, 0x9f, 0x65, 0xe9, 0x2c, 0x63, 0x86, 0x5c, 0xee, - 0x52, 0x4b, 0x72, 0x87, 0xd5, 0x5c, 0x69, 0x65, 0x59, 0x92, 0x9b, 0x3d, 0xc5, 0x61, 0x9b, 0x3d, - 0xdd, 0xc3, 0xee, 0x9e, 0xdd, 0xe5, 0x02, 0x67, 0x1b, 0x06, 0x7c, 0x77, 0xd6, 0x87, 0x6d, 0xdd, - 0xc5, 0x49, 0x90, 0xc0, 0x40, 0x9c, 0x04, 0x0e, 0x82, 0x04, 0xf9, 0x17, 0x23, 0x7f, 0x83, 0xe4, - 0x87, 0x91, 0xe4, 0x87, 0x93, 0x5f, 0x4e, 0x0c, 0x2c, 0x6c, 0x06, 0xf9, 0x97, 0x3f, 0x81, 0x7f, - 0x25, 0xbf, 0x82, 0xfa, 0xe8, 0xea, 0xea, 0x8f, 0xe1, 0x72, 0x38, 0x3d, 0xe4, 0xca, 0xc8, 0x2f, - 0x72, 0xea, 0xbd, 0x7a, 0xef, 0x75, 0xf5, 0x7b, 0xaf, 0x5e, 0xbd, 0xaa, 0x7a, 0x0d, 0xeb, 0x2d, - 0xd3, 0xdf, 0xed, 0x6e, 0x2f, 0x18, 0x4e, 0x7b, 0x51, 0x77, 0x5b, 0x4e, 0xc7, 0x75, 0xbe, 0xc2, - 0xfe, 0x79, 0x91, 0xdc, 0x25, 0xb6, 0xef, 0x2d, 0x76, 0xf6, 0x5a, 0x8b, 0x7a, 0xc7, 0xf4, 0x16, - 0xf9, 0x6f, 0xa7, 0xeb, 0x1a, 0x64, 0xf1, 0xee, 0x4b, 0xba, 0xd5, 0xd9, 0xd5, 0x5f, 0x5a, 0x6c, - 0x11, 0x9b, 0xb8, 0xba, 0x4f, 0x9a, 0x0b, 0x1d, 0xd7, 0xf1, 0x1d, 0xf4, 0xf9, 0x90, 0xdc, 0x42, - 0x40, 0x8e, 0xfd, 0xf3, 0x1e, 0xef, 0xbe, 0xd0, 0xd9, 0x6b, 0x2d, 0x50, 0x72, 0x0b, 0x0a, 0xb9, - 0x85, 0x80, 0xdc, 0xec, 0x17, 0x8e, 0x2d, 0x8d, 0xe1, 0xb4, 0xdb, 0x8e, 0x1d, 0xe7, 0x3f, 0xfb, - 0xa2, 0x42, 0xa0, 0xe5, 0xb4, 0x9c, 0x45, 0xd6, 0xbc, 0xdd, 0xdd, 0x61, 0xbf, 0xd8, 0x0f, 0xf6, - 0x9f, 0x40, 0x9f, 0xdf, 0x7b, 0xd9, 0x5b, 0x30, 0x1d, 0x4a, 0x72, 0xd1, 0x70, 0x5c, 0xfa, 0x60, - 0x09, 0x92, 0xff, 0x3d, 0xc4, 0x69, 0xeb, 0xc6, 0xae, 0x69, 0x13, 0xf7, 0x20, 0x94, 0xa3, 0x4d, - 0x7c, 0x3d, 0xad, 0xd7, 0x62, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0x1f, - 0x8f, 0xea, 0xe0, 0x19, 0xbb, 0xa4, 0xad, 0xc7, 0xfb, 0xcd, 0xff, 0x6b, 0x0e, 0x66, 0x6a, 0xeb, - 0x9b, 0x8d, 0x25, 0xc7, 0xf6, 0xba, 0x6d, 0xb2, 0xe4, 0xd8, 0x3b, 0x66, 0x0b, 0x7d, 0x06, 0x2a, - 0x06, 0x6f, 0x70, 0xb7, 0xf4, 0x56, 0x35, 0x77, 0x39, 0xf7, 0x5c, 0xb9, 0x7e, 0xee, 0xc7, 0x0f, - 0xe7, 0x9e, 0x38, 0x7c, 0x38, 0x57, 0x59, 0x0a, 0x41, 0x58, 0xc5, 0x43, 0xcf, 0xc3, 0x98, 0xde, - 0xf5, 0x9d, 0x9a, 0xb1, 0x57, 0x1d, 0xb9, 0x9c, 0x7b, 0xae, 0x54, 0x9f, 0x12, 0x5d, 0xc6, 0x6a, - 0xbc, 0x19, 0x07, 0x70, 0xb4, 0x08, 0x65, 0x72, 0xdf, 0xb0, 0xba, 0x9e, 0x79, 0x97, 0x54, 0xf3, - 0x0c, 0x79, 0x46, 0x20, 0x97, 0xaf, 0x05, 0x00, 0x1c, 0xe2, 0x50, 0xda, 0xb6, 0xb3, 0xe6, 0x18, - 0xba, 0x55, 0x2d, 0x44, 0x69, 0x6f, 0xf0, 0x66, 0x1c, 0xc0, 0xd1, 0x15, 0x28, 0xda, 0xce, 0x9b, - 0xba, 0xe9, 0x57, 0x47, 0x19, 0xe6, 0xa4, 0xc0, 0x2c, 0x6e, 0xb0, 0x56, 0x2c, 0xa0, 0xf3, 0xff, - 0x5c, 0x81, 0x29, 0xfa, 0xec, 0xd7, 0xa8, 0x72, 0x68, 0x4c, 0x97, 0xd0, 0x45, 0xc8, 0x77, 0x5d, - 0x4b, 0x3c, 0x71, 0x45, 0x74, 0xcc, 0xdf, 0xc6, 0x6b, 0x98, 0xb6, 0xa3, 0x97, 0x61, 0x9c, 0xdc, - 0x37, 0x76, 0x75, 0xbb, 0x45, 0x36, 0xf4, 0x36, 0x61, 0x8f, 0x59, 0xae, 0x9f, 0x17, 0x78, 0xe3, - 0xd7, 0x14, 0x18, 0x8e, 0x60, 0xaa, 0x3d, 0xb7, 0x0e, 0x3a, 0xfc, 0x99, 0x53, 0x7a, 0x52, 0x18, - 0x8e, 0x60, 0xa2, 0xab, 0x00, 0xae, 0xd3, 0xf5, 0x4d, 0xbb, 0x75, 0x93, 0x1c, 0xb0, 0x87, 0x2f, - 0xd7, 0x91, 0xe8, 0x07, 0x58, 0x42, 0xb0, 0x82, 0x85, 0xfe, 0x17, 0xcc, 0x18, 0x8e, 0x6d, 0x13, - 0xc3, 0x37, 0x1d, 0xbb, 0xae, 0x1b, 0x7b, 0xce, 0xce, 0x0e, 0x1b, 0x8d, 0xca, 0xd5, 0x97, 0x17, - 0x8e, 0x6d, 0x64, 0xdc, 0x4a, 0x16, 0x44, 0xff, 0xfa, 0x93, 0x87, 0x0f, 0xe7, 0x66, 0x96, 0xe2, - 0x64, 0x71, 0x92, 0x13, 0x7a, 0x01, 0x4a, 0x5f, 0xf1, 0x1c, 0xbb, 0xee, 0x34, 0x0f, 0xaa, 0x45, - 0xf6, 0x0e, 0xa6, 0x85, 0xc0, 0xa5, 0xd7, 0xb5, 0x5b, 0x1b, 0xb4, 0x1d, 0x4b, 0x0c, 0x74, 0x1b, - 0xf2, 0xbe, 0xe5, 0x55, 0xc7, 0x98, 0x78, 0xaf, 0xf4, 0x2d, 0xde, 0xd6, 0x9a, 0xc6, 0xd5, 0xb6, - 0x3e, 0x46, 0xdf, 0xd5, 0xd6, 0x9a, 0x86, 0x29, 0x3d, 0xf4, 0x7e, 0x0e, 0x4a, 0xd4, 0xbe, 0x9a, - 0xba, 0xaf, 0x57, 0x4b, 0x97, 0xf3, 0xcf, 0x55, 0xae, 0x7e, 0x69, 0x61, 0x20, 0x07, 0xb3, 0x10, - 0xd3, 0x96, 0x85, 0x75, 0x41, 0xfe, 0x9a, 0xed, 0xbb, 0x07, 0xe1, 0x33, 0x06, 0xcd, 0x58, 0xf2, - 0x47, 0xbf, 0x91, 0x83, 0xa9, 0xe0, 0xad, 0x2e, 0x13, 0xc3, 0xd2, 0x5d, 0x52, 0x2d, 0xb3, 0x07, - 0xbe, 0x93, 0x85, 0x4c, 0x51, 0xca, 0x62, 0x38, 0xce, 0x1d, 0x3e, 0x9c, 0x9b, 0x8a, 0x81, 0x70, - 0x5c, 0x0a, 0xf4, 0x41, 0x0e, 0xc6, 0xf7, 0xbb, 0xa4, 0x2b, 0xc5, 0x02, 0x26, 0xd6, 0xed, 0x0c, - 0xc4, 0xda, 0x54, 0xc8, 0x0a, 0x99, 0xa6, 0xa9, 0xb2, 0xab, 0xed, 0x38, 0xc2, 0x1c, 0x7d, 0x0d, - 0xca, 0xec, 0x77, 0xdd, 0xb4, 0x9b, 0xd5, 0x0a, 0x93, 0x04, 0x67, 0x25, 0x09, 0xa5, 0x29, 0xc4, - 0x98, 0xa0, 0x7e, 0x46, 0x36, 0xe2, 0x90, 0x27, 0xba, 0x07, 0x63, 0xc2, 0xa5, 0x55, 0xc7, 0x19, - 0xfb, 0x46, 0x06, 0xec, 0x23, 0xde, 0xb5, 0x5e, 0xa1, 0x5e, 0x4b, 0x34, 0xe1, 0x80, 0x1b, 0xba, - 0x03, 0x05, 0xbd, 0xeb, 0xef, 0x56, 0x27, 0x4e, 0x68, 0x06, 0x75, 0xdd, 0x33, 0x8d, 0x5a, 0xd7, - 0xdf, 0xad, 0x97, 0x0e, 0x1f, 0xce, 0x15, 0xe8, 0x7f, 0x98, 0x51, 0x44, 0x18, 0xca, 0x5d, 0xd7, - 0xd2, 0x88, 0xe1, 0x12, 0xbf, 0x3a, 0xc9, 0xc8, 0x7f, 0x7a, 0x81, 0xcf, 0x17, 0x94, 0xc2, 0x02, - 0x9d, 0xba, 0x16, 0xee, 0xbe, 0xb4, 0xc0, 0x31, 0x6e, 0x92, 0x03, 0x8d, 0x58, 0xc4, 0xf0, 0x1d, - 0x97, 0x0f, 0xd3, 0x6d, 0xbc, 0xc6, 0x21, 0x38, 0x24, 0x83, 0x7c, 0x28, 0xee, 0x98, 0x96, 0x4f, - 0xdc, 0xea, 0x54, 0x26, 0xa3, 0xa4, 0x58, 0xd5, 0x0a, 0xa3, 0x5b, 0x07, 0xea, 0xb1, 0xf9, 0xff, - 0x58, 0xf0, 0x9a, 0x7d, 0x15, 0x26, 0x22, 0x26, 0x87, 0xa6, 0x21, 0xbf, 0x47, 0x0e, 0xb8, 0xbb, - 0xc6, 0xf4, 0x5f, 0x74, 0x1e, 0x46, 0xef, 0xea, 0x56, 0x57, 0xb8, 0x66, 0xcc, 0x7f, 0xbc, 0x32, - 0xf2, 0x72, 0x6e, 0xfe, 0x27, 0x39, 0x78, 0xba, 0xa7, 0xb1, 0xd0, 0xf9, 0xa5, 0xd9, 0x75, 0xf5, - 0x6d, 0x8b, 0x30, 0x6a, 0xca, 0xfc, 0xb2, 0xcc, 0x9b, 0x71, 0x00, 0xa7, 0x0e, 0x99, 0x4e, 0x63, - 0xcb, 0xc4, 0x22, 0x3e, 0x11, 0x33, 0x9d, 0x74, 0xc8, 0x35, 0x09, 0xc1, 0x0a, 0x16, 0xf5, 0x88, - 0xa6, 0xed, 0x13, 0xd7, 0xd6, 0x2d, 0x31, 0xdd, 0x49, 0x6f, 0xb1, 0x2a, 0xda, 0xb1, 0xc4, 0x50, - 0x66, 0xb0, 0xc2, 0x91, 0x33, 0xd8, 0xe7, 0xe1, 0x5c, 0x8a, 0x76, 0x2b, 0xdd, 0x73, 0x47, 0x76, - 0xff, 0xbd, 0x11, 0xb8, 0x90, 0x6e, 0xa7, 0xe8, 0x32, 0x14, 0x6c, 0x3a, 0xc1, 0xf1, 0x89, 0x70, - 0x5c, 0x10, 0x28, 0xb0, 0x89, 0x8d, 0x41, 0xd4, 0x01, 0x1b, 0xe9, 0x6b, 0xc0, 0xf2, 0xc7, 0x1a, - 0xb0, 0x48, 0x80, 0x50, 0x38, 0x46, 0x80, 0x70, 0xcc, 0x59, 0x9f, 0x12, 0xd6, 0xdd, 0x56, 0xb7, - 0x4d, 0x95, 0x90, 0x4d, 0x4e, 0xe5, 0x90, 0x70, 0x2d, 0x00, 0xe0, 0x10, 0x67, 0xfe, 0xfd, 0x51, - 0x78, 0xba, 0xf6, 0xa0, 0xeb, 0x12, 0xa6, 0xa3, 0xde, 0x8d, 0xee, 0xb6, 0x1a, 0x30, 0x5c, 0x86, - 0xc2, 0xce, 0x7e, 0xd3, 0x8e, 0x0f, 0xd4, 0xca, 0xe6, 0xf2, 0x06, 0x66, 0x10, 0xd4, 0x81, 0x73, - 0xde, 0xae, 0xee, 0x92, 0x66, 0xcd, 0x30, 0x88, 0xe7, 0xdd, 0x24, 0x07, 0x32, 0x74, 0x38, 0xb6, - 0x21, 0x3e, 0x75, 0xf8, 0x70, 0xee, 0x9c, 0x96, 0xa4, 0x82, 0xd3, 0x48, 0xa3, 0x26, 0x4c, 0xc5, - 0x9a, 0xd9, 0xa0, 0x1f, 0x9b, 0x1b, 0x9b, 0x38, 0x62, 0xdc, 0x70, 0x9c, 0x24, 0x55, 0x80, 0xdd, - 0xee, 0x36, 0x7b, 0x16, 0x1e, 0x94, 0x48, 0x05, 0xb8, 0xc1, 0x9b, 0x71, 0x00, 0x47, 0xbf, 0xa6, - 0x4e, 0xc5, 0xa3, 0x6c, 0x2a, 0xde, 0x19, 0xd4, 0xad, 0xf6, 0x7a, 0x23, 0x7d, 0x4c, 0xca, 0xa1, - 0x13, 0x2b, 0x7e, 0x52, 0x9c, 0xd8, 0xef, 0x14, 0xe1, 0x19, 0xf6, 0xe8, 0xcc, 0x66, 0x35, 0xdf, - 0x71, 0xf5, 0x16, 0x51, 0xf5, 0xf1, 0x75, 0x40, 0x1e, 0x6f, 0xad, 0x19, 0x86, 0xd3, 0xb5, 0xfd, - 0x8d, 0xd0, 0x8c, 0x67, 0xc5, 0x58, 0x20, 0x2d, 0x81, 0x81, 0x53, 0x7a, 0xa1, 0x16, 0x4c, 0x87, - 0xb1, 0x9d, 0xe6, 0xbb, 0xa6, 0xdd, 0xea, 0x4f, 0x6d, 0xcf, 0x1f, 0x3e, 0x9c, 0x9b, 0x5e, 0x8a, - 0x91, 0xc0, 0x09, 0xa2, 0xd4, 0x26, 0xd9, 0x0c, 0xcc, 0x64, 0xcd, 0x47, 0x6d, 0x72, 0x33, 0x00, - 0xe0, 0x10, 0x27, 0x12, 0x60, 0x16, 0x1e, 0x19, 0x60, 0x5e, 0x84, 0x7c, 0xd3, 0xda, 0x17, 0x7e, - 0x41, 0x06, 0xf5, 0xcb, 0x6b, 0x9b, 0x98, 0xb6, 0xd3, 0xd8, 0x2c, 0xd4, 0xce, 0x22, 0xd3, 0x4e, - 0x33, 0x0b, 0xed, 0xec, 0xf1, 0x8a, 0x4e, 0xa4, 0xa0, 0x63, 0xa7, 0xa7, 0xa0, 0xe8, 0x55, 0x98, - 0x68, 0x12, 0xc3, 0x69, 0x92, 0x75, 0xe2, 0x79, 0x7a, 0x8b, 0x54, 0x4b, 0x6c, 0xe0, 0x9e, 0x14, - 0x82, 0x4e, 0x2c, 0xab, 0x40, 0x1c, 0xc5, 0x45, 0x4b, 0x30, 0x73, 0x4f, 0x37, 0xfd, 0x2d, 0xb3, - 0x4d, 0x56, 0x6d, 0x8d, 0x18, 0x8e, 0xdd, 0xf4, 0x58, 0xa4, 0x3b, 0xca, 0xd7, 0x0f, 0x6f, 0xc6, - 0x81, 0x38, 0x89, 0x3f, 0x98, 0x89, 0xfc, 0xb4, 0x08, 0xb3, 0x6c, 0xfc, 0x35, 0xe2, 0xde, 0x35, - 0x0d, 0x52, 0xef, 0x7a, 0xaa, 0x81, 0xa4, 0x29, 0x75, 0x6e, 0xe8, 0x4a, 0x3d, 0x72, 0x0c, 0xa5, - 0x5e, 0x84, 0xb2, 0xef, 0x74, 0x4c, 0x23, 0xcd, 0x0a, 0xb6, 0x02, 0x00, 0x0e, 0x71, 0xd0, 0x32, - 0x4c, 0x7b, 0xdd, 0x6d, 0xcf, 0x70, 0xcd, 0x0e, 0xe5, 0xab, 0xb8, 0xe2, 0xaa, 0xe8, 0x37, 0xad, - 0xc5, 0xe0, 0x38, 0xd1, 0x23, 0x58, 0x7e, 0x8d, 0x66, 0xbc, 0xfc, 0xea, 0x6f, 0x0d, 0xf8, 0x3d, - 0xd5, 0x06, 0xc7, 0x98, 0x0d, 0xb6, 0xb2, 0xb0, 0xc1, 0x54, 0x1d, 0x38, 0x91, 0x05, 0x96, 0x4e, - 0xd1, 0x02, 0xdf, 0x82, 0xa7, 0x76, 0xba, 0x96, 0x75, 0xb0, 0xd9, 0xd5, 0x2d, 0x73, 0xc7, 0x24, - 0x4d, 0xfa, 0xa2, 0xbc, 0x8e, 0x6e, 0xf0, 0x45, 0x63, 0xb9, 0x3e, 0x27, 0x44, 0x7e, 0x6a, 0x25, - 0x1d, 0x0d, 0xf7, 0xea, 0x3f, 0x98, 0x69, 0xfd, 0x43, 0x0e, 0x26, 0xea, 0xa6, 0xbf, 0xdd, 0x35, - 0xf6, 0x88, 0x4f, 0x57, 0x18, 0xc8, 0x85, 0xd1, 0x6d, 0xba, 0xf0, 0x10, 0x26, 0xb4, 0x39, 0xe0, - 0xf0, 0x48, 0xe2, 0xe1, 0x6a, 0xa6, 0x7c, 0xf8, 0x70, 0x6e, 0x94, 0xfd, 0xc4, 0x9c, 0x15, 0xba, - 0x0d, 0xe0, 0xd0, 0x85, 0xcd, 0x96, 0xb3, 0x47, 0xec, 0xfe, 0x26, 0xa4, 0x49, 0x1a, 0x71, 0xde, - 0xaa, 0x05, 0x9d, 0xb1, 0x42, 0x68, 0xfe, 0x47, 0x39, 0x40, 0x49, 0xfe, 0xe8, 0x16, 0x94, 0xba, - 0x1e, 0x0d, 0xcb, 0xc5, 0x34, 0x7a, 0x6c, 0x5e, 0xe3, 0x54, 0xa5, 0x6e, 0x8b, 0xae, 0x58, 0x12, - 0xa1, 0x04, 0x3b, 0xba, 0xe7, 0xdd, 0x73, 0xdc, 0x66, 0x7f, 0xc2, 0x33, 0x82, 0x0d, 0xd1, 0x15, - 0x4b, 0x22, 0xf3, 0xbf, 0x1c, 0x83, 0xf3, 0x52, 0xf0, 0x58, 0x2c, 0xd0, 0x64, 0xd1, 0xf4, 0x0d, - 0xc7, 0xd9, 0xbb, 0x65, 0xaf, 0x98, 0xb6, 0xe9, 0xed, 0x8a, 0x35, 0x81, 0x8c, 0x05, 0x96, 0x13, - 0x18, 0x38, 0xa5, 0x17, 0xfa, 0x8e, 0x6a, 0xa0, 0x23, 0xcc, 0x40, 0xf5, 0xac, 0x5e, 0xf6, 0x49, - 0x4d, 0x73, 0xec, 0x1e, 0xd9, 0xde, 0x75, 0x9c, 0x3d, 0x11, 0xdd, 0xae, 0x0f, 0x28, 0xcf, 0x9b, - 0x9c, 0xda, 0x92, 0x63, 0xfb, 0xe4, 0xbe, 0xcf, 0x97, 0xe9, 0xa2, 0x0d, 0x07, 0xac, 0xd0, 0x57, - 0xc4, 0x32, 0xbd, 0xc0, 0x58, 0xae, 0x65, 0x35, 0x04, 0xa9, 0x0b, 0xf7, 0x79, 0x28, 0xf2, 0x5e, - 0x2c, 0x66, 0x2e, 0x73, 0x57, 0xc1, 0x63, 0x5e, 0x2c, 0x20, 0xe8, 0x45, 0x18, 0x75, 0xee, 0xd9, - 0x22, 0x84, 0x2d, 0xd7, 0x9f, 0x12, 0x03, 0x36, 0xb5, 0x4c, 0x3a, 0x2e, 0x31, 0x74, 0x9f, 0x34, - 0x6f, 0x51, 0x30, 0xe6, 0x58, 0xe8, 0x7f, 0x02, 0x50, 0x11, 0x89, 0x41, 0x35, 0x8b, 0x45, 0x15, - 0xe5, 0xfa, 0x33, 0xa2, 0xcf, 0xf9, 0xb0, 0x4f, 0x43, 0xe2, 0x60, 0x05, 0x1f, 0xdd, 0x80, 0x49, - 0x97, 0x74, 0x1c, 0xcf, 0xf4, 0x1d, 0xf7, 0x40, 0xb3, 0xba, 0x2d, 0xe6, 0x15, 0xcb, 0xf5, 0xcb, - 0x82, 0x42, 0x35, 0xa4, 0x80, 0x23, 0x78, 0x38, 0xd6, 0x0f, 0x7d, 0x98, 0x83, 0x71, 0xd9, 0x64, - 0x12, 0x1a, 0x22, 0xe4, 0x33, 0xc8, 0xf5, 0xc8, 0xf1, 0x0c, 0xd9, 0x87, 0x39, 0x56, 0xac, 0xf0, - 0xc3, 0x11, 0xee, 0x8a, 0x9b, 0x87, 0x4f, 0xca, 0x4a, 0xe0, 0x01, 0x9c, 0x4b, 0x79, 0x5a, 0xf4, - 0x6c, 0xa0, 0x0f, 0x3c, 0xe4, 0x9f, 0x10, 0x0f, 0x3f, 0x1a, 0xd1, 0x82, 0xd7, 0x12, 0xef, 0x91, - 0xc7, 0x27, 0x17, 0x04, 0xf6, 0xe4, 0xd1, 0x6f, 0x6f, 0xfe, 0x0f, 0x2a, 0x30, 0x2b, 0x99, 0xd3, - 0x29, 0x96, 0xb8, 0xaa, 0xdf, 0x51, 0x2c, 0x33, 0x77, 0x7a, 0x96, 0x19, 0x55, 0xed, 0x91, 0x81, - 0x55, 0x3b, 0x7f, 0x42, 0xd5, 0x7e, 0x0e, 0x4a, 0x82, 0xae, 0x57, 0x2d, 0x30, 0xbb, 0xe5, 0x8e, - 0x5b, 0xb4, 0x61, 0x09, 0x45, 0xff, 0x2f, 0x6e, 0x04, 0x7c, 0x69, 0x7c, 0x27, 0x2b, 0x23, 0xe0, - 0x6f, 0xa6, 0x4f, 0x53, 0x08, 0x9d, 0x4e, 0xb1, 0xa7, 0xd3, 0xd9, 0x83, 0x8b, 0xde, 0x9e, 0xd9, - 0xa9, 0xbb, 0xba, 0x6d, 0xec, 0x62, 0xb2, 0xe3, 0x2d, 0xb1, 0x8c, 0x5a, 0xf3, 0x96, 0x7d, 0xab, - 0x43, 0xec, 0x06, 0x66, 0x8e, 0xa5, 0x54, 0xff, 0xb4, 0x60, 0x77, 0x51, 0x3b, 0x0a, 0x19, 0x1f, - 0x4d, 0x0b, 0xdd, 0x81, 0x8a, 0xce, 0x92, 0x0e, 0x7c, 0xbe, 0x2f, 0xf5, 0x33, 0x65, 0x4e, 0x1d, - 0x3e, 0x9c, 0xab, 0xd4, 0xc2, 0xde, 0x58, 0x25, 0x85, 0xde, 0x85, 0x09, 0xa1, 0x3c, 0x22, 0x39, - 0x5a, 0xee, 0x87, 0xf6, 0x0c, 0x5d, 0x0b, 0xbd, 0xa9, 0xf6, 0xc7, 0x51, 0x72, 0xe8, 0x0d, 0xb8, - 0xb0, 0x1d, 0xbc, 0x0b, 0x8f, 0xbd, 0x8b, 0xba, 0xee, 0x91, 0xdb, 0x78, 0x8d, 0x79, 0x99, 0x72, - 0xfd, 0x92, 0x18, 0x9f, 0x0b, 0xb1, 0x37, 0x26, 0xb0, 0x70, 0x8f, 0xde, 0x3d, 0xe6, 0xf5, 0xca, - 0x89, 0xe6, 0xf5, 0x48, 0xe0, 0x3d, 0x9e, 0x49, 0xe0, 0xdd, 0xdb, 0x33, 0x9c, 0x28, 0xf0, 0x9e, - 0x38, 0xc5, 0xc0, 0x5b, 0xac, 0x85, 0x26, 0x33, 0x5e, 0x0b, 0xbd, 0x0a, 0x13, 0xc6, 0x2e, 0x31, - 0xf6, 0x58, 0xaa, 0xf7, 0xae, 0x6e, 0xb1, 0xa4, 0x79, 0x39, 0x5c, 0x51, 0x2f, 0xa9, 0x40, 0x1c, - 0xc5, 0x1d, 0x6c, 0x96, 0xf8, 0x4e, 0x0e, 0x9e, 0xee, 0xe9, 0x0f, 0xd0, 0xd5, 0x88, 0xcb, 0xcc, - 0x45, 0xb7, 0x16, 0x7b, 0x38, 0xca, 0x41, 0xe7, 0x8e, 0xdf, 0x1f, 0x85, 0x73, 0x4b, 0xba, 0x45, - 0xec, 0xa6, 0x1e, 0x99, 0x34, 0x5e, 0x80, 0x92, 0x67, 0xec, 0x92, 0x66, 0xd7, 0x0a, 0xd2, 0x55, - 0x52, 0x3d, 0x34, 0xd1, 0x8e, 0x25, 0x86, 0xcc, 0xa7, 0xd3, 0xc1, 0x1c, 0x89, 0x62, 0xcb, 0x71, - 0x94, 0x18, 0xe8, 0x15, 0x98, 0x14, 0x89, 0x62, 0xc7, 0x5e, 0xd6, 0x7d, 0xe2, 0x55, 0xf3, 0xcc, - 0xb7, 0x21, 0x2a, 0xef, 0xb5, 0x08, 0x04, 0xc7, 0x30, 0x29, 0x27, 0xdf, 0x6c, 0x93, 0x07, 0x8e, - 0x1d, 0x2c, 0xae, 0x25, 0xa7, 0x2d, 0xd1, 0x8e, 0x25, 0x06, 0xfa, 0x76, 0x32, 0xd3, 0xf9, 0xe5, - 0x01, 0x35, 0x37, 0x65, 0xb0, 0xfa, 0xb0, 0xa3, 0x6f, 0xe4, 0xa0, 0xd2, 0x21, 0xae, 0x67, 0x7a, - 0x3e, 0xb1, 0x0d, 0x22, 0x32, 0x9d, 0xb7, 0xb2, 0xb0, 0xa6, 0x46, 0x48, 0x96, 0x3b, 0x5a, 0xa5, - 0x01, 0xab, 0x4c, 0xcf, 0x66, 0x15, 0x3d, 0x98, 0xe1, 0xdc, 0x87, 0xf3, 0x4b, 0xba, 0x6f, 0xec, - 0x76, 0x3b, 0xdc, 0xa2, 0xbb, 0xae, 0xee, 0x9b, 0x8e, 0x8d, 0x9e, 0x87, 0x31, 0x62, 0xeb, 0xdb, - 0x16, 0x69, 0xc6, 0xf7, 0x89, 0xae, 0xf1, 0x66, 0x1c, 0xc0, 0xd1, 0x67, 0xa0, 0xd2, 0xd6, 0xef, - 0x2f, 0x8b, 0x9e, 0x42, 0x4d, 0xe5, 0x29, 0x8a, 0xf5, 0x10, 0x84, 0x55, 0xbc, 0xf9, 0xaf, 0xc2, - 0x79, 0xce, 0x72, 0x5d, 0xef, 0x28, 0x23, 0x7a, 0x8c, 0x2d, 0x99, 0x65, 0x98, 0x36, 0x5c, 0xa2, - 0xfb, 0x64, 0x75, 0x67, 0xc3, 0xf1, 0xaf, 0xdd, 0x37, 0x3d, 0x5f, 0xec, 0xcd, 0xc8, 0x7c, 0xd0, - 0x52, 0x0c, 0x8e, 0x13, 0x3d, 0xe6, 0xbf, 0x3b, 0x06, 0xe8, 0x5a, 0xdb, 0xf4, 0xfd, 0x68, 0x50, - 0x77, 0x05, 0x8a, 0xdb, 0xae, 0xb3, 0x27, 0x23, 0x4b, 0xb9, 0xbf, 0x52, 0x67, 0xad, 0x58, 0x40, - 0xa9, 0x4f, 0x31, 0x76, 0x75, 0xdb, 0x26, 0x56, 0x18, 0x86, 0x49, 0x9f, 0xb2, 0x24, 0x21, 0x58, - 0xc1, 0x62, 0xe7, 0x4d, 0xf8, 0x2f, 0x25, 0xf7, 0x15, 0x9e, 0x37, 0x09, 0x41, 0x58, 0xc5, 0x8b, - 0x2c, 0xcd, 0x0b, 0x59, 0x2f, 0xcd, 0x47, 0x33, 0x58, 0x9a, 0xa7, 0x9f, 0xc3, 0x28, 0x9e, 0xc9, - 0x39, 0x8c, 0xb1, 0xe3, 0x9e, 0xc3, 0x28, 0x65, 0x3c, 0xf9, 0x7d, 0xa4, 0xba, 0x44, 0xbe, 0xcc, - 0x7b, 0x6f, 0x50, 0xfb, 0x4f, 0xa8, 0xe7, 0x89, 0x22, 0x8b, 0x4f, 0xcc, 0x5a, 0xef, 0xe3, 0x11, - 0x98, 0x8e, 0xbb, 0x5c, 0xf4, 0x00, 0xc6, 0x0c, 0xee, 0xa1, 0xc4, 0x2a, 0x4b, 0x1b, 0x78, 0xa2, - 0x49, 0xfa, 0x3b, 0x71, 0x58, 0x81, 0x43, 0x70, 0xc0, 0x10, 0x7d, 0x3d, 0x07, 0x65, 0x23, 0x70, - 0x52, 0x22, 0x8b, 0x35, 0x30, 0xfb, 0x14, 0xa7, 0xc7, 0x4f, 0x20, 0x48, 0x08, 0x0e, 0x99, 0xce, - 0xff, 0x6c, 0x04, 0x2a, 0xaa, 0x7f, 0xfa, 0xb2, 0xa2, 0x65, 0x7c, 0x3c, 0xfe, 0xab, 0x62, 0xbb, - 0xf2, 0x50, 0x5c, 0x28, 0x04, 0xc5, 0xa6, 0xd6, 0x7c, 0x6b, 0x9b, 0x86, 0x36, 0xf4, 0xe5, 0x84, - 0x7e, 0x2a, 0x6c, 0x53, 0x14, 0xa7, 0x03, 0x05, 0xaf, 0x43, 0x0c, 0xf1, 0xb8, 0x1b, 0xd9, 0xa9, - 0x8d, 0xd6, 0x21, 0x46, 0xe8, 0xd0, 0xe9, 0x2f, 0xcc, 0x38, 0xa1, 0xfb, 0x50, 0xf4, 0x7c, 0xdd, - 0xef, 0x7a, 0x22, 0xc3, 0x95, 0xa1, 0xaa, 0x6a, 0x8c, 0x6e, 0xe8, 0xc5, 0xf9, 0x6f, 0x2c, 0xf8, - 0xcd, 0x5f, 0x87, 0x99, 0x84, 0x5e, 0x53, 0xd7, 0x4e, 0xee, 0x77, 0x5c, 0xe2, 0xd1, 0xe8, 0x28, - 0x1e, 0x2e, 0x5e, 0x93, 0x10, 0xac, 0x60, 0xcd, 0xff, 0x3c, 0x07, 0x53, 0x0a, 0xa5, 0x35, 0xd3, - 0xf3, 0xd1, 0x97, 0x12, 0xaf, 0x6a, 0xe1, 0x78, 0xaf, 0x8a, 0xf6, 0x66, 0x2f, 0x4a, 0xda, 0x77, - 0xd0, 0xa2, 0xbc, 0x26, 0x07, 0x46, 0x4d, 0x9f, 0xb4, 0x3d, 0x91, 0xa5, 0x7c, 0x3d, 0xbb, 0x31, - 0x0b, 0xb3, 0x29, 0xab, 0x94, 0x01, 0xe6, 0x7c, 0xe6, 0xff, 0x62, 0x25, 0xf2, 0x88, 0xf4, 0xfd, - 0xb1, 0xe3, 0x7e, 0xb4, 0xa9, 0xde, 0xf5, 0x94, 0x0d, 0xd8, 0xf0, 0xb8, 0x9f, 0x02, 0xc3, 0x11, - 0x4c, 0xb4, 0x0f, 0x25, 0x9f, 0xb4, 0x3b, 0x96, 0xee, 0x07, 0x67, 0x04, 0xae, 0x0f, 0xf8, 0x04, - 0x5b, 0x82, 0x1c, 0x9f, 0xa5, 0x82, 0x5f, 0x58, 0xb2, 0x41, 0x6d, 0x18, 0xf3, 0xf8, 0x3e, 0x89, - 0xd0, 0xb3, 0x95, 0x01, 0x39, 0x06, 0xbb, 0x2e, 0xcc, 0x79, 0x88, 0x1f, 0x38, 0xe0, 0x81, 0xbe, - 0x0a, 0xa3, 0x6d, 0xd3, 0x36, 0x1d, 0x96, 0x1d, 0xa9, 0x5c, 0x7d, 0x2b, 0x5b, 0x43, 0x5a, 0x58, - 0xa7, 0xb4, 0xf9, 0x34, 0x20, 0xdf, 0x17, 0x6b, 0xc3, 0x9c, 0x2d, 0x3b, 0x18, 0x68, 0x88, 0xa0, - 0x5a, 0xc4, 0xe8, 0x5f, 0xca, 0x58, 0x06, 0x19, 0xb3, 0x47, 0x67, 0xa3, 0xa0, 0x19, 0x4b, 0xfe, - 0xe8, 0x01, 0x14, 0x76, 0x4c, 0x8b, 0x88, 0x7d, 0xe7, 0x3b, 0x19, 0xcb, 0xb1, 0x62, 0x5a, 0x84, - 0xcb, 0x10, 0x9e, 0x4c, 0x31, 0x2d, 0x82, 0x19, 0x4f, 0x36, 0x10, 0x2e, 0xe1, 0x34, 0xc4, 0xa6, - 0x5b, 0xd6, 0x03, 0x81, 0x05, 0xf9, 0xd8, 0x40, 0x04, 0xcd, 0x58, 0xf2, 0x47, 0xff, 0x3b, 0x17, - 0x66, 0x0d, 0xf9, 0x69, 0xcd, 0xb7, 0x33, 0x96, 0x45, 0xe4, 0x6a, 0xb8, 0x28, 0x32, 0x6c, 0x4f, - 0xe4, 0x11, 0x1f, 0x40, 0x41, 0x6f, 0xef, 0x77, 0x44, 0xa8, 0x92, 0xf5, 0x1b, 0xa9, 0xb5, 0xf7, - 0x3b, 0xb1, 0x37, 0x52, 0x5b, 0xdf, 0x6c, 0x60, 0xc6, 0x93, 0x9a, 0xc6, 0x9e, 0xbe, 0xb3, 0xa7, - 0x57, 0x61, 0x28, 0xa6, 0x71, 0x93, 0xd2, 0x8e, 0x99, 0x06, 0x6b, 0xc3, 0x9c, 0x2d, 0x7d, 0xf6, - 0xf6, 0xbe, 0xef, 0x57, 0x2b, 0x43, 0x79, 0xf6, 0xf5, 0x7d, 0xdf, 0x8f, 0x3d, 0xfb, 0xfa, 0xe6, - 0xd6, 0x16, 0x66, 0x3c, 0x29, 0x6f, 0x5b, 0xf7, 0x3d, 0x91, 0x84, 0xca, 0x9a, 0xf7, 0x86, 0xee, - 0x7b, 0x31, 0xde, 0x1b, 0xb5, 0x2d, 0x0d, 0x33, 0x9e, 0xe8, 0x2e, 0xe4, 0x3d, 0xdb, 0xab, 0x4e, - 0x30, 0xd6, 0x6f, 0x66, 0xcc, 0x5a, 0xb3, 0x05, 0x67, 0x79, 0xf4, 0x44, 0xdb, 0xd0, 0x30, 0x65, - 0xc8, 0xf8, 0xee, 0x7b, 0xd5, 0xc9, 0xe1, 0xf0, 0xdd, 0x4f, 0xf0, 0xdd, 0xa4, 0x7c, 0xf7, 0x3d, - 0xf4, 0x8d, 0x1c, 0x14, 0x3b, 0xdd, 0x6d, 0xad, 0xbb, 0x5d, 0x9d, 0x62, 0xbc, 0xbf, 0x98, 0x31, - 0xef, 0x06, 0x23, 0xce, 0xd9, 0xcb, 0x18, 0x83, 0x37, 0x62, 0xc1, 0x99, 0x09, 0xc1, 0xb9, 0x56, - 0xa7, 0x87, 0x22, 0xc4, 0x75, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0xc4, 0x82, 0x73, 0x20, 0x84, 0xa5, - 0x6f, 0x57, 0x67, 0x86, 0x25, 0x84, 0xa5, 0xa7, 0x08, 0x61, 0xe9, 0x5c, 0x08, 0x4b, 0xdf, 0xa6, - 0xaa, 0xbf, 0xdb, 0xdc, 0xf1, 0xaa, 0x68, 0x28, 0xaa, 0x7f, 0xa3, 0xb9, 0x13, 0x57, 0xfd, 0x1b, - 0xcb, 0x2b, 0x1a, 0x66, 0x3c, 0xa9, 0xcb, 0xf1, 0x2c, 0xdd, 0xd8, 0xab, 0x9e, 0x1b, 0x8a, 0xcb, - 0xd1, 0x28, 0xed, 0x98, 0xcb, 0x61, 0x6d, 0x98, 0xb3, 0x45, 0xbf, 0x9e, 0x83, 0x8a, 0x38, 0x7b, - 0x76, 0xdd, 0x35, 0x9b, 0xd5, 0xf3, 0xd9, 0xac, 0x10, 0xe3, 0x62, 0x84, 0x1c, 0xb8, 0x30, 0x32, - 0xbb, 0xa0, 0x40, 0xb0, 0x2a, 0x08, 0xfa, 0xdd, 0x1c, 0x4c, 0xea, 0x91, 0x53, 0x86, 0xd5, 0x27, - 0x99, 0x6c, 0xdb, 0x59, 0x4f, 0x09, 0xd1, 0xa3, 0x8c, 0x4c, 0x3c, 0x99, 0x4d, 0x8d, 0x02, 0x71, - 0x4c, 0x22, 0xa6, 0xbe, 0x9e, 0xef, 0x9a, 0x1d, 0x52, 0xbd, 0x30, 0x14, 0xf5, 0xd5, 0x18, 0xf1, - 0x98, 0xfa, 0xf2, 0x46, 0x2c, 0x38, 0xb3, 0xa9, 0x9b, 0xf0, 0x25, 0x79, 0xf5, 0xa9, 0xa1, 0x4c, - 0xdd, 0xc1, 0x82, 0x3f, 0x3a, 0x75, 0x8b, 0x56, 0x1c, 0x30, 0xa7, 0xba, 0xec, 0x92, 0xa6, 0xe9, - 0x55, 0xab, 0x43, 0xd1, 0x65, 0x4c, 0x69, 0xc7, 0x74, 0x99, 0xb5, 0x61, 0xce, 0x96, 0xba, 0x73, - 0xdb, 0xdb, 0xaf, 0x3e, 0x3d, 0x14, 0x77, 0xbe, 0xe1, 0xed, 0xc7, 0xdc, 0xf9, 0x86, 0xb6, 0x89, - 0x29, 0x43, 0xe1, 0xce, 0x2d, 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, - 0xd3, 0x46, 0x2c, 0x38, 0x33, 0x2d, 0x60, 0xd7, 0xcb, 0x4c, 0xa3, 0xfa, 0xa9, 0xa1, 0x68, 0xc1, - 0x75, 0x4e, 0x3d, 0xa6, 0x05, 0xa2, 0x15, 0x07, 0xcc, 0xd1, 0x73, 0x34, 0xaa, 0xed, 0x58, 0xa6, - 0xa1, 0x7b, 0xd5, 0x67, 0xd8, 0xc9, 0xc3, 0x71, 0x1e, 0x73, 0xf2, 0x36, 0x2c, 0xa1, 0xe8, 0x87, - 0x39, 0x98, 0x8a, 0xed, 0xb1, 0x55, 0x2f, 0x32, 0xd1, 0x8d, 0x8c, 0x45, 0xaf, 0x47, 0xb9, 0xf0, - 0x47, 0x90, 0x87, 0x35, 0xe2, 0x3b, 0x34, 0x71, 0xa1, 0xd0, 0xb7, 0x73, 0x50, 0x96, 0x6d, 0xd5, - 0x4b, 0x4c, 0xc4, 0x77, 0x86, 0x25, 0x22, 0x17, 0x4e, 0x1e, 0x3d, 0x0c, 0x4f, 0x19, 0x84, 0x22, - 0x30, 0xaf, 0xcd, 0x74, 0x5e, 0xf3, 0x5d, 0xa2, 0xb7, 0xab, 0x73, 0x43, 0xf1, 0xda, 0x38, 0xe4, - 0x10, 0xf3, 0xda, 0x0a, 0x04, 0xab, 0x82, 0xb0, 0x57, 0xaa, 0x47, 0x4f, 0xfe, 0x55, 0x2f, 0x0f, - 0xe5, 0x95, 0xc6, 0xcf, 0x17, 0x46, 0x5f, 0x69, 0x0c, 0x8a, 0xe3, 0x42, 0xa1, 0x3f, 0xc9, 0xc1, - 0x8c, 0x1e, 0x3f, 0x26, 0x5c, 0xfd, 0x4f, 0x4c, 0x54, 0x32, 0x0c, 0x51, 0x23, 0xc7, 0x91, 0x99, - 0xb0, 0x4f, 0x0b, 0x61, 0x67, 0x12, 0x70, 0x9c, 0x14, 0x8d, 0x06, 0x29, 0xde, 0x8e, 0xdf, 0xa9, - 0xce, 0x0f, 0x25, 0x48, 0xd1, 0x76, 0xfc, 0xf8, 0xba, 0x48, 0x5b, 0xd9, 0x6a, 0x60, 0xc6, 0x93, - 0x47, 0x69, 0xc4, 0x75, 0x4d, 0xbf, 0xfa, 0xec, 0x70, 0xa2, 0x34, 0x46, 0x3c, 0x1e, 0xa5, 0xb1, - 0x46, 0x2c, 0x38, 0xcf, 0x76, 0x01, 0xc2, 0xdc, 0x42, 0x4a, 0xfe, 0x76, 0x53, 0xcd, 0xdf, 0x56, - 0xae, 0xbe, 0xda, 0x77, 0x06, 0x5d, 0xfb, 0x6f, 0x35, 0xd7, 0x37, 0x77, 0x74, 0xc3, 0x57, 0x92, - 0xbf, 0xb3, 0xdf, 0xc9, 0xc1, 0x44, 0x24, 0x9f, 0x90, 0xc2, 0x7a, 0x37, 0xca, 0x1a, 0x67, 0xbf, - 0xe5, 0xa8, 0x4a, 0xf4, 0x7f, 0x72, 0x50, 0x96, 0x99, 0x85, 0x14, 0x69, 0x9a, 0x51, 0x69, 0x06, - 0xcd, 0x94, 0x32, 0x56, 0xe9, 0x92, 0xd0, 0xb1, 0x89, 0xa4, 0x18, 0x86, 0x3f, 0x36, 0x92, 0x5d, - 0xba, 0x44, 0x1f, 0xe5, 0x60, 0x5c, 0x4d, 0x34, 0xa4, 0x08, 0xd4, 0x8a, 0x0a, 0xb4, 0x99, 0xcd, - 0xe1, 0xa8, 0x23, 0xde, 0x95, 0xcc, 0x39, 0x0c, 0xff, 0x5d, 0xc5, 0x6e, 0xc8, 0xaa, 0x92, 0x7c, - 0x2b, 0x07, 0x10, 0x26, 0x20, 0x52, 0x44, 0x21, 0x51, 0x51, 0x06, 0xdd, 0xa3, 0xe6, 0xbc, 0x7a, - 0x8f, 0x8a, 0xcc, 0x46, 0x0c, 0x7f, 0x54, 0xd6, 0x37, 0xb7, 0xb6, 0x7a, 0x48, 0xf2, 0x7f, 0x73, - 0x50, 0x96, 0xb9, 0x89, 0xe1, 0x0f, 0xca, 0x46, 0x6d, 0x4b, 0xe3, 0xab, 0x87, 0xa4, 0x28, 0xdf, - 0xcc, 0x41, 0x29, 0xc8, 0x55, 0xa4, 0x48, 0x62, 0x44, 0x25, 0x19, 0xf4, 0x4c, 0x9f, 0xb6, 0xa1, - 0xf5, 0x18, 0x12, 0x26, 0xc7, 0xfe, 0xa9, 0xc9, 0xb1, 0xd9, 0x4b, 0x8e, 0x0f, 0x72, 0x50, 0x51, - 0xf2, 0x18, 0x29, 0xa2, 0xec, 0x44, 0x45, 0x19, 0x74, 0x7b, 0x46, 0x30, 0xeb, 0x2d, 0x8d, 0x92, - 0xd0, 0x18, 0xbe, 0x34, 0x82, 0xd9, 0x91, 0xd2, 0x04, 0x99, 0x8d, 0x53, 0x91, 0x86, 0x32, 0xeb, - 0x6d, 0xce, 0x32, 0xcb, 0x31, 0x7c, 0x73, 0xbe, 0xb1, 0xbc, 0xa2, 0x1d, 0xe1, 0xe4, 0xc2, 0x94, - 0xc7, 0xf0, 0xed, 0x99, 0xf3, 0x4a, 0x97, 0xe5, 0x7b, 0x39, 0x98, 0x8e, 0xe7, 0x3d, 0x52, 0x24, - 0xda, 0x8b, 0x4a, 0x34, 0xe8, 0xc5, 0x7f, 0x95, 0x63, 0xba, 0x5c, 0xbf, 0x9d, 0x83, 0x73, 0x29, - 0x39, 0x8f, 0x14, 0xd1, 0xec, 0xa8, 0x68, 0x77, 0x86, 0x75, 0x67, 0x34, 0xae, 0xd9, 0x4a, 0xd2, - 0x63, 0xf8, 0x9a, 0x2d, 0x98, 0xf5, 0x0e, 0x27, 0xd4, 0xe4, 0xc7, 0xf0, 0xc3, 0x89, 0xe4, 0xd9, - 0x8a, 0xb8, 0x7e, 0x87, 0x69, 0x90, 0xe1, 0xeb, 0x37, 0xe7, 0xd5, 0x7b, 0x9e, 0x08, 0x92, 0x22, - 0xc3, 0x9f, 0x27, 0x36, 0xb4, 0xcd, 0x23, 0xe7, 0x09, 0x99, 0x20, 0x39, 0x8d, 0x79, 0x82, 0x31, - 0xeb, 0xad, 0x31, 0x6a, 0xa2, 0x64, 0xf8, 0x1a, 0x13, 0x70, 0x4b, 0x97, 0xe7, 0xfb, 0x39, 0xe5, - 0x76, 0x92, 0x92, 0xfd, 0x48, 0x91, 0xcb, 0x89, 0xca, 0xf5, 0xd6, 0xd0, 0xce, 0x21, 0xab, 0xf2, - 0x7d, 0x9c, 0x83, 0xc9, 0x68, 0xea, 0x23, 0x45, 0x32, 0x33, 0x2a, 0x99, 0x36, 0x84, 0x9b, 0x4f, - 0x71, 0xcf, 0x1d, 0xcf, 0x7d, 0x0c, 0xdf, 0x73, 0xab, 0x1c, 0x7b, 0xbf, 0xcb, 0xb4, 0xb4, 0xc7, - 0xf0, 0xdf, 0x65, 0xef, 0xcb, 0x9c, 0xaa, 0x7c, 0x3f, 0xc8, 0xc1, 0x85, 0xf4, 0x5c, 0x47, 0x8a, - 0x84, 0xfb, 0x51, 0x09, 0xdf, 0x1e, 0xe2, 0x95, 0xef, 0x78, 0xac, 0x22, 0x93, 0x1d, 0xc3, 0x8f, - 0x55, 0xb4, 0x95, 0xad, 0xc6, 0x51, 0x31, 0x5c, 0x98, 0xf7, 0x38, 0x85, 0x18, 0x8e, 0x33, 0x4b, - 0x95, 0x66, 0xde, 0x8f, 0x9c, 0x38, 0xe2, 0xc7, 0x91, 0xd0, 0x7b, 0xf2, 0x00, 0x14, 0x3f, 0x27, - 0xf4, 0xd9, 0xfe, 0x73, 0x2a, 0x47, 0x9f, 0x73, 0xfa, 0xf3, 0x02, 0x4c, 0xc5, 0xf2, 0x0b, 0xac, - 0xf4, 0x08, 0xfd, 0xc9, 0xea, 0x74, 0xe5, 0xa2, 0xf7, 0xb0, 0xaf, 0x05, 0x00, 0x1c, 0xe2, 0xa0, - 0x8f, 0x73, 0x30, 0x75, 0x4f, 0xf7, 0x8d, 0xdd, 0x86, 0xee, 0xef, 0xf2, 0xc3, 0x6a, 0x19, 0xbd, - 0xbd, 0x37, 0xa3, 0x54, 0xc3, 0xf4, 0x62, 0x0c, 0x80, 0xe3, 0xfc, 0xd1, 0xf3, 0x30, 0xd6, 0x71, - 0x2c, 0xcb, 0xb4, 0x5b, 0xa2, 0xe0, 0x8a, 0xcc, 0x97, 0x37, 0x78, 0x33, 0x0e, 0xe0, 0xd1, 0x42, - 0x59, 0x85, 0x4c, 0x8e, 0x81, 0xc4, 0x86, 0xf4, 0x44, 0xa7, 0x33, 0x47, 0x3f, 0x29, 0xa7, 0x33, - 0xff, 0xb6, 0x00, 0x28, 0x39, 0x07, 0x3e, 0xaa, 0x94, 0xdc, 0x15, 0x28, 0x1a, 0xa1, 0xaa, 0x28, - 0xe7, 0xa9, 0xc5, 0x1b, 0x15, 0x50, 0x7e, 0xd3, 0xc1, 0x23, 0x46, 0xd7, 0x25, 0xc9, 0xca, 0x41, - 0xbc, 0x1d, 0x4b, 0x8c, 0x3e, 0x0b, 0x63, 0x7c, 0x94, 0xbc, 0xad, 0xf0, 0x5e, 0xe6, 0xc1, 0x40, - 0x1f, 0x2f, 0xff, 0x36, 0x2b, 0x14, 0xb4, 0x2b, 0x6e, 0x63, 0x15, 0xfb, 0xbe, 0xd9, 0x5d, 0x93, - 0x9d, 0xb1, 0x42, 0xe8, 0x6c, 0xca, 0x68, 0x0c, 0xa6, 0x53, 0x3f, 0x2b, 0xc2, 0x4c, 0xc2, 0x5d, - 0x9e, 0xd1, 0xc5, 0xca, 0x17, 0xa0, 0x44, 0xff, 0x2a, 0x75, 0x2c, 0xe4, 0x3b, 0xbc, 0x21, 0xda, - 0xb1, 0xc4, 0x50, 0xee, 0x0f, 0xe6, 0x7b, 0xde, 0x1f, 0xbc, 0x13, 0xb9, 0x44, 0x9d, 0x65, 0xad, - 0xb3, 0x57, 0x61, 0x82, 0x67, 0xeb, 0x83, 0x9b, 0x76, 0xa3, 0xd1, 0x9b, 0x56, 0xd7, 0x55, 0x20, - 0x8e, 0xe2, 0xf6, 0xb8, 0x57, 0x57, 0x3c, 0xd1, 0xbd, 0xba, 0x0f, 0x93, 0x05, 0x2d, 0xde, 0xcd, - 0x7a, 0xfa, 0xec, 0xc3, 0xb2, 0xd4, 0x4b, 0xa9, 0xa5, 0x23, 0x2f, 0xa5, 0x2e, 0x42, 0xd9, 0xf3, - 0xac, 0x37, 0x88, 0x6b, 0xee, 0x1c, 0xb0, 0x0b, 0x91, 0x4a, 0xe1, 0x2d, 0x2d, 0x00, 0xe0, 0x10, - 0xe7, 0x93, 0x78, 0x9e, 0xfe, 0x6f, 0x72, 0x30, 0xc9, 0xd3, 0x5b, 0xb5, 0x4e, 0x67, 0xc9, 0x25, - 0x4d, 0x8f, 0xba, 0x9e, 0x8e, 0x6b, 0xde, 0xd5, 0x7d, 0x12, 0x5c, 0x85, 0xeb, 0xcf, 0xf5, 0x34, - 0x64, 0x67, 0xac, 0x10, 0x42, 0xcf, 0xc2, 0xa8, 0xde, 0xe9, 0xac, 0x2e, 0x33, 0x19, 0xf2, 0xe1, - 0xb1, 0x81, 0x1a, 0x6d, 0xc4, 0x1c, 0x86, 0x5e, 0x83, 0x49, 0xd3, 0xf6, 0x7c, 0xdd, 0xb2, 0xd8, - 0x99, 0xfb, 0xd5, 0x65, 0xe6, 0xe8, 0xf3, 0xe1, 0x21, 0x90, 0xd5, 0x08, 0x14, 0xc7, 0xb0, 0xe7, - 0xff, 0xb2, 0x02, 0x33, 0x89, 0x6c, 0x1d, 0x9a, 0x85, 0x11, 0x93, 0x5f, 0x52, 0xca, 0xd7, 0x41, - 0x50, 0x1a, 0x59, 0x5d, 0xc6, 0x23, 0x66, 0x53, 0x75, 0x24, 0x23, 0xa7, 0xe7, 0x48, 0x64, 0xad, - 0x82, 0xfc, 0x71, 0x6b, 0x15, 0x84, 0x77, 0x07, 0xc5, 0xdd, 0xbb, 0x94, 0x0b, 0xdd, 0xe1, 0x7d, - 0x43, 0xac, 0xe0, 0x1f, 0xab, 0x78, 0xc2, 0x2d, 0x28, 0xe9, 0x1d, 0x93, 0xdf, 0x2b, 0x2e, 0xf6, - 0x7d, 0xdf, 0xa7, 0xd6, 0x58, 0xe5, 0x97, 0x8a, 0x25, 0x91, 0xe4, 0x8d, 0xe2, 0xb1, 0x6c, 0x6f, - 0x14, 0xab, 0xc1, 0x40, 0xe9, 0x91, 0xc1, 0xc0, 0x15, 0x28, 0xea, 0x86, 0x6f, 0xde, 0x25, 0xc2, - 0x8e, 0x65, 0x88, 0x51, 0x63, 0xad, 0x58, 0x40, 0x45, 0xb9, 0x5f, 0x3f, 0x08, 0x79, 0x21, 0x51, - 0xee, 0x37, 0x00, 0x61, 0x15, 0x8f, 0xf9, 0x5a, 0xa6, 0x34, 0x81, 0xaf, 0xad, 0xc4, 0x7c, 0xad, - 0x0a, 0xc4, 0x51, 0x5c, 0x54, 0x83, 0x29, 0xde, 0x70, 0xbb, 0x63, 0x39, 0x7a, 0x93, 0x76, 0x1f, - 0x8f, 0x6a, 0xc5, 0xf5, 0x28, 0x18, 0xc7, 0xf1, 0x7b, 0xb8, 0xeb, 0x89, 0xc1, 0xdd, 0xf5, 0x64, - 0x36, 0xee, 0x3a, 0x6e, 0x91, 0x7d, 0xb8, 0xeb, 0xf7, 0xe3, 0x95, 0x01, 0xf8, 0x29, 0xcd, 0x41, - 0x5d, 0x2b, 0x35, 0xaf, 0xa6, 0x7a, 0xf7, 0xff, 0x58, 0x15, 0x01, 0x3e, 0x0b, 0x13, 0x8e, 0xdb, - 0xd2, 0x6d, 0xf3, 0x01, 0x73, 0x38, 0x1e, 0x3b, 0xad, 0x59, 0xe6, 0xda, 0x7a, 0x4b, 0x05, 0xe0, - 0x28, 0x1e, 0x7a, 0x00, 0xe5, 0x56, 0xe0, 0x65, 0xab, 0x33, 0x99, 0xf8, 0x99, 0xa8, 0xd7, 0xe6, - 0xd7, 0x83, 0x64, 0x1b, 0x0e, 0xd9, 0x29, 0xb3, 0x12, 0xfa, 0xa4, 0xcc, 0x4a, 0xef, 0x97, 0x98, - 0x1b, 0x8f, 0x6e, 0x73, 0x9c, 0x51, 0xcc, 0xf7, 0x39, 0x28, 0x8b, 0x88, 0x40, 0xcc, 0x5d, 0xe5, - 0xfa, 0xa7, 0x84, 0xaa, 0x9c, 0x4b, 0xd4, 0xd2, 0x58, 0x5d, 0xc6, 0x21, 0xf6, 0x31, 0x03, 0xc0, - 0x48, 0x4d, 0x87, 0x42, 0x76, 0x35, 0x1d, 0x34, 0x78, 0x92, 0xdf, 0xbf, 0xd5, 0xb4, 0x35, 0x16, - 0xa0, 0x98, 0x06, 0xbf, 0x7e, 0xcb, 0xab, 0xff, 0x5d, 0x14, 0x0f, 0xf1, 0xe4, 0xb5, 0x34, 0x24, - 0x9c, 0xde, 0x57, 0x78, 0x3a, 0x4b, 0x97, 0x9e, 0xae, 0x98, 0xf0, 0x74, 0x21, 0x10, 0x47, 0x71, - 0x7b, 0xb8, 0xa9, 0xd2, 0xe0, 0x6e, 0xaa, 0x9c, 0x95, 0x9b, 0x8a, 0x6a, 0xdc, 0x09, 0xa3, 0x4a, - 0x38, 0x32, 0xaa, 0xbc, 0x03, 0x15, 0x8f, 0xbd, 0x49, 0xfe, 0xc2, 0x2b, 0x7d, 0xbf, 0x70, 0x2d, - 0xec, 0x8d, 0x55, 0x52, 0x8a, 0xa1, 0x8f, 0x9f, 0x62, 0xa1, 0x88, 0x79, 0x28, 0xb6, 0x5c, 0xa7, - 0xdb, 0xe1, 0x77, 0x06, 0x84, 0x92, 0x5f, 0x67, 0x2d, 0x58, 0x40, 0x06, 0x73, 0x06, 0xdf, 0x2f, - 0xc3, 0x54, 0x6c, 0x9f, 0x31, 0x35, 0xcf, 0x94, 0x3b, 0xe3, 0x3c, 0xd3, 0x65, 0x28, 0xf8, 0x34, - 0x68, 0x18, 0x89, 0xde, 0x4a, 0x67, 0xd1, 0x02, 0x83, 0x24, 0x8b, 0x5f, 0xe4, 0x8f, 0x5f, 0xfc, - 0x02, 0xfd, 0x17, 0x28, 0xeb, 0xcd, 0xa6, 0x4b, 0x3c, 0x8f, 0x04, 0xd5, 0x74, 0x98, 0xcf, 0xaf, - 0x05, 0x8d, 0x38, 0x84, 0xb3, 0x85, 0x6a, 0x73, 0xc7, 0xbb, 0xed, 0x89, 0xec, 0x91, 0xba, 0x50, - 0x5d, 0x5e, 0xd1, 0x68, 0x3b, 0x96, 0x18, 0xa8, 0x09, 0x53, 0x7b, 0xee, 0xf6, 0xd2, 0x92, 0x6e, - 0xec, 0x92, 0x93, 0x64, 0x1c, 0x58, 0x95, 0xdc, 0x9b, 0x51, 0x0a, 0x38, 0x4e, 0x52, 0x70, 0xb9, - 0x49, 0x0e, 0x7c, 0x7d, 0xfb, 0x24, 0x31, 0x61, 0xc0, 0x45, 0xa5, 0x80, 0xe3, 0x24, 0x69, 0x04, - 0xb7, 0xe7, 0x6e, 0x07, 0x37, 0xda, 0x45, 0x55, 0x2e, 0x19, 0xc1, 0xdd, 0x0c, 0x41, 0x58, 0xc5, - 0xa3, 0x03, 0xb6, 0xe7, 0x6e, 0x63, 0xa2, 0x5b, 0x6d, 0x51, 0x58, 0x50, 0x0e, 0xd8, 0x4d, 0xd1, - 0x8e, 0x25, 0x06, 0xea, 0x00, 0xa2, 0x4f, 0xc7, 0xde, 0xbb, 0xbc, 0x92, 0x2b, 0x16, 0x7d, 0xcf, - 0xa5, 0x3d, 0x8d, 0x44, 0x52, 0x1f, 0xe8, 0x02, 0x75, 0x77, 0x37, 0x13, 0x74, 0x70, 0x0a, 0x6d, - 0xf4, 0x16, 0x3c, 0xb5, 0xe7, 0x6e, 0x8b, 0xb4, 0x7f, 0xc3, 0x35, 0x6d, 0xc3, 0xec, 0xe8, 0xbc, - 0x46, 0x40, 0x25, 0x5a, 0x07, 0xf1, 0x66, 0x3a, 0x1a, 0xee, 0xd5, 0x3f, 0x9a, 0xf4, 0x1c, 0xcf, - 0x24, 0xe9, 0x19, 0x33, 0xd7, 0xc7, 0xbd, 0xd8, 0xcd, 0x60, 0xfe, 0xe9, 0x47, 0x39, 0x40, 0xec, - 0x84, 0x55, 0xf0, 0x35, 0x10, 0xe6, 0xfc, 0xd0, 0x22, 0x94, 0x99, 0xf7, 0x53, 0x2e, 0xbd, 0xca, - 0xec, 0xc1, 0xf5, 0x00, 0x80, 0x43, 0x1c, 0xba, 0x46, 0x71, 0xac, 0x26, 0x91, 0x95, 0x2a, 0xe4, - 0x1a, 0xe5, 0x16, 0x6b, 0xc5, 0x02, 0x8a, 0xae, 0xc3, 0x8c, 0x4b, 0xb6, 0x75, 0x4b, 0xb7, 0x0d, - 0xa2, 0xf9, 0xae, 0xee, 0x93, 0xd6, 0x81, 0xf0, 0x24, 0xf2, 0x18, 0x2b, 0x8e, 0x23, 0xe0, 0x64, - 0x9f, 0xf9, 0xbf, 0x2f, 0xc1, 0x74, 0xfc, 0x68, 0xd8, 0xa3, 0x72, 0xb5, 0x8b, 0x50, 0xee, 0xe8, - 0xae, 0x6f, 0x2a, 0x75, 0x3c, 0xe4, 0x53, 0x35, 0x02, 0x00, 0x0e, 0x71, 0xe8, 0xb2, 0x9f, 0x95, - 0x69, 0x15, 0x12, 0xca, 0x65, 0x3f, 0x2b, 0xe3, 0x8a, 0x39, 0x2c, 0xbd, 0x38, 0x44, 0xe1, 0xd4, - 0x8a, 0x43, 0x3c, 0x16, 0x75, 0x5f, 0x3f, 0x48, 0xa6, 0xc9, 0xde, 0xc9, 0xf8, 0xdc, 0x5f, 0x7f, - 0xcb, 0xae, 0x09, 0x43, 0xd5, 0x67, 0x51, 0x0c, 0x63, 0x33, 0x0b, 0x91, 0x22, 0x86, 0xc2, 0x57, - 0x4f, 0x91, 0x26, 0x1c, 0x65, 0x8d, 0x1a, 0x70, 0xde, 0x32, 0xdb, 0x22, 0xe1, 0xe7, 0x35, 0x88, - 0xcb, 0xab, 0x23, 0x33, 0x47, 0x9d, 0x0f, 0x13, 0x21, 0x6b, 0x29, 0x38, 0x38, 0xb5, 0x27, 0x7a, - 0x1e, 0xc6, 0xee, 0x12, 0x97, 0x5d, 0xde, 0x87, 0x68, 0xc5, 0xf6, 0x37, 0x78, 0x33, 0x0e, 0xe0, - 0xe8, 0x2d, 0x28, 0x78, 0xba, 0x67, 0x89, 0x40, 0xed, 0x04, 0x47, 0x99, 0x6b, 0xda, 0x9a, 0x50, - 0x0f, 0x96, 0xa2, 0xa5, 0xbf, 0x31, 0x23, 0x79, 0x46, 0x01, 0x5b, 0xb8, 0xdd, 0x32, 0x71, 0xd4, - 0x76, 0xcb, 0x60, 0x4e, 0xf1, 0x07, 0x45, 0x98, 0x8a, 0x9d, 0xf5, 0x7c, 0x94, 0x6b, 0x91, 0x9e, - 0x62, 0xe4, 0x08, 0x4f, 0xf1, 0x02, 0x94, 0x0c, 0xcb, 0x24, 0xb6, 0xbf, 0xda, 0x14, 0x1e, 0x25, - 0xbc, 0x52, 0xce, 0xdb, 0x97, 0xb1, 0xc4, 0x38, 0x6b, 0xbf, 0xa2, 0x3a, 0x80, 0xd1, 0xe3, 0x16, - 0x9d, 0x29, 0x0e, 0xf3, 0xe3, 0x3f, 0xd9, 0x5c, 0x6d, 0x8f, 0xbd, 0xd8, 0xc7, 0xbe, 0x88, 0x74, - 0xb0, 0xc9, 0x52, 0xce, 0x7a, 0x93, 0x65, 0x30, 0x1b, 0xf9, 0xeb, 0x11, 0x28, 0x6d, 0xd4, 0xb6, - 0x34, 0x56, 0x5c, 0xf9, 0xed, 0x68, 0xf9, 0xe8, 0x41, 0x84, 0x4c, 0xd6, 0x89, 0x5e, 0xa1, 0xa6, - 0xd5, 0x77, 0x89, 0xe8, 0x32, 0xb7, 0x3e, 0xba, 0xce, 0xe4, 0xdd, 0xd1, 0x12, 0x14, 0xec, 0xbd, - 0x7e, 0xbf, 0xa1, 0xc1, 0xc6, 0x6c, 0xe3, 0x26, 0x39, 0xc0, 0xac, 0x33, 0xba, 0x0d, 0x60, 0xb8, - 0xa4, 0x49, 0x6c, 0xdf, 0x14, 0x9f, 0x30, 0xeb, 0x6f, 0x7f, 0x61, 0x49, 0x76, 0xc6, 0x0a, 0xa1, - 0xf9, 0x3f, 0x2c, 0xc2, 0x74, 0xfc, 0x4c, 0xf7, 0xa3, 0x5c, 0xce, 0xf3, 0x30, 0xe6, 0x75, 0x59, - 0x81, 0x1b, 0xe1, 0x74, 0xe4, 0x34, 0xa0, 0xf1, 0x66, 0x1c, 0xc0, 0xd3, 0x5d, 0x49, 0xfe, 0x4c, - 0x5c, 0x49, 0xe1, 0xb8, 0xae, 0x24, 0xeb, 0x80, 0xe6, 0x83, 0xe4, 0xe7, 0x21, 0xde, 0xc9, 0xf8, - 0x14, 0x7e, 0x1f, 0xbe, 0x84, 0x08, 0xab, 0x1e, 0xcb, 0xa4, 0x34, 0x4c, 0x60, 0x88, 0x89, 0x7d, - 0xd4, 0xb3, 0x71, 0x59, 0x73, 0x30, 0xca, 0x3e, 0x87, 0x20, 0x16, 0xa3, 0xcc, 0x14, 0xd9, 0x91, - 0x2a, 0xcc, 0xdb, 0x07, 0xac, 0x5e, 0x3f, 0x0a, 0x93, 0xd1, 0x53, 0x9c, 0x74, 0xdd, 0xbc, 0xeb, - 0x78, 0xbe, 0xc8, 0x26, 0xc4, 0x3f, 0x74, 0x78, 0x23, 0x04, 0x61, 0x15, 0xef, 0x78, 0x93, 0xf6, - 0xf3, 0x30, 0x26, 0x8a, 0xd5, 0x89, 0x39, 0x5b, 0x9a, 0x99, 0x28, 0x68, 0x87, 0x03, 0xf8, 0x7f, - 0xcc, 0xd8, 0x96, 0x87, 0xbe, 0x95, 0x9c, 0xb1, 0xdf, 0xce, 0xf4, 0xc8, 0xee, 0xe3, 0x3e, 0x61, - 0x0f, 0xa6, 0xdc, 0x6f, 0xc1, 0x4c, 0x62, 0x77, 0xe7, 0x78, 0xc5, 0xc0, 0xe7, 0x60, 0xd4, 0xd6, - 0xdb, 0x84, 0xd7, 0xcb, 0x12, 0x46, 0xc7, 0xbe, 0x17, 0x81, 0x79, 0xfb, 0xfc, 0x0f, 0x8b, 0x30, - 0x93, 0xb8, 0x9a, 0xc2, 0xd6, 0xc4, 0x72, 0x87, 0x20, 0xb6, 0xd2, 0x4f, 0xdd, 0x17, 0x78, 0x0d, - 0x26, 0x99, 0x61, 0x34, 0x62, 0xfb, 0x0a, 0x72, 0x97, 0x7b, 0x2b, 0x02, 0xc5, 0x31, 0xec, 0xe3, - 0xad, 0xa9, 0x5f, 0x83, 0x49, 0xf5, 0x03, 0x27, 0xab, 0xcb, 0x62, 0xdf, 0x58, 0x32, 0xd1, 0x22, - 0x50, 0x1c, 0xc3, 0x66, 0x5f, 0x87, 0x91, 0xb3, 0xab, 0xc8, 0xd7, 0x8d, 0xf6, 0xff, 0x75, 0x98, - 0x18, 0x09, 0x9c, 0x20, 0x8a, 0xb6, 0x61, 0x96, 0xe7, 0xf7, 0x55, 0x81, 0x62, 0x67, 0x4e, 0xe6, - 0x85, 0xd0, 0xb3, 0xcb, 0x3d, 0x31, 0xf1, 0x11, 0x54, 0xfa, 0x2c, 0xff, 0xf8, 0x61, 0xf2, 0x7b, - 0x99, 0xef, 0x66, 0x7d, 0xa1, 0xe9, 0x44, 0x36, 0x58, 0xfe, 0xa4, 0xd8, 0xe0, 0x0f, 0x2b, 0xd4, - 0x50, 0x62, 0x67, 0xf3, 0xd1, 0x3c, 0x14, 0x99, 0x6e, 0xd2, 0xe9, 0x45, 0x6e, 0x15, 0x30, 0xa5, - 0xf5, 0xb0, 0x80, 0x1c, 0x23, 0x8b, 0x2e, 0x62, 0xba, 0x7c, 0x8f, 0x98, 0xae, 0x03, 0xe7, 0x7c, - 0xcb, 0xdb, 0x72, 0xbb, 0x9e, 0xbf, 0x44, 0x5c, 0xdf, 0x13, 0xaa, 0x5b, 0xe8, 0xfb, 0x23, 0x73, - 0x5b, 0x6b, 0x5a, 0x9c, 0x0a, 0x4e, 0x23, 0x4d, 0x15, 0xd8, 0xb7, 0xbc, 0x9a, 0x65, 0x39, 0xf7, - 0x82, 0xa3, 0x07, 0xe1, 0x64, 0x23, 0xa6, 0x11, 0xa9, 0xc0, 0x5b, 0x6b, 0x5a, 0x0f, 0x4c, 0x7c, - 0x04, 0x15, 0xb4, 0xce, 0x9e, 0xea, 0x0d, 0xdd, 0x32, 0x9b, 0xba, 0x4f, 0xe8, 0x74, 0xcc, 0xd2, - 0xdb, 0xdc, 0x3a, 0xe4, 0x7e, 0xe4, 0xd6, 0x9a, 0x16, 0x47, 0xc1, 0x69, 0xfd, 0x86, 0xf5, 0xa1, - 0xd9, 0xd4, 0xd9, 0xbb, 0x74, 0x26, 0xb3, 0x77, 0xb9, 0x3f, 0x2b, 0x87, 0x8c, 0xac, 0x3c, 0xa6, - 0xf2, 0x7d, 0x58, 0x79, 0x13, 0xa6, 0xe4, 0x17, 0x78, 0x84, 0xce, 0x56, 0xfa, 0xde, 0x1e, 0xa9, - 0x45, 0x29, 0xe0, 0x38, 0xc9, 0x33, 0x4a, 0x39, 0xfd, 0x71, 0x0e, 0xa6, 0xa9, 0x24, 0x35, 0x7f, - 0x97, 0xd8, 0x0f, 0x1a, 0xba, 0xab, 0xb7, 0x83, 0x12, 0x63, 0x3b, 0x99, 0x0f, 0x79, 0x2d, 0xc6, - 0x88, 0x0f, 0xbd, 0xac, 0xfb, 0x1c, 0x07, 0xe3, 0x84, 0x64, 0x74, 0xea, 0x0b, 0xdb, 0x4e, 0xf2, - 0xb5, 0xd8, 0xf3, 0x51, 0x46, 0xc1, 0xd4, 0x17, 0x27, 0x3a, 0x90, 0x8f, 0x9d, 0x5d, 0x82, 0x27, - 0x53, 0x1f, 0xb5, 0x2f, 0x47, 0xfd, 0xcd, 0xa2, 0xb8, 0x5f, 0x93, 0xc1, 0x5a, 0x20, 0xeb, 0xcf, - 0x39, 0xd1, 0xc0, 0xca, 0x96, 0x9f, 0xfb, 0x8a, 0x7d, 0x06, 0x2e, 0xfc, 0xc0, 0x57, 0x88, 0x83, - 0x66, 0x61, 0xa4, 0xb9, 0xcd, 0x5c, 0xfd, 0x68, 0x78, 0xd0, 0x6f, 0xb9, 0x8e, 0x47, 0x9a, 0xdb, - 0xe8, 0x39, 0x28, 0x89, 0x45, 0x46, 0x70, 0x0e, 0x8e, 0xb1, 0x15, 0x2b, 0x10, 0x0f, 0x4b, 0xe8, - 0xb0, 0xc2, 0xfa, 0x21, 0x24, 0xf8, 0xe3, 0x6f, 0xee, 0xb1, 0xcf, 0xc4, 0xf5, 0xe7, 0xa1, 0x5f, - 0x50, 0xaa, 0x9a, 0x43, 0x34, 0xd9, 0x9b, 0x2c, 0x59, 0x3e, 0x58, 0xc0, 0xf2, 0x67, 0x45, 0xb8, - 0x90, 0x7e, 0xeb, 0xeb, 0xb1, 0xb1, 0x06, 0xae, 0xdc, 0xf9, 0x54, 0xe5, 0xfe, 0x34, 0x8c, 0x79, - 0x4c, 0xf0, 0xe0, 0x68, 0x00, 0xaf, 0x37, 0xcb, 0x9b, 0x70, 0x00, 0x43, 0xaf, 0x03, 0x6a, 0xeb, - 0xf7, 0xd7, 0xbd, 0xd6, 0x92, 0xd3, 0x65, 0x25, 0xb4, 0x31, 0xd1, 0x79, 0x7d, 0xf7, 0xd1, 0xf0, - 0x00, 0xce, 0x7a, 0x02, 0x03, 0xa7, 0xf4, 0x62, 0x87, 0x19, 0x22, 0x1b, 0x44, 0xb1, 0x93, 0x40, - 0x47, 0xee, 0xe8, 0x0c, 0x29, 0xfe, 0xf8, 0x38, 0x19, 0xb8, 0x1b, 0x43, 0xb9, 0x0a, 0xf8, 0xb8, - 0x47, 0xef, 0xa7, 0x69, 0x3a, 0x3f, 0x2b, 0xc0, 0xb9, 0x94, 0x52, 0x30, 0x51, 0xef, 0x9d, 0x3b, - 0x86, 0xf7, 0xde, 0x97, 0x23, 0x95, 0xcd, 0x49, 0xec, 0x40, 0xa8, 0x23, 0x86, 0xe9, 0xc3, 0x1c, - 0x9c, 0x67, 0x3b, 0xf0, 0xc1, 0xb6, 0x5f, 0x50, 0x03, 0x38, 0x2f, 0x34, 0xf3, 0x58, 0xc5, 0xb8, - 0xaf, 0xa7, 0x50, 0x08, 0xb7, 0x25, 0xd3, 0xa0, 0x38, 0x95, 0x2b, 0x5a, 0x02, 0x90, 0x77, 0xe9, - 0x02, 0x4b, 0x7e, 0x96, 0x95, 0x14, 0x97, 0xad, 0xff, 0xc6, 0x76, 0xf7, 0x95, 0xd1, 0x66, 0x2b, - 0x23, 0xa5, 0xdb, 0x30, 0x3e, 0xbc, 0x92, 0xf2, 0x7a, 0x8f, 0x6f, 0x01, 0x83, 0x69, 0xd7, 0x1f, - 0xe5, 0x61, 0x32, 0xfa, 0x22, 0xd1, 0x15, 0x28, 0x76, 0x5c, 0xb2, 0x63, 0xde, 0x8f, 0x7f, 0x7f, - 0xa3, 0xc1, 0x5a, 0xb1, 0x80, 0x22, 0x07, 0x8a, 0x96, 0xbe, 0x4d, 0xe7, 0x7b, 0x5e, 0xff, 0xfc, - 0xfa, 0xc0, 0xb5, 0xbc, 0x83, 0x6d, 0x88, 0x80, 0xe1, 0x1a, 0x23, 0x8f, 0x05, 0x1b, 0xca, 0x70, - 0xc7, 0x24, 0x56, 0x93, 0x9f, 0xf7, 0x1c, 0x06, 0xc3, 0x15, 0x46, 0x1e, 0x0b, 0x36, 0xe8, 0x6d, - 0x28, 0xf3, 0x8f, 0x96, 0x34, 0xeb, 0x07, 0x62, 0x85, 0xfb, 0x9f, 0x8f, 0xa7, 0xb2, 0x5b, 0x66, - 0x9b, 0x84, 0xe6, 0xb8, 0x14, 0x10, 0xc1, 0x21, 0x3d, 0xf6, 0xad, 0xfa, 0x1d, 0x9f, 0xb8, 0x9a, - 0xaf, 0xbb, 0xc1, 0xa7, 0xe4, 0xc3, 0x6f, 0xd5, 0x4b, 0x08, 0x56, 0xb0, 0xe6, 0xff, 0x74, 0x0c, - 0xa6, 0x62, 0xf7, 0x6c, 0x7f, 0x35, 0x2e, 0x91, 0xaa, 0x1f, 0x58, 0xc9, 0x67, 0xfd, 0x81, 0x95, - 0x42, 0x16, 0xe1, 0xc1, 0xdb, 0x30, 0xee, 0x79, 0xbb, 0x0c, 0xb3, 0xff, 0x5c, 0xdd, 0xf4, 0xe1, - 0xc3, 0xb9, 0x71, 0x4d, 0xbb, 0x21, 0xbb, 0xe3, 0x08, 0x31, 0xb4, 0x06, 0x63, 0xe2, 0x70, 0x61, - 0x7f, 0x27, 0x03, 0x59, 0x18, 0x12, 0x84, 0x47, 0x01, 0x89, 0x61, 0x6c, 0x49, 0xc7, 0x94, 0xee, - 0xb1, 0x0f, 0x84, 0x1b, 0x70, 0xbe, 0xe3, 0x58, 0x56, 0x70, 0xba, 0x53, 0x7e, 0x1a, 0xa9, 0x1c, - 0xbd, 0xdb, 0xd3, 0x48, 0xc1, 0xc1, 0xa9, 0x3d, 0x07, 0xf3, 0xb2, 0xff, 0x54, 0x84, 0xc9, 0x68, - 0x19, 0xaa, 0xb3, 0xbb, 0x61, 0xc9, 0x12, 0x81, 0x35, 0xd7, 0x8e, 0xdf, 0xb0, 0xdc, 0x12, 0xed, - 0x58, 0x62, 0x20, 0x0c, 0x65, 0x7e, 0xe2, 0xfd, 0x66, 0xbf, 0x9b, 0xd2, 0xfc, 0xe8, 0x6c, 0xd0, - 0x17, 0x87, 0x64, 0x28, 0x4d, 0x2f, 0x40, 0xef, 0xcf, 0x32, 0x19, 0x4d, 0xd9, 0x8c, 0x43, 0x32, - 0x74, 0xc6, 0x72, 0x49, 0x2b, 0xc8, 0x06, 0x2a, 0x33, 0x16, 0x66, 0xad, 0x58, 0x40, 0xd1, 0xf3, - 0x30, 0xe6, 0x3a, 0x16, 0xa9, 0xe1, 0x0d, 0x11, 0x4d, 0xcb, 0x8d, 0x32, 0xcc, 0x9b, 0x71, 0x00, - 0x1f, 0xc6, 0x26, 0x51, 0x54, 0x01, 0xfa, 0x30, 0xa1, 0xeb, 0x30, 0x73, 0x57, 0x64, 0x18, 0x35, - 0xb3, 0x65, 0xeb, 0x7e, 0x78, 0x29, 0x4b, 0x9e, 0x48, 0x7c, 0x23, 0x8e, 0x80, 0x93, 0x7d, 0xce, - 0x2e, 0x56, 0x26, 0x76, 0xb3, 0xe3, 0x98, 0xb6, 0x1f, 0x8f, 0x95, 0xaf, 0x89, 0x76, 0x2c, 0x31, - 0x06, 0xb3, 0xb3, 0xbf, 0x1a, 0x83, 0xc9, 0x68, 0x99, 0xb5, 0xa8, 0x0e, 0xe7, 0x86, 0xa0, 0xc3, - 0x23, 0x59, 0xeb, 0x70, 0xfe, 0x48, 0x1d, 0x7e, 0x36, 0xd8, 0xb9, 0x2e, 0x44, 0x37, 0xa7, 0xd4, - 0xdd, 0x6b, 0x54, 0xa3, 0x33, 0xbc, 0xe9, 0xd3, 0x28, 0x84, 0x9f, 0xc8, 0xe3, 0x87, 0x15, 0xf2, - 0xea, 0x8c, 0x1c, 0x01, 0xe3, 0x38, 0x7e, 0x3f, 0xb6, 0xd2, 0xdf, 0xee, 0xcf, 0x6b, 0x30, 0xc9, - 0x84, 0xac, 0x19, 0x06, 0x5d, 0xef, 0xae, 0x36, 0xc5, 0x21, 0x72, 0xb9, 0x71, 0xb6, 0xa9, 0x42, - 0x97, 0x71, 0x0c, 0x3b, 0x6a, 0x99, 0xe5, 0x6c, 0x2c, 0x73, 0xf3, 0x84, 0x96, 0x79, 0x11, 0xf2, - 0x4d, 0x6b, 0x9f, 0x69, 0x75, 0x29, 0xdc, 0x2b, 0x59, 0x5e, 0xdb, 0xc4, 0xb4, 0x5d, 0xb1, 0xb7, - 0xca, 0x19, 0xd9, 0xdb, 0xf8, 0xa3, 0xec, 0x8d, 0xc5, 0x35, 0xfc, 0x0b, 0x4a, 0xfc, 0xc2, 0xcc, - 0x44, 0xff, 0x71, 0x8d, 0xd2, 0x1d, 0x47, 0x88, 0x0d, 0x66, 0xcc, 0x5f, 0x83, 0x52, 0xc0, 0x88, - 0x0e, 0xb4, 0xec, 0x17, 0x0e, 0x34, 0x35, 0x21, 0x46, 0x64, 0x11, 0xca, 0x4e, 0x87, 0x44, 0x3e, - 0x7f, 0x28, 0x63, 0xe0, 0x5b, 0x01, 0x00, 0x87, 0x38, 0xd4, 0x8a, 0x38, 0xd7, 0xd8, 0x16, 0xef, - 0x1b, 0xb4, 0x51, 0x08, 0x31, 0xff, 0xf5, 0x1c, 0x04, 0xdf, 0x14, 0x42, 0xcb, 0x30, 0xda, 0x71, - 0x5c, 0x9f, 0x6f, 0xad, 0x55, 0xae, 0xce, 0xa5, 0x8f, 0x0f, 0x3f, 0xfe, 0xef, 0xb8, 0x7e, 0x48, - 0x91, 0xfe, 0xf2, 0x30, 0xef, 0x4c, 0xe5, 0x34, 0xac, 0xae, 0xe7, 0x13, 0x77, 0xb5, 0x11, 0x97, - 0x73, 0x29, 0x00, 0xe0, 0x10, 0x67, 0xfe, 0x5f, 0x0a, 0x30, 0x1d, 0xaf, 0xbc, 0x87, 0xde, 0x85, - 0x09, 0xcf, 0x6c, 0xd9, 0xa6, 0xdd, 0x12, 0xb1, 0x68, 0xae, 0xef, 0xbb, 0xbf, 0x9a, 0xda, 0x1f, - 0x47, 0xc9, 0x65, 0x76, 0x9c, 0xed, 0x6c, 0xbe, 0x9b, 0xff, 0x41, 0xb2, 0xc8, 0xcc, 0x3b, 0x19, - 0xd7, 0x3e, 0xfc, 0xd5, 0xae, 0x32, 0xf3, 0xcb, 0x51, 0xb8, 0x90, 0x5e, 0x5b, 0xf1, 0x8c, 0x82, - 0xd6, 0xf0, 0x9e, 0xe7, 0x48, 0xcf, 0x7b, 0x9e, 0xe1, 0x38, 0xe7, 0x33, 0xaa, 0x95, 0x28, 0x07, - 0xe0, 0x68, 0x57, 0x2b, 0xc3, 0xe9, 0xc2, 0x23, 0xc3, 0xe9, 0x2b, 0x50, 0x14, 0x75, 0xf5, 0x63, - 0x61, 0x6a, 0x9d, 0x57, 0xbd, 0x17, 0x50, 0x25, 0x14, 0x28, 0x1e, 0x19, 0x0a, 0xd0, 0xd0, 0x26, - 0xd8, 0x7f, 0xec, 0xef, 0xae, 0x17, 0x0f, 0x6d, 0x82, 0xbe, 0x38, 0x24, 0xc3, 0x6e, 0xf2, 0x77, - 0xcc, 0xdb, 0x78, 0x4d, 0xcc, 0xca, 0xe1, 0x4d, 0xfe, 0xc6, 0xea, 0x6d, 0xbc, 0x86, 0x05, 0x34, - 0x9a, 0x0a, 0x2e, 0x67, 0x92, 0x0a, 0x4e, 0xd7, 0xb9, 0xd3, 0x4a, 0x84, 0x19, 0x30, 0x93, 0x78, - 0xe7, 0xc7, 0x4e, 0x85, 0x5d, 0x81, 0xa2, 0xd7, 0xdd, 0xa1, 0x78, 0xb1, 0x12, 0x4b, 0x1a, 0x6b, - 0xc5, 0x02, 0x3a, 0xff, 0xdd, 0x02, 0xe5, 0x12, 0xab, 0xc2, 0x79, 0x46, 0x56, 0xf5, 0x2a, 0x4c, - 0xf0, 0x64, 0xd4, 0x9b, 0x4a, 0x7d, 0x8e, 0x92, 0xb2, 0xc1, 0xa0, 0x02, 0x71, 0x14, 0x17, 0xad, - 0x32, 0x35, 0xe9, 0x7b, 0x59, 0x08, 0x42, 0x93, 0xe8, 0xc4, 0x2d, 0x08, 0xa0, 0x97, 0xa0, 0xc2, - 0x1e, 0x82, 0x0f, 0xb9, 0xc8, 0xca, 0xb2, 0x9b, 0xb8, 0xd7, 0xc2, 0x66, 0xac, 0xe2, 0x44, 0x8f, - 0x16, 0x8c, 0x66, 0x72, 0xb4, 0x20, 0xf1, 0x56, 0x4e, 0x4b, 0xef, 0xbe, 0x5d, 0x02, 0xf9, 0xa5, - 0x44, 0x64, 0x24, 0xbe, 0x57, 0xf9, 0xb9, 0xbe, 0x37, 0x6f, 0x02, 0x51, 0x78, 0x26, 0x2b, 0x65, - 0x4a, 0x7a, 0x1d, 0x90, 0xf8, 0x40, 0xa2, 0x08, 0xaa, 0x95, 0x7a, 0x4b, 0x72, 0x97, 0x4a, 0x4b, - 0x60, 0xe0, 0x94, 0x5e, 0xe8, 0x75, 0xf6, 0x75, 0x56, 0x5f, 0x37, 0x6d, 0xe9, 0x79, 0x2f, 0xf6, - 0xb8, 0xa0, 0xc9, 0x91, 0xe4, 0x77, 0x56, 0xf9, 0x4f, 0x1c, 0x76, 0x47, 0xd7, 0x60, 0xec, 0xae, - 0x63, 0x75, 0xdb, 0x22, 0x35, 0x5f, 0xb9, 0x3a, 0x9b, 0x46, 0xe9, 0x0d, 0x86, 0xa2, 0x5c, 0x28, - 0xe2, 0x5d, 0x70, 0xd0, 0x17, 0x11, 0x98, 0x62, 0xc7, 0x7b, 0x4c, 0xff, 0x40, 0x18, 0x80, 0x98, - 0x7a, 0xaf, 0xa4, 0x91, 0x6b, 0x38, 0x4d, 0x2d, 0x8a, 0xcd, 0x4f, 0x7a, 0xc4, 0x1a, 0x71, 0x9c, - 0x26, 0x5a, 0x81, 0x92, 0xbe, 0xb3, 0x63, 0xda, 0xa6, 0x7f, 0x20, 0x72, 0x76, 0xcf, 0xa4, 0xd1, - 0xaf, 0x09, 0x1c, 0x51, 0xc8, 0x45, 0xfc, 0xc2, 0xb2, 0x2f, 0xba, 0x0d, 0x15, 0xdf, 0xb1, 0x44, - 0x5c, 0xea, 0x89, 0x54, 0xc3, 0xa5, 0x34, 0x52, 0x5b, 0x12, 0x2d, 0xdc, 0x1e, 0x0d, 0xdb, 0x3c, - 0xac, 0xd2, 0x41, 0xff, 0x3f, 0x07, 0xe3, 0xb6, 0xd3, 0x24, 0x81, 0xe9, 0x89, 0xed, 0xba, 0xb7, - 0x32, 0xfa, 0xc2, 0xe7, 0xc2, 0x86, 0x42, 0x9b, 0x5b, 0x88, 0x2c, 0xf0, 0xa1, 0x82, 0x70, 0x44, - 0x08, 0x64, 0xc3, 0xb4, 0xd9, 0xd6, 0x5b, 0xa4, 0xd1, 0xb5, 0xc4, 0xf1, 0x44, 0x4f, 0x4c, 0x1e, - 0xa9, 0xd7, 0x7a, 0xd7, 0x1c, 0x43, 0xb7, 0xf8, 0x17, 0x72, 0x31, 0xd9, 0x21, 0x2e, 0xfb, 0x50, - 0xaf, 0x3c, 0x69, 0xb2, 0x1a, 0xa3, 0x84, 0x13, 0xb4, 0xd1, 0x75, 0x98, 0xe9, 0xb8, 0xa6, 0xc3, - 0xde, 0x9b, 0xa5, 0x7b, 0xfc, 0x0b, 0xa9, 0x10, 0xbd, 0xcb, 0xd9, 0x88, 0x23, 0xe0, 0x64, 0x1f, - 0x5e, 0x7f, 0x80, 0x37, 0xb2, 0xb5, 0xdc, 0x68, 0x50, 0x7f, 0x80, 0xb7, 0x61, 0x09, 0x9d, 0xfd, - 0x02, 0xcc, 0x24, 0xc6, 0xa6, 0x2f, 0x87, 0xf0, 0x9b, 0x39, 0x88, 0xe7, 0xcb, 0xe9, 0xba, 0xa1, - 0x69, 0xba, 0x8c, 0xe0, 0x41, 0x3c, 0xc7, 0xbf, 0x1c, 0x00, 0x70, 0x88, 0x83, 0x2e, 0x43, 0xa1, - 0xa3, 0xfb, 0xbb, 0xf1, 0x63, 0x7e, 0x94, 0x24, 0x66, 0x10, 0x74, 0x15, 0x80, 0xfe, 0xc5, 0xa4, - 0x45, 0xee, 0x77, 0xc4, 0x32, 0x48, 0x6e, 0x3f, 0x34, 0x24, 0x04, 0x2b, 0x58, 0xf3, 0x7f, 0x37, - 0x0a, 0x93, 0xd1, 0xb9, 0x25, 0xb2, 0xd8, 0xcc, 0x3d, 0x72, 0xb1, 0x79, 0x05, 0x8a, 0x6d, 0xe2, - 0xef, 0x3a, 0xcd, 0xf8, 0x3c, 0xb9, 0xce, 0x5a, 0xb1, 0x80, 0x32, 0xf1, 0x1d, 0xd7, 0x17, 0x62, - 0x85, 0xe2, 0x3b, 0xae, 0x8f, 0x19, 0x24, 0x38, 0xa5, 0x58, 0xe8, 0x71, 0x4a, 0xb1, 0x05, 0xd3, - 0xbc, 0x02, 0xf0, 0x12, 0x71, 0xfd, 0x13, 0x9f, 0xae, 0xd5, 0x62, 0x24, 0x70, 0x82, 0x28, 0x6a, - 0x52, 0x6f, 0x43, 0xdb, 0xc2, 0x9d, 0x81, 0xfe, 0xef, 0xf6, 0x6b, 0x51, 0x0a, 0x38, 0x4e, 0x72, - 0x18, 0xd9, 0xc8, 0xe8, 0x7b, 0x3c, 0x71, 0xe9, 0xc4, 0x52, 0x56, 0xa5, 0x13, 0x5f, 0x81, 0xc9, - 0xb6, 0x7e, 0xbf, 0xa1, 0x1f, 0x58, 0x8e, 0xde, 0xd4, 0xcc, 0x07, 0x44, 0x5c, 0x3f, 0x45, 0x87, - 0x0f, 0xe7, 0x26, 0xd7, 0x23, 0x10, 0x1c, 0xc3, 0x1c, 0x6c, 0x02, 0xfe, 0xad, 0x11, 0x40, 0xc9, - 0x2f, 0x9b, 0xa0, 0x8f, 0x72, 0x30, 0x79, 0x2f, 0x32, 0x46, 0xc3, 0x09, 0xce, 0x64, 0xda, 0x2b, - 0xda, 0x8e, 0x63, 0xcc, 0x95, 0x05, 0xce, 0xc8, 0xe9, 0x2d, 0x24, 0xeb, 0xc6, 0x8f, 0x7f, 0x71, - 0xe9, 0x89, 0x9f, 0xfc, 0xe2, 0xd2, 0x13, 0x3f, 0xfd, 0xc5, 0xa5, 0x27, 0xbe, 0x7e, 0x78, 0x29, - 0xf7, 0xe3, 0xc3, 0x4b, 0xb9, 0x9f, 0x1c, 0x5e, 0xca, 0xfd, 0xf4, 0xf0, 0x52, 0xee, 0xe7, 0x87, - 0x97, 0x72, 0xdf, 0xfd, 0xc7, 0x4b, 0x4f, 0x7c, 0xf1, 0xf3, 0xa1, 0x28, 0x8b, 0x81, 0x28, 0xec, - 0x9f, 0x17, 0x39, 0xeb, 0xc5, 0xce, 0x5e, 0x6b, 0x91, 0x8a, 0xb2, 0xa8, 0x88, 0xb2, 0x18, 0x88, - 0xf2, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x62, 0x2f, 0xb6, 0x86, 0xdc, 0xa5, 0x00, 0x00, + // 7427 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0xc7, + 0x71, 0xb0, 0x96, 0xdc, 0x5d, 0xee, 0xf6, 0xf2, 0xb7, 0xef, 0x74, 0x5a, 0xd1, 0xba, 0xe3, 0x7d, + 0x14, 0x7c, 0x90, 0xbe, 0x48, 0x64, 0x74, 0x89, 0x63, 0x59, 0x8a, 0x65, 0xec, 0x92, 0xc7, 0x3b, + 0xea, 0x48, 0xde, 0xb2, 0x86, 0x27, 0x9d, 0x2c, 0x4b, 0xf2, 0x70, 0xb6, 0xb9, 0x1c, 0x73, 0x76, + 0x66, 0x39, 0x33, 0x7b, 0x77, 0x3c, 0x20, 0xb6, 0x61, 0xc0, 0x4e, 0xac, 0x1f, 0xdb, 0x4a, 0xe2, + 0x24, 0x48, 0xe0, 0x20, 0x4e, 0x02, 0x07, 0x41, 0x82, 0xbc, 0xc5, 0xc8, 0x6b, 0x90, 0x17, 0x23, + 0xc9, 0x83, 0x93, 0x27, 0x27, 0x06, 0x0e, 0xf6, 0x05, 0x7e, 0xcb, 0x4b, 0xe0, 0xa7, 0xe4, 0x29, + 0xe8, 0x9f, 0xe9, 0xe9, 0xf9, 0x59, 0x1e, 0x97, 0x3b, 0x4b, 0x9e, 0x8c, 0x3c, 0x91, 0xdb, 0x55, + 0x5d, 0x55, 0xd3, 0x53, 0x55, 0x5d, 0x5d, 0xdd, 0x5d, 0x83, 0xd6, 0x5b, 0xa6, 0xbf, 0xdb, 0xdd, + 0x5e, 0x30, 0x9c, 0xf6, 0xa2, 0xee, 0xb6, 0x9c, 0x8e, 0xeb, 0x7c, 0x81, 0xfd, 0xf3, 0x3c, 0xb9, + 0x4d, 0x6c, 0xdf, 0x5b, 0xec, 0xec, 0xb5, 0x16, 0xf5, 0x8e, 0xe9, 0x2d, 0xf2, 0xdf, 0x4e, 0xd7, + 0x35, 0xc8, 0xe2, 0xed, 0x17, 0x74, 0xab, 0xb3, 0xab, 0xbf, 0xb0, 0xd8, 0x22, 0x36, 0x71, 0x75, + 0x9f, 0x34, 0x17, 0x3a, 0xae, 0xe3, 0x3b, 0xf8, 0xd3, 0x21, 0xb9, 0x85, 0x80, 0x1c, 0xfb, 0xe7, + 0x1d, 0xde, 0x7d, 0xa1, 0xb3, 0xd7, 0x5a, 0xa0, 0xe4, 0x16, 0x14, 0x72, 0x0b, 0x01, 0xb9, 0xd9, + 0xcf, 0x1c, 0x59, 0x1a, 0xc3, 0x69, 0xb7, 0x1d, 0x3b, 0xce, 0x7f, 0xf6, 0x79, 0x85, 0x40, 0xcb, + 0x69, 0x39, 0x8b, 0xac, 0x79, 0xbb, 0xbb, 0xc3, 0x7e, 0xb1, 0x1f, 0xec, 0x3f, 0x81, 0x3e, 0xbf, + 0xf7, 0xa2, 0xb7, 0x60, 0x3a, 0x94, 0xe4, 0xa2, 0xe1, 0xb8, 0xf4, 0xc1, 0x12, 0x24, 0x7f, 0x35, + 0xc4, 0x69, 0xeb, 0xc6, 0xae, 0x69, 0x13, 0xf7, 0x20, 0x94, 0xa3, 0x4d, 0x7c, 0x3d, 0xad, 0xd7, + 0x62, 0xaf, 0x5e, 0x6e, 0xd7, 0xf6, 0xcd, 0x36, 0x49, 0x74, 0xf8, 0xb5, 0x87, 0x75, 0xf0, 0x8c, + 0x5d, 0xd2, 0xd6, 0xe3, 0xfd, 0xe6, 0xff, 0x3b, 0x87, 0x66, 0x6a, 0xeb, 0x9b, 0x8d, 0x25, 0xc7, + 0xf6, 0xba, 0x6d, 0xb2, 0xe4, 0xd8, 0x3b, 0x66, 0x0b, 0x7f, 0x02, 0x55, 0x0c, 0xde, 0xe0, 0x6e, + 0xe9, 0xad, 0x6a, 0xee, 0x62, 0xee, 0x99, 0x72, 0xfd, 0xcc, 0x0f, 0xee, 0xcf, 0x3d, 0xf6, 0xe0, + 0xfe, 0x5c, 0x65, 0x29, 0x04, 0x81, 0x8a, 0x87, 0x9f, 0x45, 0x63, 0x7a, 0xd7, 0x77, 0x6a, 0xc6, + 0x5e, 0x75, 0xe4, 0x62, 0xee, 0x99, 0x52, 0x7d, 0x4a, 0x74, 0x19, 0xab, 0xf1, 0x66, 0x08, 0xe0, + 0x78, 0x11, 0x95, 0xc9, 0x5d, 0xc3, 0xea, 0x7a, 0xe6, 0x6d, 0x52, 0x1d, 0x65, 0xc8, 0x33, 0x02, + 0xb9, 0x7c, 0x25, 0x00, 0x40, 0x88, 0x43, 0x69, 0xdb, 0xce, 0x9a, 0x63, 0xe8, 0x56, 0x35, 0x1f, + 0xa5, 0xbd, 0xc1, 0x9b, 0x21, 0x80, 0xe3, 0x4b, 0xa8, 0x68, 0x3b, 0xaf, 0xeb, 0xa6, 0x5f, 0x2d, + 0x30, 0xcc, 0x49, 0x81, 0x59, 0xdc, 0x60, 0xad, 0x20, 0xa0, 0xf3, 0xff, 0x59, 0x41, 0x53, 0xf4, + 0xd9, 0xaf, 0x50, 0xe5, 0xd0, 0x98, 0x2e, 0xe1, 0xf3, 0x68, 0xb4, 0xeb, 0x5a, 0xe2, 0x89, 0x2b, + 0xa2, 0xe3, 0xe8, 0x4d, 0x58, 0x03, 0xda, 0x8e, 0x5f, 0x44, 0xe3, 0xe4, 0xae, 0xb1, 0xab, 0xdb, + 0x2d, 0xb2, 0xa1, 0xb7, 0x09, 0x7b, 0xcc, 0x72, 0xfd, 0xac, 0xc0, 0x1b, 0xbf, 0xa2, 0xc0, 0x20, + 0x82, 0xa9, 0xf6, 0xdc, 0x3a, 0xe8, 0xf0, 0x67, 0x4e, 0xe9, 0x49, 0x61, 0x10, 0xc1, 0xc4, 0x97, + 0x11, 0x72, 0x9d, 0xae, 0x6f, 0xda, 0xad, 0xeb, 0xe4, 0x80, 0x3d, 0x7c, 0xb9, 0x8e, 0x45, 0x3f, + 0x04, 0x12, 0x02, 0x0a, 0x16, 0xfe, 0x0d, 0x34, 0x63, 0x38, 0xb6, 0x4d, 0x0c, 0xdf, 0x74, 0xec, + 0xba, 0x6e, 0xec, 0x39, 0x3b, 0x3b, 0x6c, 0x34, 0x2a, 0x97, 0x5f, 0x5c, 0x38, 0xb2, 0x91, 0x71, + 0x2b, 0x59, 0x10, 0xfd, 0xeb, 0x8f, 0x3f, 0xb8, 0x3f, 0x37, 0xb3, 0x14, 0x27, 0x0b, 0x49, 0x4e, + 0xf8, 0x39, 0x54, 0xfa, 0x82, 0xe7, 0xd8, 0x75, 0xa7, 0x79, 0x50, 0x2d, 0xb2, 0x77, 0x30, 0x2d, + 0x04, 0x2e, 0xbd, 0xaa, 0xdd, 0xd8, 0xa0, 0xed, 0x20, 0x31, 0xf0, 0x4d, 0x34, 0xea, 0x5b, 0x5e, + 0x75, 0x8c, 0x89, 0xf7, 0x52, 0xdf, 0xe2, 0x6d, 0xad, 0x69, 0x5c, 0x6d, 0xeb, 0x63, 0xf4, 0x5d, + 0x6d, 0xad, 0x69, 0x40, 0xe9, 0xe1, 0x77, 0x73, 0xa8, 0x44, 0xed, 0xab, 0xa9, 0xfb, 0x7a, 0xb5, + 0x74, 0x71, 0xf4, 0x99, 0xca, 0xe5, 0xcf, 0x2d, 0x0c, 0xe4, 0x60, 0x16, 0x62, 0xda, 0xb2, 0xb0, + 0x2e, 0xc8, 0x5f, 0xb1, 0x7d, 0xf7, 0x20, 0x7c, 0xc6, 0xa0, 0x19, 0x24, 0x7f, 0xfc, 0xfb, 0x39, + 0x34, 0x15, 0xbc, 0xd5, 0x65, 0x62, 0x58, 0xba, 0x4b, 0xaa, 0x65, 0xf6, 0xc0, 0xb7, 0xb2, 0x90, + 0x29, 0x4a, 0x59, 0x0c, 0xc7, 0x99, 0x07, 0xf7, 0xe7, 0xa6, 0x62, 0x20, 0x88, 0x4b, 0x81, 0xdf, + 0xcb, 0xa1, 0xf1, 0xfd, 0x2e, 0xe9, 0x4a, 0xb1, 0x10, 0x13, 0xeb, 0x66, 0x06, 0x62, 0x6d, 0x2a, + 0x64, 0x85, 0x4c, 0xd3, 0x54, 0xd9, 0xd5, 0x76, 0x88, 0x30, 0xc7, 0x5f, 0x42, 0x65, 0xf6, 0xbb, + 0x6e, 0xda, 0xcd, 0x6a, 0x85, 0x49, 0x02, 0x59, 0x49, 0x42, 0x69, 0x0a, 0x31, 0x26, 0xa8, 0x9f, + 0x91, 0x8d, 0x10, 0xf2, 0xc4, 0x77, 0xd0, 0x98, 0x70, 0x69, 0xd5, 0x71, 0xc6, 0xbe, 0x91, 0x01, + 0xfb, 0x88, 0x77, 0xad, 0x57, 0xa8, 0xd7, 0x12, 0x4d, 0x10, 0x70, 0xc3, 0xb7, 0x50, 0x5e, 0xef, + 0xfa, 0xbb, 0xd5, 0x89, 0x63, 0x9a, 0x41, 0x5d, 0xf7, 0x4c, 0xa3, 0xd6, 0xf5, 0x77, 0xeb, 0xa5, + 0x07, 0xf7, 0xe7, 0xf2, 0xf4, 0x3f, 0x60, 0x14, 0x31, 0xa0, 0x72, 0xd7, 0xb5, 0x34, 0x62, 0xb8, + 0xc4, 0xaf, 0x4e, 0x32, 0xf2, 0x1f, 0x5f, 0xe0, 0xf3, 0x05, 0xa5, 0xb0, 0x40, 0xa7, 0xae, 0x85, + 0xdb, 0x2f, 0x2c, 0x70, 0x8c, 0xeb, 0xe4, 0x40, 0x23, 0x16, 0x31, 0x7c, 0xc7, 0xe5, 0xc3, 0x74, + 0x13, 0xd6, 0x38, 0x04, 0x42, 0x32, 0xd8, 0x47, 0xc5, 0x1d, 0xd3, 0xf2, 0x89, 0x5b, 0x9d, 0xca, + 0x64, 0x94, 0x14, 0xab, 0x5a, 0x61, 0x74, 0xeb, 0x88, 0x7a, 0x6c, 0xfe, 0x3f, 0x08, 0x5e, 0xb3, + 0x2f, 0xa3, 0x89, 0x88, 0xc9, 0xe1, 0x69, 0x34, 0xba, 0x47, 0x0e, 0xb8, 0xbb, 0x06, 0xfa, 0x2f, + 0x3e, 0x8b, 0x0a, 0xb7, 0x75, 0xab, 0x2b, 0x5c, 0x33, 0xf0, 0x1f, 0x2f, 0x8d, 0xbc, 0x98, 0x9b, + 0xff, 0x61, 0x0e, 0x3d, 0xd9, 0xd3, 0x58, 0xe8, 0xfc, 0xd2, 0xec, 0xba, 0xfa, 0xb6, 0x45, 0x18, + 0x35, 0x65, 0x7e, 0x59, 0xe6, 0xcd, 0x10, 0xc0, 0xa9, 0x43, 0xa6, 0xd3, 0xd8, 0x32, 0xb1, 0x88, + 0x4f, 0xc4, 0x4c, 0x27, 0x1d, 0x72, 0x4d, 0x42, 0x40, 0xc1, 0xa2, 0x1e, 0xd1, 0xb4, 0x7d, 0xe2, + 0xda, 0xba, 0x25, 0xa6, 0x3b, 0xe9, 0x2d, 0x56, 0x45, 0x3b, 0x48, 0x0c, 0x65, 0x06, 0xcb, 0x1f, + 0x3a, 0x83, 0x7d, 0x1a, 0x9d, 0x49, 0xd1, 0x6e, 0xa5, 0x7b, 0xee, 0xd0, 0xee, 0x7f, 0x36, 0x82, + 0xce, 0xa5, 0xdb, 0x29, 0xbe, 0x88, 0xf2, 0x36, 0x9d, 0xe0, 0xf8, 0x44, 0x38, 0x2e, 0x08, 0xe4, + 0xd9, 0xc4, 0xc6, 0x20, 0xea, 0x80, 0x8d, 0xf4, 0x35, 0x60, 0xa3, 0x47, 0x1a, 0xb0, 0x48, 0x80, + 0x90, 0x3f, 0x42, 0x80, 0x70, 0xc4, 0x59, 0x9f, 0x12, 0xd6, 0xdd, 0x56, 0xb7, 0x4d, 0x95, 0x90, + 0x4d, 0x4e, 0xe5, 0x90, 0x70, 0x2d, 0x00, 0x40, 0x88, 0x33, 0xff, 0x6e, 0x01, 0x3d, 0x59, 0xbb, + 0xd7, 0x75, 0x09, 0xd3, 0x51, 0xef, 0x5a, 0x77, 0x5b, 0x0d, 0x18, 0x2e, 0xa2, 0xfc, 0xce, 0x7e, + 0xd3, 0x8e, 0x0f, 0xd4, 0xca, 0xe6, 0xf2, 0x06, 0x30, 0x08, 0xee, 0xa0, 0x33, 0xde, 0xae, 0xee, + 0x92, 0x66, 0xcd, 0x30, 0x88, 0xe7, 0x5d, 0x27, 0x07, 0x32, 0x74, 0x38, 0xb2, 0x21, 0x3e, 0xf1, + 0xe0, 0xfe, 0xdc, 0x19, 0x2d, 0x49, 0x05, 0xd2, 0x48, 0xe3, 0x26, 0x9a, 0x8a, 0x35, 0xb3, 0x41, + 0x3f, 0x32, 0x37, 0x36, 0x71, 0xc4, 0xb8, 0x41, 0x9c, 0x24, 0x55, 0x80, 0xdd, 0xee, 0x36, 0x7b, + 0x16, 0x1e, 0x94, 0x48, 0x05, 0xb8, 0xc6, 0x9b, 0x21, 0x80, 0xe3, 0xdf, 0x55, 0xa7, 0xe2, 0x02, + 0x9b, 0x8a, 0x77, 0x06, 0x75, 0xab, 0xbd, 0xde, 0x48, 0x1f, 0x93, 0x72, 0xe8, 0xc4, 0x8a, 0x1f, + 0x15, 0x27, 0xf6, 0x27, 0x45, 0xf4, 0x14, 0x7b, 0x74, 0x66, 0xb3, 0x9a, 0xef, 0xb8, 0x7a, 0x8b, + 0xa8, 0xfa, 0xf8, 0x2a, 0xc2, 0x1e, 0x6f, 0xad, 0x19, 0x86, 0xd3, 0xb5, 0xfd, 0x8d, 0xd0, 0x8c, + 0x67, 0xc5, 0x58, 0x60, 0x2d, 0x81, 0x01, 0x29, 0xbd, 0x70, 0x0b, 0x4d, 0x87, 0xb1, 0x9d, 0xe6, + 0xbb, 0xa6, 0xdd, 0xea, 0x4f, 0x6d, 0xcf, 0x3e, 0xb8, 0x3f, 0x37, 0xbd, 0x14, 0x23, 0x01, 0x09, + 0xa2, 0xd4, 0x26, 0xd9, 0x0c, 0xcc, 0x64, 0x1d, 0x8d, 0xda, 0xe4, 0x66, 0x00, 0x80, 0x10, 0x27, + 0x12, 0x60, 0xe6, 0x1f, 0x1a, 0x60, 0x9e, 0x47, 0xa3, 0x4d, 0x6b, 0x5f, 0xf8, 0x05, 0x19, 0xd4, + 0x2f, 0xaf, 0x6d, 0x02, 0x6d, 0xa7, 0xb1, 0x59, 0xa8, 0x9d, 0x45, 0xa6, 0x9d, 0x66, 0x16, 0xda, + 0xd9, 0xe3, 0x15, 0x1d, 0x4b, 0x41, 0xc7, 0x4e, 0x4e, 0x41, 0xf1, 0xcb, 0x68, 0xa2, 0x49, 0x0c, + 0xa7, 0x49, 0xd6, 0x89, 0xe7, 0xe9, 0x2d, 0x52, 0x2d, 0xb1, 0x81, 0x7b, 0x5c, 0x08, 0x3a, 0xb1, + 0xac, 0x02, 0x21, 0x8a, 0x8b, 0x97, 0xd0, 0xcc, 0x1d, 0xdd, 0xf4, 0xb7, 0xcc, 0x36, 0x59, 0xb5, + 0x35, 0x62, 0x38, 0x76, 0xd3, 0x63, 0x91, 0x6e, 0x81, 0xaf, 0x1f, 0x5e, 0x8f, 0x03, 0x21, 0x89, + 0x3f, 0x98, 0x89, 0xfc, 0xa8, 0x88, 0x66, 0xd9, 0xf8, 0x6b, 0xc4, 0xbd, 0x6d, 0x1a, 0xa4, 0xde, + 0xf5, 0x54, 0x03, 0x49, 0x53, 0xea, 0xdc, 0xd0, 0x95, 0x7a, 0xe4, 0x08, 0x4a, 0xbd, 0x88, 0xca, + 0xbe, 0xd3, 0x31, 0x8d, 0x34, 0x2b, 0xd8, 0x0a, 0x00, 0x10, 0xe2, 0xe0, 0x65, 0x34, 0xed, 0x75, + 0xb7, 0x3d, 0xc3, 0x35, 0x3b, 0x94, 0xaf, 0xe2, 0x8a, 0xab, 0xa2, 0xdf, 0xb4, 0x16, 0x83, 0x43, + 0xa2, 0x47, 0xb0, 0xfc, 0x2a, 0x64, 0xbc, 0xfc, 0xea, 0x6f, 0x0d, 0xf8, 0x6d, 0xd5, 0x06, 0xc7, + 0x98, 0x0d, 0xb6, 0xb2, 0xb0, 0xc1, 0x54, 0x1d, 0x38, 0x96, 0x05, 0x96, 0x4e, 0xd0, 0x02, 0xdf, + 0x40, 0x4f, 0xec, 0x74, 0x2d, 0xeb, 0x60, 0xb3, 0xab, 0x5b, 0xe6, 0x8e, 0x49, 0x9a, 0xf4, 0x45, + 0x79, 0x1d, 0xdd, 0xe0, 0x8b, 0xc6, 0x72, 0x7d, 0x4e, 0x88, 0xfc, 0xc4, 0x4a, 0x3a, 0x1a, 0xf4, + 0xea, 0x3f, 0x98, 0x69, 0xfd, 0x7b, 0x0e, 0x4d, 0xd4, 0x4d, 0x7f, 0xbb, 0x6b, 0xec, 0x11, 0x9f, + 0xae, 0x30, 0xb0, 0x8b, 0x0a, 0xdb, 0x74, 0xe1, 0x21, 0x4c, 0x68, 0x73, 0xc0, 0xe1, 0x91, 0xc4, + 0xc3, 0xd5, 0x4c, 0xf9, 0xc1, 0xfd, 0xb9, 0x02, 0xfb, 0x09, 0x9c, 0x15, 0xbe, 0x89, 0x90, 0x43, + 0x17, 0x36, 0x5b, 0xce, 0x1e, 0xb1, 0xfb, 0x9b, 0x90, 0x26, 0x69, 0xc4, 0x79, 0xa3, 0x16, 0x74, + 0x06, 0x85, 0xd0, 0xfc, 0xf7, 0x73, 0x08, 0x27, 0xf9, 0xe3, 0x1b, 0xa8, 0xd4, 0xf5, 0x68, 0x58, + 0x2e, 0xa6, 0xd1, 0x23, 0xf3, 0x1a, 0xa7, 0x2a, 0x75, 0x53, 0x74, 0x05, 0x49, 0x84, 0x12, 0xec, + 0xe8, 0x9e, 0x77, 0xc7, 0x71, 0x9b, 0xfd, 0x09, 0xcf, 0x08, 0x36, 0x44, 0x57, 0x90, 0x44, 0xe6, + 0x7f, 0x3e, 0x86, 0xce, 0x4a, 0xc1, 0x63, 0xb1, 0x40, 0x93, 0x45, 0xd3, 0xd7, 0x1c, 0x67, 0xef, + 0x86, 0xbd, 0x62, 0xda, 0xa6, 0xb7, 0x2b, 0xd6, 0x04, 0x32, 0x16, 0x58, 0x4e, 0x60, 0x40, 0x4a, + 0x2f, 0xfc, 0x4d, 0xd5, 0x40, 0x47, 0x98, 0x81, 0xea, 0x59, 0xbd, 0xec, 0xe3, 0x9a, 0xe6, 0xd8, + 0x1d, 0xb2, 0xbd, 0xeb, 0x38, 0x7b, 0x22, 0xba, 0x5d, 0x1f, 0x50, 0x9e, 0xd7, 0x39, 0xb5, 0x25, + 0xc7, 0xf6, 0xc9, 0x5d, 0x9f, 0x2f, 0xd3, 0x45, 0x1b, 0x04, 0xac, 0xf0, 0x17, 0xc4, 0x32, 0x3d, + 0xcf, 0x58, 0xae, 0x65, 0x35, 0x04, 0xa9, 0x0b, 0xf7, 0x79, 0x54, 0xe4, 0xbd, 0x58, 0xcc, 0x5c, + 0xe6, 0xae, 0x82, 0xc7, 0xbc, 0x20, 0x20, 0xf8, 0x79, 0x54, 0x70, 0xee, 0xd8, 0x22, 0x84, 0x2d, + 0xd7, 0x9f, 0x10, 0x03, 0x36, 0xb5, 0x4c, 0x3a, 0x2e, 0x31, 0x74, 0x9f, 0x34, 0x6f, 0x50, 0x30, + 0x70, 0x2c, 0xfc, 0xeb, 0x08, 0x51, 0x11, 0x89, 0x41, 0x35, 0x8b, 0x45, 0x15, 0xe5, 0xfa, 0x53, + 0xa2, 0xcf, 0xd9, 0xb0, 0x4f, 0x43, 0xe2, 0x80, 0x82, 0x8f, 0xaf, 0xa1, 0x49, 0x97, 0x74, 0x1c, + 0xcf, 0xf4, 0x1d, 0xf7, 0x40, 0xb3, 0xba, 0x2d, 0xe6, 0x15, 0xcb, 0xf5, 0x8b, 0x82, 0x42, 0x35, + 0xa4, 0x00, 0x11, 0x3c, 0x88, 0xf5, 0xc3, 0xef, 0xe7, 0xd0, 0xb8, 0x6c, 0x32, 0x09, 0x0d, 0x11, + 0x46, 0x33, 0xc8, 0xf5, 0xc8, 0xf1, 0x0c, 0xd9, 0x87, 0x39, 0x56, 0x50, 0xf8, 0x41, 0x84, 0xbb, + 0xe2, 0xe6, 0xd1, 0x47, 0x65, 0x25, 0x70, 0x0f, 0x9d, 0x49, 0x79, 0x5a, 0xfc, 0x74, 0xa0, 0x0f, + 0x3c, 0xe4, 0x9f, 0x10, 0x0f, 0x5f, 0x88, 0x68, 0xc1, 0x2b, 0x89, 0xf7, 0xc8, 0xe3, 0x93, 0x73, + 0x02, 0x7b, 0xf2, 0xf0, 0xb7, 0x37, 0xff, 0x17, 0x15, 0x34, 0x2b, 0x99, 0xd3, 0x29, 0x96, 0xb8, + 0xaa, 0xdf, 0x51, 0x2c, 0x33, 0x77, 0x72, 0x96, 0x19, 0x55, 0xed, 0x91, 0x81, 0x55, 0x7b, 0xf4, + 0x98, 0xaa, 0xfd, 0x0c, 0x2a, 0x09, 0xba, 0x5e, 0x35, 0xcf, 0xec, 0x96, 0x3b, 0x6e, 0xd1, 0x06, + 0x12, 0x8a, 0x7f, 0x3b, 0x6e, 0x04, 0x7c, 0x69, 0x7c, 0x2b, 0x2b, 0x23, 0xe0, 0x6f, 0xa6, 0x4f, + 0x53, 0x08, 0x9d, 0x4e, 0xb1, 0xa7, 0xd3, 0xd9, 0x43, 0xe7, 0xbd, 0x3d, 0xb3, 0x53, 0x77, 0x75, + 0xdb, 0xd8, 0x05, 0xb2, 0xe3, 0x2d, 0xb1, 0x8c, 0x5a, 0xf3, 0x86, 0x7d, 0xa3, 0x43, 0xec, 0x06, + 0x30, 0xc7, 0x52, 0xaa, 0x7f, 0x5c, 0xb0, 0x3b, 0xaf, 0x1d, 0x86, 0x0c, 0x87, 0xd3, 0xc2, 0xb7, + 0x50, 0x45, 0x67, 0x49, 0x07, 0x3e, 0xdf, 0x97, 0xfa, 0x99, 0x32, 0xa7, 0x1e, 0xdc, 0x9f, 0xab, + 0xd4, 0xc2, 0xde, 0xa0, 0x92, 0xc2, 0x6f, 0xa3, 0x09, 0xa1, 0x3c, 0x22, 0x39, 0x5a, 0xee, 0x87, + 0xf6, 0x0c, 0x5d, 0x0b, 0xbd, 0xae, 0xf6, 0x87, 0x28, 0x39, 0xfc, 0x1a, 0x3a, 0xb7, 0x1d, 0xbc, + 0x0b, 0x8f, 0xbd, 0x8b, 0xba, 0xee, 0x91, 0x9b, 0xb0, 0xc6, 0xbc, 0x4c, 0xb9, 0x7e, 0x41, 0x8c, + 0xcf, 0xb9, 0xd8, 0x1b, 0x13, 0x58, 0xd0, 0xa3, 0x77, 0x8f, 0x79, 0xbd, 0x72, 0xac, 0x79, 0x3d, + 0x12, 0x78, 0x8f, 0x67, 0x12, 0x78, 0xf7, 0xf6, 0x0c, 0xc7, 0x0a, 0xbc, 0x27, 0x4e, 0x30, 0xf0, + 0x16, 0x6b, 0xa1, 0xc9, 0x8c, 0xd7, 0x42, 0x2f, 0xa3, 0x09, 0x63, 0x97, 0x18, 0x7b, 0x2c, 0xd5, + 0x7b, 0x5b, 0xb7, 0x58, 0xd2, 0xbc, 0x1c, 0xae, 0xa8, 0x97, 0x54, 0x20, 0x44, 0x71, 0x07, 0x9b, + 0x25, 0xbe, 0x99, 0x43, 0x4f, 0xf6, 0xf4, 0x07, 0xf8, 0x72, 0xc4, 0x65, 0xe6, 0xa2, 0x5b, 0x8b, + 0x3d, 0x1c, 0xe5, 0xa0, 0x73, 0xc7, 0x9f, 0x17, 0xd0, 0x99, 0x25, 0xdd, 0x22, 0x76, 0x53, 0x8f, + 0x4c, 0x1a, 0xcf, 0xa1, 0x92, 0x67, 0xec, 0x92, 0x66, 0xd7, 0x0a, 0xd2, 0x55, 0x52, 0x3d, 0x34, + 0xd1, 0x0e, 0x12, 0x43, 0xe6, 0xd3, 0xe9, 0x60, 0x8e, 0x44, 0xb1, 0xe5, 0x38, 0x4a, 0x0c, 0xfc, + 0x12, 0x9a, 0x14, 0x89, 0x62, 0xc7, 0x5e, 0xd6, 0x7d, 0xe2, 0x55, 0x47, 0x99, 0x6f, 0xc3, 0x54, + 0xde, 0x2b, 0x11, 0x08, 0xc4, 0x30, 0x29, 0x27, 0xdf, 0x6c, 0x93, 0x7b, 0x8e, 0x1d, 0x2c, 0xae, + 0x25, 0xa7, 0x2d, 0xd1, 0x0e, 0x12, 0x03, 0x7f, 0x23, 0x99, 0xe9, 0xfc, 0xfc, 0x80, 0x9a, 0x9b, + 0x32, 0x58, 0x7d, 0xd8, 0xd1, 0x57, 0x72, 0xa8, 0xd2, 0x21, 0xae, 0x67, 0x7a, 0x3e, 0xb1, 0x0d, + 0x22, 0x32, 0x9d, 0x37, 0xb2, 0xb0, 0xa6, 0x46, 0x48, 0x96, 0x3b, 0x5a, 0xa5, 0x01, 0x54, 0xa6, + 0xa7, 0xb3, 0x8a, 0x1e, 0xcc, 0x70, 0xee, 0xa2, 0xb3, 0x4b, 0xba, 0x6f, 0xec, 0x76, 0x3b, 0xdc, + 0xa2, 0xbb, 0xae, 0xee, 0x9b, 0x8e, 0x8d, 0x9f, 0x45, 0x63, 0xc4, 0xd6, 0xb7, 0x2d, 0xd2, 0x8c, + 0xef, 0x13, 0x5d, 0xe1, 0xcd, 0x10, 0xc0, 0xf1, 0x27, 0x50, 0xa5, 0xad, 0xdf, 0x5d, 0x16, 0x3d, + 0x85, 0x9a, 0xca, 0x53, 0x14, 0xeb, 0x21, 0x08, 0x54, 0xbc, 0xf9, 0x2f, 0xa2, 0xb3, 0x9c, 0xe5, + 0xba, 0xde, 0x51, 0x46, 0xf4, 0x08, 0x5b, 0x32, 0xcb, 0x68, 0xda, 0x70, 0x89, 0xee, 0x93, 0xd5, + 0x9d, 0x0d, 0xc7, 0xbf, 0x72, 0xd7, 0xf4, 0x7c, 0xb1, 0x37, 0x23, 0xf3, 0x41, 0x4b, 0x31, 0x38, + 0x24, 0x7a, 0xcc, 0x7f, 0x6b, 0x0c, 0xe1, 0x2b, 0x6d, 0xd3, 0xf7, 0xa3, 0x41, 0xdd, 0x25, 0x54, + 0xdc, 0x76, 0x9d, 0x3d, 0x19, 0x59, 0xca, 0xfd, 0x95, 0x3a, 0x6b, 0x05, 0x01, 0xa5, 0x3e, 0xc5, + 0xd8, 0xd5, 0x6d, 0x9b, 0x58, 0x61, 0x18, 0x26, 0x7d, 0xca, 0x92, 0x84, 0x80, 0x82, 0xc5, 0xce, + 0x9b, 0xf0, 0x5f, 0x4a, 0xee, 0x2b, 0x3c, 0x6f, 0x12, 0x82, 0x40, 0xc5, 0x8b, 0x2c, 0xcd, 0xf3, + 0x59, 0x2f, 0xcd, 0x0b, 0x19, 0x2c, 0xcd, 0xd3, 0xcf, 0x61, 0x14, 0x4f, 0xe5, 0x1c, 0xc6, 0xd8, + 0x51, 0xcf, 0x61, 0x94, 0x32, 0x9e, 0xfc, 0x3e, 0x50, 0x5d, 0x22, 0x5f, 0xe6, 0xbd, 0x33, 0xa8, + 0xfd, 0x27, 0xd4, 0xf3, 0x58, 0x91, 0xc5, 0x47, 0x66, 0xad, 0xf7, 0xe1, 0x08, 0x9a, 0x8e, 0xbb, + 0x5c, 0x7c, 0x0f, 0x8d, 0x19, 0xdc, 0x43, 0x89, 0x55, 0x96, 0x36, 0xf0, 0x44, 0x93, 0xf4, 0x77, + 0xe2, 0xb0, 0x02, 0x87, 0x40, 0xc0, 0x10, 0x7f, 0x39, 0x87, 0xca, 0x46, 0xe0, 0xa4, 0x44, 0x16, + 0x6b, 0x60, 0xf6, 0x29, 0x4e, 0x8f, 0x9f, 0x40, 0x90, 0x10, 0x08, 0x99, 0xce, 0xff, 0x78, 0x04, + 0x55, 0x54, 0xff, 0xf4, 0x79, 0x45, 0xcb, 0xf8, 0x78, 0xfc, 0xb2, 0x62, 0xbb, 0xf2, 0x50, 0x5c, + 0x28, 0x04, 0xc5, 0xa6, 0xd6, 0x7c, 0x63, 0x9b, 0x86, 0x36, 0xf4, 0xe5, 0x84, 0x7e, 0x2a, 0x6c, + 0x53, 0x14, 0xa7, 0x83, 0xf2, 0x5e, 0x87, 0x18, 0xe2, 0x71, 0x37, 0xb2, 0x53, 0x1b, 0xad, 0x43, + 0x8c, 0xd0, 0xa1, 0xd3, 0x5f, 0xc0, 0x38, 0xe1, 0xbb, 0xa8, 0xe8, 0xf9, 0xba, 0xdf, 0xf5, 0x44, + 0x86, 0x2b, 0x43, 0x55, 0xd5, 0x18, 0xdd, 0xd0, 0x8b, 0xf3, 0xdf, 0x20, 0xf8, 0xcd, 0x5f, 0x45, + 0x33, 0x09, 0xbd, 0xa6, 0xae, 0x9d, 0xdc, 0xed, 0xb8, 0xc4, 0xa3, 0xd1, 0x51, 0x3c, 0x5c, 0xbc, + 0x22, 0x21, 0xa0, 0x60, 0xcd, 0xff, 0x24, 0x87, 0xa6, 0x14, 0x4a, 0x6b, 0xa6, 0xe7, 0xe3, 0xcf, + 0x25, 0x5e, 0xd5, 0xc2, 0xd1, 0x5e, 0x15, 0xed, 0xcd, 0x5e, 0x94, 0xb4, 0xef, 0xa0, 0x45, 0x79, + 0x4d, 0x0e, 0x2a, 0x98, 0x3e, 0x69, 0x7b, 0x22, 0x4b, 0xf9, 0x6a, 0x76, 0x63, 0x16, 0x66, 0x53, + 0x56, 0x29, 0x03, 0xe0, 0x7c, 0xe6, 0xff, 0x61, 0x25, 0xf2, 0x88, 0xf4, 0xfd, 0xb1, 0xe3, 0x7e, + 0xb4, 0xa9, 0xde, 0xf5, 0x94, 0x0d, 0xd8, 0xf0, 0xb8, 0x9f, 0x02, 0x83, 0x08, 0x26, 0xde, 0x47, + 0x25, 0x9f, 0xb4, 0x3b, 0x96, 0xee, 0x07, 0x67, 0x04, 0xae, 0x0e, 0xf8, 0x04, 0x5b, 0x82, 0x1c, + 0x9f, 0xa5, 0x82, 0x5f, 0x20, 0xd9, 0xe0, 0x36, 0x1a, 0xf3, 0xf8, 0x3e, 0x89, 0xd0, 0xb3, 0x95, + 0x01, 0x39, 0x06, 0xbb, 0x2e, 0xcc, 0x79, 0x88, 0x1f, 0x10, 0xf0, 0xc0, 0x5f, 0x44, 0x85, 0xb6, + 0x69, 0x9b, 0x0e, 0xcb, 0x8e, 0x54, 0x2e, 0xbf, 0x91, 0xad, 0x21, 0x2d, 0xac, 0x53, 0xda, 0x7c, + 0x1a, 0x90, 0xef, 0x8b, 0xb5, 0x01, 0x67, 0xcb, 0x0e, 0x06, 0x1a, 0x22, 0xa8, 0x16, 0x31, 0xfa, + 0xe7, 0x32, 0x96, 0x41, 0xc6, 0xec, 0xd1, 0xd9, 0x28, 0x68, 0x06, 0xc9, 0x1f, 0xdf, 0x43, 0xf9, + 0x1d, 0xd3, 0x22, 0x62, 0xdf, 0xf9, 0x56, 0xc6, 0x72, 0xac, 0x98, 0x16, 0xe1, 0x32, 0x84, 0x27, + 0x53, 0x4c, 0x8b, 0x00, 0xe3, 0xc9, 0x06, 0xc2, 0x25, 0x9c, 0x86, 0xd8, 0x74, 0xcb, 0x7a, 0x20, + 0x40, 0x90, 0x8f, 0x0d, 0x44, 0xd0, 0x0c, 0x92, 0x3f, 0xfe, 0x5a, 0x2e, 0xcc, 0x1a, 0xf2, 0xd3, + 0x9a, 0x6f, 0x66, 0x2c, 0x8b, 0xc8, 0xd5, 0x70, 0x51, 0x64, 0xd8, 0x9e, 0xc8, 0x23, 0xde, 0x43, + 0x79, 0xbd, 0xbd, 0xdf, 0x11, 0xa1, 0x4a, 0xd6, 0x6f, 0xa4, 0xd6, 0xde, 0xef, 0xc4, 0xde, 0x48, + 0x6d, 0x7d, 0xb3, 0x01, 0x8c, 0x27, 0x35, 0x8d, 0x3d, 0x7d, 0x67, 0x4f, 0xaf, 0xa2, 0xa1, 0x98, + 0xc6, 0x75, 0x4a, 0x3b, 0x66, 0x1a, 0xac, 0x0d, 0x38, 0x5b, 0xfa, 0xec, 0xed, 0x7d, 0xdf, 0xaf, + 0x56, 0x86, 0xf2, 0xec, 0xeb, 0xfb, 0xbe, 0x1f, 0x7b, 0xf6, 0xf5, 0xcd, 0xad, 0x2d, 0x60, 0x3c, + 0x29, 0x6f, 0x5b, 0xf7, 0x3d, 0x91, 0x84, 0xca, 0x9a, 0xf7, 0x86, 0xee, 0x7b, 0x31, 0xde, 0x1b, + 0xb5, 0x2d, 0x0d, 0x18, 0x4f, 0x7c, 0x1b, 0x8d, 0x7a, 0xb6, 0x57, 0x9d, 0x60, 0xac, 0x5f, 0xcf, + 0x98, 0xb5, 0x66, 0x0b, 0xce, 0xf2, 0xe8, 0x89, 0xb6, 0xa1, 0x01, 0x65, 0xc8, 0xf8, 0xee, 0x7b, + 0xd5, 0xc9, 0xe1, 0xf0, 0xdd, 0x4f, 0xf0, 0xdd, 0xa4, 0x7c, 0xf7, 0x3d, 0xfc, 0x95, 0x1c, 0x2a, + 0x76, 0xba, 0xdb, 0x5a, 0x77, 0xbb, 0x3a, 0xc5, 0x78, 0x7f, 0x36, 0x63, 0xde, 0x0d, 0x46, 0x9c, + 0xb3, 0x97, 0x31, 0x06, 0x6f, 0x04, 0xc1, 0x99, 0x09, 0xc1, 0xb9, 0x56, 0xa7, 0x87, 0x22, 0xc4, + 0x55, 0x46, 0x2d, 0x26, 0x04, 0x6f, 0x04, 0xc1, 0x39, 0x10, 0xc2, 0xd2, 0xb7, 0xab, 0x33, 0xc3, + 0x12, 0xc2, 0xd2, 0x53, 0x84, 0xb0, 0x74, 0x2e, 0x84, 0xa5, 0x6f, 0x53, 0xd5, 0xdf, 0x6d, 0xee, + 0x78, 0x55, 0x3c, 0x14, 0xd5, 0xbf, 0xd6, 0xdc, 0x89, 0xab, 0xfe, 0xb5, 0xe5, 0x15, 0x0d, 0x18, + 0x4f, 0xea, 0x72, 0x3c, 0x4b, 0x37, 0xf6, 0xaa, 0x67, 0x86, 0xe2, 0x72, 0x34, 0x4a, 0x3b, 0xe6, + 0x72, 0x58, 0x1b, 0x70, 0xb6, 0xf8, 0xf7, 0x72, 0xa8, 0x22, 0xce, 0x9e, 0x5d, 0x75, 0xcd, 0x66, + 0xf5, 0x6c, 0x36, 0x2b, 0xc4, 0xb8, 0x18, 0x21, 0x07, 0x2e, 0x8c, 0xcc, 0x2e, 0x28, 0x10, 0x50, + 0x05, 0xc1, 0x7f, 0x9a, 0x43, 0x93, 0x7a, 0xe4, 0x94, 0x61, 0xf5, 0x71, 0x26, 0xdb, 0x76, 0xd6, + 0x53, 0x42, 0xf4, 0x28, 0x23, 0x13, 0x4f, 0x66, 0x53, 0xa3, 0x40, 0x88, 0x49, 0xc4, 0xd4, 0xd7, + 0xf3, 0x5d, 0xb3, 0x43, 0xaa, 0xe7, 0x86, 0xa2, 0xbe, 0x1a, 0x23, 0x1e, 0x53, 0x5f, 0xde, 0x08, + 0x82, 0x33, 0x9b, 0xba, 0x09, 0x5f, 0x92, 0x57, 0x9f, 0x18, 0xca, 0xd4, 0x1d, 0x2c, 0xf8, 0xa3, + 0x53, 0xb7, 0x68, 0x85, 0x80, 0x39, 0xd5, 0x65, 0x97, 0x34, 0x4d, 0xaf, 0x5a, 0x1d, 0x8a, 0x2e, + 0x03, 0xa5, 0x1d, 0xd3, 0x65, 0xd6, 0x06, 0x9c, 0x2d, 0x75, 0xe7, 0xb6, 0xb7, 0x5f, 0x7d, 0x72, + 0x28, 0xee, 0x7c, 0xc3, 0xdb, 0x8f, 0xb9, 0xf3, 0x0d, 0x6d, 0x13, 0x28, 0x43, 0xe1, 0xce, 0x2d, + 0x4f, 0x77, 0xab, 0xb3, 0x43, 0x72, 0xe7, 0x94, 0x78, 0xc2, 0x9d, 0xd3, 0x46, 0x10, 0x9c, 0x99, + 0x16, 0xb0, 0xeb, 0x65, 0xa6, 0x51, 0xfd, 0xd8, 0x50, 0xb4, 0xe0, 0x2a, 0xa7, 0x1e, 0xd3, 0x02, + 0xd1, 0x0a, 0x01, 0x73, 0xfc, 0x0c, 0x8d, 0x6a, 0x3b, 0x96, 0x69, 0xe8, 0x5e, 0xf5, 0x29, 0x76, + 0xf2, 0x70, 0x9c, 0xc7, 0x9c, 0xbc, 0x0d, 0x24, 0x14, 0x7f, 0x2f, 0x87, 0xa6, 0x62, 0x7b, 0x6c, + 0xd5, 0xf3, 0x4c, 0x74, 0x23, 0x63, 0xd1, 0xeb, 0x51, 0x2e, 0xfc, 0x11, 0xe4, 0x61, 0x8d, 0xf8, + 0x0e, 0x4d, 0x5c, 0x28, 0xfc, 0x8d, 0x1c, 0x2a, 0xcb, 0xb6, 0xea, 0x05, 0x26, 0xe2, 0x5b, 0xc3, + 0x12, 0x91, 0x0b, 0x27, 0x8f, 0x1e, 0x86, 0xa7, 0x0c, 0x42, 0x11, 0x98, 0xd7, 0x66, 0x3a, 0xaf, + 0xf9, 0x2e, 0xd1, 0xdb, 0xd5, 0xb9, 0xa1, 0x78, 0x6d, 0x08, 0x39, 0xc4, 0xbc, 0xb6, 0x02, 0x01, + 0x55, 0x10, 0xf6, 0x4a, 0xf5, 0xe8, 0xc9, 0xbf, 0xea, 0xc5, 0xa1, 0xbc, 0xd2, 0xf8, 0xf9, 0xc2, + 0xe8, 0x2b, 0x8d, 0x41, 0x21, 0x2e, 0x14, 0xfe, 0x9b, 0x1c, 0x9a, 0xd1, 0xe3, 0xc7, 0x84, 0xab, + 0xff, 0x8f, 0x89, 0x4a, 0x86, 0x21, 0x6a, 0xe4, 0x38, 0x32, 0x13, 0xf6, 0x49, 0x21, 0xec, 0x4c, + 0x02, 0x0e, 0x49, 0xd1, 0x68, 0x90, 0xe2, 0xed, 0xf8, 0x9d, 0xea, 0xfc, 0x50, 0x82, 0x14, 0x6d, + 0xc7, 0x8f, 0xaf, 0x8b, 0xb4, 0x95, 0xad, 0x06, 0x30, 0x9e, 0x3c, 0x4a, 0x23, 0xae, 0x6b, 0xfa, + 0xd5, 0xa7, 0x87, 0x13, 0xa5, 0x31, 0xe2, 0xf1, 0x28, 0x8d, 0x35, 0x82, 0xe0, 0x3c, 0xdb, 0x45, + 0x28, 0xcc, 0x2d, 0xa4, 0xe4, 0x6f, 0x37, 0xd5, 0xfc, 0x6d, 0xe5, 0xf2, 0xcb, 0x7d, 0x67, 0xd0, + 0xb5, 0x5f, 0xa9, 0xb9, 0xbe, 0xb9, 0xa3, 0x1b, 0xbe, 0x92, 0xfc, 0x9d, 0xfd, 0x66, 0x0e, 0x4d, + 0x44, 0xf2, 0x09, 0x29, 0xac, 0x77, 0xa3, 0xac, 0x21, 0xfb, 0x2d, 0x47, 0x55, 0xa2, 0xdf, 0xcc, + 0xa1, 0xb2, 0xcc, 0x2c, 0xa4, 0x48, 0xd3, 0x8c, 0x4a, 0x33, 0x68, 0xa6, 0x94, 0xb1, 0x4a, 0x97, + 0x84, 0x8e, 0x4d, 0x24, 0xc5, 0x30, 0xfc, 0xb1, 0x91, 0xec, 0xd2, 0x25, 0xfa, 0x20, 0x87, 0xc6, + 0xd5, 0x44, 0x43, 0x8a, 0x40, 0xad, 0xa8, 0x40, 0x9b, 0xd9, 0x1c, 0x8e, 0x3a, 0xe4, 0x5d, 0xc9, + 0x9c, 0xc3, 0xf0, 0xdf, 0x55, 0xec, 0x86, 0xac, 0x2a, 0xc9, 0xd7, 0x73, 0x08, 0x85, 0x09, 0x88, + 0x14, 0x51, 0x48, 0x54, 0x94, 0x41, 0xf7, 0xa8, 0x39, 0xaf, 0xde, 0xa3, 0x22, 0xb3, 0x11, 0xc3, + 0x1f, 0x95, 0xf5, 0xcd, 0xad, 0xad, 0x1e, 0x92, 0xfc, 0x56, 0x0e, 0x95, 0x65, 0x6e, 0x62, 0xf8, + 0x83, 0xb2, 0x51, 0xdb, 0xd2, 0xf8, 0xea, 0x21, 0x29, 0xca, 0x57, 0x73, 0xa8, 0x14, 0xe4, 0x2a, + 0x52, 0x24, 0x31, 0xa2, 0x92, 0x0c, 0x7a, 0xa6, 0x4f, 0xdb, 0xd0, 0x7a, 0x0c, 0x09, 0x93, 0x63, + 0xff, 0xc4, 0xe4, 0xd8, 0xec, 0x25, 0xc7, 0x7b, 0x39, 0x54, 0x51, 0xf2, 0x18, 0x29, 0xa2, 0xec, + 0x44, 0x45, 0x19, 0x74, 0x7b, 0x46, 0x30, 0xeb, 0x2d, 0x8d, 0x92, 0xd0, 0x18, 0xbe, 0x34, 0x82, + 0xd9, 0xa1, 0xd2, 0x04, 0x99, 0x8d, 0x13, 0x91, 0x86, 0x32, 0xeb, 0x6d, 0xce, 0x32, 0xcb, 0x31, + 0x7c, 0x73, 0xbe, 0xb6, 0xbc, 0xa2, 0x1d, 0xe2, 0xe4, 0xc2, 0x94, 0xc7, 0xf0, 0xed, 0x99, 0xf3, + 0x4a, 0x97, 0xe5, 0xdb, 0x39, 0x34, 0x1d, 0xcf, 0x7b, 0xa4, 0x48, 0xb4, 0x17, 0x95, 0x68, 0xd0, + 0x8b, 0xff, 0x2a, 0xc7, 0x74, 0xb9, 0xfe, 0x28, 0x87, 0xce, 0xa4, 0xe4, 0x3c, 0x52, 0x44, 0xb3, + 0xa3, 0xa2, 0xdd, 0x1a, 0xd6, 0x9d, 0xd1, 0xb8, 0x66, 0x2b, 0x49, 0x8f, 0xe1, 0x6b, 0xb6, 0x60, + 0xd6, 0x3b, 0x9c, 0x50, 0x93, 0x1f, 0xc3, 0x0f, 0x27, 0x92, 0x67, 0x2b, 0xe2, 0xfa, 0x1d, 0xa6, + 0x41, 0x86, 0xaf, 0xdf, 0x9c, 0x57, 0xef, 0x79, 0x22, 0x48, 0x8a, 0x0c, 0x7f, 0x9e, 0xd8, 0xd0, + 0x36, 0x0f, 0x9d, 0x27, 0x64, 0x82, 0xe4, 0x24, 0xe6, 0x09, 0xc6, 0xac, 0xb7, 0xc6, 0xa8, 0x89, + 0x92, 0xe1, 0x6b, 0x4c, 0xc0, 0x2d, 0x5d, 0x9e, 0xef, 0xe4, 0x94, 0xdb, 0x49, 0x4a, 0xf6, 0x23, + 0x45, 0x2e, 0x27, 0x2a, 0xd7, 0x1b, 0x43, 0x3b, 0x87, 0xac, 0xca, 0xf7, 0x61, 0x0e, 0x4d, 0x46, + 0x53, 0x1f, 0x29, 0x92, 0x99, 0x51, 0xc9, 0xb4, 0x21, 0xdc, 0x7c, 0x8a, 0x7b, 0xee, 0x78, 0xee, + 0x63, 0xf8, 0x9e, 0x5b, 0xe5, 0xd8, 0xfb, 0x5d, 0xa6, 0xa5, 0x3d, 0x86, 0xff, 0x2e, 0x7b, 0x5f, + 0xe6, 0x54, 0xe5, 0xfb, 0x6e, 0x0e, 0x9d, 0x4b, 0xcf, 0x75, 0xa4, 0x48, 0xb8, 0x1f, 0x95, 0xf0, + 0xcd, 0x21, 0x5e, 0xf9, 0x8e, 0xc7, 0x2a, 0x32, 0xd9, 0x31, 0xfc, 0x58, 0x45, 0x5b, 0xd9, 0x6a, + 0x1c, 0x16, 0xc3, 0x85, 0x79, 0x8f, 0x13, 0x88, 0xe1, 0x38, 0xb3, 0x54, 0x69, 0xe6, 0xfd, 0xc8, + 0x89, 0x23, 0x7e, 0x1c, 0x09, 0xbf, 0x23, 0x0f, 0x40, 0xf1, 0x73, 0x42, 0x9f, 0xec, 0x3f, 0xa7, + 0x72, 0xf8, 0x39, 0xa7, 0xbf, 0xcf, 0xa3, 0xa9, 0x58, 0x7e, 0x81, 0x95, 0x1e, 0xa1, 0x3f, 0x59, + 0x9d, 0xae, 0x5c, 0xf4, 0x1e, 0xf6, 0x95, 0x00, 0x00, 0x21, 0x0e, 0xfe, 0x30, 0x87, 0xa6, 0xee, + 0xe8, 0xbe, 0xb1, 0xdb, 0xd0, 0xfd, 0x5d, 0x7e, 0x58, 0x2d, 0xa3, 0xb7, 0xf7, 0x7a, 0x94, 0x6a, + 0x98, 0x5e, 0x8c, 0x01, 0x20, 0xce, 0x1f, 0x3f, 0x8b, 0xc6, 0x3a, 0x8e, 0x65, 0x99, 0x76, 0x4b, + 0x14, 0x5c, 0x91, 0xf9, 0xf2, 0x06, 0x6f, 0x86, 0x00, 0x1e, 0x2d, 0x94, 0x95, 0xcf, 0xe4, 0x18, + 0x48, 0x6c, 0x48, 0x8f, 0x75, 0x3a, 0xb3, 0xf0, 0x51, 0x39, 0x9d, 0xf9, 0x2f, 0x79, 0x84, 0x93, + 0x73, 0xe0, 0xc3, 0x4a, 0xc9, 0x5d, 0x42, 0x45, 0x23, 0x54, 0x15, 0xe5, 0x3c, 0xb5, 0x78, 0xa3, + 0x02, 0xca, 0x6f, 0x3a, 0x78, 0xc4, 0xe8, 0xba, 0x24, 0x59, 0x39, 0x88, 0xb7, 0x83, 0xc4, 0xe8, + 0xb3, 0x30, 0xc6, 0x07, 0xc9, 0xdb, 0x0a, 0xef, 0x64, 0x1e, 0x0c, 0xf4, 0xf1, 0xf2, 0x6f, 0xb2, + 0x42, 0x41, 0xbb, 0xe2, 0x36, 0x56, 0xb1, 0xef, 0x9b, 0xdd, 0x35, 0xd9, 0x19, 0x14, 0x42, 0xa7, + 0x53, 0x46, 0x63, 0x30, 0x9d, 0xfa, 0x71, 0x11, 0xcd, 0x24, 0xdc, 0xe5, 0x29, 0x5d, 0xac, 0x7c, + 0x0e, 0x95, 0xe8, 0x5f, 0xa5, 0x8e, 0x85, 0x7c, 0x87, 0xd7, 0x44, 0x3b, 0x48, 0x0c, 0xe5, 0xfe, + 0xe0, 0x68, 0xcf, 0xfb, 0x83, 0xb7, 0x22, 0x97, 0xa8, 0xb3, 0xac, 0x75, 0xf6, 0x32, 0x9a, 0xe0, + 0xd9, 0xfa, 0xe0, 0xa6, 0x5d, 0x21, 0x7a, 0xd3, 0xea, 0xaa, 0x0a, 0x84, 0x28, 0x6e, 0x8f, 0x7b, + 0x75, 0xc5, 0x63, 0xdd, 0xab, 0x7b, 0x3f, 0x59, 0xd0, 0xe2, 0xed, 0xac, 0xa7, 0xcf, 0x3e, 0x2c, + 0x4b, 0xbd, 0x94, 0x5a, 0x3a, 0xf4, 0x52, 0xea, 0x22, 0x2a, 0x7b, 0x9e, 0xf5, 0x1a, 0x71, 0xcd, + 0x9d, 0x03, 0x76, 0x21, 0x52, 0x29, 0xbc, 0xa5, 0x05, 0x00, 0x08, 0x71, 0x3e, 0x8a, 0xe7, 0xe9, + 0xff, 0x39, 0x87, 0x26, 0x79, 0x7a, 0xab, 0xd6, 0xe9, 0x2c, 0xb9, 0xa4, 0xe9, 0x51, 0xd7, 0xd3, + 0x71, 0xcd, 0xdb, 0xba, 0x4f, 0x82, 0xab, 0x70, 0xfd, 0xb9, 0x9e, 0x86, 0xec, 0x0c, 0x0a, 0x21, + 0xfc, 0x34, 0x2a, 0xe8, 0x9d, 0xce, 0xea, 0x32, 0x93, 0x61, 0x34, 0x3c, 0x36, 0x50, 0xa3, 0x8d, + 0xc0, 0x61, 0xf8, 0x15, 0x34, 0x69, 0xda, 0x9e, 0xaf, 0x5b, 0x16, 0x3b, 0x73, 0xbf, 0xba, 0xcc, + 0x1c, 0xfd, 0x68, 0x78, 0x08, 0x64, 0x35, 0x02, 0x85, 0x18, 0xf6, 0xfc, 0xcf, 0xc6, 0xd1, 0x4c, + 0x22, 0x5b, 0x87, 0x67, 0xd1, 0x88, 0xc9, 0x2f, 0x29, 0x8d, 0xd6, 0x91, 0xa0, 0x34, 0xb2, 0xba, + 0x0c, 0x23, 0x66, 0x53, 0x75, 0x24, 0x23, 0x27, 0xe7, 0x48, 0x64, 0xad, 0x82, 0xd1, 0xa3, 0xd6, + 0x2a, 0x08, 0xef, 0x0e, 0x8a, 0xbb, 0x77, 0x29, 0x17, 0xba, 0xc3, 0xfb, 0x86, 0xa0, 0xe0, 0x1f, + 0xa9, 0x78, 0xc2, 0x0d, 0x54, 0xd2, 0x3b, 0x26, 0xbf, 0x57, 0x5c, 0xec, 0xfb, 0xbe, 0x4f, 0xad, + 0xb1, 0xca, 0x2f, 0x15, 0x4b, 0x22, 0xc9, 0x1b, 0xc5, 0x63, 0xd9, 0xde, 0x28, 0x56, 0x83, 0x81, + 0xd2, 0x43, 0x83, 0x81, 0x4b, 0xa8, 0xa8, 0x1b, 0xbe, 0x79, 0x9b, 0x08, 0x3b, 0x96, 0x21, 0x46, + 0x8d, 0xb5, 0x82, 0x80, 0x8a, 0x72, 0xbf, 0x7e, 0x10, 0xf2, 0xa2, 0x44, 0xb9, 0xdf, 0x00, 0x04, + 0x2a, 0x1e, 0xf3, 0xb5, 0x4c, 0x69, 0x02, 0x5f, 0x5b, 0x89, 0xf9, 0x5a, 0x15, 0x08, 0x51, 0x5c, + 0x5c, 0x43, 0x53, 0xbc, 0xe1, 0x66, 0xc7, 0x72, 0xf4, 0x26, 0xed, 0x3e, 0x1e, 0xd5, 0x8a, 0xab, + 0x51, 0x30, 0xc4, 0xf1, 0x7b, 0xb8, 0xeb, 0x89, 0xc1, 0xdd, 0xf5, 0x64, 0x36, 0xee, 0x3a, 0x6e, + 0x91, 0x7d, 0xb8, 0xeb, 0x77, 0xe3, 0x95, 0x01, 0xf8, 0x29, 0xcd, 0x41, 0x5d, 0x2b, 0x35, 0xaf, + 0xa6, 0x7a, 0xf7, 0xff, 0x48, 0x15, 0x01, 0x3e, 0x89, 0x26, 0x1c, 0xb7, 0xa5, 0xdb, 0xe6, 0x3d, + 0xe6, 0x70, 0x3c, 0x76, 0x5a, 0xb3, 0xcc, 0xb5, 0xf5, 0x86, 0x0a, 0x80, 0x28, 0x1e, 0xbe, 0x87, + 0xca, 0xad, 0xc0, 0xcb, 0x56, 0x67, 0x32, 0xf1, 0x33, 0x51, 0xaf, 0xcd, 0xaf, 0x07, 0xc9, 0x36, + 0x08, 0xd9, 0x29, 0xb3, 0x12, 0x3e, 0xc1, 0xfb, 0xe3, 0x7f, 0x9c, 0x43, 0x33, 0x1d, 0xfd, 0x80, + 0x6a, 0xe8, 0x15, 0xdb, 0x35, 0x8d, 0xdd, 0x36, 0xb1, 0xfd, 0xea, 0x99, 0x4c, 0xd2, 0x33, 0x8d, + 0x38, 0xdd, 0x15, 0x4b, 0x6f, 0x79, 0xe1, 0x21, 0x8e, 0x04, 0x1c, 0x92, 0xa2, 0x0c, 0x36, 0x6d, + 0xbe, 0x5b, 0x62, 0xf3, 0x4c, 0x74, 0x1f, 0xe6, 0x94, 0x82, 0xd2, 0x4f, 0xa1, 0xb2, 0x08, 0x59, + 0xc4, 0xe4, 0x5a, 0xae, 0x7f, 0x4c, 0x8c, 0xc4, 0x99, 0x44, 0xb1, 0x8f, 0xd5, 0x65, 0x08, 0xb1, + 0x8f, 0x18, 0xa1, 0x46, 0x8a, 0x4e, 0xe4, 0xb3, 0x2b, 0x3a, 0xa1, 0xa1, 0xc7, 0xf9, 0x05, 0x61, + 0x4d, 0x5b, 0x63, 0x11, 0x94, 0x69, 0xf0, 0xfb, 0xc1, 0xbc, 0x3c, 0xe1, 0x79, 0xf1, 0x10, 0x8f, + 0x5f, 0x49, 0x43, 0x82, 0xf4, 0xbe, 0xc2, 0x15, 0x5b, 0xba, 0x74, 0xc5, 0xc5, 0x84, 0x2b, 0x0e, + 0x81, 0x10, 0xc5, 0xed, 0xe1, 0x47, 0x4b, 0x83, 0xfb, 0xd1, 0x72, 0x56, 0x7e, 0x34, 0xaa, 0x71, + 0xc7, 0x0c, 0x7b, 0xd1, 0xa1, 0x61, 0xef, 0x2d, 0x54, 0xf1, 0xd8, 0x9b, 0xe4, 0x2f, 0xbc, 0xd2, + 0xf7, 0x0b, 0xd7, 0xc2, 0xde, 0xa0, 0x92, 0x52, 0x3c, 0xd1, 0xf8, 0x09, 0x7a, 0xa2, 0x79, 0x54, + 0x6c, 0xb9, 0x4e, 0xb7, 0xc3, 0x2f, 0x35, 0x08, 0x25, 0xbf, 0xca, 0x5a, 0x40, 0x40, 0x06, 0x73, + 0x06, 0xdf, 0x29, 0xa3, 0xa9, 0xd8, 0x46, 0x68, 0x6a, 0x22, 0x2c, 0x77, 0xca, 0x89, 0xb0, 0x8b, + 0x28, 0xef, 0xd3, 0xa8, 0x66, 0x24, 0x7a, 0x6d, 0x9e, 0x85, 0x33, 0x0c, 0x92, 0xac, 0xce, 0x31, + 0x7a, 0xf4, 0xea, 0x1c, 0xf8, 0x97, 0x50, 0x59, 0x6f, 0x36, 0x5d, 0xe2, 0x79, 0x24, 0x28, 0xf7, + 0xc3, 0x26, 0xa5, 0x5a, 0xd0, 0x08, 0x21, 0x9c, 0xad, 0xa4, 0x9b, 0x3b, 0xde, 0x4d, 0x4f, 0xa4, + 0xb7, 0xd4, 0x95, 0xf4, 0xf2, 0x8a, 0x46, 0xdb, 0x41, 0x62, 0xe0, 0x26, 0x9a, 0xda, 0x73, 0xb7, + 0x97, 0x96, 0x74, 0x63, 0x97, 0x1c, 0x27, 0x25, 0xc2, 0xca, 0xf8, 0x5e, 0x8f, 0x52, 0x80, 0x38, + 0x49, 0xc1, 0xe5, 0x3a, 0x39, 0xf0, 0xf5, 0xed, 0xe3, 0x04, 0xad, 0x01, 0x17, 0x95, 0x02, 0xc4, + 0x49, 0xd2, 0x10, 0x73, 0xcf, 0xdd, 0x0e, 0xae, 0xdc, 0x8b, 0xb2, 0x61, 0x32, 0xc4, 0xbc, 0x1e, + 0x82, 0x40, 0xc5, 0xa3, 0x03, 0xb6, 0xe7, 0x6e, 0x03, 0xd1, 0xad, 0xb6, 0xa8, 0x7c, 0x28, 0x07, + 0xec, 0xba, 0x68, 0x07, 0x89, 0x81, 0x3b, 0x08, 0xd3, 0xa7, 0x63, 0xef, 0x5d, 0xde, 0x19, 0x16, + 0xab, 0xd2, 0x67, 0xd2, 0x9e, 0x46, 0x22, 0xa9, 0x0f, 0x74, 0x8e, 0xba, 0xbb, 0xeb, 0x09, 0x3a, + 0x90, 0x42, 0x1b, 0xbf, 0x81, 0x9e, 0xd8, 0x73, 0xb7, 0xc5, 0xbe, 0x44, 0xc3, 0x35, 0x6d, 0xc3, + 0xec, 0xe8, 0xbc, 0x88, 0x41, 0x25, 0x5a, 0xa8, 0xf1, 0x7a, 0x3a, 0x1a, 0xf4, 0xea, 0x1f, 0xcd, + 0xca, 0x8e, 0x67, 0x92, 0x95, 0x8d, 0x99, 0xeb, 0xa3, 0x5e, 0x8d, 0x67, 0x30, 0xff, 0xf4, 0xfd, + 0x1c, 0xc2, 0xec, 0x08, 0x58, 0xf0, 0xb9, 0x12, 0xe6, 0xfc, 0xf0, 0x22, 0x2a, 0x33, 0xef, 0xa7, + 0xdc, 0xca, 0x95, 0xe9, 0x8d, 0xab, 0x01, 0x00, 0x42, 0x1c, 0xba, 0x88, 0x72, 0xac, 0x26, 0x91, + 0xa5, 0x34, 0xe4, 0x22, 0xea, 0x06, 0x6b, 0x05, 0x01, 0xc5, 0x57, 0xd1, 0x8c, 0x4b, 0xb6, 0x75, + 0x4b, 0xb7, 0x0d, 0xa2, 0xf9, 0xae, 0xee, 0x93, 0xd6, 0x81, 0xf0, 0x24, 0x32, 0x44, 0x83, 0x38, + 0x02, 0x24, 0xfb, 0xcc, 0xff, 0x5b, 0x09, 0x4d, 0xc7, 0xcf, 0xae, 0x3d, 0x2c, 0x99, 0xbc, 0x88, + 0xca, 0x1d, 0xdd, 0xf5, 0x4d, 0xa5, 0xd0, 0x88, 0x7c, 0xaa, 0x46, 0x00, 0x80, 0x10, 0x07, 0x3f, + 0x8d, 0x0a, 0xac, 0x8e, 0xac, 0x90, 0x50, 0xe6, 0x25, 0x58, 0x9d, 0x59, 0xe0, 0xb0, 0xf4, 0xea, + 0x15, 0xf9, 0x13, 0xab, 0x5e, 0xf1, 0x48, 0x14, 0xa6, 0x7d, 0x2f, 0x99, 0xc7, 0x7b, 0x2b, 0xe3, + 0x83, 0x89, 0xfd, 0xad, 0x0b, 0x27, 0x0c, 0x55, 0x9f, 0x45, 0xb5, 0x8e, 0xcd, 0x2c, 0x44, 0x8a, + 0x18, 0x0a, 0x5f, 0xde, 0x45, 0x9a, 0x20, 0xca, 0x1a, 0x37, 0xd0, 0x59, 0xcb, 0x6c, 0x8b, 0x8c, + 0xa4, 0xd7, 0x20, 0x2e, 0x2f, 0xdf, 0xcc, 0x1c, 0xf5, 0x68, 0x98, 0xa9, 0x59, 0x4b, 0xc1, 0x81, + 0xd4, 0x9e, 0xf8, 0x59, 0x34, 0x76, 0x9b, 0xb8, 0xac, 0xba, 0x00, 0x8a, 0x96, 0x94, 0x7f, 0x8d, + 0x37, 0x43, 0x00, 0xc7, 0x6f, 0xa0, 0xbc, 0xa7, 0x7b, 0x96, 0x08, 0xd4, 0x8e, 0x71, 0xd6, 0xba, + 0xa6, 0xad, 0x09, 0xf5, 0x60, 0x39, 0x64, 0xfa, 0x1b, 0x18, 0xc9, 0x53, 0x0a, 0xd8, 0xc2, 0xfd, + 0xa0, 0x89, 0xc3, 0xf6, 0x83, 0x06, 0x73, 0x8a, 0xdf, 0x2d, 0xa2, 0xa9, 0xd8, 0x61, 0xd4, 0x87, + 0xb9, 0x16, 0xe9, 0x29, 0x46, 0x0e, 0xf1, 0x14, 0xcf, 0xa1, 0x92, 0x61, 0x99, 0xc4, 0xf6, 0x57, + 0x9b, 0xc2, 0xa3, 0x84, 0x77, 0xde, 0x79, 0xfb, 0x32, 0x48, 0x8c, 0xd3, 0xf6, 0x2b, 0xaa, 0x03, + 0x28, 0x1c, 0xb5, 0x2a, 0x4e, 0x71, 0x98, 0x5f, 0x27, 0xca, 0xe6, 0xee, 0x7d, 0xec, 0xc5, 0x3e, + 0xf2, 0x55, 0xae, 0x83, 0x5d, 0xa0, 0x72, 0xd6, 0xbb, 0x40, 0x83, 0xd9, 0xc8, 0x3f, 0x8d, 0xa0, + 0xd2, 0x46, 0x6d, 0x4b, 0x63, 0xd5, 0x9f, 0xdf, 0x8c, 0xd6, 0xb7, 0x1e, 0x44, 0xc8, 0x64, 0x21, + 0xeb, 0x15, 0x6a, 0x5a, 0x7d, 0xd7, 0xb0, 0x2e, 0x73, 0xeb, 0xa3, 0xeb, 0x4c, 0xde, 0x1d, 0x2f, + 0xa1, 0xbc, 0xbd, 0xd7, 0xef, 0x47, 0x3e, 0xd8, 0x98, 0x6d, 0x5c, 0x27, 0x07, 0xc0, 0x3a, 0xe3, + 0x9b, 0x08, 0x19, 0x2e, 0x69, 0x12, 0xdb, 0x37, 0xc5, 0x37, 0xd6, 0xfa, 0xdb, 0x00, 0x59, 0x92, + 0x9d, 0x41, 0x21, 0x34, 0xff, 0x97, 0x45, 0x34, 0x1d, 0x3f, 0x74, 0xfe, 0x30, 0x97, 0xf3, 0x2c, + 0x1a, 0xf3, 0xba, 0xac, 0x02, 0x8f, 0x70, 0x3a, 0x72, 0x1a, 0xd0, 0x78, 0x33, 0x04, 0xf0, 0x74, + 0x57, 0x32, 0x7a, 0x2a, 0xae, 0x24, 0x7f, 0x54, 0x57, 0x92, 0x75, 0x40, 0xf3, 0x5e, 0xf2, 0xfb, + 0x15, 0x6f, 0x65, 0x7c, 0x4d, 0xa0, 0x0f, 0x5f, 0x42, 0x84, 0x55, 0x8f, 0x65, 0x52, 0xbb, 0x26, + 0x30, 0xc4, 0xc4, 0x46, 0xef, 0xe9, 0xb8, 0xac, 0x39, 0x54, 0x60, 0xdf, 0x6b, 0x10, 0x8b, 0x51, + 0x66, 0x8a, 0xec, 0xcc, 0x17, 0xf0, 0xf6, 0x01, 0xcb, 0xeb, 0x17, 0xd0, 0x64, 0xf4, 0x98, 0x29, + 0x5d, 0x37, 0xef, 0x3a, 0x9e, 0x2f, 0xb2, 0x09, 0xf1, 0x2f, 0x31, 0x5e, 0x0b, 0x41, 0xa0, 0xe2, + 0x1d, 0x6d, 0xd2, 0x7e, 0x16, 0x8d, 0x89, 0x6a, 0x7a, 0x62, 0xce, 0x96, 0x66, 0x26, 0x2a, 0xee, + 0x41, 0x00, 0xff, 0xbf, 0x19, 0xdb, 0xf2, 0xf0, 0xd7, 0x93, 0x33, 0xf6, 0x9b, 0x99, 0x9e, 0x29, + 0x7e, 0xd4, 0x27, 0xec, 0xc1, 0x94, 0xfb, 0x0d, 0x34, 0x93, 0xd8, 0x7e, 0x3a, 0x5a, 0xb5, 0xf2, + 0x39, 0x54, 0xb0, 0xf5, 0x36, 0xe1, 0x05, 0xbd, 0x84, 0xd1, 0xb1, 0x0f, 0x5a, 0x00, 0x6f, 0x9f, + 0xf7, 0xd0, 0xb9, 0xf4, 0xcd, 0x11, 0xf6, 0x21, 0x0d, 0xe2, 0x1b, 0xbb, 0x0d, 0xb8, 0x61, 0x37, + 0x60, 0xc9, 0x69, 0x53, 0x50, 0xad, 0xd9, 0x94, 0xd5, 0x3b, 0xc3, 0x0f, 0x69, 0xa4, 0xa3, 0x41, + 0xaf, 0xfe, 0xf3, 0xdf, 0x2b, 0xa2, 0x99, 0xc4, 0x85, 0x1d, 0xb6, 0x10, 0x97, 0xdb, 0x12, 0xb1, + 0xf4, 0x42, 0xea, 0x66, 0xc4, 0x2b, 0x68, 0x92, 0x59, 0x63, 0x23, 0xb6, 0x99, 0x21, 0xf7, 0xfe, + 0xb7, 0x22, 0x50, 0x88, 0x61, 0x1f, 0x6d, 0x21, 0xff, 0x0a, 0x9a, 0x54, 0x3f, 0xfb, 0xb2, 0xba, + 0x2c, 0x76, 0xd3, 0x25, 0x13, 0x2d, 0x02, 0x85, 0x18, 0x36, 0xfb, 0x66, 0x8e, 0x9c, 0xd2, 0x45, + 0x92, 0xb0, 0xd0, 0xff, 0x37, 0x73, 0x62, 0x24, 0x20, 0x41, 0x14, 0x6f, 0xa3, 0x59, 0xbe, 0xa9, + 0xa0, 0x0a, 0x14, 0x3b, 0x89, 0x33, 0x2f, 0x84, 0x9e, 0x5d, 0xee, 0x89, 0x09, 0x87, 0x50, 0xe9, + 0xb3, 0x28, 0xe6, 0xfb, 0xc9, 0xaf, 0x88, 0xbe, 0x9d, 0xf5, 0x35, 0xaf, 0x63, 0x19, 0x7e, 0xf9, + 0xa3, 0x62, 0xf8, 0xdf, 0xab, 0x50, 0x43, 0x89, 0xdd, 0x58, 0xc0, 0xf3, 0xa8, 0xc8, 0x74, 0x93, + 0xce, 0x69, 0x72, 0x7f, 0x82, 0x29, 0xad, 0x07, 0x02, 0x72, 0x84, 0xd4, 0xbd, 0x08, 0x24, 0x47, + 0x7b, 0x04, 0x92, 0x1d, 0x74, 0xc6, 0xb7, 0xbc, 0x2d, 0xb7, 0xeb, 0xf9, 0x4b, 0xc4, 0xf5, 0x3d, + 0xa1, 0xba, 0xf9, 0xbe, 0x3f, 0xbd, 0xb7, 0xb5, 0xa6, 0xc5, 0xa9, 0x40, 0x1a, 0x69, 0xaa, 0xc0, + 0xbe, 0xe5, 0xd5, 0x2c, 0xcb, 0xb9, 0x13, 0x1c, 0xc8, 0x08, 0x67, 0x38, 0x31, 0x77, 0x49, 0x05, + 0xde, 0x5a, 0xd3, 0x7a, 0x60, 0xc2, 0x21, 0x54, 0xf0, 0x3a, 0x7b, 0xaa, 0xd7, 0x74, 0xcb, 0x6c, + 0xea, 0x3e, 0xa1, 0x31, 0x00, 0xcb, 0xa9, 0x73, 0xeb, 0x90, 0x9b, 0xa0, 0x5b, 0x6b, 0x5a, 0x1c, + 0x05, 0xd2, 0xfa, 0x0d, 0xeb, 0xf3, 0xbb, 0xa9, 0x21, 0x43, 0xe9, 0x54, 0x42, 0x86, 0x72, 0x7f, + 0x56, 0x8e, 0x32, 0xb2, 0xf2, 0x98, 0xca, 0xf7, 0x61, 0xe5, 0x4d, 0x34, 0x25, 0xbf, 0x4b, 0x24, + 0x74, 0xb6, 0xd2, 0xf7, 0x9e, 0x4c, 0x2d, 0x4a, 0x01, 0xe2, 0x24, 0x4f, 0x29, 0xcf, 0xf5, 0xd7, + 0x39, 0x34, 0x4d, 0x25, 0xa9, 0xf9, 0xbb, 0xc4, 0xbe, 0xd7, 0xd0, 0x5d, 0xbd, 0x1d, 0x14, 0x5e, + 0xdb, 0xc9, 0x7c, 0xc8, 0x6b, 0x31, 0x46, 0x7c, 0xe8, 0x65, 0x35, 0xec, 0x38, 0x18, 0x12, 0x92, + 0xd1, 0xa9, 0x2f, 0x6c, 0x3b, 0xce, 0x37, 0x74, 0xcf, 0x46, 0x19, 0x05, 0x53, 0x5f, 0x9c, 0xe8, + 0x40, 0x3e, 0x76, 0x76, 0x09, 0x3d, 0x9e, 0xfa, 0xa8, 0x7d, 0x39, 0xea, 0xaf, 0x16, 0xc5, 0xad, + 0xa3, 0x0c, 0x16, 0x20, 0x59, 0x7f, 0xe4, 0x8a, 0x06, 0x56, 0xb6, 0xfc, 0x08, 0x5a, 0xec, 0xe3, + 0x78, 0xe1, 0x67, 0xcf, 0x42, 0x1c, 0x3c, 0x8b, 0x46, 0x9a, 0xdb, 0xcc, 0xd5, 0x17, 0xc2, 0xe3, + 0x8f, 0xcb, 0x75, 0x18, 0x69, 0x6e, 0xe3, 0x67, 0x50, 0x49, 0xac, 0x6c, 0x82, 0xd3, 0x81, 0x8c, + 0xad, 0x58, 0xf6, 0x78, 0x20, 0xa1, 0xc3, 0x5a, 0x4b, 0x0c, 0x61, 0x57, 0x21, 0xfe, 0xe6, 0x1e, + 0xf9, 0xf4, 0x5f, 0x7f, 0x1e, 0xfa, 0x39, 0xa5, 0xd6, 0x3b, 0x8a, 0x66, 0x98, 0x93, 0x85, 0xdc, + 0x07, 0x0b, 0x58, 0xfe, 0xae, 0x88, 0xce, 0xa5, 0xdf, 0x85, 0x7b, 0x64, 0xac, 0x81, 0x2b, 0xf7, + 0x68, 0xaa, 0x72, 0x7f, 0x1c, 0x8d, 0x79, 0x4c, 0xf0, 0xe0, 0x3c, 0x02, 0xaf, 0xc2, 0xcb, 0x9b, + 0x20, 0x80, 0xe1, 0x57, 0x11, 0x6e, 0xeb, 0x77, 0xd7, 0xbd, 0xd6, 0x92, 0xd3, 0x65, 0x85, 0xc5, + 0x81, 0xe8, 0xbc, 0xea, 0x7d, 0x21, 0x3c, 0xf5, 0xb3, 0x9e, 0xc0, 0x80, 0x94, 0x5e, 0xec, 0x04, + 0x45, 0x64, 0x57, 0x2a, 0x76, 0xfc, 0xe8, 0xd0, 0x6d, 0xa4, 0x21, 0xc5, 0x1f, 0x1f, 0x26, 0x03, + 0x77, 0x63, 0x28, 0x17, 0x24, 0x1f, 0xf5, 0xe8, 0xfd, 0x24, 0x4d, 0xe7, 0x6b, 0x05, 0x74, 0x26, + 0xa5, 0x40, 0x4e, 0xd4, 0x7b, 0xe7, 0x8e, 0xe0, 0xbd, 0xf7, 0xe5, 0x48, 0x65, 0x73, 0x3e, 0x3d, + 0x10, 0xea, 0x90, 0x61, 0x7a, 0x3f, 0x87, 0xce, 0xb2, 0x6d, 0xff, 0x60, 0xaf, 0x31, 0xa8, 0x8c, + 0x3c, 0x2a, 0x34, 0xf3, 0x48, 0x25, 0xca, 0xaf, 0xa6, 0x50, 0x08, 0xf7, 0x42, 0xd3, 0xa0, 0x90, + 0xca, 0x15, 0x2f, 0x21, 0x24, 0x6f, 0x18, 0x06, 0x96, 0xfc, 0x34, 0x2b, 0xb4, 0x2e, 0x5b, 0xff, + 0x87, 0x1d, 0x29, 0x50, 0x46, 0x9b, 0xad, 0x8c, 0x94, 0x6e, 0xc3, 0xf8, 0x1c, 0x4d, 0xca, 0xeb, + 0xed, 0xc3, 0x02, 0x9e, 0x45, 0x63, 0x86, 0xd5, 0xf5, 0x7c, 0xf9, 0xc1, 0xc2, 0x30, 0xe7, 0xc8, + 0x9b, 0x21, 0x80, 0x0f, 0xa6, 0x88, 0x7f, 0x35, 0x8a, 0x26, 0xa3, 0xef, 0x1c, 0x5f, 0x42, 0xc5, + 0x8e, 0x4b, 0x76, 0xcc, 0xbb, 0xf1, 0x0f, 0x98, 0x34, 0x58, 0x2b, 0x08, 0x28, 0x76, 0x50, 0xd1, + 0xd2, 0xb7, 0x69, 0x68, 0xc0, 0x0b, 0xc8, 0x5f, 0x1d, 0xb8, 0x18, 0x7a, 0xb0, 0x4d, 0x12, 0x30, + 0x5c, 0x63, 0xe4, 0x41, 0xb0, 0xa1, 0x0c, 0x77, 0x4c, 0x62, 0x35, 0xf9, 0x79, 0xd4, 0x61, 0x30, + 0x5c, 0x61, 0xe4, 0x41, 0xb0, 0xc1, 0x6f, 0xa2, 0x32, 0xff, 0xea, 0x4b, 0xb3, 0x7e, 0x20, 0x16, + 0xc3, 0xff, 0xff, 0x68, 0xda, 0xbd, 0x65, 0xb6, 0x49, 0x68, 0xb9, 0x4b, 0x01, 0x11, 0x08, 0xe9, + 0xb1, 0x8f, 0xfd, 0xef, 0xf8, 0xc4, 0xd5, 0x7c, 0xdd, 0x0d, 0xbe, 0xc5, 0x1f, 0x7e, 0xec, 0x5f, + 0x42, 0x40, 0xc1, 0x9a, 0xff, 0xdb, 0x31, 0x34, 0x15, 0xbb, 0xa8, 0xfc, 0x8b, 0x71, 0x0b, 0x57, + 0xfd, 0x42, 0xcd, 0x68, 0xd6, 0x5f, 0xa8, 0xc9, 0x67, 0x11, 0x49, 0xbc, 0x89, 0xc6, 0x3d, 0x6f, + 0x97, 0x61, 0xf6, 0x9f, 0xd6, 0x9b, 0x7e, 0x70, 0x7f, 0x6e, 0x5c, 0xd3, 0xae, 0xc9, 0xee, 0x10, + 0x21, 0x86, 0xd7, 0xd0, 0x98, 0x38, 0xfc, 0xd8, 0xdf, 0xc9, 0x45, 0x16, 0xb1, 0x04, 0x91, 0x54, + 0x40, 0x62, 0x18, 0x5b, 0xe6, 0x31, 0xa5, 0x7b, 0xe4, 0x63, 0xe6, 0x06, 0x3a, 0xdb, 0x71, 0x2c, + 0x2b, 0x38, 0x7d, 0x2a, 0xbf, 0x2d, 0x55, 0x8e, 0x5e, 0x8e, 0x6a, 0xa4, 0xe0, 0x40, 0x6a, 0xcf, + 0xc1, 0xbc, 0xec, 0xcf, 0x8a, 0x68, 0x32, 0x5a, 0xc7, 0xeb, 0xf4, 0xae, 0xa8, 0xb2, 0x9c, 0x61, + 0xcd, 0xb5, 0xe3, 0x57, 0x54, 0xb7, 0x44, 0x3b, 0x48, 0x0c, 0x0c, 0xa8, 0xcc, 0x4f, 0xe4, 0x5f, + 0xef, 0x77, 0xd3, 0x9c, 0x1f, 0xed, 0x0d, 0xfa, 0x42, 0x48, 0x86, 0xd2, 0xf4, 0x02, 0xf4, 0xfe, + 0x2c, 0x93, 0xd1, 0x94, 0xcd, 0x10, 0x92, 0xa1, 0x33, 0x96, 0x4b, 0x5a, 0x41, 0xe2, 0x50, 0x99, + 0xb1, 0x80, 0xb5, 0x82, 0x80, 0xd2, 0x49, 0xd5, 0x75, 0x2c, 0x52, 0x83, 0x8d, 0xf8, 0xa4, 0x0a, + 0xbc, 0x19, 0x02, 0xf8, 0x30, 0x36, 0xb1, 0xa2, 0x0a, 0xd0, 0x87, 0x09, 0x5d, 0x45, 0x33, 0xb7, + 0x45, 0x32, 0x52, 0x33, 0x5b, 0xb6, 0xee, 0x87, 0xb7, 0xda, 0xe4, 0x89, 0xc9, 0xd7, 0xe2, 0x08, + 0x90, 0xec, 0x73, 0x7a, 0x61, 0x35, 0xb1, 0x9b, 0x1d, 0xc7, 0xb4, 0xfd, 0x78, 0x58, 0x7d, 0x45, + 0xb4, 0x83, 0xc4, 0x18, 0xcc, 0xce, 0xfe, 0x71, 0x0c, 0x4d, 0x46, 0xeb, 0xd4, 0x45, 0x75, 0x38, + 0x37, 0x04, 0x1d, 0x1e, 0xc9, 0x5a, 0x87, 0x47, 0x0f, 0xd5, 0xe1, 0xa7, 0x83, 0x9d, 0xf5, 0x7c, + 0x74, 0x1f, 0x4b, 0xdd, 0x5d, 0xc7, 0x35, 0x3a, 0xc3, 0x9b, 0x3e, 0x8d, 0x42, 0xf8, 0x89, 0x41, + 0x7e, 0x98, 0x62, 0x54, 0x9d, 0x91, 0x23, 0x60, 0x88, 0xe3, 0xf7, 0x63, 0x2b, 0xfd, 0x6d, 0x14, + 0xbd, 0x82, 0x26, 0x99, 0x90, 0x35, 0xc3, 0xa0, 0x4b, 0xe3, 0xd5, 0xa6, 0x38, 0xe4, 0x2e, 0xf7, + 0xd8, 0x36, 0x55, 0xe8, 0x32, 0xc4, 0xb0, 0xa3, 0x96, 0x59, 0xce, 0xc6, 0x32, 0x37, 0x8f, 0x69, + 0x99, 0xe7, 0xd1, 0x68, 0xd3, 0xda, 0x67, 0x5a, 0x5d, 0x0a, 0xb7, 0x55, 0x96, 0xd7, 0x36, 0x81, + 0xb6, 0x2b, 0xf6, 0x56, 0x39, 0x25, 0x7b, 0x1b, 0x7f, 0x98, 0xbd, 0xb1, 0xb8, 0x86, 0x7f, 0x82, + 0x8a, 0x5f, 0xe8, 0x99, 0xe8, 0x3f, 0xae, 0x51, 0xba, 0x43, 0x84, 0xd8, 0x60, 0xc6, 0xfc, 0x25, + 0x54, 0x0a, 0x18, 0xd1, 0x81, 0x96, 0xfd, 0xc2, 0x81, 0xa6, 0x26, 0xc4, 0x88, 0x2c, 0xa2, 0xb2, + 0xd3, 0x21, 0x91, 0xef, 0x47, 0xca, 0x18, 0xf8, 0x46, 0x00, 0x80, 0x10, 0x87, 0x5a, 0x11, 0xe7, + 0x1a, 0xdb, 0x0d, 0x7e, 0x8d, 0x36, 0x0a, 0x21, 0xe6, 0xbf, 0x9c, 0x43, 0xc1, 0x47, 0x99, 0xf0, + 0x32, 0x2a, 0x74, 0x1c, 0xd7, 0xe7, 0xbb, 0x70, 0x95, 0xcb, 0x73, 0xe9, 0xe3, 0xc3, 0xaf, 0x27, + 0x38, 0xae, 0x1f, 0x52, 0xa4, 0xbf, 0x3c, 0xe0, 0x9d, 0xa9, 0x9c, 0x62, 0xd5, 0xb6, 0xda, 0x88, + 0xcb, 0xb9, 0x14, 0x00, 0x20, 0xc4, 0x99, 0xff, 0xaf, 0x3c, 0x9a, 0x8e, 0x97, 0x2e, 0xc4, 0x6f, + 0xa3, 0x09, 0xcf, 0x6c, 0xd9, 0xa6, 0xdd, 0x12, 0xb1, 0x68, 0xae, 0xef, 0xcb, 0xd3, 0x9a, 0xda, + 0x1f, 0xa2, 0xe4, 0x32, 0x3b, 0x6e, 0xa7, 0x84, 0x38, 0xa3, 0x27, 0x17, 0xe2, 0xbc, 0x97, 0xac, + 0xd2, 0xf3, 0x56, 0xc6, 0xc5, 0x23, 0x7f, 0xb1, 0xcb, 0xf4, 0xfc, 0xbc, 0x80, 0xce, 0xa5, 0x17, + 0xa7, 0x3c, 0xa5, 0xa0, 0x35, 0xbc, 0x87, 0x3a, 0xd2, 0xf3, 0x1e, 0x6a, 0x38, 0xce, 0xa3, 0x19, + 0x15, 0x9b, 0x94, 0x03, 0x70, 0xb8, 0xab, 0x95, 0xe1, 0x74, 0xfe, 0xa1, 0xe1, 0xf4, 0x25, 0x54, + 0x14, 0x1f, 0x26, 0x88, 0x85, 0xa9, 0x75, 0xfe, 0xd9, 0x00, 0x01, 0x55, 0x42, 0x81, 0xe2, 0xa1, + 0xa1, 0x00, 0x0d, 0x6d, 0x82, 0xad, 0xca, 0xfe, 0xee, 0xa2, 0xf1, 0xd0, 0x26, 0xe8, 0x0b, 0x21, + 0x19, 0x56, 0x0a, 0xa1, 0x63, 0xde, 0x84, 0x35, 0x31, 0x2b, 0x87, 0xa5, 0x10, 0x1a, 0xab, 0x37, + 0x61, 0x0d, 0x04, 0x34, 0x9a, 0x35, 0x2e, 0x67, 0x92, 0x35, 0x4e, 0xd7, 0xb9, 0xa3, 0xdb, 0xda, + 0x60, 0x5a, 0x6f, 0xa0, 0x99, 0xc4, 0x3b, 0x3f, 0x72, 0x2a, 0xec, 0x12, 0x2a, 0x7a, 0xdd, 0x1d, + 0x8a, 0x17, 0xab, 0x51, 0xa5, 0xb1, 0x56, 0x10, 0xd0, 0xf9, 0x6f, 0xe5, 0x29, 0x97, 0x58, 0x19, + 0xd3, 0x53, 0xb2, 0xaa, 0x97, 0xd1, 0x04, 0x4f, 0x46, 0xbd, 0xae, 0x14, 0x38, 0x29, 0x29, 0x7b, + 0x11, 0x2a, 0x10, 0xa2, 0xb8, 0x78, 0x95, 0xa9, 0x49, 0xdf, 0xcb, 0x42, 0x24, 0x34, 0x89, 0x4e, + 0xdc, 0x82, 0x00, 0x7e, 0x01, 0x55, 0xd8, 0x43, 0xf0, 0x21, 0x17, 0x09, 0x5c, 0x76, 0x53, 0xf8, + 0x4a, 0xd8, 0x0c, 0x2a, 0x4e, 0xf4, 0x14, 0x42, 0x21, 0x93, 0x53, 0x08, 0x89, 0xb7, 0x72, 0x52, + 0x7a, 0xf7, 0x8d, 0x12, 0x92, 0x9f, 0x9a, 0xc4, 0x46, 0xe2, 0x83, 0x9f, 0x9f, 0xea, 0x7b, 0x9f, + 0x27, 0x10, 0x85, 0x67, 0xb2, 0x52, 0xa6, 0xa4, 0x57, 0x11, 0x16, 0x5f, 0x98, 0x14, 0x41, 0xb5, + 0x52, 0xb0, 0x4a, 0x6e, 0x68, 0x69, 0x09, 0x0c, 0x48, 0xe9, 0x85, 0x5f, 0x65, 0x9f, 0xb7, 0xf5, + 0x75, 0xd3, 0x96, 0x9e, 0xf7, 0x7c, 0x8f, 0x0b, 0xa4, 0x1c, 0x49, 0x7e, 0xa8, 0x96, 0xff, 0x84, + 0xb0, 0x3b, 0xbe, 0x82, 0xc6, 0x6e, 0x3b, 0x56, 0xb7, 0x2d, 0xb2, 0xf8, 0x95, 0xcb, 0xb3, 0x69, + 0x94, 0x5e, 0x63, 0x28, 0xca, 0x85, 0x27, 0xde, 0x05, 0x82, 0xbe, 0x98, 0xa0, 0x29, 0x76, 0x12, + 0xc8, 0xf4, 0x0f, 0x84, 0x01, 0x88, 0xa9, 0xf7, 0x52, 0x1a, 0xb9, 0x86, 0xd3, 0xd4, 0xa2, 0xd8, + 0xfc, 0x50, 0x48, 0xac, 0x11, 0xe2, 0x34, 0xf1, 0x0a, 0x2a, 0xe9, 0x3b, 0x3b, 0xa6, 0x6d, 0xfa, + 0x07, 0x22, 0x67, 0xf7, 0x54, 0x1a, 0xfd, 0x9a, 0xc0, 0x11, 0x95, 0x70, 0xc4, 0x2f, 0x90, 0x7d, + 0xf1, 0x4d, 0x54, 0xf1, 0x1d, 0x4b, 0xc4, 0xa5, 0x9e, 0x48, 0x35, 0x5c, 0x48, 0x23, 0xb5, 0x25, + 0xd1, 0xc2, 0x9d, 0xd4, 0xb0, 0xcd, 0x03, 0x95, 0x0e, 0xfe, 0x9d, 0x1c, 0x1a, 0xb7, 0x9d, 0x26, + 0x09, 0x4c, 0x4f, 0xec, 0xec, 0xbd, 0x91, 0xd1, 0x27, 0x52, 0x17, 0x36, 0x14, 0xda, 0xdc, 0x42, + 0x64, 0x85, 0x14, 0x15, 0x04, 0x11, 0x21, 0xb0, 0x8d, 0xa6, 0xcd, 0xb6, 0xde, 0x22, 0x8d, 0xae, + 0x25, 0x4e, 0x32, 0x7a, 0x62, 0xf2, 0x48, 0xbd, 0x76, 0xbc, 0xe6, 0x18, 0xba, 0xc5, 0x3f, 0x31, + 0x0c, 0x64, 0x87, 0xb8, 0xec, 0x4b, 0xc7, 0xf2, 0x50, 0xca, 0x6a, 0x8c, 0x12, 0x24, 0x68, 0xe3, + 0xab, 0x68, 0xa6, 0xe3, 0x9a, 0x0e, 0x7b, 0x6f, 0x96, 0xee, 0xf1, 0x4f, 0xcc, 0xa2, 0xe8, 0x5d, + 0xd3, 0x46, 0x1c, 0x01, 0x92, 0x7d, 0x78, 0x7d, 0x04, 0xde, 0xc8, 0xd6, 0x72, 0x85, 0xa0, 0x3e, + 0x02, 0x6f, 0x03, 0x09, 0x9d, 0xfd, 0x0c, 0x9a, 0x49, 0x8c, 0x4d, 0x5f, 0x0e, 0xe1, 0x0f, 0x72, + 0x28, 0x9e, 0x2f, 0xa7, 0xeb, 0x86, 0xa6, 0xe9, 0x32, 0x82, 0x07, 0xf1, 0x1c, 0xff, 0x72, 0x00, + 0x80, 0x10, 0x07, 0x5f, 0x44, 0xf9, 0x8e, 0xee, 0xef, 0xc6, 0x4f, 0x04, 0x52, 0x92, 0xc0, 0x20, + 0xf8, 0x32, 0x42, 0xf4, 0x2f, 0x90, 0x16, 0xb9, 0xdb, 0x11, 0xcb, 0x20, 0xb9, 0xfd, 0xd0, 0x90, + 0x10, 0x50, 0xb0, 0xe6, 0xff, 0xb5, 0x80, 0x26, 0xa3, 0x73, 0x4b, 0x64, 0xb1, 0x99, 0x7b, 0xe8, + 0x62, 0xf3, 0x12, 0x2a, 0xb6, 0x89, 0xbf, 0xeb, 0x34, 0xe3, 0xf3, 0xe4, 0x3a, 0x6b, 0x05, 0x01, + 0x65, 0xe2, 0x3b, 0xae, 0x2f, 0xc4, 0x0a, 0xc5, 0x77, 0x5c, 0x1f, 0x18, 0x24, 0x38, 0xd0, 0x98, + 0xef, 0x71, 0xa0, 0xb1, 0x85, 0xa6, 0x79, 0x09, 0xe5, 0x25, 0xe2, 0xfa, 0xc7, 0x3e, 0x88, 0xab, + 0xc5, 0x48, 0x40, 0x82, 0x28, 0x6e, 0x52, 0x6f, 0x43, 0xdb, 0xc2, 0x9d, 0x81, 0xfe, 0x6b, 0x0f, + 0x68, 0x51, 0x0a, 0x10, 0x27, 0x39, 0x8c, 0x6c, 0x64, 0xf4, 0x3d, 0x1e, 0xbb, 0xf6, 0x64, 0x29, + 0xab, 0xda, 0x93, 0x2f, 0xa1, 0xc9, 0xb6, 0x7e, 0x57, 0x1c, 0x4f, 0xd7, 0xcc, 0x7b, 0x44, 0x5c, + 0x8f, 0xc5, 0x0f, 0xee, 0xcf, 0x4d, 0xae, 0x47, 0x20, 0x10, 0xc3, 0x1c, 0x6c, 0x02, 0xfe, 0xc3, + 0x11, 0x84, 0x93, 0x9f, 0x86, 0xc1, 0x1f, 0xe4, 0xd0, 0xe4, 0x9d, 0xc8, 0x18, 0x0d, 0x27, 0x38, + 0x93, 0x69, 0xaf, 0x68, 0x3b, 0xc4, 0x98, 0x2b, 0x0b, 0x9c, 0x91, 0x93, 0x5b, 0x48, 0xd6, 0x8d, + 0x1f, 0xfc, 0xf4, 0xc2, 0x63, 0x3f, 0xfc, 0xe9, 0x85, 0xc7, 0x7e, 0xf4, 0xd3, 0x0b, 0x8f, 0x7d, + 0xf9, 0xc1, 0x85, 0xdc, 0x0f, 0x1e, 0x5c, 0xc8, 0xfd, 0xf0, 0xc1, 0x85, 0xdc, 0x8f, 0x1e, 0x5c, + 0xc8, 0xfd, 0xe4, 0xc1, 0x85, 0xdc, 0xb7, 0xfe, 0xe3, 0xc2, 0x63, 0x9f, 0xfd, 0x74, 0x28, 0xca, + 0x62, 0x20, 0x0a, 0xfb, 0xe7, 0x79, 0xce, 0x7a, 0xb1, 0xb3, 0xd7, 0x5a, 0xa4, 0xa2, 0x2c, 0x2a, + 0xa2, 0x2c, 0x06, 0xa2, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa1, 0xf8, 0x83, 0x21, 0x1d, + 0xa7, 0x00, 0x00, } func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) { @@ -5272,6 +5307,18 @@ func (m *GithubEventSource) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + { + size, err := m.PayloadEnrichment.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x9a if m.Filter != nil { { size, err := m.Filter.MarshalToSizedBuffer(dAtA[:i]) @@ -6377,6 +6424,37 @@ func (m *OwnedRepositories) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *PayloadEnrichmentFlags) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PayloadEnrichmentFlags) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PayloadEnrichmentFlags) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i-- + if m.FetchPROnPRCommentAdded { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + return len(dAtA) - i, nil +} + func (m *PubSubEventSource) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6921,6 +6999,11 @@ func (m *ResourceEventSource) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.Cluster) + copy(dAtA[i:], m.Cluster) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Cluster))) + i-- + dAtA[i] = 0x32 if len(m.Metadata) > 0 { keysForMetadata := make([]string, 0, len(m.Metadata)) for k := range m.Metadata { @@ -9267,6 +9350,8 @@ func (m *GithubEventSource) Size() (n int) { l = m.Filter.Size() n += 2 + l + sovGenerated(uint64(l)) } + l = m.PayloadEnrichment.Size() + n += 2 + l + sovGenerated(uint64(l)) return n } @@ -9603,6 +9688,16 @@ func (m *OwnedRepositories) Size() (n int) { return n } +func (m *PayloadEnrichmentFlags) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 2 + return n +} + func (m *PubSubEventSource) Size() (n int) { if m == nil { return 0 @@ -9814,6 +9909,8 @@ func (m *ResourceEventSource) Size() (n int) { n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } + l = len(m.Cluster) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11164,6 +11261,7 @@ func (this *GithubEventSource) String() string { `Organizations:` + fmt.Sprintf("%v", this.Organizations) + `,`, `GithubApp:` + strings.Replace(this.GithubApp.String(), "GithubAppCreds", "GithubAppCreds", 1) + `,`, `Filter:` + strings.Replace(this.Filter.String(), "EventSourceFilter", "EventSourceFilter", 1) + `,`, + `PayloadEnrichment:` + strings.Replace(strings.Replace(this.PayloadEnrichment.String(), "PayloadEnrichmentFlags", "PayloadEnrichmentFlags", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11382,6 +11480,16 @@ func (this *OwnedRepositories) String() string { }, "") return s } +func (this *PayloadEnrichmentFlags) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&PayloadEnrichmentFlags{`, + `FetchPROnPRCommentAdded:` + fmt.Sprintf("%v", this.FetchPROnPRCommentAdded) + `,`, + `}`, + }, "") + return s +} func (this *PubSubEventSource) String() string { if this == nil { return "nil" @@ -11531,6 +11639,7 @@ func (this *ResourceEventSource) String() string { `GroupVersionResource:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.GroupVersionResource), "GroupVersionResource", "v11.GroupVersionResource", 1), `&`, ``, 1) + `,`, `EventTypes:` + fmt.Sprintf("%v", this.EventTypes) + `,`, `Metadata:` + mapStringForMetadata + `,`, + `Cluster:` + fmt.Sprintf("%v", this.Cluster) + `,`, `}`, }, "") return s @@ -23490,6 +23599,39 @@ func (m *GithubEventSource) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 19: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PayloadEnrichment", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.PayloadEnrichment.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -26884,6 +27026,76 @@ func (m *OwnedRepositories) Unmarshal(dAtA []byte) error { } return nil } +func (m *PayloadEnrichmentFlags) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PayloadEnrichmentFlags: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PayloadEnrichmentFlags: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field FetchPROnPRCommentAdded", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.FetchPROnPRCommentAdded = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *PubSubEventSource) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -29169,6 +29381,38 @@ func (m *ResourceEventSource) Unmarshal(dAtA []byte) error { } m.Metadata[mapkey] = mapvalue iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Cluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Cluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:])