From ef50c8f42ac4cb1c884207f45ce1248275e8dd05 Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Mon, 30 Dec 2019 14:22:49 -0800 Subject: [PATCH 1/7] Move operator API to separate dir --- Makefile.core.mk | 30 + go.mod | 5 +- go.sum | 81 + {mesh => operator}/fixup_structs/main.go | 0 operator/v1alpha1/common.go | 76 + operator/v1alpha1/component.pb.go | 829 ++++++ .../v1alpha1/component.proto | 17 +- .../v1alpha1/istio.operator.v1alpha1.pb.html | 2627 +++++++++++++++++ operator/v1alpha1/kubernetes.pb.go | 1926 ++++++++++++ .../v1alpha1/kubernetes.proto | 4 +- operator/v1alpha1/operator.pb.go | 328 ++ .../v1alpha1/operator.proto | 11 +- .../operator/v1alpha1/component_pb2.py | 937 ++++++ .../operator/v1alpha1/kubernetes_pb2.py | 1938 ++++++++++++ .../operator/v1alpha1/operator_pb2.py | 383 +++ 15 files changed, 9176 insertions(+), 16 deletions(-) rename {mesh => operator}/fixup_structs/main.go (100%) create mode 100644 operator/v1alpha1/common.go create mode 100644 operator/v1alpha1/component.pb.go rename mesh/v1alpha1/component.proto.bak => operator/v1alpha1/component.proto (94%) create mode 100644 operator/v1alpha1/istio.operator.v1alpha1.pb.html create mode 100644 operator/v1alpha1/kubernetes.pb.go rename mesh/v1alpha1/kubernetes.proto.bak => operator/v1alpha1/kubernetes.proto (98%) create mode 100644 operator/v1alpha1/operator.pb.go rename mesh/v1alpha1/operator.proto.bak => operator/v1alpha1/operator.proto (95%) create mode 100644 python/istio_api/operator/v1alpha1/component_pb2.py create mode 100644 python/istio_api/operator/v1alpha1/kubernetes_pb2.py create mode 100644 python/istio_api/operator/v1alpha1/operator_pb2.py diff --git a/Makefile.core.mk b/Makefile.core.mk index fa7b5a5324d..a0f801aa6e6 100644 --- a/Makefile.core.mk +++ b/Makefile.core.mk @@ -93,6 +93,7 @@ gen: \ generate-type \ generate-mcp \ generate-mesh \ + generate-operator \ generate-mixer \ generate-networking \ generate-rbac \ @@ -194,6 +195,32 @@ generate-mesh: $(mesh_v1alpha1_pb_gos) $(mesh_v1alpha1_pb_doc) $(mesh_v1alpha1_p clean-mesh: @rm -fr $(mesh_v1alpha1_pb_gos) $(mesh_v1alpha1_pb_doc) $(mesh_v1alpha1_pb_pythons) +##################### +# operator/... +##################### + +operator_v1alpha1_path := operator/v1alpha1 +operator_v1alpha1_protos := $(wildcard $(operator_v1alpha1_path)/*.proto) +operator_v1alpha1_pb_gos := $(operator_v1alpha1_protos:.proto=.pb.go) +operator_v1alpha1_pb_pythons := $(patsubst $(operator_v1alpha1_path)/%.proto,$(python_output_path)/$(operator_v1alpha1_path)/%_pb2.py,$(operator_v1alpha1_protos)) +operator_v1alpha1_pb_doc := $(operator_v1alpha1_path)/istio.operator.v1alpha1.pb.html +operator_v1alpha1_openapi := $(operator_v1alpha1_path)/istio.operator.v1alpha1.gen.json + +$(operator_v1alpha1_pb_gos) $(operator_v1alpha1_pb_doc) $(operator_v1alpha1_pb_pythons): $(operator_v1alpha1_protos) + @$(protolock) status + @$(protoc) $(go_plugin) $(protoc_gen_docs_plugin)$(operator_v1alpha1_path) $(protoc_gen_python_plugin) $^ + @cp -r /tmp/istio.io/api/operator/* operator + @go run $(repo_dir)/operator/fixup_structs/main.go -f $(operator_v1alpha1_path)/component.pb.go + @go run $(repo_dir)/operator/fixup_structs/main.go -f $(operator_v1alpha1_path)/kubernetes.pb.go + @go run $(repo_dir)/operator/fixup_structs/main.go -f $(operator_v1alpha1_path)/operator.pb.go + @sed -i 's||\<\;key,value,effect\>\;|g' $(operator_v1alpha1_path)/istio.operator.v1alpha1.pb.html + @sed -i 's||\<\;operator\>\;|g' $(operator_v1alpha1_path)/istio.operator.v1alpha1.pb.html + +generate-operator: $(operator_v1alpha1_pb_gos) $(operator_v1alpha1_pb_doc) $(operator_v1alpha1_pb_pythons) + +clean-operator: + @rm -fr $(operator_v1alpha1_pb_gos) $(operator_v1alpha1_pb_doc) $(operator_v1alpha1_pb_pythons) + ##################### # policy/... ##################### @@ -435,6 +462,7 @@ all_protos := \ $(core_v1alpha1_protos) \ $(mcp_v1alpha1_protos) \ $(mesh_v1alpha1_protos) \ + $(operator_v1alpha1_protos) \ $(policy_v1beta1_protos) \ $(mixer_v1_protos) \ $(mixer_config_client_protos) \ @@ -449,6 +477,7 @@ all_openapi := \ $(core_v1alpha1_openapi) \ $(mcp_v1alpha1_openapi) \ $(mesh_v1alpha1_openapi) \ + $(operator_v1alpha1_openapi) \ $(policy_v1beta1_openapi) \ $(mixer_v1_openapi) \ $(mixer_config_client_openapi) \ @@ -486,6 +515,7 @@ clean: \ clean-core \ clean-mcp \ clean-mesh \ + clean-operator \ clean-mixer \ clean-networking \ clean-rbac \ diff --git a/go.mod b/go.mod index b77ca023225..a22e85fd17f 100644 --- a/go.mod +++ b/go.mod @@ -4,10 +4,7 @@ go 1.12 require ( github.com/gogo/protobuf v1.3.0 - github.com/golang/protobuf v1.3.2 // indirect - golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 // indirect - golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456 // indirect - golang.org/x/text v0.3.2 // indirect google.golang.org/grpc v1.23.1 istio.io/gogo-genproto v0.0.0-20190930162913-45029607206a + k8s.io/api v0.17.0 // indirect ) diff --git a/go.sum b/go.sum index 18d9214033e..ddd1bf13dea 100644 --- a/go.sum +++ b/go.sum @@ -1,35 +1,96 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= +github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= +github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= +github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= +github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= +github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= +github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= +github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= +github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= +github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.0 h1:G8O7TerXerS4F6sx9OV7/nRfJdnXgHZu/S/7F2SN+UE= github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 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/gofuzz v0.0.0-20161122191042-44d81051d367/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= +github.com/google/gofuzz v1.0.0 h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +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/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= +github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/net v0.0.0-20170114055629-f2499483f923/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-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 h1:rjwSpXsdiK0dV8/Naq3kAw9ymfAeJIyd0upUIElB+lI= golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/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-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456 h1:ng0gs1AKnRRuEMZoTLLlbOd+C17zUDepwGQBb/n+JVg= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= 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-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -40,6 +101,26 @@ google.golang.org/grpc v1.23.0 h1:AzbTB6ux+okLTzP8Ru1Xs41C303zdcfEht7MQnYJt5A= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.1 h1:q4XQuHFC6I28BKZpo6IYyb3mNO+l7lSOxRuYTCiDfXk= google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +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/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= +gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +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.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= istio.io/gogo-genproto v0.0.0-20190930162913-45029607206a h1:w7zILua2dnYo9CxImhpNW4NE/8ZxEoc/wfBfHrhUhrE= istio.io/gogo-genproto v0.0.0-20190930162913-45029607206a/go.mod h1:OzpAts7jljZceG4Vqi5/zXy/pOg1b209T3jb7Nv5wIs= +k8s.io/api v0.17.0 h1:H9d/lw+VkZKEVIUc8F3wgiQ+FUXTTr21M87jXLU7yqM= +k8s.io/api v0.17.0/go.mod h1:npsyOePkeP0CPwyGfXDHxvypiYMJxBWAMpQxCaJ4ZxI= +k8s.io/apimachinery v0.17.0 h1:xRBnuie9rXcPxUkDizUsGvPf1cnlZCFu210op7J7LJo= +k8s.io/apimachinery v0.17.0/go.mod h1:b9qmWdKlLuU9EBh+06BtLcSf/Mu89rWL33naRxs1uZg= +k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= +k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/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/kube-openapi v0.0.0-20191107075043-30be4d16710a/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= +sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/mesh/fixup_structs/main.go b/operator/fixup_structs/main.go similarity index 100% rename from mesh/fixup_structs/main.go rename to operator/fixup_structs/main.go diff --git a/operator/v1alpha1/common.go b/operator/v1alpha1/common.go new file mode 100644 index 00000000000..68fe9310492 --- /dev/null +++ b/operator/v1alpha1/common.go @@ -0,0 +1,76 @@ +// Copyright 2019 Istio Authors +// +// 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 v1alpha1 + +// TODO: create remaining enum types. + +import ( + "encoding/json" + + "github.com/gogo/protobuf/jsonpb" + protobuf "github.com/gogo/protobuf/types" + + "k8s.io/apimachinery/pkg/util/intstr" +) + +// define new type from k8s intstr to marshal/unmarshal jsonpb +type IntOrStringForPB struct { + intstr.IntOrString +} + +// MarshalJSONPB implements the jsonpb.JSONPBMarshaler interface. +func (intstrpb *IntOrStringForPB) MarshalJSONPB(_ *jsonpb.Marshaler) ([]byte, error) { + return intstrpb.MarshalJSON() +} + +// UnmarshalJSONPB implements the jsonpb.JSONPBUnmarshaler interface. +func (intstrpb *IntOrStringForPB) UnmarshalJSONPB(_ *jsonpb.Unmarshaler, value []byte) error { + return intstrpb.UnmarshalJSON(value) +} + +// FromInt creates an IntOrStringForPB object with an int32 value. +func FromInt(val int) IntOrStringForPB { + return IntOrStringForPB{intstr.FromInt(val)} +} + +// FromString creates an IntOrStringForPB object with a string value. +func FromString(val string) IntOrStringForPB { + return IntOrStringForPB{intstr.FromString(val)} +} + +// define new type from protobuf.BoolValue to marshal/unmarshal jsonpb +type BoolValueForPB struct { + protobuf.BoolValue +} + +// MarshalJSON implements the json.JSONMarshaler interface. +func (boolvaluepb *BoolValueForPB) MarshalJSON() ([]byte, error) { + return json.Marshal(boolvaluepb.GetValue()) +} + +// UnmarshalJSON implements the json.JSONUnmarshaler interface. +func (boolvaluepb *BoolValueForPB) UnmarshalJSON(value []byte) error { + return json.Unmarshal(value, &(boolvaluepb.Value)) +} + +// MarshalJSONPB implements the jsonpb.JSONPBMarshaler interface. +func (boolvaluepb *BoolValueForPB) MarshalJSONPB(_ *jsonpb.Marshaler) ([]byte, error) { + return boolvaluepb.MarshalJSON() +} + +// UnmarshalJSONPB implements the jsonpb.JSONPBUnmarshaler interface. +func (boolvaluepb *BoolValueForPB) UnmarshalJSONPB(_ *jsonpb.Unmarshaler, value []byte) error { + return boolvaluepb.UnmarshalJSON(value) +} diff --git a/operator/v1alpha1/component.pb.go b/operator/v1alpha1/component.pb.go new file mode 100644 index 00000000000..7226025bffa --- /dev/null +++ b/operator/v1alpha1/component.pb.go @@ -0,0 +1,829 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: operator/v1alpha1/component.proto + +package v1alpha1 + +import ( + fmt "fmt" + proto "github.com/golang/protobuf/proto" + any "github.com/golang/protobuf/ptypes/any" + v2beta1 "k8s.io/api/autoscaling/v2beta1" + math "math" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// IstioComponentSpec defines the desired installed state of Istio components. +type IstioComponentSetSpec struct { + Base *BaseComponentSpec `protobuf:"bytes,29,opt,name=base,proto3" json:"base,omitempty"` + Pilot *ComponentSpec `protobuf:"bytes,30,opt,name=pilot,proto3" json:"pilot,omitempty"` + Proxy *ComponentSpec `protobuf:"bytes,31,opt,name=proxy,proto3" json:"proxy,omitempty"` + SidecarInjector *ComponentSpec `protobuf:"bytes,32,opt,name=sidecar_injector,json=sidecarInjector,proto3" json:"sidecar_injector,omitempty"` + Policy *ComponentSpec `protobuf:"bytes,33,opt,name=policy,proto3" json:"policy,omitempty"` + Telemetry *ComponentSpec `protobuf:"bytes,34,opt,name=telemetry,proto3" json:"telemetry,omitempty"` + Citadel *ComponentSpec `protobuf:"bytes,35,opt,name=citadel,proto3" json:"citadel,omitempty"` + NodeAgent *ComponentSpec `protobuf:"bytes,36,opt,name=node_agent,json=nodeAgent,proto3" json:"node_agent,omitempty"` + Galley *ComponentSpec `protobuf:"bytes,37,opt,name=galley,proto3" json:"galley,omitempty"` + Cni *ComponentSpec `protobuf:"bytes,38,opt,name=cni,proto3" json:"cni,omitempty"` + CoreDNS *ComponentSpec `protobuf:"bytes,39,opt,name=core_dNS,json=coreDNS,proto3" json:"core_dNS,omitempty"` + IngressGateways []*GatewaySpec `protobuf:"bytes,40,rep,name=ingress_gateways,json=ingressGateways,proto3" json:"ingress_gateways,omitempty"` + EgressGateways []*GatewaySpec `protobuf:"bytes,41,rep,name=egress_gateways,json=egressGateways,proto3" json:"egress_gateways,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IstioComponentSetSpec) Reset() { *m = IstioComponentSetSpec{} } +func (m *IstioComponentSetSpec) String() string { return proto.CompactTextString(m) } +func (*IstioComponentSetSpec) ProtoMessage() {} +func (*IstioComponentSetSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{0} +} + +func (m *IstioComponentSetSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IstioComponentSetSpec.Unmarshal(m, b) +} +func (m *IstioComponentSetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IstioComponentSetSpec.Marshal(b, m, deterministic) +} +func (m *IstioComponentSetSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_IstioComponentSetSpec.Merge(m, src) +} +func (m *IstioComponentSetSpec) XXX_Size() int { + return xxx_messageInfo_IstioComponentSetSpec.Size(m) +} +func (m *IstioComponentSetSpec) XXX_DiscardUnknown() { + xxx_messageInfo_IstioComponentSetSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_IstioComponentSetSpec proto.InternalMessageInfo + +func (m *IstioComponentSetSpec) GetBase() *BaseComponentSpec { + if m != nil { + return m.Base + } + return nil +} + +func (m *IstioComponentSetSpec) GetPilot() *ComponentSpec { + if m != nil { + return m.Pilot + } + return nil +} + +func (m *IstioComponentSetSpec) GetProxy() *ComponentSpec { + if m != nil { + return m.Proxy + } + return nil +} + +func (m *IstioComponentSetSpec) GetSidecarInjector() *ComponentSpec { + if m != nil { + return m.SidecarInjector + } + return nil +} + +func (m *IstioComponentSetSpec) GetPolicy() *ComponentSpec { + if m != nil { + return m.Policy + } + return nil +} + +func (m *IstioComponentSetSpec) GetTelemetry() *ComponentSpec { + if m != nil { + return m.Telemetry + } + return nil +} + +func (m *IstioComponentSetSpec) GetCitadel() *ComponentSpec { + if m != nil { + return m.Citadel + } + return nil +} + +func (m *IstioComponentSetSpec) GetNodeAgent() *ComponentSpec { + if m != nil { + return m.NodeAgent + } + return nil +} + +func (m *IstioComponentSetSpec) GetGalley() *ComponentSpec { + if m != nil { + return m.Galley + } + return nil +} + +func (m *IstioComponentSetSpec) GetCni() *ComponentSpec { + if m != nil { + return m.Cni + } + return nil +} + +func (m *IstioComponentSetSpec) GetCoreDNS() *ComponentSpec { + if m != nil { + return m.CoreDNS + } + return nil +} + +func (m *IstioComponentSetSpec) GetIngressGateways() []*GatewaySpec { + if m != nil { + return m.IngressGateways + } + return nil +} + +func (m *IstioComponentSetSpec) GetEgressGateways() []*GatewaySpec { + if m != nil { + return m.EgressGateways + } + return nil +} + +// Configuration for base component. +type BaseComponentSpec struct { + // Selects whether this component is installed. + Enabled *BoolValueForPB `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BaseComponentSpec) Reset() { *m = BaseComponentSpec{} } +func (m *BaseComponentSpec) String() string { return proto.CompactTextString(m) } +func (*BaseComponentSpec) ProtoMessage() {} +func (*BaseComponentSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{1} +} + +func (m *BaseComponentSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BaseComponentSpec.Unmarshal(m, b) +} +func (m *BaseComponentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BaseComponentSpec.Marshal(b, m, deterministic) +} +func (m *BaseComponentSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_BaseComponentSpec.Merge(m, src) +} +func (m *BaseComponentSpec) XXX_Size() int { + return xxx_messageInfo_BaseComponentSpec.Size(m) +} +func (m *BaseComponentSpec) XXX_DiscardUnknown() { + xxx_messageInfo_BaseComponentSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_BaseComponentSpec proto.InternalMessageInfo + + +// Configuration for internal components. +type ComponentSpec struct { + // Selects whether this component is installed. + Enabled *BoolValueForPB `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"` + // Namespace for the component. + Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` + // Hub for the component (overrides top level hub setting). + Hub string `protobuf:"bytes,10,opt,name=hub,proto3" json:"hub,omitempty"` + // Tag for the component (overrides top level tag setting). + Tag string `protobuf:"bytes,11,opt,name=tag,proto3" json:"tag,omitempty"` + // Arbitrary install time configuration for the component. + Spec interface{} `protobuf:"bytes,30,opt,name=spec,proto3" json:"spec,omitempty"` + // Kubernetes resource spec. + K8S *KubernetesResourcesSpec `protobuf:"bytes,50,opt,name=k8s,proto3" json:"k8s,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ComponentSpec) Reset() { *m = ComponentSpec{} } +func (m *ComponentSpec) String() string { return proto.CompactTextString(m) } +func (*ComponentSpec) ProtoMessage() {} +func (*ComponentSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{2} +} + +func (m *ComponentSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ComponentSpec.Unmarshal(m, b) +} +func (m *ComponentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ComponentSpec.Marshal(b, m, deterministic) +} +func (m *ComponentSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_ComponentSpec.Merge(m, src) +} +func (m *ComponentSpec) XXX_Size() int { + return xxx_messageInfo_ComponentSpec.Size(m) +} +func (m *ComponentSpec) XXX_DiscardUnknown() { + xxx_messageInfo_ComponentSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_ComponentSpec proto.InternalMessageInfo + + +func (m *ComponentSpec) GetNamespace() string { + if m != nil { + return m.Namespace + } + return "" +} + +func (m *ComponentSpec) GetHub() string { + if m != nil { + return m.Hub + } + return "" +} + +func (m *ComponentSpec) GetTag() string { + if m != nil { + return m.Tag + } + return "" +} + + +func (m *ComponentSpec) GetK8S() *KubernetesResourcesSpec { + if m != nil { + return m.K8S + } + return nil +} + +// Configuration for external components. +type ExternalComponentSpec struct { + // Selects whether this component is installed. + Enabled *BoolValueForPB `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"` + // Namespace for the component. + Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` + // Arbitrary install time configuration for the component. + Spec interface{} `protobuf:"bytes,10,opt,name=spec,proto3" json:"spec,omitempty"` + // Chart path for addon components. + ChartPath string `protobuf:"bytes,30,opt,name=chart_path,json=chartPath,proto3" json:"chart_path,omitempty"` + // Optional schema to validate spec against. + Schema *any.Any `protobuf:"bytes,35,opt,name=schema,proto3" json:"schema,omitempty"` + // Kubernetes resource spec. + K8S *KubernetesResourcesSpec `protobuf:"bytes,50,opt,name=k8s,proto3" json:"k8s,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExternalComponentSpec) Reset() { *m = ExternalComponentSpec{} } +func (m *ExternalComponentSpec) String() string { return proto.CompactTextString(m) } +func (*ExternalComponentSpec) ProtoMessage() {} +func (*ExternalComponentSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{3} +} + +func (m *ExternalComponentSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExternalComponentSpec.Unmarshal(m, b) +} +func (m *ExternalComponentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExternalComponentSpec.Marshal(b, m, deterministic) +} +func (m *ExternalComponentSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExternalComponentSpec.Merge(m, src) +} +func (m *ExternalComponentSpec) XXX_Size() int { + return xxx_messageInfo_ExternalComponentSpec.Size(m) +} +func (m *ExternalComponentSpec) XXX_DiscardUnknown() { + xxx_messageInfo_ExternalComponentSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_ExternalComponentSpec proto.InternalMessageInfo + + +func (m *ExternalComponentSpec) GetNamespace() string { + if m != nil { + return m.Namespace + } + return "" +} + + +func (m *ExternalComponentSpec) GetChartPath() string { + if m != nil { + return m.ChartPath + } + return "" +} + +func (m *ExternalComponentSpec) GetSchema() *any.Any { + if m != nil { + return m.Schema + } + return nil +} + +func (m *ExternalComponentSpec) GetK8S() *KubernetesResourcesSpec { + if m != nil { + return m.K8S + } + return nil +} + +// Configuration for gateways. +type GatewaySpec struct { + // Namespace for the gateway. + Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` + // Name for the gateway. + Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` + // Labels for the gateway. + Label map[string]string `protobuf:"bytes,4,rep,name=label,proto3" json:"label,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Hub for the component (overrides top level hub setting). + Hub string `protobuf:"bytes,10,opt,name=hub,proto3" json:"hub,omitempty"` + // Tag for the component (overrides top level tag setting). + Tag string `protobuf:"bytes,11,opt,name=tag,proto3" json:"tag,omitempty"` + // Kubernetes resource spec. + K8S *KubernetesResourcesSpec `protobuf:"bytes,50,opt,name=k8s,proto3" json:"k8s,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GatewaySpec) Reset() { *m = GatewaySpec{} } +func (m *GatewaySpec) String() string { return proto.CompactTextString(m) } +func (*GatewaySpec) ProtoMessage() {} +func (*GatewaySpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{4} +} + +func (m *GatewaySpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GatewaySpec.Unmarshal(m, b) +} +func (m *GatewaySpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GatewaySpec.Marshal(b, m, deterministic) +} +func (m *GatewaySpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_GatewaySpec.Merge(m, src) +} +func (m *GatewaySpec) XXX_Size() int { + return xxx_messageInfo_GatewaySpec.Size(m) +} +func (m *GatewaySpec) XXX_DiscardUnknown() { + xxx_messageInfo_GatewaySpec.DiscardUnknown(m) +} + +var xxx_messageInfo_GatewaySpec proto.InternalMessageInfo + +func (m *GatewaySpec) GetNamespace() string { + if m != nil { + return m.Namespace + } + return "" +} + +func (m *GatewaySpec) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *GatewaySpec) GetLabel() map[string]string { + if m != nil { + return m.Label + } + return nil +} + +func (m *GatewaySpec) GetHub() string { + if m != nil { + return m.Hub + } + return "" +} + +func (m *GatewaySpec) GetTag() string { + if m != nil { + return m.Tag + } + return "" +} + +func (m *GatewaySpec) GetK8S() *KubernetesResourcesSpec { + if m != nil { + return m.K8S + } + return nil +} + +// KubernetesResourcesConfig is a common set of k8s resource configs for components. +type KubernetesResourcesSpec struct { + // k8s affinity. + // https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + Affinity *Affinity `protobuf:"bytes,1,opt,name=affinity,proto3" json:"affinity,omitempty"` + // Deployment environment variables. + // https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/ + Env []*EnvVar `protobuf:"bytes,2,rep,name=env,proto3" json:"env,omitempty"` + // k8s HorizontalPodAutoscaler settings. + // https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ + HpaSpec *v2beta1.HorizontalPodAutoscalerSpec `protobuf:"bytes,3,opt,name=hpa_spec,json=hpaSpec,proto3" json:"hpa_spec,omitempty"` + // k8s imagePullPolicy. + // https://kubernetes.io/docs/concepts/containers/images/ + ImagePullPolicy string `protobuf:"bytes,4,opt,name=image_pull_policy,json=imagePullPolicy,proto3" json:"image_pull_policy,omitempty"` + // k8s nodeSelector. + // https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector + NodeSelector map[string]string `protobuf:"bytes,5,rep,name=node_selector,json=nodeSelector,proto3" json:"node_selector,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // k8s PodDisruptionBudget settings. + // https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#how-disruption-budgets-work + PodDisruptionBudget *PodDisruptionBudgetSpec `protobuf:"bytes,6,opt,name=pod_disruption_budget,json=podDisruptionBudget,proto3" json:"pod_disruption_budget,omitempty"` + // k8s pod annotations. + // https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + PodAnnotations map[string]string `protobuf:"bytes,7,rep,name=pod_annotations,json=podAnnotations,proto3" json:"pod_annotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // k8s priority_class_name. Default for all resources unless overridden. + // https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + PriorityClassName string `protobuf:"bytes,8,opt,name=priority_class_name,json=priorityClassName,proto3" json:"priority_class_name,omitempty"` + // k8s readinessProbe settings. + // https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/ + // k8s.io.api.core.v1.Probe readiness_probe = 9; + ReadinessProbe *ReadinessProbe `protobuf:"bytes,9,opt,name=readiness_probe,json=readinessProbe,proto3" json:"readiness_probe,omitempty"` + // k8s Deployment replicas setting. + // https://kubernetes.io/docs/concepts/workloads/controllers/deployment/ + ReplicaCount uint32 `protobuf:"varint,10,opt,name=replica_count,json=replicaCount,proto3" json:"replica_count,omitempty"` + // k8s resources settings. + // https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container + Resources *Resources `protobuf:"bytes,11,opt,name=resources,proto3" json:"resources,omitempty"` + // k8s Service settings. + // https://kubernetes.io/docs/concepts/services-networking/service/ + Service *ServiceSpec `protobuf:"bytes,12,opt,name=service,proto3" json:"service,omitempty"` + // k8s deployment strategy. + // https://kubernetes.io/docs/concepts/workloads/controllers/deployment/ + Strategy *DeploymentStrategy `protobuf:"bytes,13,opt,name=strategy,proto3" json:"strategy,omitempty"` + // k8s toleration + // https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + Tolerations *Toleration `protobuf:"bytes,14,opt,name=tolerations,proto3" json:"tolerations,omitempty"` + // Overlays for k8s resources in rendered manifests. + Overlays []*K8SObjectOverlay `protobuf:"bytes,100,rep,name=overlays,proto3" json:"overlays,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *KubernetesResourcesSpec) Reset() { *m = KubernetesResourcesSpec{} } +func (m *KubernetesResourcesSpec) String() string { return proto.CompactTextString(m) } +func (*KubernetesResourcesSpec) ProtoMessage() {} +func (*KubernetesResourcesSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{5} +} + +func (m *KubernetesResourcesSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_KubernetesResourcesSpec.Unmarshal(m, b) +} +func (m *KubernetesResourcesSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_KubernetesResourcesSpec.Marshal(b, m, deterministic) +} +func (m *KubernetesResourcesSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_KubernetesResourcesSpec.Merge(m, src) +} +func (m *KubernetesResourcesSpec) XXX_Size() int { + return xxx_messageInfo_KubernetesResourcesSpec.Size(m) +} +func (m *KubernetesResourcesSpec) XXX_DiscardUnknown() { + xxx_messageInfo_KubernetesResourcesSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_KubernetesResourcesSpec proto.InternalMessageInfo + +func (m *KubernetesResourcesSpec) GetAffinity() *Affinity { + if m != nil { + return m.Affinity + } + return nil +} + +func (m *KubernetesResourcesSpec) GetEnv() []*EnvVar { + if m != nil { + return m.Env + } + return nil +} + +func (m *KubernetesResourcesSpec) GetHpaSpec() *v2beta1.HorizontalPodAutoscalerSpec { + if m != nil { + return m.HpaSpec + } + return nil +} + +func (m *KubernetesResourcesSpec) GetImagePullPolicy() string { + if m != nil { + return m.ImagePullPolicy + } + return "" +} + +func (m *KubernetesResourcesSpec) GetNodeSelector() map[string]string { + if m != nil { + return m.NodeSelector + } + return nil +} + +func (m *KubernetesResourcesSpec) GetPodDisruptionBudget() *PodDisruptionBudgetSpec { + if m != nil { + return m.PodDisruptionBudget + } + return nil +} + +func (m *KubernetesResourcesSpec) GetPodAnnotations() map[string]string { + if m != nil { + return m.PodAnnotations + } + return nil +} + +func (m *KubernetesResourcesSpec) GetPriorityClassName() string { + if m != nil { + return m.PriorityClassName + } + return "" +} + +func (m *KubernetesResourcesSpec) GetReadinessProbe() *ReadinessProbe { + if m != nil { + return m.ReadinessProbe + } + return nil +} + +func (m *KubernetesResourcesSpec) GetReplicaCount() uint32 { + if m != nil { + return m.ReplicaCount + } + return 0 +} + +func (m *KubernetesResourcesSpec) GetResources() *Resources { + if m != nil { + return m.Resources + } + return nil +} + +func (m *KubernetesResourcesSpec) GetService() *ServiceSpec { + if m != nil { + return m.Service + } + return nil +} + +func (m *KubernetesResourcesSpec) GetStrategy() *DeploymentStrategy { + if m != nil { + return m.Strategy + } + return nil +} + +func (m *KubernetesResourcesSpec) GetTolerations() *Toleration { + if m != nil { + return m.Tolerations + } + return nil +} + +func (m *KubernetesResourcesSpec) GetOverlays() []*K8SObjectOverlay { + if m != nil { + return m.Overlays + } + return nil +} + +// Patch for an existing k8s resource. +type K8SObjectOverlay struct { + // Resource API version. + ApiVersion string `protobuf:"bytes,1,opt,name=api_version,json=apiVersion,proto3" json:"api_version,omitempty"` + // Resource kind. + Kind string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"` + // Name of resource. + // Namespace is always the component namespace. + Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` + // List of patches to apply to resource. + Patches []*K8SObjectOverlay_PathValue `protobuf:"bytes,4,rep,name=patches,proto3" json:"patches,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *K8SObjectOverlay) Reset() { *m = K8SObjectOverlay{} } +func (m *K8SObjectOverlay) String() string { return proto.CompactTextString(m) } +func (*K8SObjectOverlay) ProtoMessage() {} +func (*K8SObjectOverlay) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{6} +} + +func (m *K8SObjectOverlay) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_K8SObjectOverlay.Unmarshal(m, b) +} +func (m *K8SObjectOverlay) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_K8SObjectOverlay.Marshal(b, m, deterministic) +} +func (m *K8SObjectOverlay) XXX_Merge(src proto.Message) { + xxx_messageInfo_K8SObjectOverlay.Merge(m, src) +} +func (m *K8SObjectOverlay) XXX_Size() int { + return xxx_messageInfo_K8SObjectOverlay.Size(m) +} +func (m *K8SObjectOverlay) XXX_DiscardUnknown() { + xxx_messageInfo_K8SObjectOverlay.DiscardUnknown(m) +} + +var xxx_messageInfo_K8SObjectOverlay proto.InternalMessageInfo + +func (m *K8SObjectOverlay) GetApiVersion() string { + if m != nil { + return m.ApiVersion + } + return "" +} + +func (m *K8SObjectOverlay) GetKind() string { + if m != nil { + return m.Kind + } + return "" +} + +func (m *K8SObjectOverlay) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *K8SObjectOverlay) GetPatches() []*K8SObjectOverlay_PathValue { + if m != nil { + return m.Patches + } + return nil +} + +type K8SObjectOverlay_PathValue struct { + // Path of the form a.b:c.e.:f + // Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. + // All path intermediate nodes must exist. + Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` + // Value to add, delete or replace. + // For add, the path should be a new leaf. + // For delete, value should be unset. + // For replace, path should reference an existing node. + // All values are strings but are converted into appropriate type based on schema. + Value interface{} `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *K8SObjectOverlay_PathValue) Reset() { *m = K8SObjectOverlay_PathValue{} } +func (m *K8SObjectOverlay_PathValue) String() string { return proto.CompactTextString(m) } +func (*K8SObjectOverlay_PathValue) ProtoMessage() {} +func (*K8SObjectOverlay_PathValue) Descriptor() ([]byte, []int) { + return fileDescriptor_6ed34a579e9b43a2, []int{6, 0} +} + +func (m *K8SObjectOverlay_PathValue) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_K8SObjectOverlay_PathValue.Unmarshal(m, b) +} +func (m *K8SObjectOverlay_PathValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_K8SObjectOverlay_PathValue.Marshal(b, m, deterministic) +} +func (m *K8SObjectOverlay_PathValue) XXX_Merge(src proto.Message) { + xxx_messageInfo_K8SObjectOverlay_PathValue.Merge(m, src) +} +func (m *K8SObjectOverlay_PathValue) XXX_Size() int { + return xxx_messageInfo_K8SObjectOverlay_PathValue.Size(m) +} +func (m *K8SObjectOverlay_PathValue) XXX_DiscardUnknown() { + xxx_messageInfo_K8SObjectOverlay_PathValue.DiscardUnknown(m) +} + +var xxx_messageInfo_K8SObjectOverlay_PathValue proto.InternalMessageInfo + +func (m *K8SObjectOverlay_PathValue) GetPath() string { + if m != nil { + return m.Path + } + return "" +} + + + + + +func init() { + proto.RegisterType((*IstioComponentSetSpec)(nil), "istio.operator.v1alpha1.IstioComponentSetSpec") + proto.RegisterType((*BaseComponentSpec)(nil), "istio.operator.v1alpha1.BaseComponentSpec") + proto.RegisterType((*ComponentSpec)(nil), "istio.operator.v1alpha1.ComponentSpec") + proto.RegisterType((*ExternalComponentSpec)(nil), "istio.operator.v1alpha1.ExternalComponentSpec") + proto.RegisterType((*GatewaySpec)(nil), "istio.operator.v1alpha1.GatewaySpec") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.GatewaySpec.LabelEntry") + proto.RegisterType((*KubernetesResourcesSpec)(nil), "istio.operator.v1alpha1.KubernetesResourcesSpec") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry") + proto.RegisterType((*K8SObjectOverlay)(nil), "istio.operator.v1alpha1.K8sObjectOverlay") + proto.RegisterType((*K8SObjectOverlay_PathValue)(nil), "istio.operator.v1alpha1.K8sObjectOverlay.PathValue") +} + +func init() { proto.RegisterFile("operator/v1alpha1/component.proto", fileDescriptor_6ed34a579e9b43a2) } + +var fileDescriptor_6ed34a579e9b43a2 = []byte{ + // 1234 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0xdd, 0x72, 0xdb, 0xb6, + 0x12, 0xc7, 0xc7, 0x96, 0xbf, 0xb4, 0x8a, 0xbf, 0x90, 0xe4, 0x84, 0xc7, 0x73, 0x92, 0x38, 0x4a, + 0x4e, 0xe2, 0xa4, 0x1d, 0xaa, 0x76, 0x6e, 0x34, 0x69, 0x9b, 0xc6, 0x8a, 0xd5, 0x34, 0xd3, 0xc6, + 0x51, 0xa9, 0x8e, 0x2f, 0x32, 0xd3, 0xe1, 0x40, 0xe4, 0x9a, 0x42, 0x4d, 0x01, 0x18, 0x00, 0x52, + 0xc3, 0xbe, 0x41, 0x6f, 0x7b, 0xd5, 0x47, 0xe8, 0xab, 0xf4, 0xb2, 0x6f, 0xd4, 0x01, 0x48, 0x49, + 0x76, 0x1c, 0xd5, 0x66, 0x27, 0x9d, 0xde, 0x51, 0xcb, 0xfd, 0xfd, 0xb1, 0xbb, 0x5a, 0x60, 0x41, + 0xb8, 0x23, 0x24, 0x2a, 0x6a, 0x84, 0x6a, 0x8c, 0x76, 0x69, 0x2a, 0xfb, 0x74, 0xb7, 0x11, 0x89, + 0x81, 0x14, 0x1c, 0xb9, 0xf1, 0xa5, 0x12, 0x46, 0x90, 0x1b, 0x4c, 0x1b, 0x26, 0xfc, 0xb1, 0xa3, + 0x3f, 0x76, 0xdc, 0xfa, 0x6f, 0x22, 0x44, 0x92, 0x62, 0xc3, 0xb9, 0xf5, 0x86, 0xc7, 0x0d, 0xca, + 0xb3, 0x9c, 0xd9, 0xf2, 0x4f, 0x9a, 0xda, 0x67, 0xa2, 0x41, 0x25, 0x6b, 0xd0, 0xa1, 0x11, 0x3a, + 0xa2, 0x29, 0xe3, 0x49, 0x63, 0xb4, 0xd7, 0x43, 0x43, 0x77, 0x1b, 0x09, 0x72, 0xab, 0x86, 0x71, + 0xe1, 0x5f, 0x3f, 0x1f, 0xc6, 0xc9, 0xb0, 0x87, 0x8a, 0xa3, 0x41, 0x9d, 0xfb, 0xd4, 0x7f, 0x59, + 0x86, 0xeb, 0x2f, 0x6d, 0x28, 0xcf, 0xc7, 0x01, 0x76, 0xd1, 0x74, 0x25, 0x46, 0xe4, 0x29, 0x2c, + 0xf4, 0xa8, 0x46, 0xef, 0xe6, 0xf6, 0xdc, 0x4e, 0x6d, 0xef, 0x91, 0x3f, 0x23, 0x60, 0xbf, 0x45, + 0x35, 0x4e, 0x61, 0x89, 0x51, 0xe0, 0x38, 0xf2, 0x19, 0x2c, 0x4a, 0x96, 0x0a, 0xe3, 0xdd, 0x72, + 0x02, 0xf7, 0x67, 0x0a, 0x9c, 0x85, 0x73, 0xc8, 0xd1, 0x4a, 0xbc, 0xcd, 0xbc, 0xdb, 0x25, 0x69, + 0x0b, 0x91, 0x6f, 0x61, 0x43, 0xb3, 0x18, 0x23, 0xaa, 0x42, 0xc6, 0x7f, 0xc0, 0xc8, 0x08, 0xe5, + 0x6d, 0x97, 0x12, 0x5a, 0x2f, 0xf8, 0x97, 0x05, 0x4e, 0x9e, 0xc2, 0x92, 0x14, 0x29, 0x8b, 0x32, + 0xef, 0x4e, 0x29, 0xa1, 0x82, 0x22, 0x07, 0x50, 0x35, 0x98, 0xe2, 0x00, 0x8d, 0xca, 0xbc, 0x7a, + 0x29, 0x89, 0x29, 0x48, 0x9e, 0xc1, 0x72, 0xc4, 0x0c, 0x8d, 0x31, 0xf5, 0xee, 0x96, 0xd2, 0x18, + 0x63, 0xa4, 0x0d, 0xc0, 0x45, 0x8c, 0x21, 0x4d, 0x90, 0x1b, 0xef, 0x5e, 0xb9, 0x40, 0x2c, 0xb9, + 0x6f, 0x41, 0x5b, 0x8e, 0x84, 0xa6, 0x29, 0x66, 0xde, 0xff, 0xcb, 0x95, 0x23, 0xa7, 0x48, 0x13, + 0x2a, 0x11, 0x67, 0xde, 0xfd, 0x52, 0xb0, 0x45, 0xc8, 0x3e, 0xac, 0x44, 0x42, 0x61, 0x18, 0x1f, + 0x76, 0xbd, 0x07, 0x25, 0x6b, 0x20, 0x14, 0x1e, 0x1c, 0x76, 0xc9, 0x6b, 0xd8, 0x60, 0x3c, 0x51, + 0xa8, 0x75, 0x98, 0x50, 0x83, 0x3f, 0xd2, 0x4c, 0x7b, 0x3b, 0xdb, 0x95, 0x9d, 0xda, 0xde, 0xbd, + 0x99, 0x52, 0x2f, 0x72, 0xc7, 0xbc, 0x39, 0x0a, 0xba, 0xb0, 0x69, 0xf2, 0x0a, 0xd6, 0xf1, 0x1d, + 0xbd, 0x87, 0x25, 0xf4, 0xd6, 0xf0, 0x8c, 0x5c, 0xfd, 0x0d, 0x6c, 0x9e, 0xdb, 0x55, 0xa4, 0x0d, + 0xcb, 0xc8, 0x69, 0x2f, 0xc5, 0xd8, 0x9b, 0x73, 0x69, 0x7f, 0x34, 0x53, 0xfb, 0xbb, 0x4c, 0x62, + 0x4b, 0x88, 0xf4, 0x88, 0xa6, 0x43, 0xfc, 0x52, 0xa8, 0x4e, 0x2b, 0x18, 0xb3, 0xf5, 0x5f, 0xe7, + 0x61, 0xf5, 0x9f, 0x10, 0x26, 0xff, 0x83, 0x2a, 0xa7, 0x03, 0xd4, 0x92, 0x46, 0xe8, 0xcd, 0x6f, + 0xcf, 0xed, 0x54, 0x83, 0xa9, 0x81, 0x6c, 0x40, 0xa5, 0x3f, 0xec, 0x79, 0xe0, 0xec, 0xf6, 0xd1, + 0x5a, 0x0c, 0x4d, 0xbc, 0x5a, 0x6e, 0x31, 0x34, 0x21, 0x4f, 0x60, 0x41, 0x4b, 0x8c, 0x2e, 0x3c, + 0x30, 0x6c, 0x14, 0x2f, 0xb9, 0x41, 0x75, 0x4c, 0x23, 0x0c, 0x1c, 0x43, 0x5a, 0x50, 0x39, 0x69, + 0x6a, 0x6f, 0xcf, 0xa1, 0x9f, 0xcc, 0x44, 0xbf, 0x9e, 0x9c, 0x7f, 0x01, 0x6a, 0x31, 0x54, 0x11, + 0xea, 0xbc, 0xb3, 0x4e, 0x9a, 0xba, 0xfe, 0xfb, 0x3c, 0x5c, 0x6f, 0xbf, 0x35, 0xa8, 0x38, 0x4d, + 0xff, 0x85, 0x12, 0x8d, 0xd3, 0x87, 0xbf, 0x91, 0xfe, 0x4d, 0x80, 0xa8, 0x4f, 0x95, 0x09, 0x25, + 0x35, 0x7d, 0x57, 0xc0, 0x6a, 0x50, 0x75, 0x96, 0x0e, 0x35, 0x7d, 0xf2, 0x31, 0x2c, 0xe9, 0xa8, + 0x8f, 0x03, 0x5a, 0x9c, 0x1a, 0xd7, 0xfc, 0x7c, 0xca, 0xf8, 0xe3, 0x29, 0xe3, 0xef, 0xf3, 0x2c, + 0x28, 0x7c, 0x3e, 0x48, 0x2d, 0x7f, 0x9b, 0x87, 0xda, 0xa9, 0x16, 0xbf, 0x20, 0x75, 0x02, 0x0b, + 0xf6, 0x87, 0x57, 0x71, 0x2f, 0xdc, 0x33, 0x69, 0xc3, 0x62, 0x4a, 0x7b, 0x98, 0x7a, 0x0b, 0x6e, + 0x27, 0x35, 0x2e, 0xb3, 0x93, 0xfc, 0x6f, 0x2c, 0xd1, 0xe6, 0x46, 0x65, 0x41, 0x4e, 0x5f, 0xaa, + 0xf1, 0x3e, 0x40, 0xc2, 0x5b, 0x4d, 0x80, 0xe9, 0xe2, 0x76, 0x8d, 0x13, 0xcc, 0x5c, 0xb3, 0x54, + 0x03, 0xfb, 0x48, 0xae, 0xc1, 0xe2, 0xc8, 0xb6, 0x44, 0x91, 0x7c, 0xfe, 0xe3, 0xc9, 0x7c, 0x73, + 0xae, 0xfe, 0x47, 0x15, 0x6e, 0xcc, 0x90, 0x26, 0x9f, 0xc3, 0x0a, 0x3d, 0x3e, 0x66, 0x9c, 0x99, + 0xac, 0xe8, 0xbc, 0x3b, 0x33, 0xc3, 0xdb, 0x2f, 0x1c, 0x83, 0x09, 0x42, 0x76, 0xa1, 0x82, 0x7c, + 0xe4, 0xcd, 0xbb, 0x0a, 0xde, 0x9e, 0x49, 0xb6, 0xf9, 0xe8, 0x88, 0xaa, 0xc0, 0xfa, 0x92, 0x23, + 0x58, 0xe9, 0x4b, 0x1a, 0xba, 0x4e, 0xac, 0xb8, 0x15, 0x3f, 0x2d, 0xee, 0x1d, 0x3e, 0x95, 0xcc, + 0x3f, 0x75, 0xef, 0xf0, 0x8b, 0x7b, 0x87, 0xff, 0x95, 0x50, 0xec, 0x27, 0xc1, 0x0d, 0x4d, 0x3b, + 0x22, 0xde, 0x2f, 0x1c, 0x50, 0xe5, 0x67, 0x6e, 0x5f, 0x52, 0x97, 0xc9, 0x23, 0xd8, 0x64, 0x03, + 0x9a, 0x60, 0x28, 0x87, 0x69, 0x1a, 0x16, 0xa3, 0x74, 0xc1, 0xd5, 0x62, 0xdd, 0xbd, 0xe8, 0x0c, + 0xd3, 0xb4, 0x93, 0xcf, 0xca, 0x04, 0x56, 0xdd, 0x8c, 0xd2, 0x98, 0xe6, 0xb3, 0x7b, 0xd1, 0x25, + 0xd0, 0x2a, 0xfb, 0xcf, 0xf8, 0x87, 0x22, 0xc6, 0x6e, 0x21, 0x92, 0x77, 0xc5, 0x15, 0x7e, 0xca, + 0x44, 0x62, 0xb8, 0x2e, 0x45, 0x1c, 0xc6, 0x4c, 0xab, 0xa1, 0x34, 0x4c, 0xf0, 0xb0, 0x37, 0x8c, + 0x13, 0x34, 0xde, 0xd2, 0x05, 0xad, 0xd0, 0x11, 0xf1, 0xc1, 0x04, 0x6a, 0x39, 0xc6, 0xa5, 0x7b, + 0x55, 0x9e, 0x7f, 0x41, 0x06, 0xb0, 0x6e, 0x57, 0xa1, 0x9c, 0x0b, 0x43, 0xad, 0x5d, 0x7b, 0xcb, + 0x2e, 0xa1, 0x83, 0xd2, 0x09, 0xd9, 0x02, 0x4f, 0x65, 0xf2, 0x94, 0xd6, 0xe4, 0x19, 0x23, 0xf1, + 0xe1, 0xaa, 0x54, 0x4c, 0x28, 0x66, 0xb2, 0x30, 0x4a, 0xa9, 0xd6, 0xa1, 0xdb, 0x5b, 0x2b, 0xae, + 0xd6, 0x9b, 0xe3, 0x57, 0xcf, 0xed, 0x9b, 0x43, 0xbb, 0xd1, 0x3a, 0xb0, 0xae, 0x90, 0xc6, 0x8c, + 0xdb, 0xf9, 0x25, 0x95, 0xe8, 0xa1, 0x57, 0x75, 0xe9, 0x3f, 0x98, 0x19, 0x5e, 0x30, 0xf6, 0xef, + 0x58, 0xf7, 0x60, 0x4d, 0x9d, 0xf9, 0x4d, 0xee, 0xc2, 0xaa, 0x42, 0x99, 0xb2, 0x88, 0x86, 0x91, + 0x18, 0x72, 0xe3, 0x76, 0xdf, 0x6a, 0x70, 0xa5, 0x30, 0x3e, 0xb7, 0x36, 0xf2, 0x0c, 0xaa, 0x6a, + 0x9c, 0x9b, 0xdb, 0x8c, 0xb5, 0xbd, 0xfa, 0x5f, 0x2c, 0x58, 0x78, 0x06, 0x53, 0x88, 0x3c, 0x85, + 0x65, 0x8d, 0x6a, 0xc4, 0x22, 0xf4, 0xae, 0x38, 0x7e, 0xf6, 0xb4, 0xed, 0xe6, 0x7e, 0x79, 0x4b, + 0x16, 0x10, 0x79, 0x01, 0x2b, 0xda, 0xd8, 0x0b, 0x73, 0x92, 0x79, 0xab, 0x17, 0x1c, 0xeb, 0x07, + 0x28, 0x53, 0x91, 0x0d, 0xec, 0x40, 0x28, 0x90, 0x60, 0x02, 0x93, 0x36, 0xd4, 0x8c, 0x48, 0x2d, + 0xe2, 0xfe, 0xdc, 0x35, 0xa7, 0x75, 0x77, 0xf6, 0x01, 0x3e, 0xf1, 0x0d, 0x4e, 0x73, 0xa4, 0x0d, + 0x2b, 0x62, 0x84, 0x2a, 0xb5, 0xd7, 0x87, 0xd8, 0x35, 0xc8, 0xc3, 0xd9, 0x0d, 0xd2, 0xd4, 0xaf, + 0x7b, 0xf6, 0x6a, 0xfa, 0x3a, 0x27, 0x82, 0x09, 0xba, 0xf5, 0x05, 0x6c, 0x9e, 0xeb, 0xfb, 0x32, + 0x07, 0xd2, 0xd6, 0x3e, 0x5c, 0x7d, 0x4f, 0x9f, 0x95, 0x3a, 0xd3, 0x7e, 0x9e, 0x87, 0x8d, 0x77, + 0x43, 0x24, 0xb7, 0xa1, 0x46, 0x25, 0x0b, 0x47, 0xa8, 0x34, 0x13, 0xbc, 0x10, 0x02, 0x2a, 0xd9, + 0x51, 0x6e, 0xb1, 0x63, 0xe0, 0x84, 0xf1, 0xb8, 0x90, 0x73, 0xcf, 0xef, 0x1d, 0x0d, 0xaf, 0x60, + 0x59, 0x52, 0x13, 0xf5, 0x51, 0x17, 0xc3, 0xe1, 0xf1, 0xa5, 0xeb, 0xe4, 0xdb, 0x79, 0xe8, 0x66, + 0x73, 0x30, 0xd6, 0xd8, 0xfa, 0x1e, 0xaa, 0x13, 0xab, 0x5d, 0xcf, 0xcd, 0xd0, 0x3c, 0x3a, 0xf7, + 0x6c, 0x3f, 0x46, 0xa6, 0x79, 0x5e, 0x7e, 0x34, 0xe7, 0x50, 0xdd, 0x83, 0xff, 0x58, 0xfb, 0x2b, + 0x2a, 0xbb, 0x46, 0x31, 0x9e, 0x4c, 0x1c, 0xea, 0xeb, 0xb0, 0x7a, 0x86, 0xa8, 0x5f, 0x03, 0x72, + 0xfe, 0xfe, 0xd0, 0xda, 0x7e, 0x73, 0x2b, 0x5f, 0xb0, 0xf8, 0xf6, 0x3b, 0xf7, 0x59, 0xd7, 0x5b, + 0x72, 0x73, 0xfc, 0xf1, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x3b, 0x6b, 0xcb, 0x79, 0x0e, + 0x00, 0x00, +} diff --git a/mesh/v1alpha1/component.proto.bak b/operator/v1alpha1/component.proto similarity index 94% rename from mesh/v1alpha1/component.proto.bak rename to operator/v1alpha1/component.proto index fe886a0502c..720a9d987db 100644 --- a/mesh/v1alpha1/component.proto.bak +++ b/operator/v1alpha1/component.proto @@ -16,14 +16,15 @@ syntax = "proto3"; import "google/protobuf/any.proto"; import "k8s.io/api/autoscaling/v2beta1/generated.proto"; -import "mesh/v1alpha1/kubernetes.proto"; +import "operator/v1alpha1/kubernetes.proto"; -package istio.mesh.v1alpha1; +package istio.operator.v1alpha1; -option go_package="istio.io/api/mesh/v1alpha1"; +option go_package="istio.io/api/operator/v1alpha1"; // IstioComponentSpec defines the desired installed state of Istio components. message IstioComponentSetSpec { + BaseComponentSpec base = 29; ComponentSpec pilot = 30; ComponentSpec proxy = 31; ComponentSpec sidecar_injector = 32; @@ -37,9 +38,12 @@ message IstioComponentSetSpec { repeated GatewaySpec ingress_gateways = 40; repeated GatewaySpec egress_gateways = 41; +} - // Extra addon components which are not explicitly specified above. - map extra_components = 100; +// Configuration for base component. +message BaseComponentSpec { + // Selects whether this component is installed. + TypeBoolValueForPB enabled = 1; } // Configuration for internal components. @@ -62,7 +66,8 @@ message ComponentSpec { // Configuration for external components. message ExternalComponentSpec { - // Enablement is implied by the existence of this spec. + // Selects whether this component is installed. + TypeBoolValueForPB enabled = 1; // Namespace for the component. string namespace = 2; diff --git a/operator/v1alpha1/istio.operator.v1alpha1.pb.html b/operator/v1alpha1/istio.operator.v1alpha1.pb.html new file mode 100644 index 00000000000..cbb7efe1b52 --- /dev/null +++ b/operator/v1alpha1/istio.operator.v1alpha1.pb.html @@ -0,0 +1,2627 @@ +--- +title: istio.operator.v1alpha1 +layout: protoc-gen-docs +generator: protoc-gen-docs +number_of_entries: 52 +--- +

Affinity

+
+

Mirrors k8s.io.api.core.v1.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
nodeAffinityNodeAffinity + +No +
podAffinityPodAffinity + +No +
podAntiAffinityPodAntiAffinity + +No +
+
+

BaseComponentSpec

+
+

Configuration for base component.

+ + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
enabledTypeBoolValueForPB +

Selects whether this component is installed.

+ +
+No +
+
+

ClientIPConfig

+
+ + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
timeoutSecondsint32 + +No +
+
+

ComponentSpec

+
+

Configuration for internal components.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
enabledTypeBoolValueForPB +

Selects whether this component is installed.

+ +
+No +
namespacestring +

Namespace for the component.

+ +
+No +
hubstring +

Hub for the component (overrides top level hub setting).

+ +
+No +
tagstring +

Tag for the component (overrides top level tag setting).

+ +
+No +
specTypeInterface +

Arbitrary install time configuration for the component.

+ +
+No +
k8sKubernetesResourcesSpec +

Kubernetes resource spec.

+ +
+No +
+
+

ConfigMapKeySelector

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
localObjectReferenceLocalObjectReference + +No +
keystring + +No +
optionalbool + +No +
+
+

DeploymentStrategy

+
+

Mirrors k8s.io.api.apps.v1.DeploymentStrategy for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
typestring + +No +
rollingUpdateRollingUpdateDeployment + +No +
+
+

EnvVar

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namestring + +No +
valuestring + +No +
valueFromEnvVarSource + +No +
+
+

EnvVarSource

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
fieldRefObjectFieldSelector + +No +
resourceFieldRefResourceFieldSelector + +No +
configMapKeyRefConfigMapKeySelector + +No +
secretKeyRefSecretKeySelector + +No +
+
+

ExecAction

+
+

Mirrors k8s.io.api.core.v1.ExecAction for unmarshaling.

+ + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
commandstring[] + +No +
+
+

ExternalComponentSpec

+
+

Configuration for external components.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
enabledTypeBoolValueForPB +

Selects whether this component is installed.

+ +
+No +
namespacestring +

Namespace for the component.

+ +
+No +
specTypeInterface +

Arbitrary install time configuration for the component.

+ +
+No +
chartPathstring +

Chart path for addon components.

+ +
+No +
schemaAny +

Optional schema to validate spec against.

+ +
+No +
k8sKubernetesResourcesSpec +

Kubernetes resource spec.

+ +
+No +
+
+

GatewaySpec

+
+

Configuration for gateways.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namespacestring +

Namespace for the gateway.

+ +
+No +
namestring +

Name for the gateway.

+ +
+No +
labelmap<string, string> +

Labels for the gateway.

+ +
+No +
hubstring +

Hub for the component (overrides top level hub setting).

+ +
+No +
tagstring +

Tag for the component (overrides top level tag setting).

+ +
+No +
k8sKubernetesResourcesSpec +

Kubernetes resource spec.

+ +
+No +
+
+

HTTPGetAction

+
+

Mirrors k8s.io.api.core.v1.HTTPGetAction for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
pathstring + +No +
portTypeIntOrStringForPB + +No +
hoststring + +No +
schemestring + +No +
httpHeadersHTTPHeader[] + +No +
+
+

HTTPHeader

+
+

Mirrors k8s.io.api.core.v1.HTTPHeader for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namestring + +No +
valuestring + +No +
+
+

IstioComponentSetSpec

+
+

IstioComponentSpec defines the desired installed state of Istio components.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
baseBaseComponentSpec + +No +
pilotComponentSpec + +No +
proxyComponentSpec + +No +
sidecarInjectorComponentSpec + +No +
policyComponentSpec + +No +
telemetryComponentSpec + +No +
citadelComponentSpec + +No +
nodeAgentComponentSpec + +No +
galleyComponentSpec + +No +
cniComponentSpec + +No +
coreDNSComponentSpec + +No +
ingressGatewaysGatewaySpec[] + +No +
egressGatewaysGatewaySpec[] + +No +
+
+

IstioOperatorSpec

+
+

IstioOperatorSpec defines the desired installed state of Istio components. +The spec is a used to define a customization of the default profile values that are supplied with each Istio release. +Because the spec is a customization API, specifying an empty IstioOperatorSpec results in a default Istio +component values.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
profilestring +

Path or name for the profile e.g. + - minimal (looks in profiles dir for a file called minimal.yaml) + - /tmp/istio/install/values/custom/custom-install.yaml (local file path) +default profile is used if this field is unset.

+ +
+No +
installPackagePathstring +

Path for the install package. e.g. + - /tmp/istio-installer/nightly (local file path)

+ +
+No +
hubstring +

Root for docker image paths e.g. docker.io/istio

+ +
+No +
tagstring +

Version tag for docker images e.g. 1.0.6

+ +
+No +
resourceSuffixstring +

Resource suffix is appended to all resources installed by each component. Used in upgrade scenarios where two +Istio control planes must exist in the same namespace.

+ +
+No +
meshConfigMeshConfig +

Config used by control plane components internally.

+ +
+No +
componentsIstioComponentSetSpec +

Kubernetes resource settings, enablement and component-specific settings that are not internal to the +component.

+ +
+No +
addonComponentsmap<string, ExternalComponentSpec> +

Extra addon components which are not explicitly specified above.

+ +
+No +
valuesTypeMapStringInterface2 +

Overrides for default values.yaml. This is a validated pass-through to Helm templates. +See the Helm installation options for schema details: https://istio.io/docs/reference/config/installation-options/. +Anything that is available in IstioOperatorSpec should be set above rather than using the passthrough. This +includes Kubernetes resource settings for components in KubernetesResourcesSpec.

+ +
+No +
unvalidatedValuesTypeMapStringInterface2 +

Unvalidated overrides for default values.yaml. Used for custom templates where new parameters are added.

+ +
+No +
statusStatus +

Overall status of all components controlled by the operator. +- If all components have status NONE, overall status is NONE. +- If all components are HEALTHY, overall status is HEALTHY. +- If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING. +- If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING. +- If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING. +- If any component is in ERROR state, overall status is ERROR.

+ +
+No +
componentStatusmap<string, VersionStatus> +

Individual status of each component controlled by the operator. The map key is the name of the component.

+ +
+No +
+
+

IstioOperatorSpec.Status

+
+

Status describes the current state of a component.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
NONE +

Component is not present.

+ +
UPDATING +

Component is being updated to a different version.

+ +
RECONCILING +

Controller has started but not yet completed reconciliation loop for the component.

+ +
HEALTHY +

Component is healthy.

+ +
ERROR +

Component is in an error state.

+ +
+
+

IstioOperatorSpec.VersionStatus

+
+

VersionStatus is the status and version of a component.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
versionstring + +No +
statusStatus + +No +
statusStringstring + +No +
errorstring + +No +
+
+

K8sObjectOverlay

+
+

Patch for an existing k8s resource.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
apiVersionstring +

Resource API version.

+ +
+No +
kindstring +

Resource kind.

+ +
+No +
namestring +

Name of resource. +Namespace is always the component namespace.

+ +
+No +
patchesPathValue[] +

List of patches to apply to resource.

+ +
+No +
+
+

K8sObjectOverlay.PathValue

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
pathstring +

Path of the form a.b:c.e.:f +Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. +All path intermediate nodes must exist.

+ +
+No +
valueTypeInterface +

Value to add, delete or replace. +For add, the path should be a new leaf. +For delete, value should be unset. +For replace, path should reference an existing node. +All values are strings but are converted into appropriate type based on schema.

+ +
+No +
+
+

KubernetesResourcesSpec

+
+

KubernetesResourcesConfig is a common set of k8s resource configs for components.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
affinityAffinity +

k8s affinity. +https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity

+ +
+No +
envEnvVar[] +

Deployment environment variables. +https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/

+ +
+No +
hpaSpecHorizontalPodAutoscalerSpec +

k8s HorizontalPodAutoscaler settings. +https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/

+ +
+No +
imagePullPolicystring +

k8s imagePullPolicy. +https://kubernetes.io/docs/concepts/containers/images/

+ +
+No +
nodeSelectormap<string, string> +

k8s nodeSelector. +https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector

+ +
+No +
podDisruptionBudgetPodDisruptionBudgetSpec +

k8s PodDisruptionBudget settings. +https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#how-disruption-budgets-work

+ +
+No +
podAnnotationsmap<string, string> +

k8s pod annotations. +https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/

+ +
+No +
priorityClassNamestring +

k8s priorityclassname. Default for all resources unless overridden. +https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass

+ +
+No +
readinessProbeReadinessProbe +

k8s readinessProbe settings. +https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/ +k8s.io.api.core.v1.Probe readiness_probe = 9;

+ +
+No +
replicaCountuint32 +

k8s Deployment replicas setting. +https://kubernetes.io/docs/concepts/workloads/controllers/deployment/

+ +
+No +
resourcesResources +

k8s resources settings. +https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container

+ +
+No +
serviceServiceSpec +

k8s Service settings. +https://kubernetes.io/docs/concepts/services-networking/service/

+ +
+No +
strategyDeploymentStrategy +

k8s deployment strategy. +https://kubernetes.io/docs/concepts/workloads/controllers/deployment/

+ +
+No +
tolerationsToleration +

k8s toleration +https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/

+ +
+No +
overlaysK8sObjectOverlay[] +

Overlays for k8s resources in rendered manifests.

+ +
+No +
+
+

LocalObjectReference

+
+ + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namestring + +No +
+
+

NodeAffinity

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
requiredDuringSchedulingIgnoredDuringExecutionNodeSelector + +No +
preferredDuringSchedulingIgnoredDuringExecutionPreferredSchedulingTerm[] + +No +
+
+

NodeSelector

+
+ + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
nodeSelectorTermsNodeSelectorTerm[] + +No +
+
+

NodeSelectorRequirement

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
keystring + +No +
operatorstring + +No +
valuesstring[] + +No +
+
+

NodeSelectorTerm

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
matchExpressionsNodeSelectorRequirement[] + +No +
matchFieldsNodeSelectorRequirement[] + +No +
+
+

ObjectFieldSelector

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
apiVersionstring + +No +
fieldPathstring + +No +
+
+

ObjectMeta

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namestring +

From k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta.

+ +
+No +
namespacestring + +No +
+
+

PodAffinity

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
requiredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm[] + +No +
preferredDuringSchedulingIgnoredDuringExecutionWeightedPodAffinityTerm[] + +No +
+
+

PodAffinityTerm

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
labelSelectorLabelSelector + +No +
namespacesstring[] + +No +
topologyKeystring + +No +
+
+

PodAntiAffinity

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
requiredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm[] + +No +
preferredDuringSchedulingIgnoredDuringExecutionWeightedPodAffinityTerm[] + +No +
+
+

PodDisruptionBudgetSpec

+
+

Mirrors k8s.io.api.policy.v1beta1.PodDisruptionBudget for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
minAvailableuint32 + +No +
selectorLabelSelector + +No +
maxUnavailableuint32 + +No +
+
+

PreferredSchedulingTerm

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
weightint32 + +No +
preferenceNodeSelectorTerm + +No +
+
+

ReadinessProbe

+
+

Mirrors k8s.io.api.core.v1.Probe for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
execExecAction + +No +
httpGetHTTPGetAction + +No +
tcpSocketTCPSocketAction + +No +
initialDelaySecondsint32 + +No +
timeoutSecondsint32 + +No +
periodSecondsint32 + +No +
successThresholdint32 + +No +
failureThresholdint32 + +No +
+
+

ResourceFieldSelector

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
containerNamestring + +No +
resourcestring + +No +
divisorQuantity + +No +
+
+

Resources

+
+

Mirrors k8s.io.api.core.v1.ResourceRequirements for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
limitsmap<string, string> + +No +
requestsmap<string, string> + +No +
+
+

RollingUpdateDeployment

+
+

Mirrors k8s.io.api.apps.v1.RollingUpdateDeployment for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
maxUnavailableTypeIntOrStringForPB + +No +
maxSurgeTypeIntOrStringForPB + +No +
+
+

SecretKeySelector

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
localObjectReferenceLocalObjectReference + +No +
keystring + +No +
optionalbool + +No +
+
+

ServicePort

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
namestring + +No +
protocolstring + +No +
portint32 + +No +
targetPortIntOrString + +No +
nodePortint32 + +No +
+
+

ServiceSpec

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
portsServicePort[] + +No +
selectormap<string, string> + +No +
clusterIPstring + +No +
typestring + +No +
externalIPsstring[] + +No +
sessionAffinitystring + +No +
loadBalancerIPstring + +No +
loadBalancerSourceRangesstring[] + +No +
externalNamestring + +No +
externalTrafficPolicystring + +No +
healthCheckNodePortint32 + +No +
publishNotReadyAddressesbool + +No +
sessionAffinityConfigSessionAffinityConfig + +No +
+
+

SessionAffinityConfig

+
+ + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
clientIPClientIPConfig + +No +
+
+

TCPSocketAction

+
+

Mirrors k8s.io.api.core.v1.TCPSocketAction for unmarshaling.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
portTypeIntOrStringForPB + +No +
hoststring + +No +
+
+

Toleration

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
keystring + +No +
operatorstring + +No +
valuestring + +No +
effectstring + +No +
tolerationSecondsint64 + +No +
+
+

TypeBoolValueForPB

+
+

GOTYPE: *BoolValueForPB

+ +
+

TypeIntOrStringForPB

+
+

GOTYPE: *IntOrStringForPB

+ +
+

TypeInterface

+
+

GOTYPE: interface{}

+ +
+

TypeMapStringInterface

+
+

GOTYPE: map[string]interface{}

+ +
+

TypeMapStringInterface2

+
+

This is required because synthetic type definition has file rather than package scope. +GOTYPE: map[string]interface{}

+ +
+

WeightedPodAffinityTerm

+
+ + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
weightint32 + +No +
podAffinityTermPodAffinityTerm + +No +
+
+

k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec

+
+

HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
scaleTargetRefCrossVersionObjectReference +

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.

+ +
+No +
minReplicasint32 +

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. ++optional

+ +
+No +
maxReplicasint32 +

maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. +It cannot be less that minReplicas.

+ +
+No +
metricsMetricSpec[] +

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. ++optional

+ +
+No +
+
+

k8s.io.apimachinery.pkg.api.resource.Quantity

+
+

Quantity is a fixed-point representation of a number. +It provides convenient marshaling/unmarshaling in JSON and YAML, +in addition to String() and Int64() accessors.

+ +

The serialization format is:

+ +

::= + (Note that may be empty, from the “” case in .) + ::= 0 | 1 | … | 9 + ::= | + ::= | . | . | . + ::= “+” | “-” + ::= | + ::= | | + ::= Ki | Mi | Gi | Ti | Pi | Ei + (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) + ::= m | “” | k | M | G | T | P | E + (Note that 1024 = 1Ki but 1000 = 1k; I didn’t choose the capitalization.) + ::= “e” | “E”

+ +

No 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.

+ +

When 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.

+ +

Before 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: + a. No precision is lost + b. No fractional digits will be emitted + c. The exponent (or suffix) is as large as possible. +The sign will be omitted unless the number is negative.

+ +

Examples: + 1.5 will be serialized as “1500m” + 1.5Gi will be serialized as “1536Mi”

+ +

Note that the quantity will NEVER be internally represented by a +floating point number. That is the whole point of this exercise.

+ +

Non-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.)

+ +

This 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.

+ +

+protobuf=true ++protobuf.embed=string ++protobuf.options.marshal=false ++protobuf.options.(gogoproto.goproto_stringer)=false ++k8s:deepcopy-gen=true ++k8s:openapi-gen=true

+ + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
stringstring + +No +
+
+

k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector

+
+

A label selector is a label query over a set of resources. The result of matchLabels and +matchExpressions are ANDed. An empty label selector matches all objects. A null +label selector matches no objects.

+ + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
matchLabelsmap<string, string> +

matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels +map is equivalent to an element of matchExpressions, whose key field is “key”, the +operator is “In”, and the values array contains only “value”. The requirements are ANDed. ++optional

+ +
+No +
matchExpressionsLabelSelectorRequirement[] +

matchExpressions is a list of label selector requirements. The requirements are ANDed. ++optional

+ +
+No +
+
+

k8s.io.apimachinery.pkg.util.intstr.IntOrString

+
+

IntOrString is a type that can hold an int32 or a string. When used in +JSON or YAML marshalling and unmarshalling, it produces or consumes the +inner type. This allows you to have, for example, a JSON field that can +accept a name or number. +TODO: Rename to Int32OrString

+ +

+protobuf=true ++protobuf.options.(gogoproto.goproto_stringer)=false ++k8s:openapi-gen=true

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescriptionRequired
typeint64 + +No +
intValint32 + +No +
strValstring + +No +
+
diff --git a/operator/v1alpha1/kubernetes.pb.go b/operator/v1alpha1/kubernetes.pb.go new file mode 100644 index 00000000000..b13e6ee74dc --- /dev/null +++ b/operator/v1alpha1/kubernetes.pb.go @@ -0,0 +1,1926 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: operator/v1alpha1/kubernetes.proto + +package v1alpha1 + +import ( + fmt "fmt" + proto "github.com/golang/protobuf/proto" + resource "k8s.io/apimachinery/pkg/api/resource" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + intstr "k8s.io/apimachinery/pkg/util/intstr" + math "math" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// Mirrors k8s.io.api.core.v1.ResourceRequirements for unmarshaling. +type Resources struct { + Limits map[string]string `protobuf:"bytes,1,rep,name=limits,proto3" json:"limits,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Requests map[string]string `protobuf:"bytes,2,rep,name=requests,proto3" json:"requests,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Resources) Reset() { *m = Resources{} } +func (m *Resources) String() string { return proto.CompactTextString(m) } +func (*Resources) ProtoMessage() {} +func (*Resources) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{0} +} + +func (m *Resources) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Resources.Unmarshal(m, b) +} +func (m *Resources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Resources.Marshal(b, m, deterministic) +} +func (m *Resources) XXX_Merge(src proto.Message) { + xxx_messageInfo_Resources.Merge(m, src) +} +func (m *Resources) XXX_Size() int { + return xxx_messageInfo_Resources.Size(m) +} +func (m *Resources) XXX_DiscardUnknown() { + xxx_messageInfo_Resources.DiscardUnknown(m) +} + +var xxx_messageInfo_Resources proto.InternalMessageInfo + +func (m *Resources) GetLimits() map[string]string { + if m != nil { + return m.Limits + } + return nil +} + +func (m *Resources) GetRequests() map[string]string { + if m != nil { + return m.Requests + } + return nil +} + +// Mirrors k8s.io.api.core.v1. +type Affinity struct { + NodeAffinity *NodeAffinity `protobuf:"bytes,1,opt,name=nodeAffinity,proto3" json:"nodeAffinity,omitempty"` + PodAffinity *PodAffinity `protobuf:"bytes,2,opt,name=podAffinity,proto3" json:"podAffinity,omitempty"` + PodAntiAffinity *PodAntiAffinity `protobuf:"bytes,3,opt,name=podAntiAffinity,proto3" json:"podAntiAffinity,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Affinity) Reset() { *m = Affinity{} } +func (m *Affinity) String() string { return proto.CompactTextString(m) } +func (*Affinity) ProtoMessage() {} +func (*Affinity) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{1} +} + +func (m *Affinity) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Affinity.Unmarshal(m, b) +} +func (m *Affinity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Affinity.Marshal(b, m, deterministic) +} +func (m *Affinity) XXX_Merge(src proto.Message) { + xxx_messageInfo_Affinity.Merge(m, src) +} +func (m *Affinity) XXX_Size() int { + return xxx_messageInfo_Affinity.Size(m) +} +func (m *Affinity) XXX_DiscardUnknown() { + xxx_messageInfo_Affinity.DiscardUnknown(m) +} + +var xxx_messageInfo_Affinity proto.InternalMessageInfo + +func (m *Affinity) GetNodeAffinity() *NodeAffinity { + if m != nil { + return m.NodeAffinity + } + return nil +} + +func (m *Affinity) GetPodAffinity() *PodAffinity { + if m != nil { + return m.PodAffinity + } + return nil +} + +func (m *Affinity) GetPodAntiAffinity() *PodAntiAffinity { + if m != nil { + return m.PodAntiAffinity + } + return nil +} + +type NodeAffinity struct { + RequiredDuringSchedulingIgnoredDuringExecution *NodeSelector `protobuf:"bytes,1,opt,name=requiredDuringSchedulingIgnoredDuringExecution,proto3" json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"` + PreferredDuringSchedulingIgnoredDuringExecution []*PreferredSchedulingTerm `protobuf:"bytes,2,rep,name=preferredDuringSchedulingIgnoredDuringExecution,proto3" json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NodeAffinity) Reset() { *m = NodeAffinity{} } +func (m *NodeAffinity) String() string { return proto.CompactTextString(m) } +func (*NodeAffinity) ProtoMessage() {} +func (*NodeAffinity) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{2} +} + +func (m *NodeAffinity) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_NodeAffinity.Unmarshal(m, b) +} +func (m *NodeAffinity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_NodeAffinity.Marshal(b, m, deterministic) +} +func (m *NodeAffinity) XXX_Merge(src proto.Message) { + xxx_messageInfo_NodeAffinity.Merge(m, src) +} +func (m *NodeAffinity) XXX_Size() int { + return xxx_messageInfo_NodeAffinity.Size(m) +} +func (m *NodeAffinity) XXX_DiscardUnknown() { + xxx_messageInfo_NodeAffinity.DiscardUnknown(m) +} + +var xxx_messageInfo_NodeAffinity proto.InternalMessageInfo + +func (m *NodeAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() *NodeSelector { + if m != nil { + return m.RequiredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +func (m *NodeAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*PreferredSchedulingTerm { + if m != nil { + return m.PreferredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +type NodeSelector struct { + NodeSelectorTerms []*NodeSelectorTerm `protobuf:"bytes,1,rep,name=nodeSelectorTerms,proto3" json:"nodeSelectorTerms,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NodeSelector) Reset() { *m = NodeSelector{} } +func (m *NodeSelector) String() string { return proto.CompactTextString(m) } +func (*NodeSelector) ProtoMessage() {} +func (*NodeSelector) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{3} +} + +func (m *NodeSelector) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_NodeSelector.Unmarshal(m, b) +} +func (m *NodeSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_NodeSelector.Marshal(b, m, deterministic) +} +func (m *NodeSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_NodeSelector.Merge(m, src) +} +func (m *NodeSelector) XXX_Size() int { + return xxx_messageInfo_NodeSelector.Size(m) +} +func (m *NodeSelector) XXX_DiscardUnknown() { + xxx_messageInfo_NodeSelector.DiscardUnknown(m) +} + +var xxx_messageInfo_NodeSelector proto.InternalMessageInfo + +func (m *NodeSelector) GetNodeSelectorTerms() []*NodeSelectorTerm { + if m != nil { + return m.NodeSelectorTerms + } + return nil +} + +type NodeSelectorTerm struct { + MatchExpressions []*NodeSelectorRequirement `protobuf:"bytes,1,rep,name=matchExpressions,proto3" json:"matchExpressions,omitempty"` + MatchFields []*NodeSelectorRequirement `protobuf:"bytes,2,rep,name=matchFields,proto3" json:"matchFields,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NodeSelectorTerm) Reset() { *m = NodeSelectorTerm{} } +func (m *NodeSelectorTerm) String() string { return proto.CompactTextString(m) } +func (*NodeSelectorTerm) ProtoMessage() {} +func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{4} +} + +func (m *NodeSelectorTerm) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_NodeSelectorTerm.Unmarshal(m, b) +} +func (m *NodeSelectorTerm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_NodeSelectorTerm.Marshal(b, m, deterministic) +} +func (m *NodeSelectorTerm) XXX_Merge(src proto.Message) { + xxx_messageInfo_NodeSelectorTerm.Merge(m, src) +} +func (m *NodeSelectorTerm) XXX_Size() int { + return xxx_messageInfo_NodeSelectorTerm.Size(m) +} +func (m *NodeSelectorTerm) XXX_DiscardUnknown() { + xxx_messageInfo_NodeSelectorTerm.DiscardUnknown(m) +} + +var xxx_messageInfo_NodeSelectorTerm proto.InternalMessageInfo + +func (m *NodeSelectorTerm) GetMatchExpressions() []*NodeSelectorRequirement { + if m != nil { + return m.MatchExpressions + } + return nil +} + +func (m *NodeSelectorTerm) GetMatchFields() []*NodeSelectorRequirement { + if m != nil { + return m.MatchFields + } + return nil +} + +type NodeSelectorRequirement struct { + Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Operator string `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"` + Values []string `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NodeSelectorRequirement) Reset() { *m = NodeSelectorRequirement{} } +func (m *NodeSelectorRequirement) String() string { return proto.CompactTextString(m) } +func (*NodeSelectorRequirement) ProtoMessage() {} +func (*NodeSelectorRequirement) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{5} +} + +func (m *NodeSelectorRequirement) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_NodeSelectorRequirement.Unmarshal(m, b) +} +func (m *NodeSelectorRequirement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_NodeSelectorRequirement.Marshal(b, m, deterministic) +} +func (m *NodeSelectorRequirement) XXX_Merge(src proto.Message) { + xxx_messageInfo_NodeSelectorRequirement.Merge(m, src) +} +func (m *NodeSelectorRequirement) XXX_Size() int { + return xxx_messageInfo_NodeSelectorRequirement.Size(m) +} +func (m *NodeSelectorRequirement) XXX_DiscardUnknown() { + xxx_messageInfo_NodeSelectorRequirement.DiscardUnknown(m) +} + +var xxx_messageInfo_NodeSelectorRequirement proto.InternalMessageInfo + +func (m *NodeSelectorRequirement) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *NodeSelectorRequirement) GetOperator() string { + if m != nil { + return m.Operator + } + return "" +} + +func (m *NodeSelectorRequirement) GetValues() []string { + if m != nil { + return m.Values + } + return nil +} + +type PodAffinity struct { + RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `protobuf:"bytes,1,rep,name=requiredDuringSchedulingIgnoredDuringExecution,proto3" json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"` + PreferredDuringSchedulingIgnoredDuringExecution []*WeightedPodAffinityTerm `protobuf:"bytes,2,rep,name=preferredDuringSchedulingIgnoredDuringExecution,proto3" json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PodAffinity) Reset() { *m = PodAffinity{} } +func (m *PodAffinity) String() string { return proto.CompactTextString(m) } +func (*PodAffinity) ProtoMessage() {} +func (*PodAffinity) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{6} +} + +func (m *PodAffinity) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PodAffinity.Unmarshal(m, b) +} +func (m *PodAffinity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PodAffinity.Marshal(b, m, deterministic) +} +func (m *PodAffinity) XXX_Merge(src proto.Message) { + xxx_messageInfo_PodAffinity.Merge(m, src) +} +func (m *PodAffinity) XXX_Size() int { + return xxx_messageInfo_PodAffinity.Size(m) +} +func (m *PodAffinity) XXX_DiscardUnknown() { + xxx_messageInfo_PodAffinity.DiscardUnknown(m) +} + +var xxx_messageInfo_PodAffinity proto.InternalMessageInfo + +func (m *PodAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() []*PodAffinityTerm { + if m != nil { + return m.RequiredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +func (m *PodAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*WeightedPodAffinityTerm { + if m != nil { + return m.PreferredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +type PodAntiAffinity struct { + RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `protobuf:"bytes,1,rep,name=requiredDuringSchedulingIgnoredDuringExecution,proto3" json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"` + PreferredDuringSchedulingIgnoredDuringExecution []*WeightedPodAffinityTerm `protobuf:"bytes,2,rep,name=preferredDuringSchedulingIgnoredDuringExecution,proto3" json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PodAntiAffinity) Reset() { *m = PodAntiAffinity{} } +func (m *PodAntiAffinity) String() string { return proto.CompactTextString(m) } +func (*PodAntiAffinity) ProtoMessage() {} +func (*PodAntiAffinity) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{7} +} + +func (m *PodAntiAffinity) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PodAntiAffinity.Unmarshal(m, b) +} +func (m *PodAntiAffinity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PodAntiAffinity.Marshal(b, m, deterministic) +} +func (m *PodAntiAffinity) XXX_Merge(src proto.Message) { + xxx_messageInfo_PodAntiAffinity.Merge(m, src) +} +func (m *PodAntiAffinity) XXX_Size() int { + return xxx_messageInfo_PodAntiAffinity.Size(m) +} +func (m *PodAntiAffinity) XXX_DiscardUnknown() { + xxx_messageInfo_PodAntiAffinity.DiscardUnknown(m) +} + +var xxx_messageInfo_PodAntiAffinity proto.InternalMessageInfo + +func (m *PodAntiAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() []*PodAffinityTerm { + if m != nil { + return m.RequiredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +func (m *PodAntiAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*WeightedPodAffinityTerm { + if m != nil { + return m.PreferredDuringSchedulingIgnoredDuringExecution + } + return nil +} + +type PodAffinityTerm struct { + LabelSelector *v1.LabelSelector `protobuf:"bytes,1,opt,name=labelSelector,proto3" json:"labelSelector,omitempty"` + Namespaces []string `protobuf:"bytes,2,rep,name=namespaces,proto3" json:"namespaces,omitempty"` + TopologyKey string `protobuf:"bytes,3,opt,name=topologyKey,proto3" json:"topologyKey,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PodAffinityTerm) Reset() { *m = PodAffinityTerm{} } +func (m *PodAffinityTerm) String() string { return proto.CompactTextString(m) } +func (*PodAffinityTerm) ProtoMessage() {} +func (*PodAffinityTerm) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{8} +} + +func (m *PodAffinityTerm) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PodAffinityTerm.Unmarshal(m, b) +} +func (m *PodAffinityTerm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PodAffinityTerm.Marshal(b, m, deterministic) +} +func (m *PodAffinityTerm) XXX_Merge(src proto.Message) { + xxx_messageInfo_PodAffinityTerm.Merge(m, src) +} +func (m *PodAffinityTerm) XXX_Size() int { + return xxx_messageInfo_PodAffinityTerm.Size(m) +} +func (m *PodAffinityTerm) XXX_DiscardUnknown() { + xxx_messageInfo_PodAffinityTerm.DiscardUnknown(m) +} + +var xxx_messageInfo_PodAffinityTerm proto.InternalMessageInfo + +func (m *PodAffinityTerm) GetLabelSelector() *v1.LabelSelector { + if m != nil { + return m.LabelSelector + } + return nil +} + +func (m *PodAffinityTerm) GetNamespaces() []string { + if m != nil { + return m.Namespaces + } + return nil +} + +func (m *PodAffinityTerm) GetTopologyKey() string { + if m != nil { + return m.TopologyKey + } + return "" +} + +type WeightedPodAffinityTerm struct { + Weight int32 `protobuf:"varint,1,opt,name=weight,proto3" json:"weight,omitempty"` + PodAffinityTerm *PodAffinityTerm `protobuf:"bytes,2,opt,name=podAffinityTerm,proto3" json:"podAffinityTerm,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } +func (m *WeightedPodAffinityTerm) String() string { return proto.CompactTextString(m) } +func (*WeightedPodAffinityTerm) ProtoMessage() {} +func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{9} +} + +func (m *WeightedPodAffinityTerm) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_WeightedPodAffinityTerm.Unmarshal(m, b) +} +func (m *WeightedPodAffinityTerm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_WeightedPodAffinityTerm.Marshal(b, m, deterministic) +} +func (m *WeightedPodAffinityTerm) XXX_Merge(src proto.Message) { + xxx_messageInfo_WeightedPodAffinityTerm.Merge(m, src) +} +func (m *WeightedPodAffinityTerm) XXX_Size() int { + return xxx_messageInfo_WeightedPodAffinityTerm.Size(m) +} +func (m *WeightedPodAffinityTerm) XXX_DiscardUnknown() { + xxx_messageInfo_WeightedPodAffinityTerm.DiscardUnknown(m) +} + +var xxx_messageInfo_WeightedPodAffinityTerm proto.InternalMessageInfo + +func (m *WeightedPodAffinityTerm) GetWeight() int32 { + if m != nil { + return m.Weight + } + return 0 +} + +func (m *WeightedPodAffinityTerm) GetPodAffinityTerm() *PodAffinityTerm { + if m != nil { + return m.PodAffinityTerm + } + return nil +} + +type PreferredSchedulingTerm struct { + Weight int32 `protobuf:"varint,1,opt,name=weight,proto3" json:"weight,omitempty"` + Preference *NodeSelectorTerm `protobuf:"bytes,2,opt,name=preference,proto3" json:"preference,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PreferredSchedulingTerm) Reset() { *m = PreferredSchedulingTerm{} } +func (m *PreferredSchedulingTerm) String() string { return proto.CompactTextString(m) } +func (*PreferredSchedulingTerm) ProtoMessage() {} +func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{10} +} + +func (m *PreferredSchedulingTerm) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PreferredSchedulingTerm.Unmarshal(m, b) +} +func (m *PreferredSchedulingTerm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PreferredSchedulingTerm.Marshal(b, m, deterministic) +} +func (m *PreferredSchedulingTerm) XXX_Merge(src proto.Message) { + xxx_messageInfo_PreferredSchedulingTerm.Merge(m, src) +} +func (m *PreferredSchedulingTerm) XXX_Size() int { + return xxx_messageInfo_PreferredSchedulingTerm.Size(m) +} +func (m *PreferredSchedulingTerm) XXX_DiscardUnknown() { + xxx_messageInfo_PreferredSchedulingTerm.DiscardUnknown(m) +} + +var xxx_messageInfo_PreferredSchedulingTerm proto.InternalMessageInfo + +func (m *PreferredSchedulingTerm) GetWeight() int32 { + if m != nil { + return m.Weight + } + return 0 +} + +func (m *PreferredSchedulingTerm) GetPreference() *NodeSelectorTerm { + if m != nil { + return m.Preference + } + return nil +} + +// Mirrors k8s.io.api.core.v1.Probe for unmarshaling. +type ReadinessProbe struct { + Exec *ExecAction `protobuf:"bytes,1,opt,name=exec,proto3" json:"exec,omitempty"` + HttpGet *HTTPGetAction `protobuf:"bytes,2,opt,name=httpGet,proto3" json:"httpGet,omitempty"` + TcpSocket *TCPSocketAction `protobuf:"bytes,3,opt,name=tcpSocket,proto3" json:"tcpSocket,omitempty"` + InitialDelaySeconds int32 `protobuf:"varint,4,opt,name=initialDelaySeconds,proto3" json:"initialDelaySeconds,omitempty"` + TimeoutSeconds int32 `protobuf:"varint,5,opt,name=timeoutSeconds,proto3" json:"timeoutSeconds,omitempty"` + PeriodSeconds int32 `protobuf:"varint,6,opt,name=periodSeconds,proto3" json:"periodSeconds,omitempty"` + SuccessThreshold int32 `protobuf:"varint,7,opt,name=successThreshold,proto3" json:"successThreshold,omitempty"` + FailureThreshold int32 `protobuf:"varint,8,opt,name=failureThreshold,proto3" json:"failureThreshold,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ReadinessProbe) Reset() { *m = ReadinessProbe{} } +func (m *ReadinessProbe) String() string { return proto.CompactTextString(m) } +func (*ReadinessProbe) ProtoMessage() {} +func (*ReadinessProbe) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{11} +} + +func (m *ReadinessProbe) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReadinessProbe.Unmarshal(m, b) +} +func (m *ReadinessProbe) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReadinessProbe.Marshal(b, m, deterministic) +} +func (m *ReadinessProbe) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadinessProbe.Merge(m, src) +} +func (m *ReadinessProbe) XXX_Size() int { + return xxx_messageInfo_ReadinessProbe.Size(m) +} +func (m *ReadinessProbe) XXX_DiscardUnknown() { + xxx_messageInfo_ReadinessProbe.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadinessProbe proto.InternalMessageInfo + +func (m *ReadinessProbe) GetExec() *ExecAction { + if m != nil { + return m.Exec + } + return nil +} + +func (m *ReadinessProbe) GetHttpGet() *HTTPGetAction { + if m != nil { + return m.HttpGet + } + return nil +} + +func (m *ReadinessProbe) GetTcpSocket() *TCPSocketAction { + if m != nil { + return m.TcpSocket + } + return nil +} + +func (m *ReadinessProbe) GetInitialDelaySeconds() int32 { + if m != nil { + return m.InitialDelaySeconds + } + return 0 +} + +func (m *ReadinessProbe) GetTimeoutSeconds() int32 { + if m != nil { + return m.TimeoutSeconds + } + return 0 +} + +func (m *ReadinessProbe) GetPeriodSeconds() int32 { + if m != nil { + return m.PeriodSeconds + } + return 0 +} + +func (m *ReadinessProbe) GetSuccessThreshold() int32 { + if m != nil { + return m.SuccessThreshold + } + return 0 +} + +func (m *ReadinessProbe) GetFailureThreshold() int32 { + if m != nil { + return m.FailureThreshold + } + return 0 +} + +// Mirrors k8s.io.api.core.v1.ExecAction for unmarshaling. +type ExecAction struct { + Command []string `protobuf:"bytes,1,rep,name=command,proto3" json:"command,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecAction) Reset() { *m = ExecAction{} } +func (m *ExecAction) String() string { return proto.CompactTextString(m) } +func (*ExecAction) ProtoMessage() {} +func (*ExecAction) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{12} +} + +func (m *ExecAction) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecAction.Unmarshal(m, b) +} +func (m *ExecAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecAction.Marshal(b, m, deterministic) +} +func (m *ExecAction) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecAction.Merge(m, src) +} +func (m *ExecAction) XXX_Size() int { + return xxx_messageInfo_ExecAction.Size(m) +} +func (m *ExecAction) XXX_DiscardUnknown() { + xxx_messageInfo_ExecAction.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecAction proto.InternalMessageInfo + +func (m *ExecAction) GetCommand() []string { + if m != nil { + return m.Command + } + return nil +} + +// Mirrors k8s.io.api.core.v1.HTTPGetAction for unmarshaling. +type HTTPGetAction struct { + Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` + Port *IntOrStringForPB `protobuf:"bytes,2,opt,name=port,proto3" json:"port,omitempty"` + Host string `protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty"` + Scheme string `protobuf:"bytes,4,opt,name=scheme,proto3" json:"scheme,omitempty"` + HttpHeaders []*HTTPHeader `protobuf:"bytes,5,rep,name=httpHeaders,proto3" json:"httpHeaders,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *HTTPGetAction) Reset() { *m = HTTPGetAction{} } +func (m *HTTPGetAction) String() string { return proto.CompactTextString(m) } +func (*HTTPGetAction) ProtoMessage() {} +func (*HTTPGetAction) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{13} +} + +func (m *HTTPGetAction) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_HTTPGetAction.Unmarshal(m, b) +} +func (m *HTTPGetAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_HTTPGetAction.Marshal(b, m, deterministic) +} +func (m *HTTPGetAction) XXX_Merge(src proto.Message) { + xxx_messageInfo_HTTPGetAction.Merge(m, src) +} +func (m *HTTPGetAction) XXX_Size() int { + return xxx_messageInfo_HTTPGetAction.Size(m) +} +func (m *HTTPGetAction) XXX_DiscardUnknown() { + xxx_messageInfo_HTTPGetAction.DiscardUnknown(m) +} + +var xxx_messageInfo_HTTPGetAction proto.InternalMessageInfo + +func (m *HTTPGetAction) GetPath() string { + if m != nil { + return m.Path + } + return "" +} + + +func (m *HTTPGetAction) GetHost() string { + if m != nil { + return m.Host + } + return "" +} + +func (m *HTTPGetAction) GetScheme() string { + if m != nil { + return m.Scheme + } + return "" +} + +func (m *HTTPGetAction) GetHttpHeaders() []*HTTPHeader { + if m != nil { + return m.HttpHeaders + } + return nil +} + +// Mirrors k8s.io.api.core.v1.HTTPHeader for unmarshaling. +type HTTPHeader struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *HTTPHeader) Reset() { *m = HTTPHeader{} } +func (m *HTTPHeader) String() string { return proto.CompactTextString(m) } +func (*HTTPHeader) ProtoMessage() {} +func (*HTTPHeader) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{14} +} + +func (m *HTTPHeader) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_HTTPHeader.Unmarshal(m, b) +} +func (m *HTTPHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_HTTPHeader.Marshal(b, m, deterministic) +} +func (m *HTTPHeader) XXX_Merge(src proto.Message) { + xxx_messageInfo_HTTPHeader.Merge(m, src) +} +func (m *HTTPHeader) XXX_Size() int { + return xxx_messageInfo_HTTPHeader.Size(m) +} +func (m *HTTPHeader) XXX_DiscardUnknown() { + xxx_messageInfo_HTTPHeader.DiscardUnknown(m) +} + +var xxx_messageInfo_HTTPHeader proto.InternalMessageInfo + +func (m *HTTPHeader) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *HTTPHeader) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +// Mirrors k8s.io.api.core.v1.TCPSocketAction for unmarshaling. +type TCPSocketAction struct { + Port *IntOrStringForPB `protobuf:"bytes,1,opt,name=port,proto3" json:"port,omitempty"` + Host string `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } +func (m *TCPSocketAction) String() string { return proto.CompactTextString(m) } +func (*TCPSocketAction) ProtoMessage() {} +func (*TCPSocketAction) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{15} +} + +func (m *TCPSocketAction) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TCPSocketAction.Unmarshal(m, b) +} +func (m *TCPSocketAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TCPSocketAction.Marshal(b, m, deterministic) +} +func (m *TCPSocketAction) XXX_Merge(src proto.Message) { + xxx_messageInfo_TCPSocketAction.Merge(m, src) +} +func (m *TCPSocketAction) XXX_Size() int { + return xxx_messageInfo_TCPSocketAction.Size(m) +} +func (m *TCPSocketAction) XXX_DiscardUnknown() { + xxx_messageInfo_TCPSocketAction.DiscardUnknown(m) +} + +var xxx_messageInfo_TCPSocketAction proto.InternalMessageInfo + + +func (m *TCPSocketAction) GetHost() string { + if m != nil { + return m.Host + } + return "" +} + +// Mirrors k8s.io.api.policy.v1beta1.PodDisruptionBudget for unmarshaling. +type PodDisruptionBudgetSpec struct { + MinAvailable uint32 `protobuf:"varint,1,opt,name=minAvailable,proto3" json:"minAvailable,omitempty"` + Selector *v1.LabelSelector `protobuf:"bytes,2,opt,name=selector,proto3" json:"selector,omitempty"` + MaxUnavailable uint32 `protobuf:"varint,3,opt,name=maxUnavailable,proto3" json:"maxUnavailable,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PodDisruptionBudgetSpec) Reset() { *m = PodDisruptionBudgetSpec{} } +func (m *PodDisruptionBudgetSpec) String() string { return proto.CompactTextString(m) } +func (*PodDisruptionBudgetSpec) ProtoMessage() {} +func (*PodDisruptionBudgetSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{16} +} + +func (m *PodDisruptionBudgetSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PodDisruptionBudgetSpec.Unmarshal(m, b) +} +func (m *PodDisruptionBudgetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PodDisruptionBudgetSpec.Marshal(b, m, deterministic) +} +func (m *PodDisruptionBudgetSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_PodDisruptionBudgetSpec.Merge(m, src) +} +func (m *PodDisruptionBudgetSpec) XXX_Size() int { + return xxx_messageInfo_PodDisruptionBudgetSpec.Size(m) +} +func (m *PodDisruptionBudgetSpec) XXX_DiscardUnknown() { + xxx_messageInfo_PodDisruptionBudgetSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_PodDisruptionBudgetSpec proto.InternalMessageInfo + +func (m *PodDisruptionBudgetSpec) GetMinAvailable() uint32 { + if m != nil { + return m.MinAvailable + } + return 0 +} + +func (m *PodDisruptionBudgetSpec) GetSelector() *v1.LabelSelector { + if m != nil { + return m.Selector + } + return nil +} + +func (m *PodDisruptionBudgetSpec) GetMaxUnavailable() uint32 { + if m != nil { + return m.MaxUnavailable + } + return 0 +} + +// Mirrors k8s.io.api.apps.v1.DeploymentStrategy for unmarshaling. +type DeploymentStrategy struct { + Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` + RollingUpdate *RollingUpdateDeployment `protobuf:"bytes,2,opt,name=rollingUpdate,proto3" json:"rollingUpdate,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DeploymentStrategy) Reset() { *m = DeploymentStrategy{} } +func (m *DeploymentStrategy) String() string { return proto.CompactTextString(m) } +func (*DeploymentStrategy) ProtoMessage() {} +func (*DeploymentStrategy) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{17} +} + +func (m *DeploymentStrategy) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DeploymentStrategy.Unmarshal(m, b) +} +func (m *DeploymentStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DeploymentStrategy.Marshal(b, m, deterministic) +} +func (m *DeploymentStrategy) XXX_Merge(src proto.Message) { + xxx_messageInfo_DeploymentStrategy.Merge(m, src) +} +func (m *DeploymentStrategy) XXX_Size() int { + return xxx_messageInfo_DeploymentStrategy.Size(m) +} +func (m *DeploymentStrategy) XXX_DiscardUnknown() { + xxx_messageInfo_DeploymentStrategy.DiscardUnknown(m) +} + +var xxx_messageInfo_DeploymentStrategy proto.InternalMessageInfo + +func (m *DeploymentStrategy) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *DeploymentStrategy) GetRollingUpdate() *RollingUpdateDeployment { + if m != nil { + return m.RollingUpdate + } + return nil +} + +// Mirrors k8s.io.api.apps.v1.RollingUpdateDeployment for unmarshaling. +type RollingUpdateDeployment struct { + MaxUnavailable *IntOrStringForPB `protobuf:"bytes,1,opt,name=maxUnavailable,proto3" json:"maxUnavailable,omitempty"` + MaxSurge *IntOrStringForPB `protobuf:"bytes,2,opt,name=maxSurge,proto3" json:"maxSurge,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RollingUpdateDeployment) Reset() { *m = RollingUpdateDeployment{} } +func (m *RollingUpdateDeployment) String() string { return proto.CompactTextString(m) } +func (*RollingUpdateDeployment) ProtoMessage() {} +func (*RollingUpdateDeployment) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{18} +} + +func (m *RollingUpdateDeployment) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollingUpdateDeployment.Unmarshal(m, b) +} +func (m *RollingUpdateDeployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollingUpdateDeployment.Marshal(b, m, deterministic) +} +func (m *RollingUpdateDeployment) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollingUpdateDeployment.Merge(m, src) +} +func (m *RollingUpdateDeployment) XXX_Size() int { + return xxx_messageInfo_RollingUpdateDeployment.Size(m) +} +func (m *RollingUpdateDeployment) XXX_DiscardUnknown() { + xxx_messageInfo_RollingUpdateDeployment.DiscardUnknown(m) +} + +var xxx_messageInfo_RollingUpdateDeployment proto.InternalMessageInfo + + + +type ObjectMeta struct { + // From k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta. + Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"` + Namespace string `protobuf:"bytes,6,opt,name=namespace,proto3" json:"namespace,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ObjectMeta) Reset() { *m = ObjectMeta{} } +func (m *ObjectMeta) String() string { return proto.CompactTextString(m) } +func (*ObjectMeta) ProtoMessage() {} +func (*ObjectMeta) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{19} +} + +func (m *ObjectMeta) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ObjectMeta.Unmarshal(m, b) +} +func (m *ObjectMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ObjectMeta.Marshal(b, m, deterministic) +} +func (m *ObjectMeta) XXX_Merge(src proto.Message) { + xxx_messageInfo_ObjectMeta.Merge(m, src) +} +func (m *ObjectMeta) XXX_Size() int { + return xxx_messageInfo_ObjectMeta.Size(m) +} +func (m *ObjectMeta) XXX_DiscardUnknown() { + xxx_messageInfo_ObjectMeta.DiscardUnknown(m) +} + +var xxx_messageInfo_ObjectMeta proto.InternalMessageInfo + +func (m *ObjectMeta) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *ObjectMeta) GetNamespace() string { + if m != nil { + return m.Namespace + } + return "" +} + +type EnvVar struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + ValueFrom *EnvVarSource `protobuf:"bytes,3,opt,name=valueFrom,proto3" json:"valueFrom,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *EnvVar) Reset() { *m = EnvVar{} } +func (m *EnvVar) String() string { return proto.CompactTextString(m) } +func (*EnvVar) ProtoMessage() {} +func (*EnvVar) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{20} +} + +func (m *EnvVar) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EnvVar.Unmarshal(m, b) +} +func (m *EnvVar) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EnvVar.Marshal(b, m, deterministic) +} +func (m *EnvVar) XXX_Merge(src proto.Message) { + xxx_messageInfo_EnvVar.Merge(m, src) +} +func (m *EnvVar) XXX_Size() int { + return xxx_messageInfo_EnvVar.Size(m) +} +func (m *EnvVar) XXX_DiscardUnknown() { + xxx_messageInfo_EnvVar.DiscardUnknown(m) +} + +var xxx_messageInfo_EnvVar proto.InternalMessageInfo + +func (m *EnvVar) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *EnvVar) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +func (m *EnvVar) GetValueFrom() *EnvVarSource { + if m != nil { + return m.ValueFrom + } + return nil +} + +type EnvVarSource struct { + FieldRef *ObjectFieldSelector `protobuf:"bytes,1,opt,name=fieldRef,proto3" json:"fieldRef,omitempty"` + ResourceFieldRef *ResourceFieldSelector `protobuf:"bytes,2,opt,name=resourceFieldRef,proto3" json:"resourceFieldRef,omitempty"` + ConfigMapKeyRef *ConfigMapKeySelector `protobuf:"bytes,3,opt,name=configMapKeyRef,proto3" json:"configMapKeyRef,omitempty"` + SecretKeyRef *SecretKeySelector `protobuf:"bytes,4,opt,name=secretKeyRef,proto3" json:"secretKeyRef,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *EnvVarSource) Reset() { *m = EnvVarSource{} } +func (m *EnvVarSource) String() string { return proto.CompactTextString(m) } +func (*EnvVarSource) ProtoMessage() {} +func (*EnvVarSource) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{21} +} + +func (m *EnvVarSource) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EnvVarSource.Unmarshal(m, b) +} +func (m *EnvVarSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EnvVarSource.Marshal(b, m, deterministic) +} +func (m *EnvVarSource) XXX_Merge(src proto.Message) { + xxx_messageInfo_EnvVarSource.Merge(m, src) +} +func (m *EnvVarSource) XXX_Size() int { + return xxx_messageInfo_EnvVarSource.Size(m) +} +func (m *EnvVarSource) XXX_DiscardUnknown() { + xxx_messageInfo_EnvVarSource.DiscardUnknown(m) +} + +var xxx_messageInfo_EnvVarSource proto.InternalMessageInfo + +func (m *EnvVarSource) GetFieldRef() *ObjectFieldSelector { + if m != nil { + return m.FieldRef + } + return nil +} + +func (m *EnvVarSource) GetResourceFieldRef() *ResourceFieldSelector { + if m != nil { + return m.ResourceFieldRef + } + return nil +} + +func (m *EnvVarSource) GetConfigMapKeyRef() *ConfigMapKeySelector { + if m != nil { + return m.ConfigMapKeyRef + } + return nil +} + +func (m *EnvVarSource) GetSecretKeyRef() *SecretKeySelector { + if m != nil { + return m.SecretKeyRef + } + return nil +} + +type ObjectFieldSelector struct { + ApiVersion string `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"` + FieldPath string `protobuf:"bytes,2,opt,name=fieldPath,proto3" json:"fieldPath,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ObjectFieldSelector) Reset() { *m = ObjectFieldSelector{} } +func (m *ObjectFieldSelector) String() string { return proto.CompactTextString(m) } +func (*ObjectFieldSelector) ProtoMessage() {} +func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{22} +} + +func (m *ObjectFieldSelector) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ObjectFieldSelector.Unmarshal(m, b) +} +func (m *ObjectFieldSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ObjectFieldSelector.Marshal(b, m, deterministic) +} +func (m *ObjectFieldSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_ObjectFieldSelector.Merge(m, src) +} +func (m *ObjectFieldSelector) XXX_Size() int { + return xxx_messageInfo_ObjectFieldSelector.Size(m) +} +func (m *ObjectFieldSelector) XXX_DiscardUnknown() { + xxx_messageInfo_ObjectFieldSelector.DiscardUnknown(m) +} + +var xxx_messageInfo_ObjectFieldSelector proto.InternalMessageInfo + +func (m *ObjectFieldSelector) GetApiVersion() string { + if m != nil { + return m.ApiVersion + } + return "" +} + +func (m *ObjectFieldSelector) GetFieldPath() string { + if m != nil { + return m.FieldPath + } + return "" +} + +type ResourceFieldSelector struct { + ContainerName string `protobuf:"bytes,1,opt,name=containerName,proto3" json:"containerName,omitempty"` + Resource string `protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty"` + Divisor *resource.Quantity `protobuf:"bytes,3,opt,name=divisor,proto3" json:"divisor,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } +func (m *ResourceFieldSelector) String() string { return proto.CompactTextString(m) } +func (*ResourceFieldSelector) ProtoMessage() {} +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{23} +} + +func (m *ResourceFieldSelector) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceFieldSelector.Unmarshal(m, b) +} +func (m *ResourceFieldSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceFieldSelector.Marshal(b, m, deterministic) +} +func (m *ResourceFieldSelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceFieldSelector.Merge(m, src) +} +func (m *ResourceFieldSelector) XXX_Size() int { + return xxx_messageInfo_ResourceFieldSelector.Size(m) +} +func (m *ResourceFieldSelector) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceFieldSelector.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceFieldSelector proto.InternalMessageInfo + +func (m *ResourceFieldSelector) GetContainerName() string { + if m != nil { + return m.ContainerName + } + return "" +} + +func (m *ResourceFieldSelector) GetResource() string { + if m != nil { + return m.Resource + } + return "" +} + +func (m *ResourceFieldSelector) GetDivisor() *resource.Quantity { + if m != nil { + return m.Divisor + } + return nil +} + +type ConfigMapKeySelector struct { + LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference,proto3" json:"localObjectReference,omitempty"` + Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` + Optional bool `protobuf:"varint,3,opt,name=optional,proto3" json:"optional,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ConfigMapKeySelector) Reset() { *m = ConfigMapKeySelector{} } +func (m *ConfigMapKeySelector) String() string { return proto.CompactTextString(m) } +func (*ConfigMapKeySelector) ProtoMessage() {} +func (*ConfigMapKeySelector) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{24} +} + +func (m *ConfigMapKeySelector) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ConfigMapKeySelector.Unmarshal(m, b) +} +func (m *ConfigMapKeySelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ConfigMapKeySelector.Marshal(b, m, deterministic) +} +func (m *ConfigMapKeySelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_ConfigMapKeySelector.Merge(m, src) +} +func (m *ConfigMapKeySelector) XXX_Size() int { + return xxx_messageInfo_ConfigMapKeySelector.Size(m) +} +func (m *ConfigMapKeySelector) XXX_DiscardUnknown() { + xxx_messageInfo_ConfigMapKeySelector.DiscardUnknown(m) +} + +var xxx_messageInfo_ConfigMapKeySelector proto.InternalMessageInfo + +func (m *ConfigMapKeySelector) GetLocalObjectReference() *LocalObjectReference { + if m != nil { + return m.LocalObjectReference + } + return nil +} + +func (m *ConfigMapKeySelector) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *ConfigMapKeySelector) GetOptional() bool { + if m != nil { + return m.Optional + } + return false +} + +type SecretKeySelector struct { + LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference,proto3" json:"localObjectReference,omitempty"` + Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` + Optional bool `protobuf:"varint,3,opt,name=optional,proto3" json:"optional,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } +func (m *SecretKeySelector) String() string { return proto.CompactTextString(m) } +func (*SecretKeySelector) ProtoMessage() {} +func (*SecretKeySelector) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{25} +} + +func (m *SecretKeySelector) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SecretKeySelector.Unmarshal(m, b) +} +func (m *SecretKeySelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SecretKeySelector.Marshal(b, m, deterministic) +} +func (m *SecretKeySelector) XXX_Merge(src proto.Message) { + xxx_messageInfo_SecretKeySelector.Merge(m, src) +} +func (m *SecretKeySelector) XXX_Size() int { + return xxx_messageInfo_SecretKeySelector.Size(m) +} +func (m *SecretKeySelector) XXX_DiscardUnknown() { + xxx_messageInfo_SecretKeySelector.DiscardUnknown(m) +} + +var xxx_messageInfo_SecretKeySelector proto.InternalMessageInfo + +func (m *SecretKeySelector) GetLocalObjectReference() *LocalObjectReference { + if m != nil { + return m.LocalObjectReference + } + return nil +} + +func (m *SecretKeySelector) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *SecretKeySelector) GetOptional() bool { + if m != nil { + return m.Optional + } + return false +} + +type LocalObjectReference struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *LocalObjectReference) Reset() { *m = LocalObjectReference{} } +func (m *LocalObjectReference) String() string { return proto.CompactTextString(m) } +func (*LocalObjectReference) ProtoMessage() {} +func (*LocalObjectReference) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{26} +} + +func (m *LocalObjectReference) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_LocalObjectReference.Unmarshal(m, b) +} +func (m *LocalObjectReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_LocalObjectReference.Marshal(b, m, deterministic) +} +func (m *LocalObjectReference) XXX_Merge(src proto.Message) { + xxx_messageInfo_LocalObjectReference.Merge(m, src) +} +func (m *LocalObjectReference) XXX_Size() int { + return xxx_messageInfo_LocalObjectReference.Size(m) +} +func (m *LocalObjectReference) XXX_DiscardUnknown() { + xxx_messageInfo_LocalObjectReference.DiscardUnknown(m) +} + +var xxx_messageInfo_LocalObjectReference proto.InternalMessageInfo + +func (m *LocalObjectReference) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +type ServiceSpec struct { + Ports []*ServicePort `protobuf:"bytes,1,rep,name=ports,proto3" json:"ports,omitempty"` + Selector map[string]string `protobuf:"bytes,2,rep,name=selector,proto3" json:"selector,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + ClusterIP string `protobuf:"bytes,3,opt,name=clusterIP,proto3" json:"clusterIP,omitempty"` + Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"` + ExternalIPs []string `protobuf:"bytes,5,rep,name=externalIPs,proto3" json:"externalIPs,omitempty"` + SessionAffinity string `protobuf:"bytes,7,opt,name=sessionAffinity,proto3" json:"sessionAffinity,omitempty"` + LoadBalancerIP string `protobuf:"bytes,8,opt,name=loadBalancerIP,proto3" json:"loadBalancerIP,omitempty"` + LoadBalancerSourceRanges []string `protobuf:"bytes,9,rep,name=loadBalancerSourceRanges,proto3" json:"loadBalancerSourceRanges,omitempty"` + ExternalName string `protobuf:"bytes,10,opt,name=externalName,proto3" json:"externalName,omitempty"` + ExternalTrafficPolicy string `protobuf:"bytes,11,opt,name=externalTrafficPolicy,proto3" json:"externalTrafficPolicy,omitempty"` + HealthCheckNodePort int32 `protobuf:"varint,12,opt,name=healthCheckNodePort,proto3" json:"healthCheckNodePort,omitempty"` + PublishNotReadyAddresses bool `protobuf:"varint,13,opt,name=publishNotReadyAddresses,proto3" json:"publishNotReadyAddresses,omitempty"` + SessionAffinityConfig *SessionAffinityConfig `protobuf:"bytes,14,opt,name=sessionAffinityConfig,proto3" json:"sessionAffinityConfig,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } +func (m *ServiceSpec) String() string { return proto.CompactTextString(m) } +func (*ServiceSpec) ProtoMessage() {} +func (*ServiceSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{27} +} + +func (m *ServiceSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ServiceSpec.Unmarshal(m, b) +} +func (m *ServiceSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ServiceSpec.Marshal(b, m, deterministic) +} +func (m *ServiceSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_ServiceSpec.Merge(m, src) +} +func (m *ServiceSpec) XXX_Size() int { + return xxx_messageInfo_ServiceSpec.Size(m) +} +func (m *ServiceSpec) XXX_DiscardUnknown() { + xxx_messageInfo_ServiceSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_ServiceSpec proto.InternalMessageInfo + +func (m *ServiceSpec) GetPorts() []*ServicePort { + if m != nil { + return m.Ports + } + return nil +} + +func (m *ServiceSpec) GetSelector() map[string]string { + if m != nil { + return m.Selector + } + return nil +} + +func (m *ServiceSpec) GetClusterIP() string { + if m != nil { + return m.ClusterIP + } + return "" +} + +func (m *ServiceSpec) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *ServiceSpec) GetExternalIPs() []string { + if m != nil { + return m.ExternalIPs + } + return nil +} + +func (m *ServiceSpec) GetSessionAffinity() string { + if m != nil { + return m.SessionAffinity + } + return "" +} + +func (m *ServiceSpec) GetLoadBalancerIP() string { + if m != nil { + return m.LoadBalancerIP + } + return "" +} + +func (m *ServiceSpec) GetLoadBalancerSourceRanges() []string { + if m != nil { + return m.LoadBalancerSourceRanges + } + return nil +} + +func (m *ServiceSpec) GetExternalName() string { + if m != nil { + return m.ExternalName + } + return "" +} + +func (m *ServiceSpec) GetExternalTrafficPolicy() string { + if m != nil { + return m.ExternalTrafficPolicy + } + return "" +} + +func (m *ServiceSpec) GetHealthCheckNodePort() int32 { + if m != nil { + return m.HealthCheckNodePort + } + return 0 +} + +func (m *ServiceSpec) GetPublishNotReadyAddresses() bool { + if m != nil { + return m.PublishNotReadyAddresses + } + return false +} + +func (m *ServiceSpec) GetSessionAffinityConfig() *SessionAffinityConfig { + if m != nil { + return m.SessionAffinityConfig + } + return nil +} + +type ServicePort struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Protocol string `protobuf:"bytes,2,opt,name=protocol,proto3" json:"protocol,omitempty"` + Port int32 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"` + TargetPort *intstr.IntOrString `protobuf:"bytes,4,opt,name=targetPort,proto3" json:"targetPort,omitempty"` + NodePort int32 `protobuf:"varint,5,opt,name=nodePort,proto3" json:"nodePort,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ServicePort) Reset() { *m = ServicePort{} } +func (m *ServicePort) String() string { return proto.CompactTextString(m) } +func (*ServicePort) ProtoMessage() {} +func (*ServicePort) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{28} +} + +func (m *ServicePort) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ServicePort.Unmarshal(m, b) +} +func (m *ServicePort) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ServicePort.Marshal(b, m, deterministic) +} +func (m *ServicePort) XXX_Merge(src proto.Message) { + xxx_messageInfo_ServicePort.Merge(m, src) +} +func (m *ServicePort) XXX_Size() int { + return xxx_messageInfo_ServicePort.Size(m) +} +func (m *ServicePort) XXX_DiscardUnknown() { + xxx_messageInfo_ServicePort.DiscardUnknown(m) +} + +var xxx_messageInfo_ServicePort proto.InternalMessageInfo + +func (m *ServicePort) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *ServicePort) GetProtocol() string { + if m != nil { + return m.Protocol + } + return "" +} + +func (m *ServicePort) GetPort() int32 { + if m != nil { + return m.Port + } + return 0 +} + +func (m *ServicePort) GetTargetPort() *intstr.IntOrString { + if m != nil { + return m.TargetPort + } + return nil +} + +func (m *ServicePort) GetNodePort() int32 { + if m != nil { + return m.NodePort + } + return 0 +} + +type SessionAffinityConfig struct { + ClientIP *ClientIPConfig `protobuf:"bytes,1,opt,name=clientIP,proto3" json:"clientIP,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SessionAffinityConfig) Reset() { *m = SessionAffinityConfig{} } +func (m *SessionAffinityConfig) String() string { return proto.CompactTextString(m) } +func (*SessionAffinityConfig) ProtoMessage() {} +func (*SessionAffinityConfig) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{29} +} + +func (m *SessionAffinityConfig) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SessionAffinityConfig.Unmarshal(m, b) +} +func (m *SessionAffinityConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SessionAffinityConfig.Marshal(b, m, deterministic) +} +func (m *SessionAffinityConfig) XXX_Merge(src proto.Message) { + xxx_messageInfo_SessionAffinityConfig.Merge(m, src) +} +func (m *SessionAffinityConfig) XXX_Size() int { + return xxx_messageInfo_SessionAffinityConfig.Size(m) +} +func (m *SessionAffinityConfig) XXX_DiscardUnknown() { + xxx_messageInfo_SessionAffinityConfig.DiscardUnknown(m) +} + +var xxx_messageInfo_SessionAffinityConfig proto.InternalMessageInfo + +func (m *SessionAffinityConfig) GetClientIP() *ClientIPConfig { + if m != nil { + return m.ClientIP + } + return nil +} + +type ClientIPConfig struct { + TimeoutSeconds int32 `protobuf:"varint,1,opt,name=timeoutSeconds,proto3" json:"timeoutSeconds,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ClientIPConfig) Reset() { *m = ClientIPConfig{} } +func (m *ClientIPConfig) String() string { return proto.CompactTextString(m) } +func (*ClientIPConfig) ProtoMessage() {} +func (*ClientIPConfig) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{30} +} + +func (m *ClientIPConfig) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ClientIPConfig.Unmarshal(m, b) +} +func (m *ClientIPConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ClientIPConfig.Marshal(b, m, deterministic) +} +func (m *ClientIPConfig) XXX_Merge(src proto.Message) { + xxx_messageInfo_ClientIPConfig.Merge(m, src) +} +func (m *ClientIPConfig) XXX_Size() int { + return xxx_messageInfo_ClientIPConfig.Size(m) +} +func (m *ClientIPConfig) XXX_DiscardUnknown() { + xxx_messageInfo_ClientIPConfig.DiscardUnknown(m) +} + +var xxx_messageInfo_ClientIPConfig proto.InternalMessageInfo + +func (m *ClientIPConfig) GetTimeoutSeconds() int32 { + if m != nil { + return m.TimeoutSeconds + } + return 0 +} + +type Toleration struct { + Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Operator string `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"` + Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` + Effect string `protobuf:"bytes,4,opt,name=effect,proto3" json:"effect,omitempty"` + TolerationSeconds int64 `protobuf:"varint,5,opt,name=tolerationSeconds,proto3" json:"tolerationSeconds,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Toleration) Reset() { *m = Toleration{} } +func (m *Toleration) String() string { return proto.CompactTextString(m) } +func (*Toleration) ProtoMessage() {} +func (*Toleration) Descriptor() ([]byte, []int) { + return fileDescriptor_b13c6c8501de3a11, []int{31} +} + +func (m *Toleration) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Toleration.Unmarshal(m, b) +} +func (m *Toleration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Toleration.Marshal(b, m, deterministic) +} +func (m *Toleration) XXX_Merge(src proto.Message) { + xxx_messageInfo_Toleration.Merge(m, src) +} +func (m *Toleration) XXX_Size() int { + return xxx_messageInfo_Toleration.Size(m) +} +func (m *Toleration) XXX_DiscardUnknown() { + xxx_messageInfo_Toleration.DiscardUnknown(m) +} + +var xxx_messageInfo_Toleration proto.InternalMessageInfo + +func (m *Toleration) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *Toleration) GetOperator() string { + if m != nil { + return m.Operator + } + return "" +} + +func (m *Toleration) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +func (m *Toleration) GetEffect() string { + if m != nil { + return m.Effect + } + return "" +} + +func (m *Toleration) GetTolerationSeconds() int64 { + if m != nil { + return m.TolerationSeconds + } + return 0 +} + + +func init() { + proto.RegisterType((*Resources)(nil), "istio.operator.v1alpha1.Resources") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.Resources.LimitsEntry") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.Resources.RequestsEntry") + proto.RegisterType((*Affinity)(nil), "istio.operator.v1alpha1.Affinity") + proto.RegisterType((*NodeAffinity)(nil), "istio.operator.v1alpha1.NodeAffinity") + proto.RegisterType((*NodeSelector)(nil), "istio.operator.v1alpha1.NodeSelector") + proto.RegisterType((*NodeSelectorTerm)(nil), "istio.operator.v1alpha1.NodeSelectorTerm") + proto.RegisterType((*NodeSelectorRequirement)(nil), "istio.operator.v1alpha1.NodeSelectorRequirement") + proto.RegisterType((*PodAffinity)(nil), "istio.operator.v1alpha1.PodAffinity") + proto.RegisterType((*PodAntiAffinity)(nil), "istio.operator.v1alpha1.PodAntiAffinity") + proto.RegisterType((*PodAffinityTerm)(nil), "istio.operator.v1alpha1.PodAffinityTerm") + proto.RegisterType((*WeightedPodAffinityTerm)(nil), "istio.operator.v1alpha1.WeightedPodAffinityTerm") + proto.RegisterType((*PreferredSchedulingTerm)(nil), "istio.operator.v1alpha1.PreferredSchedulingTerm") + proto.RegisterType((*ReadinessProbe)(nil), "istio.operator.v1alpha1.ReadinessProbe") + proto.RegisterType((*ExecAction)(nil), "istio.operator.v1alpha1.ExecAction") + proto.RegisterType((*HTTPGetAction)(nil), "istio.operator.v1alpha1.HTTPGetAction") + proto.RegisterType((*HTTPHeader)(nil), "istio.operator.v1alpha1.HTTPHeader") + proto.RegisterType((*TCPSocketAction)(nil), "istio.operator.v1alpha1.TCPSocketAction") + proto.RegisterType((*PodDisruptionBudgetSpec)(nil), "istio.operator.v1alpha1.PodDisruptionBudgetSpec") + proto.RegisterType((*DeploymentStrategy)(nil), "istio.operator.v1alpha1.DeploymentStrategy") + proto.RegisterType((*RollingUpdateDeployment)(nil), "istio.operator.v1alpha1.RollingUpdateDeployment") + proto.RegisterType((*ObjectMeta)(nil), "istio.operator.v1alpha1.ObjectMeta") + proto.RegisterType((*EnvVar)(nil), "istio.operator.v1alpha1.EnvVar") + proto.RegisterType((*EnvVarSource)(nil), "istio.operator.v1alpha1.EnvVarSource") + proto.RegisterType((*ObjectFieldSelector)(nil), "istio.operator.v1alpha1.ObjectFieldSelector") + proto.RegisterType((*ResourceFieldSelector)(nil), "istio.operator.v1alpha1.ResourceFieldSelector") + proto.RegisterType((*ConfigMapKeySelector)(nil), "istio.operator.v1alpha1.ConfigMapKeySelector") + proto.RegisterType((*SecretKeySelector)(nil), "istio.operator.v1alpha1.SecretKeySelector") + proto.RegisterType((*LocalObjectReference)(nil), "istio.operator.v1alpha1.LocalObjectReference") + proto.RegisterType((*ServiceSpec)(nil), "istio.operator.v1alpha1.ServiceSpec") + proto.RegisterMapType((map[string]string)(nil), "istio.operator.v1alpha1.ServiceSpec.SelectorEntry") + proto.RegisterType((*ServicePort)(nil), "istio.operator.v1alpha1.ServicePort") + proto.RegisterType((*SessionAffinityConfig)(nil), "istio.operator.v1alpha1.SessionAffinityConfig") + proto.RegisterType((*ClientIPConfig)(nil), "istio.operator.v1alpha1.ClientIPConfig") + proto.RegisterType((*Toleration)(nil), "istio.operator.v1alpha1.Toleration") +} + +func init() { proto.RegisterFile("operator/v1alpha1/kubernetes.proto", fileDescriptor_b13c6c8501de3a11) } + +var fileDescriptor_b13c6c8501de3a11 = []byte{ + // 1876 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x1c, 0x49, + 0x15, 0x57, 0xcf, 0xd8, 0xce, 0xcc, 0x1b, 0x3b, 0x76, 0x6a, 0x9d, 0x78, 0x64, 0xad, 0x56, 0x56, + 0x13, 0x82, 0x89, 0x96, 0x9e, 0x7c, 0xac, 0x20, 0x64, 0x25, 0x84, 0xe3, 0xd8, 0x1b, 0x6b, 0xb3, + 0xce, 0x50, 0xe3, 0x24, 0x62, 0xb5, 0x12, 0x2a, 0x77, 0xbf, 0x99, 0x29, 0xdc, 0xd3, 0xd5, 0x54, + 0xd7, 0x78, 0x3d, 0x12, 0x07, 0x2e, 0x1c, 0x91, 0x38, 0x21, 0xc1, 0x15, 0x24, 0x0e, 0x48, 0x1c, + 0xb9, 0xac, 0x10, 0x42, 0xe2, 0x9f, 0xe0, 0xc0, 0x95, 0x3b, 0xff, 0x01, 0xaa, 0xea, 0xae, 0x9e, + 0x9e, 0x8f, 0xb6, 0x3d, 0xe1, 0xb2, 0x07, 0x6e, 0x53, 0xaf, 0xde, 0xfb, 0x55, 0xd5, 0xfb, 0x7e, + 0x3d, 0xe0, 0x8a, 0x18, 0x25, 0x53, 0x42, 0xb6, 0xce, 0x1f, 0xb2, 0x30, 0xee, 0xb3, 0x87, 0xad, + 0xb3, 0xe1, 0x29, 0xca, 0x08, 0x15, 0x26, 0x5e, 0x2c, 0x85, 0x12, 0x64, 0x8b, 0x27, 0x8a, 0x0b, + 0xcf, 0x72, 0x7a, 0x96, 0x73, 0xfb, 0xa3, 0xb3, 0x27, 0x89, 0xc7, 0x45, 0x8b, 0xc5, 0x7c, 0xc0, + 0xfc, 0x3e, 0x8f, 0x50, 0x8e, 0x5a, 0xf1, 0x59, 0x4f, 0x13, 0x92, 0xd6, 0x00, 0x15, 0x6b, 0x9d, + 0x3f, 0x6c, 0xf5, 0x30, 0xd2, 0x82, 0x18, 0xa4, 0x70, 0x97, 0x4a, 0xb5, 0x24, 0x26, 0x62, 0x28, + 0x7d, 0x9c, 0x91, 0x7a, 0x5c, 0x26, 0x35, 0x54, 0x3c, 0x6c, 0xf1, 0x48, 0x25, 0x4a, 0x4e, 0x0b, + 0xb9, 0xbf, 0xad, 0x40, 0x9d, 0x66, 0x88, 0x09, 0x39, 0x84, 0x95, 0x90, 0x0f, 0xb8, 0x4a, 0x9a, + 0xce, 0x4e, 0x75, 0xb7, 0xf1, 0xc8, 0xf3, 0x4a, 0x1e, 0xe6, 0xe5, 0x32, 0xde, 0x4b, 0x23, 0x70, + 0x10, 0x29, 0x39, 0xa2, 0x99, 0x34, 0x79, 0x09, 0x35, 0x89, 0x3f, 0x1b, 0x62, 0xa2, 0x92, 0x66, + 0xc5, 0x20, 0x3d, 0xb8, 0x06, 0x12, 0xcd, 0x44, 0x52, 0xac, 0x1c, 0x61, 0xfb, 0xfb, 0xd0, 0x28, + 0x1c, 0x42, 0x36, 0xa0, 0x7a, 0x86, 0xa3, 0xa6, 0xb3, 0xe3, 0xec, 0xd6, 0xa9, 0xfe, 0x49, 0x36, + 0x61, 0xf9, 0x9c, 0x85, 0x43, 0x6c, 0x56, 0x0c, 0x2d, 0x5d, 0x3c, 0xad, 0x3c, 0x71, 0xb6, 0x3f, + 0x86, 0xb5, 0x09, 0xd4, 0x45, 0x84, 0xdd, 0xff, 0x38, 0x50, 0xdb, 0xeb, 0x76, 0x79, 0xc4, 0xd5, + 0x88, 0x1c, 0xc1, 0x6a, 0x24, 0x02, 0xb4, 0x6b, 0x83, 0xd0, 0x78, 0xf4, 0xcd, 0xd2, 0x67, 0x1d, + 0x17, 0x98, 0xe9, 0x84, 0x28, 0x39, 0x84, 0x46, 0x2c, 0x82, 0x1c, 0xa9, 0x62, 0x90, 0xee, 0x96, + 0x22, 0xb5, 0xc7, 0xbc, 0xb4, 0x28, 0x48, 0x28, 0xac, 0xeb, 0x65, 0xa4, 0x78, 0x8e, 0x55, 0x35, + 0x58, 0xbb, 0x97, 0x62, 0x15, 0xf8, 0xe9, 0x34, 0x80, 0xfb, 0x55, 0x05, 0x56, 0x8b, 0x57, 0x27, + 0xbf, 0x72, 0xc0, 0xd3, 0x96, 0xe0, 0x12, 0x83, 0xe7, 0x43, 0xc9, 0xa3, 0x5e, 0xc7, 0xef, 0x63, + 0x30, 0x0c, 0x79, 0xd4, 0x3b, 0xea, 0x45, 0x22, 0x27, 0x1f, 0x5c, 0xa0, 0x3f, 0x54, 0x5c, 0x44, + 0xd7, 0x52, 0x4d, 0x07, 0x43, 0xf4, 0x95, 0x90, 0x74, 0x41, 0x70, 0xf2, 0x3b, 0x07, 0x5a, 0xb1, + 0xc4, 0x2e, 0xca, 0xeb, 0x5f, 0xe8, 0x2a, 0x17, 0x6c, 0x5b, 0xbc, 0x31, 0xd2, 0x09, 0xca, 0x01, + 0x5d, 0xf4, 0x20, 0xb7, 0x97, 0x2a, 0xcf, 0x3e, 0x8e, 0xbc, 0x85, 0x5b, 0x51, 0x61, 0xad, 0x41, + 0x6d, 0x68, 0x7d, 0xfb, 0x5a, 0xea, 0x31, 0xd7, 0x98, 0xc5, 0x70, 0xff, 0xe1, 0xc0, 0xc6, 0x34, + 0x1f, 0xf9, 0x02, 0x36, 0x06, 0x4c, 0xf9, 0xfd, 0x83, 0x8b, 0x58, 0x62, 0x92, 0x70, 0x11, 0xd9, + 0xc3, 0x1e, 0x5c, 0xcf, 0x16, 0xa9, 0x25, 0x06, 0x18, 0x29, 0x3a, 0x83, 0x44, 0x28, 0x34, 0x0c, + 0xed, 0x90, 0x63, 0x18, 0x5c, 0x1d, 0xd6, 0x65, 0xc0, 0x45, 0x10, 0xf7, 0x27, 0xb0, 0x55, 0xc2, + 0x37, 0x27, 0x50, 0xb7, 0xa1, 0x66, 0x8f, 0xc9, 0x62, 0x35, 0x5f, 0x93, 0x3b, 0xb0, 0x62, 0xe2, + 0x36, 0x69, 0x56, 0x77, 0xaa, 0xbb, 0x75, 0x9a, 0xad, 0xdc, 0xbf, 0x56, 0xa0, 0x51, 0x88, 0x1f, + 0xf2, 0xeb, 0x77, 0xf1, 0xe6, 0xea, 0x95, 0x21, 0x95, 0xc1, 0x1b, 0x6b, 0x7d, 0x1d, 0x1c, 0xfa, + 0x2d, 0xf2, 0x5e, 0x5f, 0x61, 0x30, 0x7d, 0xb7, 0x85, 0x1d, 0xfa, 0xef, 0x15, 0x58, 0x9f, 0xca, + 0x19, 0xff, 0xd7, 0xe1, 0x82, 0x3a, 0xfc, 0xb3, 0x93, 0xea, 0xb0, 0x00, 0x42, 0x7e, 0x0c, 0x6b, + 0x21, 0x3b, 0xc5, 0xd0, 0x7a, 0x7e, 0x96, 0x33, 0x1f, 0x7b, 0x69, 0x0d, 0xf7, 0x8a, 0x35, 0xdc, + 0x8b, 0xcf, 0x7a, 0x9a, 0x90, 0x78, 0xba, 0x5f, 0xf0, 0xce, 0x1f, 0x7a, 0x2f, 0x8b, 0xa2, 0x74, + 0x12, 0x89, 0x7c, 0x00, 0x10, 0xb1, 0x01, 0x26, 0x31, 0xf3, 0x31, 0x0d, 0xd3, 0x3a, 0x2d, 0x50, + 0xc8, 0x0e, 0x34, 0x94, 0x88, 0x45, 0x28, 0x7a, 0xa3, 0x4f, 0x31, 0xad, 0x18, 0x75, 0x5a, 0x24, + 0xb9, 0xbf, 0x74, 0x60, 0xab, 0xe4, 0xf5, 0x3a, 0xd0, 0xbe, 0x34, 0x5b, 0xe6, 0xc6, 0xcb, 0x34, + 0x5b, 0xd9, 0x5a, 0x54, 0x60, 0xcd, 0xea, 0xda, 0xf5, 0x8d, 0x3e, 0x0d, 0xe0, 0xfe, 0x1c, 0xb6, + 0x4a, 0x32, 0x73, 0xe9, 0x35, 0x8e, 0x00, 0x52, 0xf3, 0x60, 0xe4, 0x63, 0x76, 0x83, 0x05, 0x32, + 0x6d, 0x41, 0xd8, 0xfd, 0x53, 0x15, 0x6e, 0x52, 0x64, 0x01, 0x8f, 0x30, 0x49, 0xda, 0x52, 0x9c, + 0x22, 0xf9, 0x1e, 0x2c, 0xe1, 0x05, 0xfa, 0x99, 0xb1, 0xbe, 0x51, 0x8a, 0xab, 0x6d, 0xbf, 0xe7, + 0x6b, 0xe3, 0x53, 0x23, 0x40, 0x7e, 0x08, 0x37, 0xfa, 0x4a, 0xc5, 0x9f, 0xa0, 0xca, 0xee, 0x74, + 0xaf, 0x54, 0xf6, 0xc5, 0xc9, 0x49, 0xfb, 0x13, 0x54, 0x99, 0xb8, 0x15, 0x23, 0x87, 0x50, 0x57, + 0x7e, 0xdc, 0x11, 0xfe, 0x19, 0xaa, 0x2b, 0xab, 0xfc, 0xc9, 0x7e, 0x3b, 0xe5, 0xcc, 0x50, 0xc6, + 0xa2, 0xe4, 0x01, 0xbc, 0xa7, 0x15, 0xcc, 0x59, 0xf8, 0x1c, 0x43, 0x36, 0xea, 0xa0, 0x2f, 0xa2, + 0x20, 0x69, 0x2e, 0x19, 0x2d, 0xce, 0xdb, 0x22, 0xf7, 0xe0, 0xa6, 0xe2, 0x03, 0x14, 0x43, 0x65, + 0x99, 0x97, 0x0d, 0xf3, 0x14, 0x95, 0xdc, 0x85, 0xb5, 0x18, 0x25, 0x17, 0x81, 0x65, 0x5b, 0x31, + 0x6c, 0x93, 0x44, 0x72, 0x1f, 0x36, 0x92, 0xa1, 0xef, 0x63, 0x92, 0x9c, 0xf4, 0x25, 0x26, 0x7d, + 0x11, 0x06, 0xcd, 0x1b, 0x86, 0x71, 0x86, 0xae, 0x79, 0xbb, 0x8c, 0x87, 0x43, 0x89, 0x63, 0xde, + 0x5a, 0xca, 0x3b, 0x4d, 0x77, 0xef, 0x01, 0x8c, 0xb5, 0x4e, 0x9a, 0x70, 0xc3, 0x17, 0x83, 0x01, + 0x8b, 0x02, 0x93, 0x7a, 0xea, 0xd4, 0x2e, 0xdd, 0x7f, 0x3a, 0xb0, 0x36, 0xa1, 0x62, 0x42, 0x60, + 0x29, 0x66, 0xaa, 0x9f, 0x55, 0x1a, 0xf3, 0x9b, 0xec, 0xc1, 0x52, 0x2c, 0xa4, 0x35, 0xd6, 0x77, + 0xca, 0x15, 0x3d, 0x8a, 0xf1, 0x28, 0x52, 0xaf, 0x64, 0x47, 0xe9, 0x98, 0x3f, 0x14, 0xb2, 0xfd, + 0x8c, 0x1a, 0x51, 0x0d, 0xdb, 0x17, 0x89, 0xca, 0xe2, 0xcb, 0xfc, 0xd6, 0x5e, 0x9b, 0xf8, 0x7d, + 0x1c, 0xa0, 0xd1, 0x77, 0x9d, 0x66, 0x2b, 0x72, 0x00, 0x0d, 0x6d, 0xe7, 0x17, 0xc8, 0x02, 0x94, + 0x5a, 0xbf, 0xd5, 0x4b, 0xdd, 0x4b, 0xdf, 0x3f, 0xe5, 0xa5, 0x45, 0x39, 0xf7, 0xbb, 0x00, 0xe3, + 0x2d, 0x7d, 0x01, 0x1d, 0xf5, 0xf6, 0x5d, 0xfa, 0xf7, 0xfc, 0x5e, 0xd7, 0xed, 0xc3, 0xfa, 0x94, + 0xc7, 0xe4, 0x0a, 0x70, 0xfe, 0x77, 0x05, 0x54, 0xc6, 0x0a, 0x70, 0xff, 0xe2, 0xc0, 0x56, 0x5b, + 0x04, 0xcf, 0x79, 0x22, 0x87, 0xb1, 0x3e, 0xe8, 0xd9, 0x30, 0xe8, 0xa1, 0xea, 0xc4, 0xe8, 0x13, + 0x17, 0x56, 0x07, 0x3c, 0xda, 0x3b, 0x67, 0x3c, 0x64, 0xa7, 0x61, 0x7a, 0xef, 0x35, 0x3a, 0x41, + 0x23, 0xaf, 0xa0, 0x96, 0xd8, 0x8c, 0x59, 0x79, 0xf7, 0x8c, 0x99, 0x83, 0x68, 0xe7, 0x1e, 0xb0, + 0x8b, 0xd7, 0x11, 0xcb, 0x8f, 0xad, 0x9a, 0x63, 0xa7, 0xa8, 0xee, 0x2f, 0x1c, 0x20, 0xcf, 0x31, + 0x0e, 0xc5, 0x48, 0x37, 0x27, 0x1d, 0xa5, 0x47, 0xa8, 0xde, 0x48, 0xbf, 0x51, 0x8d, 0xe2, 0x5c, + 0xc7, 0xfa, 0x37, 0x79, 0x03, 0x6b, 0x52, 0x84, 0x3a, 0x53, 0xbd, 0x8e, 0x03, 0xa6, 0x6c, 0x16, + 0xba, 0x64, 0x00, 0x2a, 0x72, 0x8f, 0x0f, 0xa1, 0x93, 0x30, 0xee, 0x57, 0x0e, 0x6c, 0x95, 0xb0, + 0x92, 0xd7, 0x33, 0xcf, 0x78, 0x27, 0xc3, 0x4d, 0x81, 0x90, 0x23, 0xa8, 0x0d, 0xd8, 0x45, 0x67, + 0x28, 0x7b, 0xf8, 0x6e, 0xa1, 0x90, 0x8b, 0xbb, 0x3f, 0x00, 0x78, 0x75, 0xfa, 0x53, 0xf4, 0xd5, + 0x67, 0xa8, 0x58, 0xee, 0x9b, 0xcb, 0x05, 0xdf, 0x7c, 0x1f, 0xea, 0x79, 0x95, 0x32, 0xb9, 0xa3, + 0x4e, 0xc7, 0x04, 0xf7, 0x4b, 0x58, 0x39, 0x88, 0xce, 0xdf, 0xb0, 0x05, 0xfc, 0x9a, 0xec, 0x43, + 0xdd, 0xfc, 0x38, 0x94, 0x62, 0x90, 0xe5, 0xcc, 0xf2, 0xa1, 0x24, 0x45, 0xef, 0x98, 0x51, 0x94, + 0x8e, 0xe5, 0xdc, 0x7f, 0x55, 0x60, 0xb5, 0xb8, 0x47, 0x5e, 0x40, 0xad, 0xab, 0xbb, 0x57, 0x8a, + 0xdd, 0x4c, 0xcb, 0x1f, 0x96, 0x82, 0xa6, 0x4f, 0x36, 0xcd, 0xee, 0xd8, 0xf9, 0xac, 0x34, 0xf9, + 0x1c, 0x36, 0xec, 0x30, 0x7f, 0x68, 0x11, 0x53, 0x35, 0x5f, 0x3d, 0x77, 0x4f, 0x62, 0xce, 0xe0, + 0x90, 0xb7, 0xb0, 0xee, 0x8b, 0xa8, 0xcb, 0x7b, 0x9f, 0xb1, 0xf8, 0x53, 0x1c, 0x69, 0xe8, 0xea, + 0x15, 0x16, 0xdc, 0x2f, 0xf0, 0xe7, 0xc8, 0xd3, 0x28, 0xe4, 0x18, 0x56, 0x13, 0xf4, 0x25, 0xaa, + 0x0c, 0x75, 0xc9, 0xa0, 0xde, 0x2f, 0x45, 0xed, 0x58, 0xe6, 0x1c, 0x72, 0x42, 0xde, 0xed, 0xc0, + 0x7b, 0x73, 0xb4, 0xa4, 0xbb, 0x18, 0x16, 0xf3, 0x37, 0x28, 0x13, 0x3b, 0x51, 0xd6, 0x69, 0x81, + 0xa2, 0xbd, 0xc5, 0xe8, 0xb1, 0xad, 0x53, 0x77, 0x6a, 0xf5, 0x31, 0xc1, 0xfd, 0xbd, 0x03, 0xb7, + 0xe7, 0x6a, 0x4a, 0x57, 0x29, 0x5f, 0x44, 0x8a, 0xe9, 0x3c, 0x71, 0x3c, 0x76, 0xa3, 0x49, 0xa2, + 0x1e, 0x35, 0xac, 0x46, 0xed, 0xa8, 0x61, 0xd7, 0xe4, 0x05, 0xdc, 0x08, 0xf8, 0x39, 0x4f, 0x84, + 0xcc, 0x34, 0xea, 0x5d, 0x96, 0x82, 0x3c, 0x2b, 0xe7, 0xfd, 0x68, 0xc8, 0x22, 0xa5, 0x67, 0x6e, + 0x2b, 0xee, 0xfe, 0xd1, 0x81, 0xcd, 0x79, 0x4a, 0x27, 0x0c, 0x36, 0x43, 0xe1, 0xb3, 0x30, 0x55, + 0x0c, 0xcd, 0xfb, 0x99, 0xab, 0x82, 0xfa, 0xe5, 0x1c, 0x21, 0x3a, 0x17, 0xca, 0x8e, 0x57, 0x95, + 0xa9, 0xf1, 0x4a, 0xe7, 0x64, 0x16, 0x9a, 0x87, 0xd5, 0x68, 0xbe, 0x76, 0xff, 0xe0, 0xc0, 0xad, + 0x19, 0x43, 0x7e, 0xfd, 0xae, 0x79, 0x1f, 0x36, 0xe7, 0x61, 0xcf, 0x4b, 0x19, 0xee, 0xbf, 0x97, + 0xa1, 0xd1, 0x41, 0x79, 0xce, 0x7d, 0x34, 0xe5, 0xe7, 0x29, 0x2c, 0xeb, 0xb2, 0x65, 0x27, 0xe6, + 0xbb, 0x97, 0x38, 0xb4, 0x11, 0x6a, 0x0b, 0xa9, 0x68, 0x2a, 0x42, 0x8e, 0x27, 0xca, 0x92, 0x16, + 0x7f, 0x74, 0x95, 0xb8, 0x3e, 0xd3, 0xb3, 0x9a, 0xcc, 0x3e, 0x78, 0xe5, 0x55, 0xe9, 0x7d, 0xa8, + 0xfb, 0xe1, 0x30, 0x51, 0x28, 0x8f, 0xda, 0x59, 0x03, 0x31, 0x26, 0xe4, 0x45, 0x67, 0xa9, 0x50, + 0x74, 0x76, 0xa0, 0x81, 0x17, 0x0a, 0x65, 0xc4, 0xc2, 0xa3, 0x76, 0xda, 0x41, 0xd4, 0x69, 0x91, + 0x44, 0x76, 0x61, 0x3d, 0x49, 0x47, 0xf9, 0xfc, 0x63, 0xd1, 0x0d, 0x03, 0x30, 0x4d, 0xd6, 0x35, + 0x31, 0x14, 0x2c, 0x78, 0xc6, 0x42, 0x16, 0xf9, 0xe6, 0x0a, 0x35, 0xc3, 0x38, 0x45, 0x25, 0x4f, + 0xa1, 0x59, 0xa4, 0x64, 0xa9, 0x93, 0x45, 0x3d, 0x4c, 0x9a, 0x75, 0x73, 0x81, 0xd2, 0x7d, 0x5d, + 0xec, 0xed, 0xe5, 0x4c, 0x14, 0x82, 0x39, 0x61, 0x82, 0x46, 0x3e, 0x82, 0xdb, 0x76, 0x7d, 0x22, + 0x59, 0xb7, 0xcb, 0xfd, 0xb6, 0x08, 0xb9, 0x3f, 0x6a, 0x36, 0x0c, 0xf3, 0xfc, 0x4d, 0xdd, 0xe0, + 0xf6, 0x91, 0x85, 0xaa, 0xbf, 0xdf, 0x47, 0xff, 0x4c, 0x77, 0xf8, 0xda, 0x52, 0xcd, 0xd5, 0xb4, + 0xc1, 0x9d, 0xb3, 0xa5, 0xdf, 0x11, 0x0f, 0x4f, 0x43, 0x9e, 0xf4, 0x8f, 0x85, 0xd2, 0x1d, 0xff, + 0x68, 0x2f, 0x08, 0x24, 0x26, 0x09, 0x26, 0xcd, 0x35, 0xe3, 0x61, 0xa5, 0xfb, 0x24, 0x80, 0xdb, + 0x53, 0xea, 0x4b, 0x03, 0xba, 0x79, 0xf3, 0x8a, 0x3c, 0xde, 0x99, 0x27, 0x45, 0xe7, 0x83, 0x6d, + 0x7f, 0x0c, 0x6b, 0x13, 0xae, 0xb2, 0xd0, 0x57, 0xcc, 0xbf, 0x39, 0xb9, 0xa3, 0xb7, 0xb3, 0xbe, + 0x6c, 0xa6, 0x7e, 0x6e, 0x43, 0xcd, 0x7c, 0x0e, 0xf6, 0x45, 0x68, 0xf3, 0x9d, 0x5d, 0x9b, 0xfe, + 0x58, 0x6b, 0xb0, 0x6a, 0x34, 0x98, 0xf6, 0x76, 0x6d, 0x00, 0xc5, 0x64, 0x0f, 0x95, 0xd1, 0xed, + 0x52, 0xd6, 0xe0, 0x94, 0xa5, 0xc1, 0xa1, 0xe2, 0xa1, 0x97, 0x7e, 0x7f, 0xf6, 0x0a, 0x2d, 0x02, + 0x2d, 0x60, 0xe8, 0x1b, 0x44, 0xd6, 0x56, 0xe9, 0x7c, 0x91, 0xaf, 0xdd, 0x2f, 0xe0, 0xf6, 0x5c, + 0x75, 0x91, 0x7d, 0xa8, 0xf9, 0x21, 0xc7, 0x48, 0x1d, 0xb5, 0xb3, 0xa4, 0xf3, 0xad, 0xf2, 0xea, + 0x96, 0x31, 0x66, 0x9a, 0xce, 0x05, 0xdd, 0x27, 0x70, 0x73, 0x72, 0x6f, 0xce, 0xc4, 0xe3, 0xcc, + 0x9b, 0x78, 0xdc, 0xdf, 0x38, 0x00, 0x27, 0x22, 0xd4, 0x27, 0xe9, 0x92, 0xb4, 0xd8, 0x17, 0xab, + 0xdc, 0x60, 0xd5, 0x62, 0xcb, 0x72, 0x07, 0x56, 0xb0, 0xdb, 0x45, 0x5f, 0xd9, 0x09, 0x21, 0x5d, + 0x91, 0x0f, 0xe1, 0x96, 0xca, 0x4f, 0x2a, 0xce, 0x61, 0x55, 0x3a, 0xbb, 0xe1, 0xde, 0x81, 0xcd, + 0x79, 0xed, 0xd8, 0xb3, 0x9d, 0xcf, 0x3f, 0x48, 0xd5, 0x93, 0xfe, 0x4b, 0xd0, 0x9a, 0xf9, 0x67, + 0xe3, 0x74, 0xc5, 0x98, 0xfd, 0xf1, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x12, 0xe9, 0x32, + 0xf5, 0x18, 0x00, 0x00, +} diff --git a/mesh/v1alpha1/kubernetes.proto.bak b/operator/v1alpha1/kubernetes.proto similarity index 98% rename from mesh/v1alpha1/kubernetes.proto.bak rename to operator/v1alpha1/kubernetes.proto index ef38208b3dc..93055fa23ee 100644 --- a/mesh/v1alpha1/kubernetes.proto.bak +++ b/operator/v1alpha1/kubernetes.proto @@ -18,9 +18,9 @@ import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto"; import "k8s.io/apimachinery/pkg/api/resource/generated.proto"; import "k8s.io/apimachinery/pkg/util/intstr/generated.proto"; -package istio.mesh.v1alpha1; +package istio.operator.v1alpha1; -option go_package="istio.io/api/mesh/v1alpha1"; +option go_package="istio.io/api/operator/v1alpha1"; // Mirrors k8s.io.api.core.v1.ResourceRequirements for unmarshaling. message Resources { diff --git a/operator/v1alpha1/operator.pb.go b/operator/v1alpha1/operator.pb.go new file mode 100644 index 00000000000..12bf77ea2e2 --- /dev/null +++ b/operator/v1alpha1/operator.pb.go @@ -0,0 +1,328 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: operator/v1alpha1/operator.proto + +package v1alpha1 + +import ( + fmt "fmt" + proto "github.com/golang/protobuf/proto" + v1alpha1 "istio.io/api/mesh/v1alpha1" + math "math" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// Status describes the current state of a component. +type IstioOperatorSpec_Status int32 + +const ( + // Component is not present. + IstioOperatorSpec_NONE IstioOperatorSpec_Status = 0 + // Component is being updated to a different version. + IstioOperatorSpec_UPDATING IstioOperatorSpec_Status = 1 + // Controller has started but not yet completed reconciliation loop for the component. + IstioOperatorSpec_RECONCILING IstioOperatorSpec_Status = 2 + // Component is healthy. + IstioOperatorSpec_HEALTHY IstioOperatorSpec_Status = 3 + // Component is in an error state. + IstioOperatorSpec_ERROR IstioOperatorSpec_Status = 4 +) + +var IstioOperatorSpec_Status_name = map[int32]string{ + 0: "NONE", + 1: "UPDATING", + 2: "RECONCILING", + 3: "HEALTHY", + 4: "ERROR", +} + +var IstioOperatorSpec_Status_value = map[string]int32{ + "NONE": 0, + "UPDATING": 1, + "RECONCILING": 2, + "HEALTHY": 3, + "ERROR": 4, +} + +func (x IstioOperatorSpec_Status) String() string { + return proto.EnumName(IstioOperatorSpec_Status_name, int32(x)) +} + +func (IstioOperatorSpec_Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_8023ebf2dcfea843, []int{0, 0} +} + +// IstioOperatorSpec defines the desired installed state of Istio components. +// The spec is a used to define a customization of the default profile values that are supplied with each Istio release. +// Because the spec is a customization API, specifying an empty IstioOperatorSpec results in a default Istio +// component values. +type IstioOperatorSpec struct { + // Path or name for the profile e.g. + // - minimal (looks in profiles dir for a file called minimal.yaml) + // - /tmp/istio/install/values/custom/custom-install.yaml (local file path) + // default profile is used if this field is unset. + Profile string `protobuf:"bytes,10,opt,name=profile,proto3" json:"profile,omitempty"` + // Path for the install package. e.g. + // - /tmp/istio-installer/nightly (local file path) + InstallPackagePath string `protobuf:"bytes,11,opt,name=install_package_path,json=installPackagePath,proto3" json:"install_package_path,omitempty"` + // Root for docker image paths e.g. docker.io/istio + Hub string `protobuf:"bytes,12,opt,name=hub,proto3" json:"hub,omitempty"` + // Version tag for docker images e.g. 1.0.6 + Tag string `protobuf:"bytes,13,opt,name=tag,proto3" json:"tag,omitempty"` + // Resource suffix is appended to all resources installed by each component. Used in upgrade scenarios where two + // Istio control planes must exist in the same namespace. + ResourceSuffix string `protobuf:"bytes,14,opt,name=resource_suffix,json=resourceSuffix,proto3" json:"resource_suffix,omitempty"` + // Config used by control plane components internally. + MeshConfig *v1alpha1.MeshConfig `protobuf:"bytes,40,opt,name=mesh_config,json=meshConfig,proto3" json:"mesh_config,omitempty"` + // Kubernetes resource settings, enablement and component-specific settings that are not internal to the + // component. + Components *IstioComponentSetSpec `protobuf:"bytes,50,opt,name=components,proto3" json:"components,omitempty"` + // Extra addon components which are not explicitly specified above. + AddonComponents map[string]*ExternalComponentSpec `protobuf:"bytes,51,rep,name=addon_components,json=addonComponents,proto3" json:"addon_components,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Overrides for default values.yaml. This is a validated pass-through to Helm templates. + // See the Helm installation options for schema details: https://istio.io/docs/reference/config/installation-options/. + // Anything that is available in IstioOperatorSpec should be set above rather than using the passthrough. This + // includes Kubernetes resource settings for components in KubernetesResourcesSpec. + Values map[string]interface{} `protobuf:"bytes,100,opt,name=values,proto3" json:"values,omitempty"` + // Unvalidated overrides for default values.yaml. Used for custom templates where new parameters are added. + UnvalidatedValues map[string]interface{} `protobuf:"bytes,101,opt,name=unvalidated_values,json=unvalidatedValues,proto3" json:"unvalidated_values,omitempty"` + // Overall status of all components controlled by the operator. + // - If all components have status NONE, overall status is NONE. + // - If all components are HEALTHY, overall status is HEALTHY. + // - If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING. + // - If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING. + // - If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING. + // - If any component is in ERROR state, overall status is ERROR. + Status IstioOperatorSpec_Status `protobuf:"varint,200,opt,name=status,proto3,enum=istio.operator.v1alpha1.IstioOperatorSpec_Status" json:"status,omitempty"` + // Individual status of each component controlled by the operator. The map key is the name of the component. + ComponentStatus map[string]*IstioOperatorSpec_VersionStatus `protobuf:"bytes,201,rep,name=component_status,json=componentStatus,proto3" json:"component_status,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IstioOperatorSpec) Reset() { *m = IstioOperatorSpec{} } +func (m *IstioOperatorSpec) String() string { return proto.CompactTextString(m) } +func (*IstioOperatorSpec) ProtoMessage() {} +func (*IstioOperatorSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_8023ebf2dcfea843, []int{0} +} + +func (m *IstioOperatorSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IstioOperatorSpec.Unmarshal(m, b) +} +func (m *IstioOperatorSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IstioOperatorSpec.Marshal(b, m, deterministic) +} +func (m *IstioOperatorSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_IstioOperatorSpec.Merge(m, src) +} +func (m *IstioOperatorSpec) XXX_Size() int { + return xxx_messageInfo_IstioOperatorSpec.Size(m) +} +func (m *IstioOperatorSpec) XXX_DiscardUnknown() { + xxx_messageInfo_IstioOperatorSpec.DiscardUnknown(m) +} + +var xxx_messageInfo_IstioOperatorSpec proto.InternalMessageInfo + +func (m *IstioOperatorSpec) GetProfile() string { + if m != nil { + return m.Profile + } + return "" +} + +func (m *IstioOperatorSpec) GetInstallPackagePath() string { + if m != nil { + return m.InstallPackagePath + } + return "" +} + +func (m *IstioOperatorSpec) GetHub() string { + if m != nil { + return m.Hub + } + return "" +} + +func (m *IstioOperatorSpec) GetTag() string { + if m != nil { + return m.Tag + } + return "" +} + +func (m *IstioOperatorSpec) GetResourceSuffix() string { + if m != nil { + return m.ResourceSuffix + } + return "" +} + +func (m *IstioOperatorSpec) GetMeshConfig() *v1alpha1.MeshConfig { + if m != nil { + return m.MeshConfig + } + return nil +} + +func (m *IstioOperatorSpec) GetComponents() *IstioComponentSetSpec { + if m != nil { + return m.Components + } + return nil +} + +func (m *IstioOperatorSpec) GetAddonComponents() map[string]*ExternalComponentSpec { + if m != nil { + return m.AddonComponents + } + return nil +} + + + +func (m *IstioOperatorSpec) GetStatus() IstioOperatorSpec_Status { + if m != nil { + return m.Status + } + return IstioOperatorSpec_NONE +} + +func (m *IstioOperatorSpec) GetComponentStatus() map[string]*IstioOperatorSpec_VersionStatus { + if m != nil { + return m.ComponentStatus + } + return nil +} + +// VersionStatus is the status and version of a component. +type IstioOperatorSpec_VersionStatus struct { + Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"` + Status IstioOperatorSpec_Status `protobuf:"varint,2,opt,name=status,proto3,enum=istio.operator.v1alpha1.IstioOperatorSpec_Status" json:"status,omitempty"` + StatusString string `protobuf:"bytes,3,opt,name=status_string,json=statusString,proto3" json:"status_string,omitempty"` + Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IstioOperatorSpec_VersionStatus) Reset() { *m = IstioOperatorSpec_VersionStatus{} } +func (m *IstioOperatorSpec_VersionStatus) String() string { return proto.CompactTextString(m) } +func (*IstioOperatorSpec_VersionStatus) ProtoMessage() {} +func (*IstioOperatorSpec_VersionStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_8023ebf2dcfea843, []int{0, 1} +} + +func (m *IstioOperatorSpec_VersionStatus) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IstioOperatorSpec_VersionStatus.Unmarshal(m, b) +} +func (m *IstioOperatorSpec_VersionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IstioOperatorSpec_VersionStatus.Marshal(b, m, deterministic) +} +func (m *IstioOperatorSpec_VersionStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_IstioOperatorSpec_VersionStatus.Merge(m, src) +} +func (m *IstioOperatorSpec_VersionStatus) XXX_Size() int { + return xxx_messageInfo_IstioOperatorSpec_VersionStatus.Size(m) +} +func (m *IstioOperatorSpec_VersionStatus) XXX_DiscardUnknown() { + xxx_messageInfo_IstioOperatorSpec_VersionStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_IstioOperatorSpec_VersionStatus proto.InternalMessageInfo + +func (m *IstioOperatorSpec_VersionStatus) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + +func (m *IstioOperatorSpec_VersionStatus) GetStatus() IstioOperatorSpec_Status { + if m != nil { + return m.Status + } + return IstioOperatorSpec_NONE +} + +func (m *IstioOperatorSpec_VersionStatus) GetStatusString() string { + if m != nil { + return m.StatusString + } + return "" +} + +func (m *IstioOperatorSpec_VersionStatus) GetError() string { + if m != nil { + return m.Error + } + return "" +} + +// This is required because synthetic type definition has file rather than package scope. + +func init() { + proto.RegisterEnum("istio.operator.v1alpha1.IstioOperatorSpec_Status", IstioOperatorSpec_Status_name, IstioOperatorSpec_Status_value) + proto.RegisterType((*IstioOperatorSpec)(nil), "istio.operator.v1alpha1.IstioOperatorSpec") + proto.RegisterMapType((map[string]*ExternalComponentSpec)(nil), "istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry") + proto.RegisterMapType((map[string]*IstioOperatorSpec_VersionStatus)(nil), "istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry") + proto.RegisterType((*IstioOperatorSpec_VersionStatus)(nil), "istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus") +} + +func init() { proto.RegisterFile("operator/v1alpha1/operator.proto", fileDescriptor_8023ebf2dcfea843) } + +var fileDescriptor_8023ebf2dcfea843 = []byte{ + // 633 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0x4f, 0x4f, 0xdb, 0x4c, + 0x10, 0xc6, 0x5f, 0x27, 0x10, 0x60, 0xc2, 0x1f, 0xb3, 0x8a, 0xc4, 0xbe, 0x39, 0xb4, 0x29, 0x3d, + 0x34, 0x27, 0x07, 0xc2, 0x05, 0xf5, 0xd2, 0xd2, 0x10, 0x95, 0x54, 0xe0, 0x20, 0x87, 0x22, 0xb5, + 0x17, 0x6b, 0x71, 0x36, 0xb1, 0x1b, 0xe3, 0xb5, 0x76, 0xd7, 0x11, 0x91, 0xfa, 0x9d, 0xfa, 0x35, + 0xda, 0x0f, 0x55, 0xa9, 0xf2, 0xae, 0x6d, 0x12, 0x01, 0xad, 0xd2, 0xde, 0x76, 0x9f, 0x99, 0x79, + 0x66, 0xf2, 0xdb, 0x89, 0xa1, 0xc1, 0x62, 0xca, 0x89, 0x64, 0xbc, 0x35, 0x3d, 0x24, 0x61, 0xec, + 0x93, 0xc3, 0x56, 0xae, 0x58, 0x31, 0x67, 0x92, 0xa1, 0xbd, 0x40, 0xc8, 0x80, 0x59, 0x85, 0x9a, + 0xe7, 0xd5, 0xeb, 0xb7, 0x54, 0xf8, 0xf7, 0x65, 0x1e, 0x8b, 0x46, 0xc1, 0x58, 0x17, 0xd5, 0x5f, + 0x3c, 0xb4, 0xf5, 0xd8, 0x6d, 0xcc, 0x22, 0x1a, 0x49, 0x9d, 0xb2, 0xff, 0x73, 0x03, 0x76, 0x7b, + 0xa9, 0x75, 0x3f, 0x4b, 0x1d, 0xc4, 0xd4, 0x43, 0x18, 0xd6, 0x62, 0xce, 0x46, 0x41, 0x48, 0x31, + 0x34, 0x8c, 0xe6, 0x86, 0x93, 0x5f, 0xd1, 0x01, 0xd4, 0x82, 0x48, 0x48, 0x12, 0x86, 0x6e, 0x4c, + 0xbc, 0x09, 0x19, 0x53, 0x37, 0x26, 0xd2, 0xc7, 0x55, 0x95, 0x86, 0xb2, 0xd8, 0xa5, 0x0e, 0x5d, + 0x12, 0xe9, 0x23, 0x13, 0xca, 0x7e, 0x72, 0x83, 0x37, 0x55, 0x42, 0x7a, 0x4c, 0x15, 0x49, 0xc6, + 0x78, 0x4b, 0x2b, 0x92, 0x8c, 0xd1, 0x2b, 0xd8, 0xe1, 0x54, 0xb0, 0x84, 0x7b, 0xd4, 0x15, 0xc9, + 0x68, 0x14, 0xdc, 0xe1, 0x6d, 0x15, 0xdd, 0xce, 0xe5, 0x81, 0x52, 0xd1, 0x5b, 0xa8, 0xa6, 0xbf, + 0xd7, 0xd5, 0x3f, 0x13, 0x37, 0x1b, 0x46, 0xb3, 0xda, 0x7e, 0x6e, 0x69, 0x38, 0x69, 0xa4, 0x00, + 0x63, 0x5d, 0x50, 0xe1, 0x77, 0x54, 0x9a, 0x03, 0xb7, 0xc5, 0x19, 0xd9, 0x00, 0x05, 0x03, 0x81, + 0xdb, 0xca, 0xc0, 0xb2, 0x9e, 0xa0, 0x6b, 0x29, 0x34, 0x9d, 0x3c, 0x7f, 0x40, 0x65, 0x8a, 0xc7, + 0x99, 0x73, 0x40, 0x5f, 0xc0, 0x24, 0xc3, 0x21, 0x8b, 0xdc, 0x39, 0xd7, 0xa3, 0x46, 0xb9, 0x59, + 0x6d, 0xbf, 0xf9, 0xbd, 0xeb, 0x3c, 0x70, 0xeb, 0x24, 0xb5, 0x28, 0xfa, 0x88, 0x6e, 0x24, 0xf9, + 0xcc, 0xd9, 0x21, 0x8b, 0x2a, 0x3a, 0x83, 0xca, 0x94, 0x84, 0x09, 0x15, 0x78, 0xa8, 0xe6, 0x3e, + 0x78, 0xb2, 0xc3, 0xd5, 0x2c, 0xa6, 0x17, 0x24, 0x1e, 0x48, 0x1e, 0x44, 0xe3, 0x5e, 0x24, 0x29, + 0x1f, 0x11, 0x8f, 0xb6, 0x9d, 0xac, 0x1e, 0xb9, 0x80, 0x92, 0x68, 0x4a, 0xc2, 0x60, 0x48, 0x24, + 0x1d, 0xba, 0x99, 0x2b, 0xfd, 0x4b, 0xd7, 0xdd, 0x39, 0xaf, 0x6b, 0xdd, 0xe0, 0x03, 0x54, 0x84, + 0x24, 0x32, 0x11, 0xf8, 0xbb, 0xd1, 0x30, 0x9a, 0xdb, 0xed, 0xc3, 0x25, 0x68, 0x0c, 0x54, 0xa5, + 0x93, 0x39, 0xa0, 0x09, 0x98, 0x05, 0x5c, 0x37, 0x73, 0xfd, 0x61, 0x2c, 0xcd, 0xf8, 0xfe, 0x19, + 0x95, 0x45, 0xc6, 0xd8, 0x5b, 0x54, 0xeb, 0x1c, 0x6a, 0x8f, 0x3d, 0x46, 0xba, 0xb4, 0x13, 0x3a, + 0xc3, 0x86, 0x5e, 0xda, 0x09, 0x9d, 0xa1, 0x53, 0x58, 0x55, 0xdc, 0x70, 0xe9, 0x0f, 0x4b, 0xd4, + 0xbd, 0x93, 0x94, 0x47, 0x24, 0xbc, 0x1f, 0x20, 0x5d, 0x22, 0x5d, 0xfc, 0xba, 0x74, 0x6c, 0xd4, + 0xbf, 0x19, 0xb0, 0x75, 0x4d, 0xb9, 0x08, 0x58, 0xa4, 0xa7, 0x48, 0xff, 0x80, 0x53, 0x2d, 0x64, + 0x1d, 0xf3, 0x2b, 0xea, 0x15, 0x60, 0x4b, 0xff, 0xca, 0xf5, 0x25, 0x6c, 0xe9, 0x93, 0x2b, 0xd4, + 0x8b, 0xe2, 0xb2, 0x6a, 0xb5, 0xa9, 0x45, 0xfd, 0xca, 0xa8, 0x06, 0xab, 0x94, 0x73, 0xc6, 0xf1, + 0x8a, 0x0a, 0xea, 0x4b, 0xfd, 0x2b, 0xd4, 0x1e, 0xc3, 0xf9, 0x08, 0x25, 0x7b, 0x91, 0xd2, 0xf1, + 0x12, 0xe3, 0x2e, 0x20, 0x99, 0xe3, 0xb5, 0xdf, 0x83, 0x4a, 0xc6, 0x69, 0x1d, 0x56, 0xec, 0xbe, + 0xdd, 0x35, 0xff, 0x43, 0x9b, 0xb0, 0xfe, 0xf1, 0xf2, 0xf4, 0xe4, 0xaa, 0x67, 0xbf, 0x37, 0x0d, + 0xb4, 0x03, 0x55, 0xa7, 0xdb, 0xe9, 0xdb, 0x9d, 0xde, 0x79, 0x2a, 0x94, 0x50, 0x15, 0xd6, 0xce, + 0xba, 0x27, 0xe7, 0x57, 0x67, 0x9f, 0xcc, 0x32, 0xda, 0x80, 0xd5, 0xae, 0xe3, 0xf4, 0x1d, 0x73, + 0x65, 0xff, 0x7f, 0xd8, 0x7b, 0x62, 0xab, 0xdf, 0x35, 0x3e, 0x3f, 0xd3, 0xb3, 0x06, 0xac, 0x45, + 0xe2, 0xa0, 0xf5, 0xe0, 0x63, 0x7a, 0x53, 0x51, 0xdf, 0xd0, 0xa3, 0x5f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x12, 0x8f, 0x8c, 0x6f, 0xbf, 0x05, 0x00, 0x00, +} diff --git a/mesh/v1alpha1/operator.proto.bak b/operator/v1alpha1/operator.proto similarity index 95% rename from mesh/v1alpha1/operator.proto.bak rename to operator/v1alpha1/operator.proto index ab20cb84a1e..3f66110f071 100644 --- a/mesh/v1alpha1/operator.proto.bak +++ b/operator/v1alpha1/operator.proto @@ -15,11 +15,11 @@ syntax = "proto3"; import "mesh/v1alpha1/config.proto"; -import "mesh/v1alpha1/component.proto"; +import "operator/v1alpha1/component.proto"; -package istio.mesh.v1alpha1; +package istio.operator.v1alpha1; -option go_package="istio.io/api/mesh/v1alpha1"; +option go_package="istio.io/api/operator/v1alpha1"; /* IstioOperatorSpec is an API for managing an Istio control plane. It is used to define profiles that are included @@ -139,12 +139,15 @@ message IstioOperatorSpec { string resource_suffix = 14; // Config used by control plane components internally. - MeshConfig mesh_config = 40; + istio.mesh.v1alpha1.MeshConfig mesh_config = 40; // Kubernetes resource settings, enablement and component-specific settings that are not internal to the // component. IstioComponentSetSpec components = 50; + // Extra addon components which are not explicitly specified above. + map addon_components = 51; + // Overrides for default values.yaml. This is a validated pass-through to Helm templates. // See the Helm installation options for schema details: https://istio.io/docs/reference/config/installation-options/. // Anything that is available in IstioOperatorSpec should be set above rather than using the passthrough. This diff --git a/python/istio_api/operator/v1alpha1/component_pb2.py b/python/istio_api/operator/v1alpha1/component_pb2.py new file mode 100644 index 00000000000..3f851e76c7f --- /dev/null +++ b/python/istio_api/operator/v1alpha1/component_pb2.py @@ -0,0 +1,937 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: operator/v1alpha1/component.proto + +import sys +_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import reflection as _reflection +from google.protobuf import symbol_database as _symbol_database +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2 +from k8s.io.api.autoscaling.v2beta1 import generated_pb2 as k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2 +from operator.v1alpha1 import kubernetes_pb2 as operator_dot_v1alpha1_dot_kubernetes__pb2 + + +DESCRIPTOR = _descriptor.FileDescriptor( + name='operator/v1alpha1/component.proto', + package='istio.operator.v1alpha1', + syntax='proto3', + serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), + serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xf5\x01\n\x0bGatewaySpec\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + , + dependencies=[google_dot_protobuf_dot_any__pb2.DESCRIPTOR,k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2.DESCRIPTOR,operator_dot_v1alpha1_dot_kubernetes__pb2.DESCRIPTOR,]) + + + + +_ISTIOCOMPONENTSETSPEC = _descriptor.Descriptor( + name='IstioComponentSetSpec', + full_name='istio.operator.v1alpha1.IstioComponentSetSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='base', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.base', index=0, + number=29, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='pilot', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.pilot', index=1, + number=30, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='proxy', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.proxy', index=2, + number=31, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='sidecar_injector', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.sidecar_injector', index=3, + number=32, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='policy', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.policy', index=4, + number=33, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='telemetry', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.telemetry', index=5, + number=34, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='citadel', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.citadel', index=6, + number=35, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='node_agent', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.node_agent', index=7, + number=36, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='galley', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.galley', index=8, + number=37, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='cni', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.cni', index=9, + number=38, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='core_dNS', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.core_dNS', index=10, + number=39, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='ingress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.ingress_gateways', index=11, + number=40, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='egress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.egress_gateways', index=12, + number=41, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=174, + serialized_end=957, +) + + +_BASECOMPONENTSPEC = _descriptor.Descriptor( + name='BaseComponentSpec', + full_name='istio.operator.v1alpha1.BaseComponentSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='enabled', full_name='istio.operator.v1alpha1.BaseComponentSpec.enabled', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=959, + serialized_end=1040, +) + + +_COMPONENTSPEC = _descriptor.Descriptor( + name='ComponentSpec', + full_name='istio.operator.v1alpha1.ComponentSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='enabled', full_name='istio.operator.v1alpha1.ComponentSpec.enabled', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='namespace', full_name='istio.operator.v1alpha1.ComponentSpec.namespace', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='hub', full_name='istio.operator.v1alpha1.ComponentSpec.hub', index=2, + number=10, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tag', full_name='istio.operator.v1alpha1.ComponentSpec.tag', index=3, + number=11, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='spec', full_name='istio.operator.v1alpha1.ComponentSpec.spec', index=4, + number=30, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='k8s', full_name='istio.operator.v1alpha1.ComponentSpec.k8s', index=5, + number=50, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1043, + serialized_end=1282, +) + + +_EXTERNALCOMPONENTSPEC = _descriptor.Descriptor( + name='ExternalComponentSpec', + full_name='istio.operator.v1alpha1.ExternalComponentSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='enabled', full_name='istio.operator.v1alpha1.ExternalComponentSpec.enabled', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='namespace', full_name='istio.operator.v1alpha1.ExternalComponentSpec.namespace', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='spec', full_name='istio.operator.v1alpha1.ExternalComponentSpec.spec', index=2, + number=10, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='chart_path', full_name='istio.operator.v1alpha1.ExternalComponentSpec.chart_path', index=3, + number=30, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='schema', full_name='istio.operator.v1alpha1.ExternalComponentSpec.schema', index=4, + number=35, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='k8s', full_name='istio.operator.v1alpha1.ExternalComponentSpec.k8s', index=5, + number=50, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1285, + serialized_end=1564, +) + + +_GATEWAYSPEC_LABELENTRY = _descriptor.Descriptor( + name='LabelEntry', + full_name='istio.operator.v1alpha1.GatewaySpec.LabelEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.GatewaySpec.LabelEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.GatewaySpec.LabelEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1768, + serialized_end=1812, +) + +_GATEWAYSPEC = _descriptor.Descriptor( + name='GatewaySpec', + full_name='istio.operator.v1alpha1.GatewaySpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='namespace', full_name='istio.operator.v1alpha1.GatewaySpec.namespace', index=0, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.GatewaySpec.name', index=1, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='label', full_name='istio.operator.v1alpha1.GatewaySpec.label', index=2, + number=4, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='hub', full_name='istio.operator.v1alpha1.GatewaySpec.hub', index=3, + number=10, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tag', full_name='istio.operator.v1alpha1.GatewaySpec.tag', index=4, + number=11, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=5, + number=50, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_GATEWAYSPEC_LABELENTRY, ], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1567, + serialized_end=1812, +) + + +_KUBERNETESRESOURCESSPEC_NODESELECTORENTRY = _descriptor.Descriptor( + name='NodeSelectorEntry', + full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2724, + serialized_end=2775, +) + +_KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY = _descriptor.Descriptor( + name='PodAnnotationsEntry', + full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2777, + serialized_end=2830, +) + +_KUBERNETESRESOURCESSPEC = _descriptor.Descriptor( + name='KubernetesResourcesSpec', + full_name='istio.operator.v1alpha1.KubernetesResourcesSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='affinity', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.affinity', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='env', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.env', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='hpa_spec', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.hpa_spec', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='image_pull_policy', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.image_pull_policy', index=3, + number=4, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='node_selector', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.node_selector', index=4, + number=5, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='pod_disruption_budget', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.pod_disruption_budget', index=5, + number=6, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='pod_annotations', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.pod_annotations', index=6, + number=7, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='priority_class_name', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.priority_class_name', index=7, + number=8, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='readiness_probe', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.readiness_probe', index=8, + number=9, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='replica_count', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.replica_count', index=9, + number=10, type=13, cpp_type=3, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='resources', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.resources', index=10, + number=11, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='service', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.service', index=11, + number=12, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='strategy', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.strategy', index=12, + number=13, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tolerations', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.tolerations', index=13, + number=14, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='overlays', full_name='istio.operator.v1alpha1.KubernetesResourcesSpec.overlays', index=14, + number=100, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_KUBERNETESRESOURCESSPEC_NODESELECTORENTRY, _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY, ], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1815, + serialized_end=2830, +) + + +_K8SOBJECTOVERLAY_PATHVALUE = _descriptor.Descriptor( + name='PathValue', + full_name='istio.operator.v1alpha1.K8sObjectOverlay.PathValue', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='path', full_name='istio.operator.v1alpha1.K8sObjectOverlay.PathValue.path', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.K8sObjectOverlay.PathValue.value', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2972, + serialized_end=3052, +) + +_K8SOBJECTOVERLAY = _descriptor.Descriptor( + name='K8sObjectOverlay', + full_name='istio.operator.v1alpha1.K8sObjectOverlay', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='api_version', full_name='istio.operator.v1alpha1.K8sObjectOverlay.api_version', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='kind', full_name='istio.operator.v1alpha1.K8sObjectOverlay.kind', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.K8sObjectOverlay.name', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='patches', full_name='istio.operator.v1alpha1.K8sObjectOverlay.patches', index=3, + number=4, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_K8SOBJECTOVERLAY_PATHVALUE, ], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2833, + serialized_end=3052, +) + + +_TYPEMAPSTRINGINTERFACE = _descriptor.Descriptor( + name='TypeMapStringInterface', + full_name='istio.operator.v1alpha1.TypeMapStringInterface', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3054, + serialized_end=3078, +) + + +_TYPEINTERFACE = _descriptor.Descriptor( + name='TypeInterface', + full_name='istio.operator.v1alpha1.TypeInterface', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3080, + serialized_end=3095, +) + + +_TYPEBOOLVALUEFORPB = _descriptor.Descriptor( + name='TypeBoolValueForPB', + full_name='istio.operator.v1alpha1.TypeBoolValueForPB', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3097, + serialized_end=3117, +) + +_ISTIOCOMPONENTSETSPEC.fields_by_name['base'].message_type = _BASECOMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['pilot'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['proxy'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['sidecar_injector'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['policy'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['telemetry'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['citadel'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['node_agent'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['galley'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['cni'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['core_dNS'].message_type = _COMPONENTSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['ingress_gateways'].message_type = _GATEWAYSPEC +_ISTIOCOMPONENTSETSPEC.fields_by_name['egress_gateways'].message_type = _GATEWAYSPEC +_BASECOMPONENTSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB +_COMPONENTSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB +_COMPONENTSPEC.fields_by_name['spec'].message_type = _TYPEINTERFACE +_COMPONENTSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC +_EXTERNALCOMPONENTSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB +_EXTERNALCOMPONENTSPEC.fields_by_name['spec'].message_type = _TYPEINTERFACE +_EXTERNALCOMPONENTSPEC.fields_by_name['schema'].message_type = google_dot_protobuf_dot_any__pb2._ANY +_EXTERNALCOMPONENTSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC +_GATEWAYSPEC_LABELENTRY.containing_type = _GATEWAYSPEC +_GATEWAYSPEC.fields_by_name['label'].message_type = _GATEWAYSPEC_LABELENTRY +_GATEWAYSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC +_KUBERNETESRESOURCESSPEC_NODESELECTORENTRY.containing_type = _KUBERNETESRESOURCESSPEC +_KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY.containing_type = _KUBERNETESRESOURCESSPEC +_KUBERNETESRESOURCESSPEC.fields_by_name['affinity'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._AFFINITY +_KUBERNETESRESOURCESSPEC.fields_by_name['env'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._ENVVAR +_KUBERNETESRESOURCESSPEC.fields_by_name['hpa_spec'].message_type = k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2._HORIZONTALPODAUTOSCALERSPEC +_KUBERNETESRESOURCESSPEC.fields_by_name['node_selector'].message_type = _KUBERNETESRESOURCESSPEC_NODESELECTORENTRY +_KUBERNETESRESOURCESSPEC.fields_by_name['pod_disruption_budget'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._PODDISRUPTIONBUDGETSPEC +_KUBERNETESRESOURCESSPEC.fields_by_name['pod_annotations'].message_type = _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY +_KUBERNETESRESOURCESSPEC.fields_by_name['readiness_probe'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._READINESSPROBE +_KUBERNETESRESOURCESSPEC.fields_by_name['resources'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._RESOURCES +_KUBERNETESRESOURCESSPEC.fields_by_name['service'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._SERVICESPEC +_KUBERNETESRESOURCESSPEC.fields_by_name['strategy'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._DEPLOYMENTSTRATEGY +_KUBERNETESRESOURCESSPEC.fields_by_name['tolerations'].message_type = operator_dot_v1alpha1_dot_kubernetes__pb2._TOLERATION +_KUBERNETESRESOURCESSPEC.fields_by_name['overlays'].message_type = _K8SOBJECTOVERLAY +_K8SOBJECTOVERLAY_PATHVALUE.fields_by_name['value'].message_type = _TYPEINTERFACE +_K8SOBJECTOVERLAY_PATHVALUE.containing_type = _K8SOBJECTOVERLAY +_K8SOBJECTOVERLAY.fields_by_name['patches'].message_type = _K8SOBJECTOVERLAY_PATHVALUE +DESCRIPTOR.message_types_by_name['IstioComponentSetSpec'] = _ISTIOCOMPONENTSETSPEC +DESCRIPTOR.message_types_by_name['BaseComponentSpec'] = _BASECOMPONENTSPEC +DESCRIPTOR.message_types_by_name['ComponentSpec'] = _COMPONENTSPEC +DESCRIPTOR.message_types_by_name['ExternalComponentSpec'] = _EXTERNALCOMPONENTSPEC +DESCRIPTOR.message_types_by_name['GatewaySpec'] = _GATEWAYSPEC +DESCRIPTOR.message_types_by_name['KubernetesResourcesSpec'] = _KUBERNETESRESOURCESSPEC +DESCRIPTOR.message_types_by_name['K8sObjectOverlay'] = _K8SOBJECTOVERLAY +DESCRIPTOR.message_types_by_name['TypeMapStringInterface'] = _TYPEMAPSTRINGINTERFACE +DESCRIPTOR.message_types_by_name['TypeInterface'] = _TYPEINTERFACE +DESCRIPTOR.message_types_by_name['TypeBoolValueForPB'] = _TYPEBOOLVALUEFORPB +_sym_db.RegisterFileDescriptor(DESCRIPTOR) + +IstioComponentSetSpec = _reflection.GeneratedProtocolMessageType('IstioComponentSetSpec', (_message.Message,), { + 'DESCRIPTOR' : _ISTIOCOMPONENTSETSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.IstioComponentSetSpec) + }) +_sym_db.RegisterMessage(IstioComponentSetSpec) + +BaseComponentSpec = _reflection.GeneratedProtocolMessageType('BaseComponentSpec', (_message.Message,), { + 'DESCRIPTOR' : _BASECOMPONENTSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.BaseComponentSpec) + }) +_sym_db.RegisterMessage(BaseComponentSpec) + +ComponentSpec = _reflection.GeneratedProtocolMessageType('ComponentSpec', (_message.Message,), { + 'DESCRIPTOR' : _COMPONENTSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ComponentSpec) + }) +_sym_db.RegisterMessage(ComponentSpec) + +ExternalComponentSpec = _reflection.GeneratedProtocolMessageType('ExternalComponentSpec', (_message.Message,), { + 'DESCRIPTOR' : _EXTERNALCOMPONENTSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ExternalComponentSpec) + }) +_sym_db.RegisterMessage(ExternalComponentSpec) + +GatewaySpec = _reflection.GeneratedProtocolMessageType('GatewaySpec', (_message.Message,), { + + 'LabelEntry' : _reflection.GeneratedProtocolMessageType('LabelEntry', (_message.Message,), { + 'DESCRIPTOR' : _GATEWAYSPEC_LABELENTRY, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.GatewaySpec.LabelEntry) + }) + , + 'DESCRIPTOR' : _GATEWAYSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.GatewaySpec) + }) +_sym_db.RegisterMessage(GatewaySpec) +_sym_db.RegisterMessage(GatewaySpec.LabelEntry) + +KubernetesResourcesSpec = _reflection.GeneratedProtocolMessageType('KubernetesResourcesSpec', (_message.Message,), { + + 'NodeSelectorEntry' : _reflection.GeneratedProtocolMessageType('NodeSelectorEntry', (_message.Message,), { + 'DESCRIPTOR' : _KUBERNETESRESOURCESSPEC_NODESELECTORENTRY, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry) + }) + , + + 'PodAnnotationsEntry' : _reflection.GeneratedProtocolMessageType('PodAnnotationsEntry', (_message.Message,), { + 'DESCRIPTOR' : _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry) + }) + , + 'DESCRIPTOR' : _KUBERNETESRESOURCESSPEC, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.KubernetesResourcesSpec) + }) +_sym_db.RegisterMessage(KubernetesResourcesSpec) +_sym_db.RegisterMessage(KubernetesResourcesSpec.NodeSelectorEntry) +_sym_db.RegisterMessage(KubernetesResourcesSpec.PodAnnotationsEntry) + +K8sObjectOverlay = _reflection.GeneratedProtocolMessageType('K8sObjectOverlay', (_message.Message,), { + + 'PathValue' : _reflection.GeneratedProtocolMessageType('PathValue', (_message.Message,), { + 'DESCRIPTOR' : _K8SOBJECTOVERLAY_PATHVALUE, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.K8sObjectOverlay.PathValue) + }) + , + 'DESCRIPTOR' : _K8SOBJECTOVERLAY, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.K8sObjectOverlay) + }) +_sym_db.RegisterMessage(K8sObjectOverlay) +_sym_db.RegisterMessage(K8sObjectOverlay.PathValue) + +TypeMapStringInterface = _reflection.GeneratedProtocolMessageType('TypeMapStringInterface', (_message.Message,), { + 'DESCRIPTOR' : _TYPEMAPSTRINGINTERFACE, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TypeMapStringInterface) + }) +_sym_db.RegisterMessage(TypeMapStringInterface) + +TypeInterface = _reflection.GeneratedProtocolMessageType('TypeInterface', (_message.Message,), { + 'DESCRIPTOR' : _TYPEINTERFACE, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TypeInterface) + }) +_sym_db.RegisterMessage(TypeInterface) + +TypeBoolValueForPB = _reflection.GeneratedProtocolMessageType('TypeBoolValueForPB', (_message.Message,), { + 'DESCRIPTOR' : _TYPEBOOLVALUEFORPB, + '__module__' : 'operator.v1alpha1.component_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TypeBoolValueForPB) + }) +_sym_db.RegisterMessage(TypeBoolValueForPB) + + +DESCRIPTOR._options = None +_GATEWAYSPEC_LABELENTRY._options = None +_KUBERNETESRESOURCESSPEC_NODESELECTORENTRY._options = None +_KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY._options = None +# @@protoc_insertion_point(module_scope) diff --git a/python/istio_api/operator/v1alpha1/kubernetes_pb2.py b/python/istio_api/operator/v1alpha1/kubernetes_pb2.py new file mode 100644 index 00000000000..ed8295f5bb9 --- /dev/null +++ b/python/istio_api/operator/v1alpha1/kubernetes_pb2.py @@ -0,0 +1,1938 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: operator/v1alpha1/kubernetes.proto + +import sys +_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import reflection as _reflection +from google.protobuf import symbol_database as _symbol_database +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from k8s.io.apimachinery.pkg.apis.meta.v1 import generated_pb2 as k8s_dot_io_dot_apimachinery_dot_pkg_dot_apis_dot_meta_dot_v1_dot_generated__pb2 +from k8s.io.apimachinery.pkg.api.resource import generated_pb2 as k8s_dot_io_dot_apimachinery_dot_pkg_dot_api_dot_resource_dot_generated__pb2 +from k8s.io.apimachinery.pkg.util.intstr import generated_pb2 as k8s_dot_io_dot_apimachinery_dot_pkg_dot_util_dot_intstr_dot_generated__pb2 + + +DESCRIPTOR = _descriptor.FileDescriptor( + name='operator/v1alpha1/kubernetes.proto', + package='istio.operator.v1alpha1', + syntax='proto3', + serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), + serialized_pb=_b('\n\"operator/v1alpha1/kubernetes.proto\x12\x17istio.operator.v1alpha1\x1a\x34k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto\x1a\x34k8s.io/apimachinery/pkg/api/resource/generated.proto\x1a\x33k8s.io/apimachinery/pkg/util/intstr/generated.proto\"\xef\x01\n\tResources\x12>\n\x06limits\x18\x01 \x03(\x0b\x32..istio.operator.v1alpha1.Resources.LimitsEntry\x12\x42\n\x08requests\x18\x02 \x03(\x0b\x32\x30.istio.operator.v1alpha1.Resources.RequestsEntry\x1a-\n\x0bLimitsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a/\n\rRequestsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc5\x01\n\x08\x41\x66\x66inity\x12;\n\x0cnodeAffinity\x18\x01 \x01(\x0b\x32%.istio.operator.v1alpha1.NodeAffinity\x12\x39\n\x0bpodAffinity\x18\x02 \x01(\x0b\x32$.istio.operator.v1alpha1.PodAffinity\x12\x41\n\x0fpodAntiAffinity\x18\x03 \x01(\x0b\x32(.istio.operator.v1alpha1.PodAntiAffinity\"\xd8\x01\n\x0cNodeAffinity\x12]\n.requiredDuringSchedulingIgnoredDuringExecution\x18\x01 \x01(\x0b\x32%.istio.operator.v1alpha1.NodeSelector\x12i\n/preferredDuringSchedulingIgnoredDuringExecution\x18\x02 \x03(\x0b\x32\x30.istio.operator.v1alpha1.PreferredSchedulingTerm\"T\n\x0cNodeSelector\x12\x44\n\x11nodeSelectorTerms\x18\x01 \x03(\x0b\x32).istio.operator.v1alpha1.NodeSelectorTerm\"\xa5\x01\n\x10NodeSelectorTerm\x12J\n\x10matchExpressions\x18\x01 \x03(\x0b\x32\x30.istio.operator.v1alpha1.NodeSelectorRequirement\x12\x45\n\x0bmatchFields\x18\x02 \x03(\x0b\x32\x30.istio.operator.v1alpha1.NodeSelectorRequirement\"H\n\x17NodeSelectorRequirement\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x10\n\x08operator\x18\x02 \x01(\t\x12\x0e\n\x06values\x18\x03 \x03(\t\"\xda\x01\n\x0bPodAffinity\x12`\n.requiredDuringSchedulingIgnoredDuringExecution\x18\x01 \x03(\x0b\x32(.istio.operator.v1alpha1.PodAffinityTerm\x12i\n/preferredDuringSchedulingIgnoredDuringExecution\x18\x02 \x03(\x0b\x32\x30.istio.operator.v1alpha1.WeightedPodAffinityTerm\"\xde\x01\n\x0fPodAntiAffinity\x12`\n.requiredDuringSchedulingIgnoredDuringExecution\x18\x01 \x03(\x0b\x32(.istio.operator.v1alpha1.PodAffinityTerm\x12i\n/preferredDuringSchedulingIgnoredDuringExecution\x18\x02 \x03(\x0b\x32\x30.istio.operator.v1alpha1.WeightedPodAffinityTerm\"\x86\x01\n\x0fPodAffinityTerm\x12J\n\rlabelSelector\x18\x01 \x01(\x0b\x32\x33.k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector\x12\x12\n\nnamespaces\x18\x02 \x03(\t\x12\x13\n\x0btopologyKey\x18\x03 \x01(\t\"l\n\x17WeightedPodAffinityTerm\x12\x0e\n\x06weight\x18\x01 \x01(\x05\x12\x41\n\x0fpodAffinityTerm\x18\x02 \x01(\x0b\x32(.istio.operator.v1alpha1.PodAffinityTerm\"h\n\x17PreferredSchedulingTerm\x12\x0e\n\x06weight\x18\x01 \x01(\x05\x12=\n\npreference\x18\x02 \x01(\x0b\x32).istio.operator.v1alpha1.NodeSelectorTerm\"\xb9\x02\n\x0eReadinessProbe\x12\x31\n\x04\x65xec\x18\x01 \x01(\x0b\x32#.istio.operator.v1alpha1.ExecAction\x12\x37\n\x07httpGet\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.HTTPGetAction\x12;\n\ttcpSocket\x18\x03 \x01(\x0b\x32(.istio.operator.v1alpha1.TCPSocketAction\x12\x1b\n\x13initialDelaySeconds\x18\x04 \x01(\x05\x12\x16\n\x0etimeoutSeconds\x18\x05 \x01(\x05\x12\x15\n\rperiodSeconds\x18\x06 \x01(\x05\x12\x18\n\x10successThreshold\x18\x07 \x01(\x05\x12\x18\n\x10\x66\x61ilureThreshold\x18\x08 \x01(\x05\"\x1d\n\nExecAction\x12\x0f\n\x07\x63ommand\x18\x01 \x03(\t\"\xb2\x01\n\rHTTPGetAction\x12\x0c\n\x04path\x18\x01 \x01(\t\x12;\n\x04port\x18\x02 \x01(\x0b\x32-.istio.operator.v1alpha1.TypeIntOrStringForPB\x12\x0c\n\x04host\x18\x03 \x01(\t\x12\x0e\n\x06scheme\x18\x04 \x01(\t\x12\x38\n\x0bhttpHeaders\x18\x05 \x03(\x0b\x32#.istio.operator.v1alpha1.HTTPHeader\")\n\nHTTPHeader\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\"\\\n\x0fTCPSocketAction\x12;\n\x04port\x18\x01 \x01(\x0b\x32-.istio.operator.v1alpha1.TypeIntOrStringForPB\x12\x0c\n\x04host\x18\x02 \x01(\t\"\x8e\x01\n\x17PodDisruptionBudgetSpec\x12\x14\n\x0cminAvailable\x18\x01 \x01(\r\x12\x45\n\x08selector\x18\x02 \x01(\x0b\x32\x33.k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector\x12\x16\n\x0emaxUnavailable\x18\x03 \x01(\r\"k\n\x12\x44\x65ploymentStrategy\x12\x0c\n\x04type\x18\x01 \x01(\t\x12G\n\rrollingUpdate\x18\x02 \x01(\x0b\x32\x30.istio.operator.v1alpha1.RollingUpdateDeployment\"\xa1\x01\n\x17RollingUpdateDeployment\x12\x45\n\x0emaxUnavailable\x18\x01 \x01(\x0b\x32-.istio.operator.v1alpha1.TypeIntOrStringForPB\x12?\n\x08maxSurge\x18\x02 \x01(\x0b\x32-.istio.operator.v1alpha1.TypeIntOrStringForPB\"-\n\nObjectMeta\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x11\n\tnamespace\x18\x06 \x01(\t\"_\n\x06\x45nvVar\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\x12\x38\n\tvalueFrom\x18\x03 \x01(\x0b\x32%.istio.operator.v1alpha1.EnvVarSource\"\xa2\x02\n\x0c\x45nvVarSource\x12>\n\x08\x66ieldRef\x18\x01 \x01(\x0b\x32,.istio.operator.v1alpha1.ObjectFieldSelector\x12H\n\x10resourceFieldRef\x18\x02 \x01(\x0b\x32..istio.operator.v1alpha1.ResourceFieldSelector\x12\x46\n\x0f\x63onfigMapKeyRef\x18\x03 \x01(\x0b\x32-.istio.operator.v1alpha1.ConfigMapKeySelector\x12@\n\x0csecretKeyRef\x18\x04 \x01(\x0b\x32*.istio.operator.v1alpha1.SecretKeySelector\"<\n\x13ObjectFieldSelector\x12\x12\n\napiVersion\x18\x01 \x01(\t\x12\x11\n\tfieldPath\x18\x02 \x01(\t\"\x81\x01\n\x15ResourceFieldSelector\x12\x15\n\rcontainerName\x18\x01 \x01(\t\x12\x10\n\x08resource\x18\x02 \x01(\t\x12?\n\x07\x64ivisor\x18\x03 \x01(\x0b\x32..k8s.io.apimachinery.pkg.api.resource.Quantity\"\x82\x01\n\x14\x43onfigMapKeySelector\x12K\n\x14localObjectReference\x18\x01 \x01(\x0b\x32-.istio.operator.v1alpha1.LocalObjectReference\x12\x0b\n\x03key\x18\x02 \x01(\t\x12\x10\n\x08optional\x18\x03 \x01(\x08\"\x7f\n\x11SecretKeySelector\x12K\n\x14localObjectReference\x18\x01 \x01(\x0b\x32-.istio.operator.v1alpha1.LocalObjectReference\x12\x0b\n\x03key\x18\x02 \x01(\t\x12\x10\n\x08optional\x18\x03 \x01(\x08\"$\n\x14LocalObjectReference\x12\x0c\n\x04name\x18\x01 \x01(\t\"\x85\x04\n\x0bServiceSpec\x12\x33\n\x05ports\x18\x01 \x03(\x0b\x32$.istio.operator.v1alpha1.ServicePort\x12\x44\n\x08selector\x18\x02 \x03(\x0b\x32\x32.istio.operator.v1alpha1.ServiceSpec.SelectorEntry\x12\x11\n\tclusterIP\x18\x03 \x01(\t\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\x13\n\x0b\x65xternalIPs\x18\x05 \x03(\t\x12\x17\n\x0fsessionAffinity\x18\x07 \x01(\t\x12\x16\n\x0eloadBalancerIP\x18\x08 \x01(\t\x12 \n\x18loadBalancerSourceRanges\x18\t \x03(\t\x12\x14\n\x0c\x65xternalName\x18\n \x01(\t\x12\x1d\n\x15\x65xternalTrafficPolicy\x18\x0b \x01(\t\x12\x1b\n\x13healthCheckNodePort\x18\x0c \x01(\x05\x12 \n\x18publishNotReadyAddresses\x18\r \x01(\x08\x12M\n\x15sessionAffinityConfig\x18\x0e \x01(\x0b\x32..istio.operator.v1alpha1.SessionAffinityConfig\x1a/\n\rSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x93\x01\n\x0bServicePort\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08protocol\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\x05\x12\x44\n\ntargetPort\x18\x04 \x01(\x0b\x32\x30.k8s.io.apimachinery.pkg.util.intstr.IntOrString\x12\x10\n\x08nodePort\x18\x05 \x01(\x05\"R\n\x15SessionAffinityConfig\x12\x39\n\x08\x63lientIP\x18\x01 \x01(\x0b\x32\'.istio.operator.v1alpha1.ClientIPConfig\"(\n\x0e\x43lientIPConfig\x12\x16\n\x0etimeoutSeconds\x18\x01 \x01(\x05\"e\n\nToleration\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x10\n\x08operator\x18\x02 \x01(\t\x12\r\n\x05value\x18\x03 \x01(\t\x12\x0e\n\x06\x65\x66\x66\x65\x63t\x18\x04 \x01(\t\x12\x19\n\x11tolerationSeconds\x18\x05 \x01(\x03\"\x16\n\x14TypeIntOrStringForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + , + dependencies=[k8s_dot_io_dot_apimachinery_dot_pkg_dot_apis_dot_meta_dot_v1_dot_generated__pb2.DESCRIPTOR,k8s_dot_io_dot_apimachinery_dot_pkg_dot_api_dot_resource_dot_generated__pb2.DESCRIPTOR,k8s_dot_io_dot_apimachinery_dot_pkg_dot_util_dot_intstr_dot_generated__pb2.DESCRIPTOR,]) + + + + +_RESOURCES_LIMITSENTRY = _descriptor.Descriptor( + name='LimitsEntry', + full_name='istio.operator.v1alpha1.Resources.LimitsEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.Resources.LimitsEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.Resources.LimitsEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=370, + serialized_end=415, +) + +_RESOURCES_REQUESTSENTRY = _descriptor.Descriptor( + name='RequestsEntry', + full_name='istio.operator.v1alpha1.Resources.RequestsEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.Resources.RequestsEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.Resources.RequestsEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=417, + serialized_end=464, +) + +_RESOURCES = _descriptor.Descriptor( + name='Resources', + full_name='istio.operator.v1alpha1.Resources', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='limits', full_name='istio.operator.v1alpha1.Resources.limits', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='requests', full_name='istio.operator.v1alpha1.Resources.requests', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_RESOURCES_LIMITSENTRY, _RESOURCES_REQUESTSENTRY, ], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=225, + serialized_end=464, +) + + +_AFFINITY = _descriptor.Descriptor( + name='Affinity', + full_name='istio.operator.v1alpha1.Affinity', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='nodeAffinity', full_name='istio.operator.v1alpha1.Affinity.nodeAffinity', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='podAffinity', full_name='istio.operator.v1alpha1.Affinity.podAffinity', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='podAntiAffinity', full_name='istio.operator.v1alpha1.Affinity.podAntiAffinity', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=467, + serialized_end=664, +) + + +_NODEAFFINITY = _descriptor.Descriptor( + name='NodeAffinity', + full_name='istio.operator.v1alpha1.NodeAffinity', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='requiredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.NodeAffinity.requiredDuringSchedulingIgnoredDuringExecution', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='preferredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.NodeAffinity.preferredDuringSchedulingIgnoredDuringExecution', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=667, + serialized_end=883, +) + + +_NODESELECTOR = _descriptor.Descriptor( + name='NodeSelector', + full_name='istio.operator.v1alpha1.NodeSelector', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='nodeSelectorTerms', full_name='istio.operator.v1alpha1.NodeSelector.nodeSelectorTerms', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=885, + serialized_end=969, +) + + +_NODESELECTORTERM = _descriptor.Descriptor( + name='NodeSelectorTerm', + full_name='istio.operator.v1alpha1.NodeSelectorTerm', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='matchExpressions', full_name='istio.operator.v1alpha1.NodeSelectorTerm.matchExpressions', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='matchFields', full_name='istio.operator.v1alpha1.NodeSelectorTerm.matchFields', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=972, + serialized_end=1137, +) + + +_NODESELECTORREQUIREMENT = _descriptor.Descriptor( + name='NodeSelectorRequirement', + full_name='istio.operator.v1alpha1.NodeSelectorRequirement', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.NodeSelectorRequirement.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='operator', full_name='istio.operator.v1alpha1.NodeSelectorRequirement.operator', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='values', full_name='istio.operator.v1alpha1.NodeSelectorRequirement.values', index=2, + number=3, type=9, cpp_type=9, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1139, + serialized_end=1211, +) + + +_PODAFFINITY = _descriptor.Descriptor( + name='PodAffinity', + full_name='istio.operator.v1alpha1.PodAffinity', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='requiredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.PodAffinity.requiredDuringSchedulingIgnoredDuringExecution', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='preferredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.PodAffinity.preferredDuringSchedulingIgnoredDuringExecution', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1214, + serialized_end=1432, +) + + +_PODANTIAFFINITY = _descriptor.Descriptor( + name='PodAntiAffinity', + full_name='istio.operator.v1alpha1.PodAntiAffinity', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='requiredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.PodAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='preferredDuringSchedulingIgnoredDuringExecution', full_name='istio.operator.v1alpha1.PodAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1435, + serialized_end=1657, +) + + +_PODAFFINITYTERM = _descriptor.Descriptor( + name='PodAffinityTerm', + full_name='istio.operator.v1alpha1.PodAffinityTerm', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='labelSelector', full_name='istio.operator.v1alpha1.PodAffinityTerm.labelSelector', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='namespaces', full_name='istio.operator.v1alpha1.PodAffinityTerm.namespaces', index=1, + number=2, type=9, cpp_type=9, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='topologyKey', full_name='istio.operator.v1alpha1.PodAffinityTerm.topologyKey', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1660, + serialized_end=1794, +) + + +_WEIGHTEDPODAFFINITYTERM = _descriptor.Descriptor( + name='WeightedPodAffinityTerm', + full_name='istio.operator.v1alpha1.WeightedPodAffinityTerm', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='weight', full_name='istio.operator.v1alpha1.WeightedPodAffinityTerm.weight', index=0, + number=1, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='podAffinityTerm', full_name='istio.operator.v1alpha1.WeightedPodAffinityTerm.podAffinityTerm', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1796, + serialized_end=1904, +) + + +_PREFERREDSCHEDULINGTERM = _descriptor.Descriptor( + name='PreferredSchedulingTerm', + full_name='istio.operator.v1alpha1.PreferredSchedulingTerm', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='weight', full_name='istio.operator.v1alpha1.PreferredSchedulingTerm.weight', index=0, + number=1, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='preference', full_name='istio.operator.v1alpha1.PreferredSchedulingTerm.preference', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1906, + serialized_end=2010, +) + + +_READINESSPROBE = _descriptor.Descriptor( + name='ReadinessProbe', + full_name='istio.operator.v1alpha1.ReadinessProbe', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='exec', full_name='istio.operator.v1alpha1.ReadinessProbe.exec', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='httpGet', full_name='istio.operator.v1alpha1.ReadinessProbe.httpGet', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tcpSocket', full_name='istio.operator.v1alpha1.ReadinessProbe.tcpSocket', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='initialDelaySeconds', full_name='istio.operator.v1alpha1.ReadinessProbe.initialDelaySeconds', index=3, + number=4, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='timeoutSeconds', full_name='istio.operator.v1alpha1.ReadinessProbe.timeoutSeconds', index=4, + number=5, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='periodSeconds', full_name='istio.operator.v1alpha1.ReadinessProbe.periodSeconds', index=5, + number=6, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='successThreshold', full_name='istio.operator.v1alpha1.ReadinessProbe.successThreshold', index=6, + number=7, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='failureThreshold', full_name='istio.operator.v1alpha1.ReadinessProbe.failureThreshold', index=7, + number=8, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2013, + serialized_end=2326, +) + + +_EXECACTION = _descriptor.Descriptor( + name='ExecAction', + full_name='istio.operator.v1alpha1.ExecAction', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='command', full_name='istio.operator.v1alpha1.ExecAction.command', index=0, + number=1, type=9, cpp_type=9, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2328, + serialized_end=2357, +) + + +_HTTPGETACTION = _descriptor.Descriptor( + name='HTTPGetAction', + full_name='istio.operator.v1alpha1.HTTPGetAction', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='path', full_name='istio.operator.v1alpha1.HTTPGetAction.path', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='port', full_name='istio.operator.v1alpha1.HTTPGetAction.port', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='host', full_name='istio.operator.v1alpha1.HTTPGetAction.host', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='scheme', full_name='istio.operator.v1alpha1.HTTPGetAction.scheme', index=3, + number=4, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='httpHeaders', full_name='istio.operator.v1alpha1.HTTPGetAction.httpHeaders', index=4, + number=5, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2360, + serialized_end=2538, +) + + +_HTTPHEADER = _descriptor.Descriptor( + name='HTTPHeader', + full_name='istio.operator.v1alpha1.HTTPHeader', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.HTTPHeader.name', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.HTTPHeader.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2540, + serialized_end=2581, +) + + +_TCPSOCKETACTION = _descriptor.Descriptor( + name='TCPSocketAction', + full_name='istio.operator.v1alpha1.TCPSocketAction', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='port', full_name='istio.operator.v1alpha1.TCPSocketAction.port', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='host', full_name='istio.operator.v1alpha1.TCPSocketAction.host', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2583, + serialized_end=2675, +) + + +_PODDISRUPTIONBUDGETSPEC = _descriptor.Descriptor( + name='PodDisruptionBudgetSpec', + full_name='istio.operator.v1alpha1.PodDisruptionBudgetSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='minAvailable', full_name='istio.operator.v1alpha1.PodDisruptionBudgetSpec.minAvailable', index=0, + number=1, type=13, cpp_type=3, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='selector', full_name='istio.operator.v1alpha1.PodDisruptionBudgetSpec.selector', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='maxUnavailable', full_name='istio.operator.v1alpha1.PodDisruptionBudgetSpec.maxUnavailable', index=2, + number=3, type=13, cpp_type=3, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2678, + serialized_end=2820, +) + + +_DEPLOYMENTSTRATEGY = _descriptor.Descriptor( + name='DeploymentStrategy', + full_name='istio.operator.v1alpha1.DeploymentStrategy', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='type', full_name='istio.operator.v1alpha1.DeploymentStrategy.type', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='rollingUpdate', full_name='istio.operator.v1alpha1.DeploymentStrategy.rollingUpdate', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2822, + serialized_end=2929, +) + + +_ROLLINGUPDATEDEPLOYMENT = _descriptor.Descriptor( + name='RollingUpdateDeployment', + full_name='istio.operator.v1alpha1.RollingUpdateDeployment', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='maxUnavailable', full_name='istio.operator.v1alpha1.RollingUpdateDeployment.maxUnavailable', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='maxSurge', full_name='istio.operator.v1alpha1.RollingUpdateDeployment.maxSurge', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=2932, + serialized_end=3093, +) + + +_OBJECTMETA = _descriptor.Descriptor( + name='ObjectMeta', + full_name='istio.operator.v1alpha1.ObjectMeta', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.ObjectMeta.name', index=0, + number=5, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='namespace', full_name='istio.operator.v1alpha1.ObjectMeta.namespace', index=1, + number=6, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3095, + serialized_end=3140, +) + + +_ENVVAR = _descriptor.Descriptor( + name='EnvVar', + full_name='istio.operator.v1alpha1.EnvVar', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.EnvVar.name', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.EnvVar.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='valueFrom', full_name='istio.operator.v1alpha1.EnvVar.valueFrom', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3142, + serialized_end=3237, +) + + +_ENVVARSOURCE = _descriptor.Descriptor( + name='EnvVarSource', + full_name='istio.operator.v1alpha1.EnvVarSource', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='fieldRef', full_name='istio.operator.v1alpha1.EnvVarSource.fieldRef', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='resourceFieldRef', full_name='istio.operator.v1alpha1.EnvVarSource.resourceFieldRef', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='configMapKeyRef', full_name='istio.operator.v1alpha1.EnvVarSource.configMapKeyRef', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='secretKeyRef', full_name='istio.operator.v1alpha1.EnvVarSource.secretKeyRef', index=3, + number=4, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3240, + serialized_end=3530, +) + + +_OBJECTFIELDSELECTOR = _descriptor.Descriptor( + name='ObjectFieldSelector', + full_name='istio.operator.v1alpha1.ObjectFieldSelector', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='apiVersion', full_name='istio.operator.v1alpha1.ObjectFieldSelector.apiVersion', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='fieldPath', full_name='istio.operator.v1alpha1.ObjectFieldSelector.fieldPath', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3532, + serialized_end=3592, +) + + +_RESOURCEFIELDSELECTOR = _descriptor.Descriptor( + name='ResourceFieldSelector', + full_name='istio.operator.v1alpha1.ResourceFieldSelector', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='containerName', full_name='istio.operator.v1alpha1.ResourceFieldSelector.containerName', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='resource', full_name='istio.operator.v1alpha1.ResourceFieldSelector.resource', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='divisor', full_name='istio.operator.v1alpha1.ResourceFieldSelector.divisor', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3595, + serialized_end=3724, +) + + +_CONFIGMAPKEYSELECTOR = _descriptor.Descriptor( + name='ConfigMapKeySelector', + full_name='istio.operator.v1alpha1.ConfigMapKeySelector', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='localObjectReference', full_name='istio.operator.v1alpha1.ConfigMapKeySelector.localObjectReference', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.ConfigMapKeySelector.key', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='optional', full_name='istio.operator.v1alpha1.ConfigMapKeySelector.optional', index=2, + number=3, type=8, cpp_type=7, label=1, + has_default_value=False, default_value=False, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3727, + serialized_end=3857, +) + + +_SECRETKEYSELECTOR = _descriptor.Descriptor( + name='SecretKeySelector', + full_name='istio.operator.v1alpha1.SecretKeySelector', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='localObjectReference', full_name='istio.operator.v1alpha1.SecretKeySelector.localObjectReference', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.SecretKeySelector.key', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='optional', full_name='istio.operator.v1alpha1.SecretKeySelector.optional', index=2, + number=3, type=8, cpp_type=7, label=1, + has_default_value=False, default_value=False, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3859, + serialized_end=3986, +) + + +_LOCALOBJECTREFERENCE = _descriptor.Descriptor( + name='LocalObjectReference', + full_name='istio.operator.v1alpha1.LocalObjectReference', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.LocalObjectReference.name', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=3988, + serialized_end=4024, +) + + +_SERVICESPEC_SELECTORENTRY = _descriptor.Descriptor( + name='SelectorEntry', + full_name='istio.operator.v1alpha1.ServiceSpec.SelectorEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.ServiceSpec.SelectorEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.ServiceSpec.SelectorEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4497, + serialized_end=4544, +) + +_SERVICESPEC = _descriptor.Descriptor( + name='ServiceSpec', + full_name='istio.operator.v1alpha1.ServiceSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='ports', full_name='istio.operator.v1alpha1.ServiceSpec.ports', index=0, + number=1, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='selector', full_name='istio.operator.v1alpha1.ServiceSpec.selector', index=1, + number=2, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='clusterIP', full_name='istio.operator.v1alpha1.ServiceSpec.clusterIP', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='type', full_name='istio.operator.v1alpha1.ServiceSpec.type', index=3, + number=4, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='externalIPs', full_name='istio.operator.v1alpha1.ServiceSpec.externalIPs', index=4, + number=5, type=9, cpp_type=9, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='sessionAffinity', full_name='istio.operator.v1alpha1.ServiceSpec.sessionAffinity', index=5, + number=7, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='loadBalancerIP', full_name='istio.operator.v1alpha1.ServiceSpec.loadBalancerIP', index=6, + number=8, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='loadBalancerSourceRanges', full_name='istio.operator.v1alpha1.ServiceSpec.loadBalancerSourceRanges', index=7, + number=9, type=9, cpp_type=9, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='externalName', full_name='istio.operator.v1alpha1.ServiceSpec.externalName', index=8, + number=10, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='externalTrafficPolicy', full_name='istio.operator.v1alpha1.ServiceSpec.externalTrafficPolicy', index=9, + number=11, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='healthCheckNodePort', full_name='istio.operator.v1alpha1.ServiceSpec.healthCheckNodePort', index=10, + number=12, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='publishNotReadyAddresses', full_name='istio.operator.v1alpha1.ServiceSpec.publishNotReadyAddresses', index=11, + number=13, type=8, cpp_type=7, label=1, + has_default_value=False, default_value=False, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='sessionAffinityConfig', full_name='istio.operator.v1alpha1.ServiceSpec.sessionAffinityConfig', index=12, + number=14, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_SERVICESPEC_SELECTORENTRY, ], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4027, + serialized_end=4544, +) + + +_SERVICEPORT = _descriptor.Descriptor( + name='ServicePort', + full_name='istio.operator.v1alpha1.ServicePort', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='name', full_name='istio.operator.v1alpha1.ServicePort.name', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='protocol', full_name='istio.operator.v1alpha1.ServicePort.protocol', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='port', full_name='istio.operator.v1alpha1.ServicePort.port', index=2, + number=3, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='targetPort', full_name='istio.operator.v1alpha1.ServicePort.targetPort', index=3, + number=4, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='nodePort', full_name='istio.operator.v1alpha1.ServicePort.nodePort', index=4, + number=5, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4547, + serialized_end=4694, +) + + +_SESSIONAFFINITYCONFIG = _descriptor.Descriptor( + name='SessionAffinityConfig', + full_name='istio.operator.v1alpha1.SessionAffinityConfig', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='clientIP', full_name='istio.operator.v1alpha1.SessionAffinityConfig.clientIP', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4696, + serialized_end=4778, +) + + +_CLIENTIPCONFIG = _descriptor.Descriptor( + name='ClientIPConfig', + full_name='istio.operator.v1alpha1.ClientIPConfig', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='timeoutSeconds', full_name='istio.operator.v1alpha1.ClientIPConfig.timeoutSeconds', index=0, + number=1, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4780, + serialized_end=4820, +) + + +_TOLERATION = _descriptor.Descriptor( + name='Toleration', + full_name='istio.operator.v1alpha1.Toleration', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.Toleration.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='operator', full_name='istio.operator.v1alpha1.Toleration.operator', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.Toleration.value', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='effect', full_name='istio.operator.v1alpha1.Toleration.effect', index=3, + number=4, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tolerationSeconds', full_name='istio.operator.v1alpha1.Toleration.tolerationSeconds', index=4, + number=5, type=3, cpp_type=2, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4822, + serialized_end=4923, +) + + +_TYPEINTORSTRINGFORPB = _descriptor.Descriptor( + name='TypeIntOrStringForPB', + full_name='istio.operator.v1alpha1.TypeIntOrStringForPB', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4925, + serialized_end=4947, +) + +_RESOURCES_LIMITSENTRY.containing_type = _RESOURCES +_RESOURCES_REQUESTSENTRY.containing_type = _RESOURCES +_RESOURCES.fields_by_name['limits'].message_type = _RESOURCES_LIMITSENTRY +_RESOURCES.fields_by_name['requests'].message_type = _RESOURCES_REQUESTSENTRY +_AFFINITY.fields_by_name['nodeAffinity'].message_type = _NODEAFFINITY +_AFFINITY.fields_by_name['podAffinity'].message_type = _PODAFFINITY +_AFFINITY.fields_by_name['podAntiAffinity'].message_type = _PODANTIAFFINITY +_NODEAFFINITY.fields_by_name['requiredDuringSchedulingIgnoredDuringExecution'].message_type = _NODESELECTOR +_NODEAFFINITY.fields_by_name['preferredDuringSchedulingIgnoredDuringExecution'].message_type = _PREFERREDSCHEDULINGTERM +_NODESELECTOR.fields_by_name['nodeSelectorTerms'].message_type = _NODESELECTORTERM +_NODESELECTORTERM.fields_by_name['matchExpressions'].message_type = _NODESELECTORREQUIREMENT +_NODESELECTORTERM.fields_by_name['matchFields'].message_type = _NODESELECTORREQUIREMENT +_PODAFFINITY.fields_by_name['requiredDuringSchedulingIgnoredDuringExecution'].message_type = _PODAFFINITYTERM +_PODAFFINITY.fields_by_name['preferredDuringSchedulingIgnoredDuringExecution'].message_type = _WEIGHTEDPODAFFINITYTERM +_PODANTIAFFINITY.fields_by_name['requiredDuringSchedulingIgnoredDuringExecution'].message_type = _PODAFFINITYTERM +_PODANTIAFFINITY.fields_by_name['preferredDuringSchedulingIgnoredDuringExecution'].message_type = _WEIGHTEDPODAFFINITYTERM +_PODAFFINITYTERM.fields_by_name['labelSelector'].message_type = k8s_dot_io_dot_apimachinery_dot_pkg_dot_apis_dot_meta_dot_v1_dot_generated__pb2._LABELSELECTOR +_WEIGHTEDPODAFFINITYTERM.fields_by_name['podAffinityTerm'].message_type = _PODAFFINITYTERM +_PREFERREDSCHEDULINGTERM.fields_by_name['preference'].message_type = _NODESELECTORTERM +_READINESSPROBE.fields_by_name['exec'].message_type = _EXECACTION +_READINESSPROBE.fields_by_name['httpGet'].message_type = _HTTPGETACTION +_READINESSPROBE.fields_by_name['tcpSocket'].message_type = _TCPSOCKETACTION +_HTTPGETACTION.fields_by_name['port'].message_type = _TYPEINTORSTRINGFORPB +_HTTPGETACTION.fields_by_name['httpHeaders'].message_type = _HTTPHEADER +_TCPSOCKETACTION.fields_by_name['port'].message_type = _TYPEINTORSTRINGFORPB +_PODDISRUPTIONBUDGETSPEC.fields_by_name['selector'].message_type = k8s_dot_io_dot_apimachinery_dot_pkg_dot_apis_dot_meta_dot_v1_dot_generated__pb2._LABELSELECTOR +_DEPLOYMENTSTRATEGY.fields_by_name['rollingUpdate'].message_type = _ROLLINGUPDATEDEPLOYMENT +_ROLLINGUPDATEDEPLOYMENT.fields_by_name['maxUnavailable'].message_type = _TYPEINTORSTRINGFORPB +_ROLLINGUPDATEDEPLOYMENT.fields_by_name['maxSurge'].message_type = _TYPEINTORSTRINGFORPB +_ENVVAR.fields_by_name['valueFrom'].message_type = _ENVVARSOURCE +_ENVVARSOURCE.fields_by_name['fieldRef'].message_type = _OBJECTFIELDSELECTOR +_ENVVARSOURCE.fields_by_name['resourceFieldRef'].message_type = _RESOURCEFIELDSELECTOR +_ENVVARSOURCE.fields_by_name['configMapKeyRef'].message_type = _CONFIGMAPKEYSELECTOR +_ENVVARSOURCE.fields_by_name['secretKeyRef'].message_type = _SECRETKEYSELECTOR +_RESOURCEFIELDSELECTOR.fields_by_name['divisor'].message_type = k8s_dot_io_dot_apimachinery_dot_pkg_dot_api_dot_resource_dot_generated__pb2._QUANTITY +_CONFIGMAPKEYSELECTOR.fields_by_name['localObjectReference'].message_type = _LOCALOBJECTREFERENCE +_SECRETKEYSELECTOR.fields_by_name['localObjectReference'].message_type = _LOCALOBJECTREFERENCE +_SERVICESPEC_SELECTORENTRY.containing_type = _SERVICESPEC +_SERVICESPEC.fields_by_name['ports'].message_type = _SERVICEPORT +_SERVICESPEC.fields_by_name['selector'].message_type = _SERVICESPEC_SELECTORENTRY +_SERVICESPEC.fields_by_name['sessionAffinityConfig'].message_type = _SESSIONAFFINITYCONFIG +_SERVICEPORT.fields_by_name['targetPort'].message_type = k8s_dot_io_dot_apimachinery_dot_pkg_dot_util_dot_intstr_dot_generated__pb2._INTORSTRING +_SESSIONAFFINITYCONFIG.fields_by_name['clientIP'].message_type = _CLIENTIPCONFIG +DESCRIPTOR.message_types_by_name['Resources'] = _RESOURCES +DESCRIPTOR.message_types_by_name['Affinity'] = _AFFINITY +DESCRIPTOR.message_types_by_name['NodeAffinity'] = _NODEAFFINITY +DESCRIPTOR.message_types_by_name['NodeSelector'] = _NODESELECTOR +DESCRIPTOR.message_types_by_name['NodeSelectorTerm'] = _NODESELECTORTERM +DESCRIPTOR.message_types_by_name['NodeSelectorRequirement'] = _NODESELECTORREQUIREMENT +DESCRIPTOR.message_types_by_name['PodAffinity'] = _PODAFFINITY +DESCRIPTOR.message_types_by_name['PodAntiAffinity'] = _PODANTIAFFINITY +DESCRIPTOR.message_types_by_name['PodAffinityTerm'] = _PODAFFINITYTERM +DESCRIPTOR.message_types_by_name['WeightedPodAffinityTerm'] = _WEIGHTEDPODAFFINITYTERM +DESCRIPTOR.message_types_by_name['PreferredSchedulingTerm'] = _PREFERREDSCHEDULINGTERM +DESCRIPTOR.message_types_by_name['ReadinessProbe'] = _READINESSPROBE +DESCRIPTOR.message_types_by_name['ExecAction'] = _EXECACTION +DESCRIPTOR.message_types_by_name['HTTPGetAction'] = _HTTPGETACTION +DESCRIPTOR.message_types_by_name['HTTPHeader'] = _HTTPHEADER +DESCRIPTOR.message_types_by_name['TCPSocketAction'] = _TCPSOCKETACTION +DESCRIPTOR.message_types_by_name['PodDisruptionBudgetSpec'] = _PODDISRUPTIONBUDGETSPEC +DESCRIPTOR.message_types_by_name['DeploymentStrategy'] = _DEPLOYMENTSTRATEGY +DESCRIPTOR.message_types_by_name['RollingUpdateDeployment'] = _ROLLINGUPDATEDEPLOYMENT +DESCRIPTOR.message_types_by_name['ObjectMeta'] = _OBJECTMETA +DESCRIPTOR.message_types_by_name['EnvVar'] = _ENVVAR +DESCRIPTOR.message_types_by_name['EnvVarSource'] = _ENVVARSOURCE +DESCRIPTOR.message_types_by_name['ObjectFieldSelector'] = _OBJECTFIELDSELECTOR +DESCRIPTOR.message_types_by_name['ResourceFieldSelector'] = _RESOURCEFIELDSELECTOR +DESCRIPTOR.message_types_by_name['ConfigMapKeySelector'] = _CONFIGMAPKEYSELECTOR +DESCRIPTOR.message_types_by_name['SecretKeySelector'] = _SECRETKEYSELECTOR +DESCRIPTOR.message_types_by_name['LocalObjectReference'] = _LOCALOBJECTREFERENCE +DESCRIPTOR.message_types_by_name['ServiceSpec'] = _SERVICESPEC +DESCRIPTOR.message_types_by_name['ServicePort'] = _SERVICEPORT +DESCRIPTOR.message_types_by_name['SessionAffinityConfig'] = _SESSIONAFFINITYCONFIG +DESCRIPTOR.message_types_by_name['ClientIPConfig'] = _CLIENTIPCONFIG +DESCRIPTOR.message_types_by_name['Toleration'] = _TOLERATION +DESCRIPTOR.message_types_by_name['TypeIntOrStringForPB'] = _TYPEINTORSTRINGFORPB +_sym_db.RegisterFileDescriptor(DESCRIPTOR) + +Resources = _reflection.GeneratedProtocolMessageType('Resources', (_message.Message,), { + + 'LimitsEntry' : _reflection.GeneratedProtocolMessageType('LimitsEntry', (_message.Message,), { + 'DESCRIPTOR' : _RESOURCES_LIMITSENTRY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.Resources.LimitsEntry) + }) + , + + 'RequestsEntry' : _reflection.GeneratedProtocolMessageType('RequestsEntry', (_message.Message,), { + 'DESCRIPTOR' : _RESOURCES_REQUESTSENTRY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.Resources.RequestsEntry) + }) + , + 'DESCRIPTOR' : _RESOURCES, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.Resources) + }) +_sym_db.RegisterMessage(Resources) +_sym_db.RegisterMessage(Resources.LimitsEntry) +_sym_db.RegisterMessage(Resources.RequestsEntry) + +Affinity = _reflection.GeneratedProtocolMessageType('Affinity', (_message.Message,), { + 'DESCRIPTOR' : _AFFINITY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.Affinity) + }) +_sym_db.RegisterMessage(Affinity) + +NodeAffinity = _reflection.GeneratedProtocolMessageType('NodeAffinity', (_message.Message,), { + 'DESCRIPTOR' : _NODEAFFINITY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.NodeAffinity) + }) +_sym_db.RegisterMessage(NodeAffinity) + +NodeSelector = _reflection.GeneratedProtocolMessageType('NodeSelector', (_message.Message,), { + 'DESCRIPTOR' : _NODESELECTOR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.NodeSelector) + }) +_sym_db.RegisterMessage(NodeSelector) + +NodeSelectorTerm = _reflection.GeneratedProtocolMessageType('NodeSelectorTerm', (_message.Message,), { + 'DESCRIPTOR' : _NODESELECTORTERM, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.NodeSelectorTerm) + }) +_sym_db.RegisterMessage(NodeSelectorTerm) + +NodeSelectorRequirement = _reflection.GeneratedProtocolMessageType('NodeSelectorRequirement', (_message.Message,), { + 'DESCRIPTOR' : _NODESELECTORREQUIREMENT, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.NodeSelectorRequirement) + }) +_sym_db.RegisterMessage(NodeSelectorRequirement) + +PodAffinity = _reflection.GeneratedProtocolMessageType('PodAffinity', (_message.Message,), { + 'DESCRIPTOR' : _PODAFFINITY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.PodAffinity) + }) +_sym_db.RegisterMessage(PodAffinity) + +PodAntiAffinity = _reflection.GeneratedProtocolMessageType('PodAntiAffinity', (_message.Message,), { + 'DESCRIPTOR' : _PODANTIAFFINITY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.PodAntiAffinity) + }) +_sym_db.RegisterMessage(PodAntiAffinity) + +PodAffinityTerm = _reflection.GeneratedProtocolMessageType('PodAffinityTerm', (_message.Message,), { + 'DESCRIPTOR' : _PODAFFINITYTERM, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.PodAffinityTerm) + }) +_sym_db.RegisterMessage(PodAffinityTerm) + +WeightedPodAffinityTerm = _reflection.GeneratedProtocolMessageType('WeightedPodAffinityTerm', (_message.Message,), { + 'DESCRIPTOR' : _WEIGHTEDPODAFFINITYTERM, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.WeightedPodAffinityTerm) + }) +_sym_db.RegisterMessage(WeightedPodAffinityTerm) + +PreferredSchedulingTerm = _reflection.GeneratedProtocolMessageType('PreferredSchedulingTerm', (_message.Message,), { + 'DESCRIPTOR' : _PREFERREDSCHEDULINGTERM, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.PreferredSchedulingTerm) + }) +_sym_db.RegisterMessage(PreferredSchedulingTerm) + +ReadinessProbe = _reflection.GeneratedProtocolMessageType('ReadinessProbe', (_message.Message,), { + 'DESCRIPTOR' : _READINESSPROBE, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ReadinessProbe) + }) +_sym_db.RegisterMessage(ReadinessProbe) + +ExecAction = _reflection.GeneratedProtocolMessageType('ExecAction', (_message.Message,), { + 'DESCRIPTOR' : _EXECACTION, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ExecAction) + }) +_sym_db.RegisterMessage(ExecAction) + +HTTPGetAction = _reflection.GeneratedProtocolMessageType('HTTPGetAction', (_message.Message,), { + 'DESCRIPTOR' : _HTTPGETACTION, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.HTTPGetAction) + }) +_sym_db.RegisterMessage(HTTPGetAction) + +HTTPHeader = _reflection.GeneratedProtocolMessageType('HTTPHeader', (_message.Message,), { + 'DESCRIPTOR' : _HTTPHEADER, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.HTTPHeader) + }) +_sym_db.RegisterMessage(HTTPHeader) + +TCPSocketAction = _reflection.GeneratedProtocolMessageType('TCPSocketAction', (_message.Message,), { + 'DESCRIPTOR' : _TCPSOCKETACTION, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TCPSocketAction) + }) +_sym_db.RegisterMessage(TCPSocketAction) + +PodDisruptionBudgetSpec = _reflection.GeneratedProtocolMessageType('PodDisruptionBudgetSpec', (_message.Message,), { + 'DESCRIPTOR' : _PODDISRUPTIONBUDGETSPEC, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.PodDisruptionBudgetSpec) + }) +_sym_db.RegisterMessage(PodDisruptionBudgetSpec) + +DeploymentStrategy = _reflection.GeneratedProtocolMessageType('DeploymentStrategy', (_message.Message,), { + 'DESCRIPTOR' : _DEPLOYMENTSTRATEGY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.DeploymentStrategy) + }) +_sym_db.RegisterMessage(DeploymentStrategy) + +RollingUpdateDeployment = _reflection.GeneratedProtocolMessageType('RollingUpdateDeployment', (_message.Message,), { + 'DESCRIPTOR' : _ROLLINGUPDATEDEPLOYMENT, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.RollingUpdateDeployment) + }) +_sym_db.RegisterMessage(RollingUpdateDeployment) + +ObjectMeta = _reflection.GeneratedProtocolMessageType('ObjectMeta', (_message.Message,), { + 'DESCRIPTOR' : _OBJECTMETA, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ObjectMeta) + }) +_sym_db.RegisterMessage(ObjectMeta) + +EnvVar = _reflection.GeneratedProtocolMessageType('EnvVar', (_message.Message,), { + 'DESCRIPTOR' : _ENVVAR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.EnvVar) + }) +_sym_db.RegisterMessage(EnvVar) + +EnvVarSource = _reflection.GeneratedProtocolMessageType('EnvVarSource', (_message.Message,), { + 'DESCRIPTOR' : _ENVVARSOURCE, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.EnvVarSource) + }) +_sym_db.RegisterMessage(EnvVarSource) + +ObjectFieldSelector = _reflection.GeneratedProtocolMessageType('ObjectFieldSelector', (_message.Message,), { + 'DESCRIPTOR' : _OBJECTFIELDSELECTOR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ObjectFieldSelector) + }) +_sym_db.RegisterMessage(ObjectFieldSelector) + +ResourceFieldSelector = _reflection.GeneratedProtocolMessageType('ResourceFieldSelector', (_message.Message,), { + 'DESCRIPTOR' : _RESOURCEFIELDSELECTOR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ResourceFieldSelector) + }) +_sym_db.RegisterMessage(ResourceFieldSelector) + +ConfigMapKeySelector = _reflection.GeneratedProtocolMessageType('ConfigMapKeySelector', (_message.Message,), { + 'DESCRIPTOR' : _CONFIGMAPKEYSELECTOR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ConfigMapKeySelector) + }) +_sym_db.RegisterMessage(ConfigMapKeySelector) + +SecretKeySelector = _reflection.GeneratedProtocolMessageType('SecretKeySelector', (_message.Message,), { + 'DESCRIPTOR' : _SECRETKEYSELECTOR, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.SecretKeySelector) + }) +_sym_db.RegisterMessage(SecretKeySelector) + +LocalObjectReference = _reflection.GeneratedProtocolMessageType('LocalObjectReference', (_message.Message,), { + 'DESCRIPTOR' : _LOCALOBJECTREFERENCE, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.LocalObjectReference) + }) +_sym_db.RegisterMessage(LocalObjectReference) + +ServiceSpec = _reflection.GeneratedProtocolMessageType('ServiceSpec', (_message.Message,), { + + 'SelectorEntry' : _reflection.GeneratedProtocolMessageType('SelectorEntry', (_message.Message,), { + 'DESCRIPTOR' : _SERVICESPEC_SELECTORENTRY, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ServiceSpec.SelectorEntry) + }) + , + 'DESCRIPTOR' : _SERVICESPEC, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ServiceSpec) + }) +_sym_db.RegisterMessage(ServiceSpec) +_sym_db.RegisterMessage(ServiceSpec.SelectorEntry) + +ServicePort = _reflection.GeneratedProtocolMessageType('ServicePort', (_message.Message,), { + 'DESCRIPTOR' : _SERVICEPORT, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ServicePort) + }) +_sym_db.RegisterMessage(ServicePort) + +SessionAffinityConfig = _reflection.GeneratedProtocolMessageType('SessionAffinityConfig', (_message.Message,), { + 'DESCRIPTOR' : _SESSIONAFFINITYCONFIG, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.SessionAffinityConfig) + }) +_sym_db.RegisterMessage(SessionAffinityConfig) + +ClientIPConfig = _reflection.GeneratedProtocolMessageType('ClientIPConfig', (_message.Message,), { + 'DESCRIPTOR' : _CLIENTIPCONFIG, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.ClientIPConfig) + }) +_sym_db.RegisterMessage(ClientIPConfig) + +Toleration = _reflection.GeneratedProtocolMessageType('Toleration', (_message.Message,), { + 'DESCRIPTOR' : _TOLERATION, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.Toleration) + }) +_sym_db.RegisterMessage(Toleration) + +TypeIntOrStringForPB = _reflection.GeneratedProtocolMessageType('TypeIntOrStringForPB', (_message.Message,), { + 'DESCRIPTOR' : _TYPEINTORSTRINGFORPB, + '__module__' : 'operator.v1alpha1.kubernetes_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TypeIntOrStringForPB) + }) +_sym_db.RegisterMessage(TypeIntOrStringForPB) + + +DESCRIPTOR._options = None +_RESOURCES_LIMITSENTRY._options = None +_RESOURCES_REQUESTSENTRY._options = None +_SERVICESPEC_SELECTORENTRY._options = None +# @@protoc_insertion_point(module_scope) diff --git a/python/istio_api/operator/v1alpha1/operator_pb2.py b/python/istio_api/operator/v1alpha1/operator_pb2.py new file mode 100644 index 00000000000..19b66db5a70 --- /dev/null +++ b/python/istio_api/operator/v1alpha1/operator_pb2.py @@ -0,0 +1,383 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: operator/v1alpha1/operator.proto + +import sys +_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import reflection as _reflection +from google.protobuf import symbol_database as _symbol_database +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from mesh.v1alpha1 import config_pb2 as mesh_dot_v1alpha1_dot_config__pb2 +from operator.v1alpha1 import component_pb2 as operator_dot_v1alpha1_dot_component__pb2 + + +DESCRIPTOR = _descriptor.FileDescriptor( + name='operator/v1alpha1/operator.proto', + package='istio.operator.v1alpha1', + syntax='proto3', + serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), + serialized_pb=_b('\n operator/v1alpha1/operator.proto\x12\x17istio.operator.v1alpha1\x1a\x1amesh/v1alpha1/config.proto\x1a!operator/v1alpha1/component.proto\"\xab\x08\n\x11IstioOperatorSpec\x12\x0f\n\x07profile\x18\n \x01(\t\x12\x1c\n\x14install_package_path\x18\x0b \x01(\t\x12\x0b\n\x03hub\x18\x0c \x01(\t\x12\x0b\n\x03tag\x18\r \x01(\t\x12\x17\n\x0fresource_suffix\x18\x0e \x01(\t\x12\x34\n\x0bmesh_config\x18( \x01(\x0b\x32\x1f.istio.mesh.v1alpha1.MeshConfig\x12\x42\n\ncomponents\x18\x32 \x01(\x0b\x32..istio.operator.v1alpha1.IstioComponentSetSpec\x12Y\n\x10\x61\x64\x64on_components\x18\x33 \x03(\x0b\x32?.istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry\x12@\n\x06values\x18\x64 \x01(\x0b\x32\x30.istio.operator.v1alpha1.TypeMapStringInterface2\x12L\n\x12unvalidated_values\x18\x65 \x01(\x0b\x32\x30.istio.operator.v1alpha1.TypeMapStringInterface2\x12\x42\n\x06status\x18\xc8\x01 \x01(\x0e\x32\x31.istio.operator.v1alpha1.IstioOperatorSpec.Status\x12Z\n\x10\x63omponent_status\x18\xc9\x01 \x03(\x0b\x32?.istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry\x1a\x66\n\x14\x41\x64\x64onComponentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12=\n\x05value\x18\x02 \x01(\x0b\x32..istio.operator.v1alpha1.ExternalComponentSpec:\x02\x38\x01\x1a\x89\x01\n\rVersionStatus\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x41\n\x06status\x18\x02 \x01(\x0e\x32\x31.istio.operator.v1alpha1.IstioOperatorSpec.Status\x12\x15\n\rstatus_string\x18\x03 \x01(\t\x12\r\n\x05\x65rror\x18\x04 \x01(\t\x1ap\n\x14\x43omponentStatusEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12G\n\x05value\x18\x02 \x01(\x0b\x32\x38.istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus:\x02\x38\x01\"I\n\x06Status\x12\x08\n\x04NONE\x10\x00\x12\x0c\n\x08UPDATING\x10\x01\x12\x0f\n\x0bRECONCILING\x10\x02\x12\x0b\n\x07HEALTHY\x10\x03\x12\t\n\x05\x45RROR\x10\x04\"\x19\n\x17TypeMapStringInterface2B Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + , + dependencies=[mesh_dot_v1alpha1_dot_config__pb2.DESCRIPTOR,operator_dot_v1alpha1_dot_component__pb2.DESCRIPTOR,]) + + + +_ISTIOOPERATORSPEC_STATUS = _descriptor.EnumDescriptor( + name='Status', + full_name='istio.operator.v1alpha1.IstioOperatorSpec.Status', + filename=None, + file=DESCRIPTOR, + values=[ + _descriptor.EnumValueDescriptor( + name='NONE', index=0, number=0, + serialized_options=None, + type=None), + _descriptor.EnumValueDescriptor( + name='UPDATING', index=1, number=1, + serialized_options=None, + type=None), + _descriptor.EnumValueDescriptor( + name='RECONCILING', index=2, number=2, + serialized_options=None, + type=None), + _descriptor.EnumValueDescriptor( + name='HEALTHY', index=3, number=3, + serialized_options=None, + type=None), + _descriptor.EnumValueDescriptor( + name='ERROR', index=4, number=4, + serialized_options=None, + type=None), + ], + containing_type=None, + serialized_options=None, + serialized_start=1119, + serialized_end=1192, +) +_sym_db.RegisterEnumDescriptor(_ISTIOOPERATORSPEC_STATUS) + + +_ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY = _descriptor.Descriptor( + name='AddonComponentsEntry', + full_name='istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry.value', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=761, + serialized_end=863, +) + +_ISTIOOPERATORSPEC_VERSIONSTATUS = _descriptor.Descriptor( + name='VersionStatus', + full_name='istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='version', full_name='istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus.version', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='status', full_name='istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus.status', index=1, + number=2, type=14, cpp_type=8, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='status_string', full_name='istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus.status_string', index=2, + number=3, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='error', full_name='istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus.error', index=3, + number=4, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=866, + serialized_end=1003, +) + +_ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY = _descriptor.Descriptor( + name='ComponentStatusEntry', + full_name='istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='value', full_name='istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry.value', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=_b('8\001'), + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1005, + serialized_end=1117, +) + +_ISTIOOPERATORSPEC = _descriptor.Descriptor( + name='IstioOperatorSpec', + full_name='istio.operator.v1alpha1.IstioOperatorSpec', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='profile', full_name='istio.operator.v1alpha1.IstioOperatorSpec.profile', index=0, + number=10, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='install_package_path', full_name='istio.operator.v1alpha1.IstioOperatorSpec.install_package_path', index=1, + number=11, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='hub', full_name='istio.operator.v1alpha1.IstioOperatorSpec.hub', index=2, + number=12, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='tag', full_name='istio.operator.v1alpha1.IstioOperatorSpec.tag', index=3, + number=13, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='resource_suffix', full_name='istio.operator.v1alpha1.IstioOperatorSpec.resource_suffix', index=4, + number=14, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=_b("").decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='mesh_config', full_name='istio.operator.v1alpha1.IstioOperatorSpec.mesh_config', index=5, + number=40, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='components', full_name='istio.operator.v1alpha1.IstioOperatorSpec.components', index=6, + number=50, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='addon_components', full_name='istio.operator.v1alpha1.IstioOperatorSpec.addon_components', index=7, + number=51, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='values', full_name='istio.operator.v1alpha1.IstioOperatorSpec.values', index=8, + number=100, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='unvalidated_values', full_name='istio.operator.v1alpha1.IstioOperatorSpec.unvalidated_values', index=9, + number=101, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='status', full_name='istio.operator.v1alpha1.IstioOperatorSpec.status', index=10, + number=200, type=14, cpp_type=8, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='component_status', full_name='istio.operator.v1alpha1.IstioOperatorSpec.component_status', index=11, + number=201, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[_ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY, _ISTIOOPERATORSPEC_VERSIONSTATUS, _ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY, ], + enum_types=[ + _ISTIOOPERATORSPEC_STATUS, + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=125, + serialized_end=1192, +) + + +_TYPEMAPSTRINGINTERFACE2 = _descriptor.Descriptor( + name='TypeMapStringInterface2', + full_name='istio.operator.v1alpha1.TypeMapStringInterface2', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=1194, + serialized_end=1219, +) + +_ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY.fields_by_name['value'].message_type = operator_dot_v1alpha1_dot_component__pb2._EXTERNALCOMPONENTSPEC +_ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY.containing_type = _ISTIOOPERATORSPEC +_ISTIOOPERATORSPEC_VERSIONSTATUS.fields_by_name['status'].enum_type = _ISTIOOPERATORSPEC_STATUS +_ISTIOOPERATORSPEC_VERSIONSTATUS.containing_type = _ISTIOOPERATORSPEC +_ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY.fields_by_name['value'].message_type = _ISTIOOPERATORSPEC_VERSIONSTATUS +_ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY.containing_type = _ISTIOOPERATORSPEC +_ISTIOOPERATORSPEC.fields_by_name['mesh_config'].message_type = mesh_dot_v1alpha1_dot_config__pb2._MESHCONFIG +_ISTIOOPERATORSPEC.fields_by_name['components'].message_type = operator_dot_v1alpha1_dot_component__pb2._ISTIOCOMPONENTSETSPEC +_ISTIOOPERATORSPEC.fields_by_name['addon_components'].message_type = _ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY +_ISTIOOPERATORSPEC.fields_by_name['values'].message_type = _TYPEMAPSTRINGINTERFACE2 +_ISTIOOPERATORSPEC.fields_by_name['unvalidated_values'].message_type = _TYPEMAPSTRINGINTERFACE2 +_ISTIOOPERATORSPEC.fields_by_name['status'].enum_type = _ISTIOOPERATORSPEC_STATUS +_ISTIOOPERATORSPEC.fields_by_name['component_status'].message_type = _ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY +_ISTIOOPERATORSPEC_STATUS.containing_type = _ISTIOOPERATORSPEC +DESCRIPTOR.message_types_by_name['IstioOperatorSpec'] = _ISTIOOPERATORSPEC +DESCRIPTOR.message_types_by_name['TypeMapStringInterface2'] = _TYPEMAPSTRINGINTERFACE2 +_sym_db.RegisterFileDescriptor(DESCRIPTOR) + +IstioOperatorSpec = _reflection.GeneratedProtocolMessageType('IstioOperatorSpec', (_message.Message,), { + + 'AddonComponentsEntry' : _reflection.GeneratedProtocolMessageType('AddonComponentsEntry', (_message.Message,), { + 'DESCRIPTOR' : _ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY, + '__module__' : 'operator.v1alpha1.operator_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.IstioOperatorSpec.AddonComponentsEntry) + }) + , + + 'VersionStatus' : _reflection.GeneratedProtocolMessageType('VersionStatus', (_message.Message,), { + 'DESCRIPTOR' : _ISTIOOPERATORSPEC_VERSIONSTATUS, + '__module__' : 'operator.v1alpha1.operator_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.IstioOperatorSpec.VersionStatus) + }) + , + + 'ComponentStatusEntry' : _reflection.GeneratedProtocolMessageType('ComponentStatusEntry', (_message.Message,), { + 'DESCRIPTOR' : _ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY, + '__module__' : 'operator.v1alpha1.operator_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.IstioOperatorSpec.ComponentStatusEntry) + }) + , + 'DESCRIPTOR' : _ISTIOOPERATORSPEC, + '__module__' : 'operator.v1alpha1.operator_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.IstioOperatorSpec) + }) +_sym_db.RegisterMessage(IstioOperatorSpec) +_sym_db.RegisterMessage(IstioOperatorSpec.AddonComponentsEntry) +_sym_db.RegisterMessage(IstioOperatorSpec.VersionStatus) +_sym_db.RegisterMessage(IstioOperatorSpec.ComponentStatusEntry) + +TypeMapStringInterface2 = _reflection.GeneratedProtocolMessageType('TypeMapStringInterface2', (_message.Message,), { + 'DESCRIPTOR' : _TYPEMAPSTRINGINTERFACE2, + '__module__' : 'operator.v1alpha1.operator_pb2' + # @@protoc_insertion_point(class_scope:istio.operator.v1alpha1.TypeMapStringInterface2) + }) +_sym_db.RegisterMessage(TypeMapStringInterface2) + + +DESCRIPTOR._options = None +_ISTIOOPERATORSPEC_ADDONCOMPONENTSENTRY._options = None +_ISTIOOPERATORSPEC_COMPONENTSTATUSENTRY._options = None +# @@protoc_insertion_point(module_scope) From 637bcd258779e0351c68a0ffdf45ead3b4f8ed0d Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Thu, 2 Jan 2020 10:29:29 -0800 Subject: [PATCH 2/7] Update linter settings --- prototool.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/prototool.yaml b/prototool.yaml index 6a49ec24503..f890340761a 100644 --- a/prototool.yaml +++ b/prototool.yaml @@ -9,12 +9,12 @@ lint: ignores: - id: MESSAGE_NAMES_CAMEL_CASE files: - - mesh/v1alpha1/component.proto - - mesh/v1alpha1/kubernetes.proto + - operator/v1alpha1/component.proto + - operator/v1alpha1/kubernetes.proto - id: MESSAGE_FIELD_NAMES_LOWER_SNAKE_CASE files: - - mesh/v1alpha1/component.proto - - mesh/v1alpha1/kubernetes.proto + - operator/v1alpha1/component.proto + - operator/v1alpha1/kubernetes.proto - rbac/v1alpha1/rbac.proto - id: ENUM_FIELD_NAMES_UPPER_SNAKE_CASE files: From 22df204d03afd45f0c9780f36114b69da7b9e61a Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Thu, 2 Jan 2020 11:55:01 -0800 Subject: [PATCH 3/7] Add make gen files --- go.mod | 4 +- go.sum | 13 + .../github.com/NYTimes/gziphandler/LICENSE.md | 13 + .../github.com/PuerkitoBio/purell/LICENSE | 12 + .../github.com/PuerkitoBio/urlesc/LICENSE | 27 ++ licenses/github.com/davecgh/go-spew/LICENSE | 15 + licenses/github.com/docker/spdystream/LICENSE | 191 +++++++++ licenses/github.com/elazarl/goproxy/LICENSE | 27 ++ .../github.com/emicklei/go-restful/LICENSE | 22 ++ .../github.com/evanphx/json-patch/LICENSE | 25 ++ licenses/github.com/fsnotify/fsnotify/LICENSE | 28 ++ licenses/github.com/ghodss/yaml/LICENSE | 50 +++ licenses/github.com/go-logr/logr/LICENSE | 201 ++++++++++ .../github.com/go-openapi/jsonpointer/LICENSE | 202 ++++++++++ .../go-openapi/jsonreference/LICENSE | 202 ++++++++++ licenses/github.com/go-openapi/spec/LICENSE | 202 ++++++++++ licenses/github.com/go-openapi/swag/LICENSE | 202 ++++++++++ licenses/github.com/golang/groupcache/LICENSE | 191 +++++++++ licenses/github.com/google/gofuzz/LICENSE | 202 ++++++++++ licenses/github.com/google/uuid/LICENSE | 27 ++ .../github.com/googleapis/gnostic/LICENSE | 203 ++++++++++ .../github.com/hashicorp/golang-lru/LICENSE | 362 ++++++++++++++++++ licenses/github.com/hpcloud/tail/LICENSE.txt | 21 + .../hpcloud/tail/ratelimiter/Licence | 7 + licenses/github.com/json-iterator/go/LICENSE | 21 + licenses/github.com/kr/pretty/License | 21 + licenses/github.com/kr/pty/License | 23 ++ licenses/github.com/kr/text/License | 19 + licenses/github.com/mailru/easyjson/LICENSE | 7 + .../github.com/modern-go/concurrent/LICENSE | 201 ++++++++++ .../github.com/modern-go/reflect2/LICENSE | 201 ++++++++++ licenses/github.com/munnerz/goautoneg/NONE | 1 + licenses/github.com/mxk/go-flowrate/LICENSE | 29 ++ licenses/github.com/onsi/ginkgo/LICENSE | 20 + .../stenographer/support/go-colorable/LICENSE | 21 + .../stenographer/support/go-isatty/LICENSE | 9 + licenses/github.com/onsi/gomega/LICENSE | 20 + .../github.com/pmezard/go-difflib/LICENSE | 27 ++ licenses/github.com/spf13/pflag/LICENSE | 28 ++ licenses/github.com/stretchr/objx/LICENSE | 22 ++ licenses/github.com/stretchr/testify/LICENSE | 21 + licenses/gopkg.in/check.v1/LICENSE | 25 ++ licenses/gopkg.in/fsnotify.v1/LICENSE | 28 ++ licenses/gopkg.in/inf.v0/LICENSE | 28 ++ licenses/gopkg.in/tomb.v1/LICENSE | 29 ++ licenses/gopkg.in/yaml.v2/LICENSE | 201 ++++++++++ licenses/k8s.io/api/LICENSE | 202 ++++++++++ licenses/k8s.io/apimachinery/LICENSE | 202 ++++++++++ licenses/k8s.io/gengo/LICENSE | 202 ++++++++++ licenses/k8s.io/klog/LICENSE | 191 +++++++++ licenses/k8s.io/kube-openapi/LICENSE | 202 ++++++++++ .../sigs.k8s.io/structured-merge-diff/LICENSE | 201 ++++++++++ licenses/sigs.k8s.io/yaml/LICENSE | 50 +++ 53 files changed, 4700 insertions(+), 1 deletion(-) create mode 100644 licenses/github.com/NYTimes/gziphandler/LICENSE.md create mode 100644 licenses/github.com/PuerkitoBio/purell/LICENSE create mode 100644 licenses/github.com/PuerkitoBio/urlesc/LICENSE create mode 100644 licenses/github.com/davecgh/go-spew/LICENSE create mode 100644 licenses/github.com/docker/spdystream/LICENSE create mode 100644 licenses/github.com/elazarl/goproxy/LICENSE create mode 100644 licenses/github.com/emicklei/go-restful/LICENSE create mode 100644 licenses/github.com/evanphx/json-patch/LICENSE create mode 100644 licenses/github.com/fsnotify/fsnotify/LICENSE create mode 100644 licenses/github.com/ghodss/yaml/LICENSE create mode 100644 licenses/github.com/go-logr/logr/LICENSE create mode 100644 licenses/github.com/go-openapi/jsonpointer/LICENSE create mode 100644 licenses/github.com/go-openapi/jsonreference/LICENSE create mode 100644 licenses/github.com/go-openapi/spec/LICENSE create mode 100644 licenses/github.com/go-openapi/swag/LICENSE create mode 100644 licenses/github.com/golang/groupcache/LICENSE create mode 100644 licenses/github.com/google/gofuzz/LICENSE create mode 100644 licenses/github.com/google/uuid/LICENSE create mode 100644 licenses/github.com/googleapis/gnostic/LICENSE create mode 100644 licenses/github.com/hashicorp/golang-lru/LICENSE create mode 100644 licenses/github.com/hpcloud/tail/LICENSE.txt create mode 100644 licenses/github.com/hpcloud/tail/ratelimiter/Licence create mode 100644 licenses/github.com/json-iterator/go/LICENSE create mode 100644 licenses/github.com/kr/pretty/License create mode 100644 licenses/github.com/kr/pty/License create mode 100644 licenses/github.com/kr/text/License create mode 100644 licenses/github.com/mailru/easyjson/LICENSE create mode 100644 licenses/github.com/modern-go/concurrent/LICENSE create mode 100644 licenses/github.com/modern-go/reflect2/LICENSE create mode 100644 licenses/github.com/munnerz/goautoneg/NONE create mode 100644 licenses/github.com/mxk/go-flowrate/LICENSE create mode 100644 licenses/github.com/onsi/ginkgo/LICENSE create mode 100644 licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE create mode 100644 licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE create mode 100644 licenses/github.com/onsi/gomega/LICENSE create mode 100644 licenses/github.com/pmezard/go-difflib/LICENSE create mode 100644 licenses/github.com/spf13/pflag/LICENSE create mode 100644 licenses/github.com/stretchr/objx/LICENSE create mode 100644 licenses/github.com/stretchr/testify/LICENSE create mode 100644 licenses/gopkg.in/check.v1/LICENSE create mode 100644 licenses/gopkg.in/fsnotify.v1/LICENSE create mode 100644 licenses/gopkg.in/inf.v0/LICENSE create mode 100644 licenses/gopkg.in/tomb.v1/LICENSE create mode 100644 licenses/gopkg.in/yaml.v2/LICENSE create mode 100644 licenses/k8s.io/api/LICENSE create mode 100644 licenses/k8s.io/apimachinery/LICENSE create mode 100644 licenses/k8s.io/gengo/LICENSE create mode 100644 licenses/k8s.io/klog/LICENSE create mode 100644 licenses/k8s.io/kube-openapi/LICENSE create mode 100644 licenses/sigs.k8s.io/structured-merge-diff/LICENSE create mode 100644 licenses/sigs.k8s.io/yaml/LICENSE diff --git a/go.mod b/go.mod index a22e85fd17f..564848e075f 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,9 @@ go 1.12 require ( github.com/gogo/protobuf v1.3.0 + github.com/golang/protobuf v1.3.2 google.golang.org/grpc v1.23.1 istio.io/gogo-genproto v0.0.0-20190930162913-45029607206a - k8s.io/api v0.17.0 // indirect + k8s.io/api v0.17.0 + k8s.io/apimachinery v0.17.0 ) diff --git a/go.sum b/go.sum index ddd1bf13dea..2abe55bee21 100644 --- a/go.sum +++ b/go.sum @@ -6,6 +6,7 @@ github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdko github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= @@ -31,6 +32,7 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= github.com/google/gofuzz v1.0.0 h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw= @@ -40,17 +42,22 @@ github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsC github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.8 h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= 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= github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= @@ -60,12 +67,15 @@ github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+ github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/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/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= @@ -102,6 +112,7 @@ google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.23.1 h1:q4XQuHFC6I28BKZpo6IYyb3mNO+l7lSOxRuYTCiDfXk= google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= @@ -109,6 +120,7 @@ gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= 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.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= istio.io/gogo-genproto v0.0.0-20190930162913-45029607206a h1:w7zILua2dnYo9CxImhpNW4NE/8ZxEoc/wfBfHrhUhrE= @@ -123,4 +135,5 @@ 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/kube-openapi v0.0.0-20191107075043-30be4d16710a/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= +sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/licenses/github.com/NYTimes/gziphandler/LICENSE.md b/licenses/github.com/NYTimes/gziphandler/LICENSE.md new file mode 100644 index 00000000000..b7e2ecb63f9 --- /dev/null +++ b/licenses/github.com/NYTimes/gziphandler/LICENSE.md @@ -0,0 +1,13 @@ +Copyright (c) 2015 The New York Times Company + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this library 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. diff --git a/licenses/github.com/PuerkitoBio/purell/LICENSE b/licenses/github.com/PuerkitoBio/purell/LICENSE new file mode 100644 index 00000000000..4b9986dea71 --- /dev/null +++ b/licenses/github.com/PuerkitoBio/purell/LICENSE @@ -0,0 +1,12 @@ +Copyright (c) 2012, Martin Angers +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/PuerkitoBio/urlesc/LICENSE b/licenses/github.com/PuerkitoBio/urlesc/LICENSE new file mode 100644 index 00000000000..74487567632 --- /dev/null +++ b/licenses/github.com/PuerkitoBio/urlesc/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/davecgh/go-spew/LICENSE b/licenses/github.com/davecgh/go-spew/LICENSE new file mode 100644 index 00000000000..bc52e96f2b0 --- /dev/null +++ b/licenses/github.com/davecgh/go-spew/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2012-2016 Dave Collins + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/licenses/github.com/docker/spdystream/LICENSE b/licenses/github.com/docker/spdystream/LICENSE new file mode 100644 index 00000000000..9e4bd4dbee9 --- /dev/null +++ b/licenses/github.com/docker/spdystream/LICENSE @@ -0,0 +1,191 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2014-2015 Docker, 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. diff --git a/licenses/github.com/elazarl/goproxy/LICENSE b/licenses/github.com/elazarl/goproxy/LICENSE new file mode 100644 index 00000000000..2067e567c9f --- /dev/null +++ b/licenses/github.com/elazarl/goproxy/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012 Elazar Leibovich. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Elazar Leibovich. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/emicklei/go-restful/LICENSE b/licenses/github.com/emicklei/go-restful/LICENSE new file mode 100644 index 00000000000..ece7ec61eff --- /dev/null +++ b/licenses/github.com/emicklei/go-restful/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2012,2013 Ernest Micklei + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/licenses/github.com/evanphx/json-patch/LICENSE b/licenses/github.com/evanphx/json-patch/LICENSE new file mode 100644 index 00000000000..0eb9b72d84d --- /dev/null +++ b/licenses/github.com/evanphx/json-patch/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2014, Evan Phoenix +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the Evan Phoenix nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/fsnotify/fsnotify/LICENSE b/licenses/github.com/fsnotify/fsnotify/LICENSE new file mode 100644 index 00000000000..f21e5408009 --- /dev/null +++ b/licenses/github.com/fsnotify/fsnotify/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2012 fsnotify Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/ghodss/yaml/LICENSE b/licenses/github.com/ghodss/yaml/LICENSE new file mode 100644 index 00000000000..7805d36de73 --- /dev/null +++ b/licenses/github.com/ghodss/yaml/LICENSE @@ -0,0 +1,50 @@ +The MIT License (MIT) + +Copyright (c) 2014 Sam Ghods + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/go-logr/logr/LICENSE b/licenses/github.com/go-logr/logr/LICENSE new file mode 100644 index 00000000000..8dada3edaf5 --- /dev/null +++ b/licenses/github.com/go-logr/logr/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. diff --git a/licenses/github.com/go-openapi/jsonpointer/LICENSE b/licenses/github.com/go-openapi/jsonpointer/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/github.com/go-openapi/jsonpointer/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/go-openapi/jsonreference/LICENSE b/licenses/github.com/go-openapi/jsonreference/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/github.com/go-openapi/jsonreference/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/go-openapi/spec/LICENSE b/licenses/github.com/go-openapi/spec/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/github.com/go-openapi/spec/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/go-openapi/swag/LICENSE b/licenses/github.com/go-openapi/swag/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/github.com/go-openapi/swag/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/golang/groupcache/LICENSE b/licenses/github.com/golang/groupcache/LICENSE new file mode 100644 index 00000000000..37ec93a14fd --- /dev/null +++ b/licenses/github.com/golang/groupcache/LICENSE @@ -0,0 +1,191 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/google/gofuzz/LICENSE b/licenses/github.com/google/gofuzz/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/github.com/google/gofuzz/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/google/uuid/LICENSE b/licenses/github.com/google/uuid/LICENSE new file mode 100644 index 00000000000..5dc68268d90 --- /dev/null +++ b/licenses/github.com/google/uuid/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009,2014 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/googleapis/gnostic/LICENSE b/licenses/github.com/googleapis/gnostic/LICENSE new file mode 100644 index 00000000000..6b0b1270ff0 --- /dev/null +++ b/licenses/github.com/googleapis/gnostic/LICENSE @@ -0,0 +1,203 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + diff --git a/licenses/github.com/hashicorp/golang-lru/LICENSE b/licenses/github.com/hashicorp/golang-lru/LICENSE new file mode 100644 index 00000000000..be2cc4dfb60 --- /dev/null +++ b/licenses/github.com/hashicorp/golang-lru/LICENSE @@ -0,0 +1,362 @@ +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. "Contributor" + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. "Contributor Version" + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms of + a Secondary License. + +1.6. "Executable Form" + + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. + +1.8. "License" + + means this document. + +1.9. "Licensable" + + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently, any and all of the + rights conveyed by this License. + +1.10. "Modifications" + + means any of the following: + + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. "Patent Claims" of a Contributor + + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the License, + by the making, using, selling, offering for sale, having made, import, + or transfer of either its Contributions or its Contributor Version. + +1.12. "Secondary License" + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. "Source Code Form" + + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. + + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights to + grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter the + recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, or + limitations of liability) contained within the Source Code Form of the + Covered Software, except that You may alter any license notices to the + extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, + judicial order, or regulation then You must: (a) comply with the terms of + this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be placed in a + text file included with all distributions of the Covered Software under + this License. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing + basis, if such Contributor fails to notify You of the non-compliance by + some reasonable means prior to 60 days after You have come back into + compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the + non-compliance by some reasonable means, this is the first time You have + received notice of non-compliance with this License from such + Contributor, and You become compliant prior to 30 days after Your receipt + of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an "as is" basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is free + of defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the Covered Software + is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, + repair, or correction. This disclaimer of warranty constitutes an essential + part of this License. No use of any Covered Software is authorized under + this License except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from + such party's negligence to the extent applicable law prohibits such + limitation. Some jurisdictions do not allow the exclusion or limitation of + incidental or consequential damages, so this exclusion and limitation may + not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts + of a jurisdiction where the defendant maintains its principal place of + business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. Nothing + in this Section shall prevent a party's ability to bring cross-claims or + counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall not + be used to construe this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses If You choose to distribute Source Code Form that is + Incompatible With Secondary Licenses under the terms of this version of + the License, the notice described in Exhibit B of this License must be + attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, +then You may include the notice in a location (such as a LICENSE file in a +relevant directory) where a recipient would be likely to look for such a +notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice + + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. diff --git a/licenses/github.com/hpcloud/tail/LICENSE.txt b/licenses/github.com/hpcloud/tail/LICENSE.txt new file mode 100644 index 00000000000..818d802a59a --- /dev/null +++ b/licenses/github.com/hpcloud/tail/LICENSE.txt @@ -0,0 +1,21 @@ +# The MIT License (MIT) + +# © Copyright 2015 Hewlett Packard Enterprise Development LP +Copyright (c) 2014 ActiveState + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/github.com/hpcloud/tail/ratelimiter/Licence b/licenses/github.com/hpcloud/tail/ratelimiter/Licence new file mode 100644 index 00000000000..434aab19f1a --- /dev/null +++ b/licenses/github.com/hpcloud/tail/ratelimiter/Licence @@ -0,0 +1,7 @@ +Copyright (C) 2013 99designs + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/json-iterator/go/LICENSE b/licenses/github.com/json-iterator/go/LICENSE new file mode 100644 index 00000000000..2cf4f5ab28e --- /dev/null +++ b/licenses/github.com/json-iterator/go/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 json-iterator + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/github.com/kr/pretty/License b/licenses/github.com/kr/pretty/License new file mode 100644 index 00000000000..05c783ccf68 --- /dev/null +++ b/licenses/github.com/kr/pretty/License @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/licenses/github.com/kr/pty/License b/licenses/github.com/kr/pty/License new file mode 100644 index 00000000000..6b7558b6b42 --- /dev/null +++ b/licenses/github.com/kr/pty/License @@ -0,0 +1,23 @@ +Copyright (c) 2011 Keith Rarick + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, +sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall +be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS +OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/kr/text/License b/licenses/github.com/kr/text/License new file mode 100644 index 00000000000..480a3280599 --- /dev/null +++ b/licenses/github.com/kr/text/License @@ -0,0 +1,19 @@ +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/licenses/github.com/mailru/easyjson/LICENSE b/licenses/github.com/mailru/easyjson/LICENSE new file mode 100644 index 00000000000..fbff658f70d --- /dev/null +++ b/licenses/github.com/mailru/easyjson/LICENSE @@ -0,0 +1,7 @@ +Copyright (c) 2016 Mail.Ru Group + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/modern-go/concurrent/LICENSE b/licenses/github.com/modern-go/concurrent/LICENSE new file mode 100644 index 00000000000..261eeb9e9f8 --- /dev/null +++ b/licenses/github.com/modern-go/concurrent/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/modern-go/reflect2/LICENSE b/licenses/github.com/modern-go/reflect2/LICENSE new file mode 100644 index 00000000000..261eeb9e9f8 --- /dev/null +++ b/licenses/github.com/modern-go/reflect2/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/github.com/munnerz/goautoneg/NONE b/licenses/github.com/munnerz/goautoneg/NONE new file mode 100644 index 00000000000..10e0e777ec7 --- /dev/null +++ b/licenses/github.com/munnerz/goautoneg/NONE @@ -0,0 +1 @@ +NO LICENSE FOUND diff --git a/licenses/github.com/mxk/go-flowrate/LICENSE b/licenses/github.com/mxk/go-flowrate/LICENSE new file mode 100644 index 00000000000..e9f9f628ba5 --- /dev/null +++ b/licenses/github.com/mxk/go-flowrate/LICENSE @@ -0,0 +1,29 @@ +Copyright (c) 2014 The Go-FlowRate Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + + * Neither the name of the go-flowrate project nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/onsi/ginkgo/LICENSE b/licenses/github.com/onsi/ginkgo/LICENSE new file mode 100644 index 00000000000..9415ee72c17 --- /dev/null +++ b/licenses/github.com/onsi/ginkgo/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2013-2014 Onsi Fakhouri + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE b/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE new file mode 100644 index 00000000000..91b5cef30eb --- /dev/null +++ b/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Yasuhiro Matsumoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE b/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE new file mode 100644 index 00000000000..65dc692b6b1 --- /dev/null +++ b/licenses/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE @@ -0,0 +1,9 @@ +Copyright (c) Yasuhiro MATSUMOTO + +MIT License (Expat) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/onsi/gomega/LICENSE b/licenses/github.com/onsi/gomega/LICENSE new file mode 100644 index 00000000000..9415ee72c17 --- /dev/null +++ b/licenses/github.com/onsi/gomega/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2013-2014 Onsi Fakhouri + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/github.com/pmezard/go-difflib/LICENSE b/licenses/github.com/pmezard/go-difflib/LICENSE new file mode 100644 index 00000000000..c67dad612a3 --- /dev/null +++ b/licenses/github.com/pmezard/go-difflib/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013, Patrick Mezard +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + The names of its contributors may not be used to endorse or promote +products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/spf13/pflag/LICENSE b/licenses/github.com/spf13/pflag/LICENSE new file mode 100644 index 00000000000..63ed1cfea1f --- /dev/null +++ b/licenses/github.com/spf13/pflag/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2012 Alex Ogier. All rights reserved. +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/github.com/stretchr/objx/LICENSE b/licenses/github.com/stretchr/objx/LICENSE new file mode 100644 index 00000000000..44d4d9d5a7c --- /dev/null +++ b/licenses/github.com/stretchr/objx/LICENSE @@ -0,0 +1,22 @@ +The MIT License + +Copyright (c) 2014 Stretchr, Inc. +Copyright (c) 2017-2018 objx contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/github.com/stretchr/testify/LICENSE b/licenses/github.com/stretchr/testify/LICENSE new file mode 100644 index 00000000000..f38ec5956b6 --- /dev/null +++ b/licenses/github.com/stretchr/testify/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2012-2018 Mat Ryer and Tyler Bunnell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/gopkg.in/check.v1/LICENSE b/licenses/gopkg.in/check.v1/LICENSE new file mode 100644 index 00000000000..545cf2d3311 --- /dev/null +++ b/licenses/gopkg.in/check.v1/LICENSE @@ -0,0 +1,25 @@ +Gocheck - A rich testing framework for Go + +Copyright (c) 2010-2013 Gustavo Niemeyer + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/gopkg.in/fsnotify.v1/LICENSE b/licenses/gopkg.in/fsnotify.v1/LICENSE new file mode 100644 index 00000000000..f21e5408009 --- /dev/null +++ b/licenses/gopkg.in/fsnotify.v1/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2012 fsnotify Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/gopkg.in/inf.v0/LICENSE b/licenses/gopkg.in/inf.v0/LICENSE new file mode 100644 index 00000000000..87a5cede339 --- /dev/null +++ b/licenses/gopkg.in/inf.v0/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go +Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/gopkg.in/tomb.v1/LICENSE b/licenses/gopkg.in/tomb.v1/LICENSE new file mode 100644 index 00000000000..a4249bb31dd --- /dev/null +++ b/licenses/gopkg.in/tomb.v1/LICENSE @@ -0,0 +1,29 @@ +tomb - support for clean goroutine termination in Go. + +Copyright (c) 2010-2011 - Gustavo Niemeyer + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/gopkg.in/yaml.v2/LICENSE b/licenses/gopkg.in/yaml.v2/LICENSE new file mode 100644 index 00000000000..8dada3edaf5 --- /dev/null +++ b/licenses/gopkg.in/yaml.v2/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. diff --git a/licenses/k8s.io/api/LICENSE b/licenses/k8s.io/api/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/k8s.io/api/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/k8s.io/apimachinery/LICENSE b/licenses/k8s.io/apimachinery/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/k8s.io/apimachinery/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/k8s.io/gengo/LICENSE b/licenses/k8s.io/gengo/LICENSE new file mode 100644 index 00000000000..00b2401109f --- /dev/null +++ b/licenses/k8s.io/gengo/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 The Kubernetes Authors. + + 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. diff --git a/licenses/k8s.io/klog/LICENSE b/licenses/k8s.io/klog/LICENSE new file mode 100644 index 00000000000..37ec93a14fd --- /dev/null +++ b/licenses/k8s.io/klog/LICENSE @@ -0,0 +1,191 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/k8s.io/kube-openapi/LICENSE b/licenses/k8s.io/kube-openapi/LICENSE new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/licenses/k8s.io/kube-openapi/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/licenses/sigs.k8s.io/structured-merge-diff/LICENSE b/licenses/sigs.k8s.io/structured-merge-diff/LICENSE new file mode 100644 index 00000000000..8dada3edaf5 --- /dev/null +++ b/licenses/sigs.k8s.io/structured-merge-diff/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. diff --git a/licenses/sigs.k8s.io/yaml/LICENSE b/licenses/sigs.k8s.io/yaml/LICENSE new file mode 100644 index 00000000000..7805d36de73 --- /dev/null +++ b/licenses/sigs.k8s.io/yaml/LICENSE @@ -0,0 +1,50 @@ +The MIT License (MIT) + +Copyright (c) 2014 Sam Ghods + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. From 7c0afb61ddd4da1a8e355e693013091ced90f9b0 Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Thu, 2 Jan 2020 16:59:41 -0800 Subject: [PATCH 4/7] Add values field to gateways --- operator/v1alpha1/component.proto | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/operator/v1alpha1/component.proto b/operator/v1alpha1/component.proto index 720a9d987db..66e9e9a2c48 100644 --- a/operator/v1alpha1/component.proto +++ b/operator/v1alpha1/component.proto @@ -68,7 +68,6 @@ message ComponentSpec { message ExternalComponentSpec { // Selects whether this component is installed. TypeBoolValueForPB enabled = 1; - // Namespace for the component. string namespace = 2; @@ -100,6 +99,9 @@ message GatewaySpec { // Tag for the component (overrides top level tag setting). string tag = 11; + // Overrides for values.yaml. + TypeMapStringInterface values = 30; + // Kubernetes resource spec. KubernetesResourcesSpec k8s = 50; } @@ -157,8 +159,9 @@ message KubernetesResourcesSpec { // Patch for an existing k8s resource. message K8sObjectOverlay { message PathValue { - // Path of the form a.b:c.e.:f - // Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. + // Path of the form a.[key1:value1].b.[:value2] + // Where [key1:value1] is a selector for a key-value pair to identify a list element and [:value] is a value + // selector to identify a list element in a leaf list. // All path intermediate nodes must exist. string path = 1; // Value to add, delete or replace. From 8d7f7a800433571d2eee388e9044872d3bf84a2b Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Thu, 2 Jan 2020 17:01:44 -0800 Subject: [PATCH 5/7] Make gen --- operator/v1alpha1/component.pb.go | 159 +++++++++--------- .../v1alpha1/istio.operator.v1alpha1.pb.html | 16 +- .../operator/v1alpha1/component_pb2.py | 50 +++--- 3 files changed, 125 insertions(+), 100 deletions(-) diff --git a/operator/v1alpha1/component.pb.go b/operator/v1alpha1/component.pb.go index 7226025bffa..bd10b5328e1 100644 --- a/operator/v1alpha1/component.pb.go +++ b/operator/v1alpha1/component.pb.go @@ -353,6 +353,8 @@ type GatewaySpec struct { Hub string `protobuf:"bytes,10,opt,name=hub,proto3" json:"hub,omitempty"` // Tag for the component (overrides top level tag setting). Tag string `protobuf:"bytes,11,opt,name=tag,proto3" json:"tag,omitempty"` + // Overrides for values.yaml. + Values map[string]interface{} `protobuf:"bytes,30,opt,name=values,proto3" json:"values,omitempty"` // Kubernetes resource spec. K8S *KubernetesResourcesSpec `protobuf:"bytes,50,opt,name=k8s,proto3" json:"k8s,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -420,6 +422,7 @@ func (m *GatewaySpec) GetTag() string { return "" } + func (m *GatewaySpec) GetK8S() *KubernetesResourcesSpec { if m != nil { return m.K8S @@ -679,8 +682,9 @@ func (m *K8SObjectOverlay) GetPatches() []*K8SObjectOverlay_PathValue { } type K8SObjectOverlay_PathValue struct { - // Path of the form a.b:c.e.:f - // Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. + // Path of the form a.[key1:value1].b.[:value2] + // Where [key1:value1] is a selector for a key-value pair to identify a list element and [:value] is a value + // selector to identify a list element in a leaf list. // All path intermediate nodes must exist. Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` // Value to add, delete or replace. @@ -747,83 +751,84 @@ func init() { func init() { proto.RegisterFile("operator/v1alpha1/component.proto", fileDescriptor_6ed34a579e9b43a2) } var fileDescriptor_6ed34a579e9b43a2 = []byte{ - // 1234 bytes of a gzipped FileDescriptorProto + // 1250 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0xdd, 0x72, 0xdb, 0xb6, - 0x12, 0xc7, 0xc7, 0x96, 0xbf, 0xb4, 0x8a, 0xbf, 0x90, 0xe4, 0x84, 0xc7, 0x73, 0x92, 0x38, 0x4a, - 0x4e, 0xe2, 0xa4, 0x1d, 0xaa, 0x76, 0x6e, 0x34, 0x69, 0x9b, 0xc6, 0x8a, 0xd5, 0x34, 0xd3, 0xc6, - 0x51, 0xa9, 0x8e, 0x2f, 0x32, 0xd3, 0xe1, 0x40, 0xe4, 0x9a, 0x42, 0x4d, 0x01, 0x18, 0x00, 0x52, - 0xc3, 0xbe, 0x41, 0x6f, 0x7b, 0xd5, 0x47, 0xe8, 0xab, 0xf4, 0xb2, 0x6f, 0xd4, 0x01, 0x48, 0x49, - 0x76, 0x1c, 0xd5, 0x66, 0x27, 0x9d, 0xde, 0x51, 0xcb, 0xfd, 0xfd, 0xb1, 0xbb, 0x5a, 0x60, 0x41, + 0x12, 0x80, 0xc7, 0x96, 0xff, 0xb4, 0x8a, 0xff, 0x90, 0xe4, 0x84, 0xc7, 0x73, 0x92, 0x38, 0x4a, + 0x4e, 0xe2, 0xe4, 0x9c, 0xa1, 0x6a, 0xe7, 0x46, 0x93, 0xb6, 0x69, 0xac, 0x58, 0x4d, 0x33, 0x6d, + 0x1c, 0x95, 0xea, 0xf8, 0x22, 0x33, 0x1d, 0x0e, 0x44, 0xae, 0x29, 0xd4, 0x14, 0x80, 0x01, 0x20, + 0x35, 0xec, 0x1b, 0xf4, 0xb6, 0x57, 0x7d, 0xa5, 0x5e, 0xf6, 0x51, 0xfa, 0x06, 0x1d, 0x80, 0x94, + 0x64, 0xc7, 0x51, 0x6c, 0x76, 0xd2, 0xe9, 0x1d, 0xb8, 0xd8, 0x6f, 0xb1, 0xbb, 0x58, 0x60, 0x41, 0xb8, 0x23, 0x24, 0x2a, 0x6a, 0x84, 0x6a, 0x8c, 0x76, 0x69, 0x2a, 0xfb, 0x74, 0xb7, 0x11, 0x89, - 0x81, 0x14, 0x1c, 0xb9, 0xf1, 0xa5, 0x12, 0x46, 0x90, 0x1b, 0x4c, 0x1b, 0x26, 0xfc, 0xb1, 0xa3, - 0x3f, 0x76, 0xdc, 0xfa, 0x6f, 0x22, 0x44, 0x92, 0x62, 0xc3, 0xb9, 0xf5, 0x86, 0xc7, 0x0d, 0xca, + 0x81, 0x14, 0x1c, 0xb9, 0xf1, 0xa5, 0x12, 0x46, 0x90, 0x1b, 0x4c, 0x1b, 0x26, 0xfc, 0xb1, 0xa2, + 0x3f, 0x56, 0xdc, 0xfa, 0x77, 0x22, 0x44, 0x92, 0x62, 0xc3, 0xa9, 0xf5, 0x86, 0xc7, 0x0d, 0xca, 0xb3, 0x9c, 0xd9, 0xf2, 0x4f, 0x9a, 0xda, 0x67, 0xa2, 0x41, 0x25, 0x6b, 0xd0, 0xa1, 0x11, 0x3a, - 0xa2, 0x29, 0xe3, 0x49, 0x63, 0xb4, 0xd7, 0x43, 0x43, 0x77, 0x1b, 0x09, 0x72, 0xab, 0x86, 0x71, - 0xe1, 0x5f, 0x3f, 0x1f, 0xc6, 0xc9, 0xb0, 0x87, 0x8a, 0xa3, 0x41, 0x9d, 0xfb, 0xd4, 0x7f, 0x59, - 0x86, 0xeb, 0x2f, 0x6d, 0x28, 0xcf, 0xc7, 0x01, 0x76, 0xd1, 0x74, 0x25, 0x46, 0xe4, 0x29, 0x2c, - 0xf4, 0xa8, 0x46, 0xef, 0xe6, 0xf6, 0xdc, 0x4e, 0x6d, 0xef, 0x91, 0x3f, 0x23, 0x60, 0xbf, 0x45, - 0x35, 0x4e, 0x61, 0x89, 0x51, 0xe0, 0x38, 0xf2, 0x19, 0x2c, 0x4a, 0x96, 0x0a, 0xe3, 0xdd, 0x72, - 0x02, 0xf7, 0x67, 0x0a, 0x9c, 0x85, 0x73, 0xc8, 0xd1, 0x4a, 0xbc, 0xcd, 0xbc, 0xdb, 0x25, 0x69, - 0x0b, 0x91, 0x6f, 0x61, 0x43, 0xb3, 0x18, 0x23, 0xaa, 0x42, 0xc6, 0x7f, 0xc0, 0xc8, 0x08, 0xe5, - 0x6d, 0x97, 0x12, 0x5a, 0x2f, 0xf8, 0x97, 0x05, 0x4e, 0x9e, 0xc2, 0x92, 0x14, 0x29, 0x8b, 0x32, - 0xef, 0x4e, 0x29, 0xa1, 0x82, 0x22, 0x07, 0x50, 0x35, 0x98, 0xe2, 0x00, 0x8d, 0xca, 0xbc, 0x7a, - 0x29, 0x89, 0x29, 0x48, 0x9e, 0xc1, 0x72, 0xc4, 0x0c, 0x8d, 0x31, 0xf5, 0xee, 0x96, 0xd2, 0x18, - 0x63, 0xa4, 0x0d, 0xc0, 0x45, 0x8c, 0x21, 0x4d, 0x90, 0x1b, 0xef, 0x5e, 0xb9, 0x40, 0x2c, 0xb9, - 0x6f, 0x41, 0x5b, 0x8e, 0x84, 0xa6, 0x29, 0x66, 0xde, 0xff, 0xcb, 0x95, 0x23, 0xa7, 0x48, 0x13, - 0x2a, 0x11, 0x67, 0xde, 0xfd, 0x52, 0xb0, 0x45, 0xc8, 0x3e, 0xac, 0x44, 0x42, 0x61, 0x18, 0x1f, - 0x76, 0xbd, 0x07, 0x25, 0x6b, 0x20, 0x14, 0x1e, 0x1c, 0x76, 0xc9, 0x6b, 0xd8, 0x60, 0x3c, 0x51, - 0xa8, 0x75, 0x98, 0x50, 0x83, 0x3f, 0xd2, 0x4c, 0x7b, 0x3b, 0xdb, 0x95, 0x9d, 0xda, 0xde, 0xbd, - 0x99, 0x52, 0x2f, 0x72, 0xc7, 0xbc, 0x39, 0x0a, 0xba, 0xb0, 0x69, 0xf2, 0x0a, 0xd6, 0xf1, 0x1d, - 0xbd, 0x87, 0x25, 0xf4, 0xd6, 0xf0, 0x8c, 0x5c, 0xfd, 0x0d, 0x6c, 0x9e, 0xdb, 0x55, 0xa4, 0x0d, - 0xcb, 0xc8, 0x69, 0x2f, 0xc5, 0xd8, 0x9b, 0x73, 0x69, 0x7f, 0x34, 0x53, 0xfb, 0xbb, 0x4c, 0x62, - 0x4b, 0x88, 0xf4, 0x88, 0xa6, 0x43, 0xfc, 0x52, 0xa8, 0x4e, 0x2b, 0x18, 0xb3, 0xf5, 0x5f, 0xe7, - 0x61, 0xf5, 0x9f, 0x10, 0x26, 0xff, 0x83, 0x2a, 0xa7, 0x03, 0xd4, 0x92, 0x46, 0xe8, 0xcd, 0x6f, - 0xcf, 0xed, 0x54, 0x83, 0xa9, 0x81, 0x6c, 0x40, 0xa5, 0x3f, 0xec, 0x79, 0xe0, 0xec, 0xf6, 0xd1, - 0x5a, 0x0c, 0x4d, 0xbc, 0x5a, 0x6e, 0x31, 0x34, 0x21, 0x4f, 0x60, 0x41, 0x4b, 0x8c, 0x2e, 0x3c, - 0x30, 0x6c, 0x14, 0x2f, 0xb9, 0x41, 0x75, 0x4c, 0x23, 0x0c, 0x1c, 0x43, 0x5a, 0x50, 0x39, 0x69, - 0x6a, 0x6f, 0xcf, 0xa1, 0x9f, 0xcc, 0x44, 0xbf, 0x9e, 0x9c, 0x7f, 0x01, 0x6a, 0x31, 0x54, 0x11, - 0xea, 0xbc, 0xb3, 0x4e, 0x9a, 0xba, 0xfe, 0xfb, 0x3c, 0x5c, 0x6f, 0xbf, 0x35, 0xa8, 0x38, 0x4d, - 0xff, 0x85, 0x12, 0x8d, 0xd3, 0x87, 0xbf, 0x91, 0xfe, 0x4d, 0x80, 0xa8, 0x4f, 0x95, 0x09, 0x25, - 0x35, 0x7d, 0x57, 0xc0, 0x6a, 0x50, 0x75, 0x96, 0x0e, 0x35, 0x7d, 0xf2, 0x31, 0x2c, 0xe9, 0xa8, - 0x8f, 0x03, 0x5a, 0x9c, 0x1a, 0xd7, 0xfc, 0x7c, 0xca, 0xf8, 0xe3, 0x29, 0xe3, 0xef, 0xf3, 0x2c, - 0x28, 0x7c, 0x3e, 0x48, 0x2d, 0x7f, 0x9b, 0x87, 0xda, 0xa9, 0x16, 0xbf, 0x20, 0x75, 0x02, 0x0b, - 0xf6, 0x87, 0x57, 0x71, 0x2f, 0xdc, 0x33, 0x69, 0xc3, 0x62, 0x4a, 0x7b, 0x98, 0x7a, 0x0b, 0x6e, - 0x27, 0x35, 0x2e, 0xb3, 0x93, 0xfc, 0x6f, 0x2c, 0xd1, 0xe6, 0x46, 0x65, 0x41, 0x4e, 0x5f, 0xaa, - 0xf1, 0x3e, 0x40, 0xc2, 0x5b, 0x4d, 0x80, 0xe9, 0xe2, 0x76, 0x8d, 0x13, 0xcc, 0x5c, 0xb3, 0x54, - 0x03, 0xfb, 0x48, 0xae, 0xc1, 0xe2, 0xc8, 0xb6, 0x44, 0x91, 0x7c, 0xfe, 0xe3, 0xc9, 0x7c, 0x73, - 0xae, 0xfe, 0x47, 0x15, 0x6e, 0xcc, 0x90, 0x26, 0x9f, 0xc3, 0x0a, 0x3d, 0x3e, 0x66, 0x9c, 0x99, - 0xac, 0xe8, 0xbc, 0x3b, 0x33, 0xc3, 0xdb, 0x2f, 0x1c, 0x83, 0x09, 0x42, 0x76, 0xa1, 0x82, 0x7c, - 0xe4, 0xcd, 0xbb, 0x0a, 0xde, 0x9e, 0x49, 0xb6, 0xf9, 0xe8, 0x88, 0xaa, 0xc0, 0xfa, 0x92, 0x23, - 0x58, 0xe9, 0x4b, 0x1a, 0xba, 0x4e, 0xac, 0xb8, 0x15, 0x3f, 0x2d, 0xee, 0x1d, 0x3e, 0x95, 0xcc, - 0x3f, 0x75, 0xef, 0xf0, 0x8b, 0x7b, 0x87, 0xff, 0x95, 0x50, 0xec, 0x27, 0xc1, 0x0d, 0x4d, 0x3b, - 0x22, 0xde, 0x2f, 0x1c, 0x50, 0xe5, 0x67, 0x6e, 0x5f, 0x52, 0x97, 0xc9, 0x23, 0xd8, 0x64, 0x03, - 0x9a, 0x60, 0x28, 0x87, 0x69, 0x1a, 0x16, 0xa3, 0x74, 0xc1, 0xd5, 0x62, 0xdd, 0xbd, 0xe8, 0x0c, - 0xd3, 0xb4, 0x93, 0xcf, 0xca, 0x04, 0x56, 0xdd, 0x8c, 0xd2, 0x98, 0xe6, 0xb3, 0x7b, 0xd1, 0x25, - 0xd0, 0x2a, 0xfb, 0xcf, 0xf8, 0x87, 0x22, 0xc6, 0x6e, 0x21, 0x92, 0x77, 0xc5, 0x15, 0x7e, 0xca, - 0x44, 0x62, 0xb8, 0x2e, 0x45, 0x1c, 0xc6, 0x4c, 0xab, 0xa1, 0x34, 0x4c, 0xf0, 0xb0, 0x37, 0x8c, - 0x13, 0x34, 0xde, 0xd2, 0x05, 0xad, 0xd0, 0x11, 0xf1, 0xc1, 0x04, 0x6a, 0x39, 0xc6, 0xa5, 0x7b, - 0x55, 0x9e, 0x7f, 0x41, 0x06, 0xb0, 0x6e, 0x57, 0xa1, 0x9c, 0x0b, 0x43, 0xad, 0x5d, 0x7b, 0xcb, - 0x2e, 0xa1, 0x83, 0xd2, 0x09, 0xd9, 0x02, 0x4f, 0x65, 0xf2, 0x94, 0xd6, 0xe4, 0x19, 0x23, 0xf1, - 0xe1, 0xaa, 0x54, 0x4c, 0x28, 0x66, 0xb2, 0x30, 0x4a, 0xa9, 0xd6, 0xa1, 0xdb, 0x5b, 0x2b, 0xae, - 0xd6, 0x9b, 0xe3, 0x57, 0xcf, 0xed, 0x9b, 0x43, 0xbb, 0xd1, 0x3a, 0xb0, 0xae, 0x90, 0xc6, 0x8c, - 0xdb, 0xf9, 0x25, 0x95, 0xe8, 0xa1, 0x57, 0x75, 0xe9, 0x3f, 0x98, 0x19, 0x5e, 0x30, 0xf6, 0xef, - 0x58, 0xf7, 0x60, 0x4d, 0x9d, 0xf9, 0x4d, 0xee, 0xc2, 0xaa, 0x42, 0x99, 0xb2, 0x88, 0x86, 0x91, - 0x18, 0x72, 0xe3, 0x76, 0xdf, 0x6a, 0x70, 0xa5, 0x30, 0x3e, 0xb7, 0x36, 0xf2, 0x0c, 0xaa, 0x6a, - 0x9c, 0x9b, 0xdb, 0x8c, 0xb5, 0xbd, 0xfa, 0x5f, 0x2c, 0x58, 0x78, 0x06, 0x53, 0x88, 0x3c, 0x85, - 0x65, 0x8d, 0x6a, 0xc4, 0x22, 0xf4, 0xae, 0x38, 0x7e, 0xf6, 0xb4, 0xed, 0xe6, 0x7e, 0x79, 0x4b, - 0x16, 0x10, 0x79, 0x01, 0x2b, 0xda, 0xd8, 0x0b, 0x73, 0x92, 0x79, 0xab, 0x17, 0x1c, 0xeb, 0x07, - 0x28, 0x53, 0x91, 0x0d, 0xec, 0x40, 0x28, 0x90, 0x60, 0x02, 0x93, 0x36, 0xd4, 0x8c, 0x48, 0x2d, - 0xe2, 0xfe, 0xdc, 0x35, 0xa7, 0x75, 0x77, 0xf6, 0x01, 0x3e, 0xf1, 0x0d, 0x4e, 0x73, 0xa4, 0x0d, - 0x2b, 0x62, 0x84, 0x2a, 0xb5, 0xd7, 0x87, 0xd8, 0x35, 0xc8, 0xc3, 0xd9, 0x0d, 0xd2, 0xd4, 0xaf, - 0x7b, 0xf6, 0x6a, 0xfa, 0x3a, 0x27, 0x82, 0x09, 0xba, 0xf5, 0x05, 0x6c, 0x9e, 0xeb, 0xfb, 0x32, - 0x07, 0xd2, 0xd6, 0x3e, 0x5c, 0x7d, 0x4f, 0x9f, 0x95, 0x3a, 0xd3, 0x7e, 0x9e, 0x87, 0x8d, 0x77, - 0x43, 0x24, 0xb7, 0xa1, 0x46, 0x25, 0x0b, 0x47, 0xa8, 0x34, 0x13, 0xbc, 0x10, 0x02, 0x2a, 0xd9, - 0x51, 0x6e, 0xb1, 0x63, 0xe0, 0x84, 0xf1, 0xb8, 0x90, 0x73, 0xcf, 0xef, 0x1d, 0x0d, 0xaf, 0x60, - 0x59, 0x52, 0x13, 0xf5, 0x51, 0x17, 0xc3, 0xe1, 0xf1, 0xa5, 0xeb, 0xe4, 0xdb, 0x79, 0xe8, 0x66, - 0x73, 0x30, 0xd6, 0xd8, 0xfa, 0x1e, 0xaa, 0x13, 0xab, 0x5d, 0xcf, 0xcd, 0xd0, 0x3c, 0x3a, 0xf7, - 0x6c, 0x3f, 0x46, 0xa6, 0x79, 0x5e, 0x7e, 0x34, 0xe7, 0x50, 0xdd, 0x83, 0xff, 0x58, 0xfb, 0x2b, - 0x2a, 0xbb, 0x46, 0x31, 0x9e, 0x4c, 0x1c, 0xea, 0xeb, 0xb0, 0x7a, 0x86, 0xa8, 0x5f, 0x03, 0x72, - 0xfe, 0xfe, 0xd0, 0xda, 0x7e, 0x73, 0x2b, 0x5f, 0xb0, 0xf8, 0xf6, 0x3b, 0xf7, 0x59, 0xd7, 0x5b, - 0x72, 0x73, 0xfc, 0xf1, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x3b, 0x6b, 0xcb, 0x79, 0x0e, + 0xa2, 0x29, 0xe3, 0x49, 0x63, 0xb4, 0xd7, 0x43, 0x43, 0x77, 0x1b, 0x09, 0x72, 0x6b, 0x0d, 0xe3, + 0x42, 0xbf, 0x7e, 0xde, 0x8d, 0x93, 0x61, 0x0f, 0x15, 0x47, 0x83, 0x3a, 0xd7, 0xa9, 0xff, 0xb2, + 0x0c, 0xd7, 0x5f, 0x5a, 0x57, 0x9e, 0x8f, 0x1d, 0xec, 0xa2, 0xe9, 0x4a, 0x8c, 0xc8, 0x53, 0x58, + 0xe8, 0x51, 0x8d, 0xde, 0xcd, 0xed, 0xb9, 0x9d, 0xda, 0xde, 0x23, 0x7f, 0x86, 0xc3, 0x7e, 0x8b, + 0x6a, 0x9c, 0xc2, 0x12, 0xa3, 0xc0, 0x71, 0xe4, 0x33, 0x58, 0x94, 0x2c, 0x15, 0xc6, 0xbb, 0xe5, + 0x0c, 0xdc, 0x9f, 0x69, 0xe0, 0x2c, 0x9c, 0x43, 0x8e, 0x56, 0xe2, 0x6d, 0xe6, 0xdd, 0x2e, 0x49, + 0x5b, 0x88, 0x7c, 0x0b, 0x1b, 0x9a, 0xc5, 0x18, 0x51, 0x15, 0x32, 0xfe, 0x03, 0x46, 0x46, 0x28, + 0x6f, 0xbb, 0x94, 0xa1, 0xf5, 0x82, 0x7f, 0x59, 0xe0, 0xe4, 0x29, 0x2c, 0x49, 0x91, 0xb2, 0x28, + 0xf3, 0xee, 0x94, 0x32, 0x54, 0x50, 0xe4, 0x00, 0xaa, 0x06, 0x53, 0x1c, 0xa0, 0x51, 0x99, 0x57, + 0x2f, 0x65, 0x62, 0x0a, 0x92, 0x67, 0xb0, 0x1c, 0x31, 0x43, 0x63, 0x4c, 0xbd, 0xbb, 0xa5, 0x6c, + 0x8c, 0x31, 0xd2, 0x06, 0xe0, 0x22, 0xc6, 0x90, 0x26, 0xc8, 0x8d, 0x77, 0xaf, 0x9c, 0x23, 0x96, + 0xdc, 0xb7, 0xa0, 0x4d, 0x47, 0x42, 0xd3, 0x14, 0x33, 0xef, 0xbf, 0xe5, 0xd2, 0x91, 0x53, 0xa4, + 0x09, 0x95, 0x88, 0x33, 0xef, 0x7e, 0x29, 0xd8, 0x22, 0x64, 0x1f, 0x56, 0x22, 0xa1, 0x30, 0x8c, + 0x0f, 0xbb, 0xde, 0x83, 0x92, 0x39, 0x10, 0x0a, 0x0f, 0x0e, 0xbb, 0xe4, 0x35, 0x6c, 0x30, 0x9e, + 0x28, 0xd4, 0x3a, 0x4c, 0xa8, 0xc1, 0x1f, 0x69, 0xa6, 0xbd, 0x9d, 0xed, 0xca, 0x4e, 0x6d, 0xef, + 0xde, 0x4c, 0x53, 0x2f, 0x72, 0xc5, 0xbc, 0x38, 0x0a, 0xba, 0x90, 0x69, 0xf2, 0x0a, 0xd6, 0xf1, + 0x1d, 0x7b, 0x0f, 0x4b, 0xd8, 0x5b, 0xc3, 0x33, 0xe6, 0xea, 0x6f, 0x60, 0xf3, 0xdc, 0xa9, 0x22, + 0x6d, 0x58, 0x46, 0x4e, 0x7b, 0x29, 0xc6, 0xde, 0x9c, 0x0b, 0xfb, 0x7f, 0x33, 0x6d, 0x7f, 0x97, + 0x49, 0x6c, 0x09, 0x91, 0x1e, 0xd1, 0x74, 0x88, 0x5f, 0x0a, 0xd5, 0x69, 0x05, 0x63, 0xb6, 0xfe, + 0xeb, 0x3c, 0xac, 0xfe, 0x1d, 0x86, 0xc9, 0x7f, 0xa0, 0xca, 0xe9, 0x00, 0xb5, 0xa4, 0x11, 0x7a, + 0xf3, 0xdb, 0x73, 0x3b, 0xd5, 0x60, 0x2a, 0x20, 0x1b, 0x50, 0xe9, 0x0f, 0x7b, 0x1e, 0x38, 0xb9, + 0x1d, 0x5a, 0x89, 0xa1, 0x89, 0x57, 0xcb, 0x25, 0x86, 0x26, 0xe4, 0x09, 0x2c, 0x68, 0x89, 0xd1, + 0x85, 0x17, 0x86, 0xf5, 0xe2, 0x25, 0x37, 0xa8, 0x8e, 0x69, 0x84, 0x81, 0x63, 0x48, 0x0b, 0x2a, + 0x27, 0x4d, 0xed, 0xed, 0x39, 0xf4, 0x93, 0x99, 0xe8, 0xd7, 0x93, 0xfb, 0x2f, 0x40, 0x2d, 0x86, + 0x2a, 0x42, 0x9d, 0x57, 0xd6, 0x49, 0x53, 0xd7, 0x7f, 0x9b, 0x87, 0xeb, 0xed, 0xb7, 0x06, 0x15, + 0xa7, 0xe9, 0x3f, 0x90, 0xa2, 0x71, 0xf8, 0xf0, 0x17, 0xc2, 0xbf, 0x09, 0x10, 0xf5, 0xa9, 0x32, + 0xa1, 0xa4, 0xa6, 0xef, 0x12, 0x58, 0x0d, 0xaa, 0x4e, 0xd2, 0xa1, 0xa6, 0x4f, 0xfe, 0x0f, 0x4b, + 0x3a, 0xea, 0xe3, 0x80, 0x16, 0xb7, 0xc6, 0x35, 0x3f, 0xef, 0x32, 0xfe, 0xb8, 0xcb, 0xf8, 0xfb, + 0x3c, 0x0b, 0x0a, 0x9d, 0x8f, 0x92, 0xcb, 0x3f, 0xe6, 0xa1, 0x76, 0xaa, 0xc4, 0x2f, 0x08, 0x9d, + 0xc0, 0x82, 0xfd, 0xf0, 0x2a, 0x6e, 0xc2, 0x8d, 0x49, 0x1b, 0x16, 0x53, 0xda, 0xc3, 0xd4, 0x5b, + 0x70, 0x27, 0xa9, 0x71, 0x99, 0x93, 0xe4, 0x7f, 0x63, 0x89, 0x36, 0x37, 0x2a, 0x0b, 0x72, 0xfa, + 0x52, 0x85, 0xf7, 0x02, 0x96, 0x46, 0x76, 0xbb, 0x74, 0x51, 0x7a, 0x8d, 0x0f, 0xe6, 0xfe, 0x15, + 0x95, 0x5d, 0xa3, 0x18, 0x4f, 0xa6, 0x9b, 0x50, 0xe0, 0x1f, 0x23, 0x73, 0x5b, 0x4d, 0x80, 0x69, + 0x14, 0xd6, 0xd9, 0x13, 0xcc, 0x5c, 0xd5, 0x55, 0x03, 0x3b, 0x24, 0xd7, 0x60, 0xd1, 0xad, 0x56, + 0x64, 0x31, 0xff, 0x78, 0x32, 0xdf, 0x9c, 0xab, 0xff, 0x5e, 0x85, 0x1b, 0x33, 0x4c, 0x93, 0xcf, + 0x61, 0x85, 0x1e, 0x1f, 0x33, 0xce, 0x4c, 0x56, 0x94, 0xf0, 0x9d, 0x99, 0xee, 0xed, 0x17, 0x8a, + 0xc1, 0x04, 0x21, 0xbb, 0x50, 0x41, 0x3e, 0xf2, 0xe6, 0xdd, 0x56, 0xdc, 0x9e, 0x49, 0xb6, 0xf9, + 0xe8, 0x88, 0xaa, 0xc0, 0xea, 0x92, 0x23, 0x58, 0xe9, 0x4b, 0x1a, 0xba, 0x92, 0xae, 0xb8, 0x15, + 0x3f, 0x2d, 0x1e, 0x30, 0x3e, 0x95, 0xcc, 0x3f, 0xf5, 0x80, 0xf1, 0x8b, 0x07, 0x8c, 0xff, 0x95, + 0x50, 0xec, 0x27, 0xc1, 0x0d, 0x4d, 0x3b, 0x22, 0xde, 0x2f, 0x14, 0x50, 0xe5, 0x97, 0x77, 0x5f, + 0x52, 0x17, 0xc9, 0x23, 0xd8, 0x64, 0x03, 0x9a, 0x60, 0x28, 0x87, 0x69, 0x1a, 0x16, 0x3d, 0x79, + 0xc1, 0xe5, 0x62, 0xdd, 0x4d, 0x74, 0x86, 0x69, 0xda, 0xc9, 0x9b, 0x6e, 0x02, 0xab, 0xae, 0xd9, + 0x69, 0x4c, 0xf3, 0x47, 0xc0, 0xa2, 0x0b, 0xa0, 0x55, 0x76, 0x67, 0xfc, 0x43, 0x11, 0x63, 0xb7, + 0x30, 0x92, 0x97, 0xd7, 0x15, 0x7e, 0x4a, 0x44, 0x62, 0xb8, 0x2e, 0x45, 0x1c, 0xc6, 0x4c, 0xab, + 0xa1, 0x34, 0x4c, 0xf0, 0xb0, 0x37, 0x8c, 0x13, 0x34, 0xde, 0xd2, 0x05, 0xa5, 0xd0, 0x11, 0xf1, + 0xc1, 0x04, 0x6a, 0x39, 0xc6, 0x85, 0x7b, 0x55, 0x9e, 0x9f, 0x20, 0x03, 0x58, 0xb7, 0xab, 0x50, + 0xce, 0x85, 0xa1, 0x56, 0xae, 0xbd, 0x65, 0x17, 0xd0, 0x41, 0xe9, 0x80, 0x6c, 0x82, 0xa7, 0x66, + 0xf2, 0x90, 0xd6, 0xe4, 0x19, 0x21, 0xf1, 0xe1, 0xaa, 0x54, 0x4c, 0x28, 0x66, 0xb2, 0x30, 0x4a, + 0xa9, 0xd6, 0xa1, 0x3b, 0xa4, 0x2b, 0x2e, 0xd7, 0x9b, 0xe3, 0xa9, 0xe7, 0x76, 0xe6, 0xd0, 0x9e, + 0xd8, 0x0e, 0xac, 0x2b, 0xa4, 0x31, 0xe3, 0xb6, 0x11, 0x4a, 0x25, 0x7a, 0xe8, 0x55, 0x5d, 0xf8, + 0x0f, 0x66, 0xba, 0x17, 0x8c, 0xf5, 0x3b, 0x56, 0x3d, 0x58, 0x53, 0x67, 0xbe, 0xc9, 0x5d, 0x58, + 0x55, 0x28, 0x53, 0x16, 0xd1, 0x30, 0x12, 0x43, 0x6e, 0xdc, 0x31, 0x5e, 0x0d, 0xae, 0x14, 0xc2, + 0xe7, 0x56, 0x46, 0x9e, 0x41, 0x55, 0x8d, 0x63, 0x73, 0xa7, 0xba, 0xb6, 0x57, 0xff, 0xc0, 0x82, + 0x85, 0x66, 0x30, 0x85, 0xc8, 0x53, 0x58, 0xd6, 0xa8, 0x46, 0x2c, 0x42, 0xef, 0x8a, 0xe3, 0x67, + 0xb7, 0xed, 0x6e, 0xae, 0x97, 0x97, 0x64, 0x01, 0x91, 0x17, 0xb0, 0xa2, 0x8d, 0x7d, 0x79, 0x27, + 0x99, 0xb7, 0x7a, 0x41, 0x7f, 0x38, 0x40, 0x99, 0x8a, 0x6c, 0x60, 0x3b, 0x4b, 0x81, 0x04, 0x13, + 0x98, 0xb4, 0xa1, 0x66, 0x44, 0x6a, 0x11, 0xb7, 0xb9, 0x6b, 0xce, 0xd6, 0xdd, 0xd9, 0xb7, 0xd1, + 0x44, 0x37, 0x38, 0xcd, 0x91, 0x36, 0xac, 0x88, 0x11, 0xaa, 0xd4, 0xbe, 0x43, 0x62, 0x57, 0x20, + 0x0f, 0x67, 0x17, 0x48, 0x53, 0xbf, 0xee, 0xd9, 0x37, 0xee, 0xeb, 0x9c, 0x08, 0x26, 0xe8, 0xd6, + 0x17, 0xb0, 0x79, 0xae, 0xee, 0xcb, 0x5c, 0x48, 0x5b, 0xfb, 0x70, 0xf5, 0x3d, 0x75, 0x56, 0xea, + 0x4e, 0xfb, 0x79, 0x1e, 0x36, 0xde, 0x75, 0x91, 0xdc, 0x86, 0x1a, 0x95, 0x2c, 0x1c, 0xa1, 0xd2, + 0x4c, 0xf0, 0xc2, 0x10, 0x50, 0xc9, 0x8e, 0x72, 0x89, 0xed, 0x27, 0x27, 0x8c, 0xc7, 0x85, 0x39, + 0x37, 0x7e, 0x6f, 0x8f, 0x79, 0x05, 0xcb, 0x92, 0x9a, 0xa8, 0x8f, 0xba, 0xe8, 0x32, 0x8f, 0x2f, + 0x9d, 0x27, 0xdf, 0x36, 0x56, 0xd7, 0xe4, 0x83, 0xb1, 0x8d, 0xad, 0xef, 0xa1, 0x3a, 0x91, 0xda, + 0xf5, 0x5c, 0x33, 0xce, 0xbd, 0x73, 0x63, 0xfb, 0x57, 0x33, 0x8d, 0xf3, 0xf2, 0x3d, 0x3e, 0x87, + 0xea, 0x1e, 0xfc, 0xeb, 0xfd, 0xfd, 0xa7, 0xbe, 0x0e, 0xab, 0x67, 0x88, 0xfa, 0x35, 0x20, 0xe7, + 0x1f, 0x22, 0xad, 0xed, 0x37, 0xb7, 0xf2, 0x05, 0x8b, 0x9f, 0xc8, 0x73, 0xff, 0x87, 0xbd, 0x25, + 0xf7, 0x20, 0x78, 0xfc, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0x46, 0xd0, 0x38, 0xc2, 0x0e, 0x00, 0x00, } diff --git a/operator/v1alpha1/istio.operator.v1alpha1.pb.html b/operator/v1alpha1/istio.operator.v1alpha1.pb.html index cbb7efe1b52..1c9e96437fb 100644 --- a/operator/v1alpha1/istio.operator.v1alpha1.pb.html +++ b/operator/v1alpha1/istio.operator.v1alpha1.pb.html @@ -526,6 +526,17 @@

GatewaySpec

Tag for the component (overrides top level tag setting).

+ + +No + + + +values +TypeMapStringInterface + +

Overrides for values.yaml.

+ No @@ -1124,8 +1135,9 @@

K8sObjectOverlay.PathValue

path string -

Path of the form a.b:c.e.:f -Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. +

Path of the form a.[key1:value1].b.[:value2] +Where [key1:value1] is a selector for a key-value pair to identify a list element and [:value] is a value +selector to identify a list element in a leaf list. All path intermediate nodes must exist.

diff --git a/python/istio_api/operator/v1alpha1/component_pb2.py b/python/istio_api/operator/v1alpha1/component_pb2.py index 3f851e76c7f..4b01b5e5eff 100644 --- a/python/istio_api/operator/v1alpha1/component_pb2.py +++ b/python/istio_api/operator/v1alpha1/component_pb2.py @@ -23,7 +23,7 @@ package='istio.operator.v1alpha1', syntax='proto3', serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), - serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xf5\x01\n\x0bGatewaySpec\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xb6\x02\n\x0bGatewaySpec\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12?\n\x06values\x18\x1e \x01(\x0b\x32/.istio.operator.v1alpha1.TypeMapStringInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') , dependencies=[google_dot_protobuf_dot_any__pb2.DESCRIPTOR,k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2.DESCRIPTOR,operator_dot_v1alpha1_dot_kubernetes__pb2.DESCRIPTOR,]) @@ -341,8 +341,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1768, - serialized_end=1812, + serialized_start=1833, + serialized_end=1877, ) _GATEWAYSPEC = _descriptor.Descriptor( @@ -388,7 +388,14 @@ is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=5, + name='values', full_name='istio.operator.v1alpha1.GatewaySpec.values', index=5, + number=30, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=6, number=50, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, @@ -407,7 +414,7 @@ oneofs=[ ], serialized_start=1567, - serialized_end=1812, + serialized_end=1877, ) @@ -444,8 +451,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2724, - serialized_end=2775, + serialized_start=2789, + serialized_end=2840, ) _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY = _descriptor.Descriptor( @@ -481,8 +488,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2777, - serialized_end=2830, + serialized_start=2842, + serialized_end=2895, ) _KUBERNETESRESOURCESSPEC = _descriptor.Descriptor( @@ -609,8 +616,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1815, - serialized_end=2830, + serialized_start=1880, + serialized_end=2895, ) @@ -647,8 +654,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2972, - serialized_end=3052, + serialized_start=3037, + serialized_end=3117, ) _K8SOBJECTOVERLAY = _descriptor.Descriptor( @@ -698,8 +705,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2833, - serialized_end=3052, + serialized_start=2898, + serialized_end=3117, ) @@ -722,8 +729,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3054, - serialized_end=3078, + serialized_start=3119, + serialized_end=3143, ) @@ -746,8 +753,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3080, - serialized_end=3095, + serialized_start=3145, + serialized_end=3160, ) @@ -770,8 +777,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3097, - serialized_end=3117, + serialized_start=3162, + serialized_end=3182, ) _ISTIOCOMPONENTSETSPEC.fields_by_name['base'].message_type = _BASECOMPONENTSPEC @@ -797,6 +804,7 @@ _EXTERNALCOMPONENTSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC _GATEWAYSPEC_LABELENTRY.containing_type = _GATEWAYSPEC _GATEWAYSPEC.fields_by_name['label'].message_type = _GATEWAYSPEC_LABELENTRY +_GATEWAYSPEC.fields_by_name['values'].message_type = _TYPEMAPSTRINGINTERFACE _GATEWAYSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC _KUBERNETESRESOURCESSPEC_NODESELECTORENTRY.containing_type = _KUBERNETESRESOURCESSPEC _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY.containing_type = _KUBERNETESRESOURCESSPEC From f6e4d6a843ad9453ff7ea361192068f2984b0b3a Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Fri, 3 Jan 2020 14:54:46 -0800 Subject: [PATCH 6/7] Add enablement for gateways --- operator/v1alpha1/component.pb.go | 163 +++++++++--------- operator/v1alpha1/component.proto | 4 +- .../v1alpha1/istio.operator.v1alpha1.pb.html | 11 ++ .../operator/v1alpha1/component_pb2.py | 62 ++++--- 4 files changed, 131 insertions(+), 109 deletions(-) diff --git a/operator/v1alpha1/component.pb.go b/operator/v1alpha1/component.pb.go index bd10b5328e1..ac03d6c9039 100644 --- a/operator/v1alpha1/component.pb.go +++ b/operator/v1alpha1/component.pb.go @@ -343,6 +343,8 @@ func (m *ExternalComponentSpec) GetK8S() *KubernetesResourcesSpec { // Configuration for gateways. type GatewaySpec struct { + // Selects whether this gateway is installed. + Enabled *BoolValueForPB `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"` // Namespace for the gateway. Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` // Name for the gateway. @@ -387,6 +389,7 @@ func (m *GatewaySpec) XXX_DiscardUnknown() { var xxx_messageInfo_GatewaySpec proto.InternalMessageInfo + func (m *GatewaySpec) GetNamespace() string { if m != nil { return m.Namespace @@ -751,84 +754,84 @@ func init() { func init() { proto.RegisterFile("operator/v1alpha1/component.proto", fileDescriptor_6ed34a579e9b43a2) } var fileDescriptor_6ed34a579e9b43a2 = []byte{ - // 1250 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0xdd, 0x72, 0xdb, 0xb6, - 0x12, 0x80, 0xc7, 0x96, 0xff, 0xb4, 0x8a, 0xff, 0x90, 0xe4, 0x84, 0xc7, 0x73, 0x92, 0x38, 0x4a, - 0x4e, 0xe2, 0xe4, 0x9c, 0xa1, 0x6a, 0xe7, 0x46, 0x93, 0xb6, 0x69, 0xac, 0x58, 0x4d, 0x33, 0x6d, - 0x1c, 0x95, 0xea, 0xf8, 0x22, 0x33, 0x1d, 0x0e, 0x44, 0xae, 0x29, 0xd4, 0x14, 0x80, 0x01, 0x20, - 0x35, 0xec, 0x1b, 0xf4, 0xb6, 0x57, 0x7d, 0xa5, 0x5e, 0xf6, 0x51, 0xfa, 0x06, 0x1d, 0x80, 0x94, - 0x64, 0xc7, 0x51, 0x6c, 0x76, 0xd2, 0xe9, 0x1d, 0xb8, 0xd8, 0x6f, 0xb1, 0xbb, 0x58, 0x60, 0x41, - 0xb8, 0x23, 0x24, 0x2a, 0x6a, 0x84, 0x6a, 0x8c, 0x76, 0x69, 0x2a, 0xfb, 0x74, 0xb7, 0x11, 0x89, - 0x81, 0x14, 0x1c, 0xb9, 0xf1, 0xa5, 0x12, 0x46, 0x90, 0x1b, 0x4c, 0x1b, 0x26, 0xfc, 0xb1, 0xa2, - 0x3f, 0x56, 0xdc, 0xfa, 0x77, 0x22, 0x44, 0x92, 0x62, 0xc3, 0xa9, 0xf5, 0x86, 0xc7, 0x0d, 0xca, - 0xb3, 0x9c, 0xd9, 0xf2, 0x4f, 0x9a, 0xda, 0x67, 0xa2, 0x41, 0x25, 0x6b, 0xd0, 0xa1, 0x11, 0x3a, - 0xa2, 0x29, 0xe3, 0x49, 0x63, 0xb4, 0xd7, 0x43, 0x43, 0x77, 0x1b, 0x09, 0x72, 0x6b, 0x0d, 0xe3, - 0x42, 0xbf, 0x7e, 0xde, 0x8d, 0x93, 0x61, 0x0f, 0x15, 0x47, 0x83, 0x3a, 0xd7, 0xa9, 0xff, 0xb2, - 0x0c, 0xd7, 0x5f, 0x5a, 0x57, 0x9e, 0x8f, 0x1d, 0xec, 0xa2, 0xe9, 0x4a, 0x8c, 0xc8, 0x53, 0x58, - 0xe8, 0x51, 0x8d, 0xde, 0xcd, 0xed, 0xb9, 0x9d, 0xda, 0xde, 0x23, 0x7f, 0x86, 0xc3, 0x7e, 0x8b, - 0x6a, 0x9c, 0xc2, 0x12, 0xa3, 0xc0, 0x71, 0xe4, 0x33, 0x58, 0x94, 0x2c, 0x15, 0xc6, 0xbb, 0xe5, - 0x0c, 0xdc, 0x9f, 0x69, 0xe0, 0x2c, 0x9c, 0x43, 0x8e, 0x56, 0xe2, 0x6d, 0xe6, 0xdd, 0x2e, 0x49, - 0x5b, 0x88, 0x7c, 0x0b, 0x1b, 0x9a, 0xc5, 0x18, 0x51, 0x15, 0x32, 0xfe, 0x03, 0x46, 0x46, 0x28, - 0x6f, 0xbb, 0x94, 0xa1, 0xf5, 0x82, 0x7f, 0x59, 0xe0, 0xe4, 0x29, 0x2c, 0x49, 0x91, 0xb2, 0x28, - 0xf3, 0xee, 0x94, 0x32, 0x54, 0x50, 0xe4, 0x00, 0xaa, 0x06, 0x53, 0x1c, 0xa0, 0x51, 0x99, 0x57, - 0x2f, 0x65, 0x62, 0x0a, 0x92, 0x67, 0xb0, 0x1c, 0x31, 0x43, 0x63, 0x4c, 0xbd, 0xbb, 0xa5, 0x6c, - 0x8c, 0x31, 0xd2, 0x06, 0xe0, 0x22, 0xc6, 0x90, 0x26, 0xc8, 0x8d, 0x77, 0xaf, 0x9c, 0x23, 0x96, - 0xdc, 0xb7, 0xa0, 0x4d, 0x47, 0x42, 0xd3, 0x14, 0x33, 0xef, 0xbf, 0xe5, 0xd2, 0x91, 0x53, 0xa4, - 0x09, 0x95, 0x88, 0x33, 0xef, 0x7e, 0x29, 0xd8, 0x22, 0x64, 0x1f, 0x56, 0x22, 0xa1, 0x30, 0x8c, - 0x0f, 0xbb, 0xde, 0x83, 0x92, 0x39, 0x10, 0x0a, 0x0f, 0x0e, 0xbb, 0xe4, 0x35, 0x6c, 0x30, 0x9e, - 0x28, 0xd4, 0x3a, 0x4c, 0xa8, 0xc1, 0x1f, 0x69, 0xa6, 0xbd, 0x9d, 0xed, 0xca, 0x4e, 0x6d, 0xef, - 0xde, 0x4c, 0x53, 0x2f, 0x72, 0xc5, 0xbc, 0x38, 0x0a, 0xba, 0x90, 0x69, 0xf2, 0x0a, 0xd6, 0xf1, - 0x1d, 0x7b, 0x0f, 0x4b, 0xd8, 0x5b, 0xc3, 0x33, 0xe6, 0xea, 0x6f, 0x60, 0xf3, 0xdc, 0xa9, 0x22, - 0x6d, 0x58, 0x46, 0x4e, 0x7b, 0x29, 0xc6, 0xde, 0x9c, 0x0b, 0xfb, 0x7f, 0x33, 0x6d, 0x7f, 0x97, - 0x49, 0x6c, 0x09, 0x91, 0x1e, 0xd1, 0x74, 0x88, 0x5f, 0x0a, 0xd5, 0x69, 0x05, 0x63, 0xb6, 0xfe, - 0xeb, 0x3c, 0xac, 0xfe, 0x1d, 0x86, 0xc9, 0x7f, 0xa0, 0xca, 0xe9, 0x00, 0xb5, 0xa4, 0x11, 0x7a, - 0xf3, 0xdb, 0x73, 0x3b, 0xd5, 0x60, 0x2a, 0x20, 0x1b, 0x50, 0xe9, 0x0f, 0x7b, 0x1e, 0x38, 0xb9, - 0x1d, 0x5a, 0x89, 0xa1, 0x89, 0x57, 0xcb, 0x25, 0x86, 0x26, 0xe4, 0x09, 0x2c, 0x68, 0x89, 0xd1, - 0x85, 0x17, 0x86, 0xf5, 0xe2, 0x25, 0x37, 0xa8, 0x8e, 0x69, 0x84, 0x81, 0x63, 0x48, 0x0b, 0x2a, - 0x27, 0x4d, 0xed, 0xed, 0x39, 0xf4, 0x93, 0x99, 0xe8, 0xd7, 0x93, 0xfb, 0x2f, 0x40, 0x2d, 0x86, - 0x2a, 0x42, 0x9d, 0x57, 0xd6, 0x49, 0x53, 0xd7, 0x7f, 0x9b, 0x87, 0xeb, 0xed, 0xb7, 0x06, 0x15, - 0xa7, 0xe9, 0x3f, 0x90, 0xa2, 0x71, 0xf8, 0xf0, 0x17, 0xc2, 0xbf, 0x09, 0x10, 0xf5, 0xa9, 0x32, - 0xa1, 0xa4, 0xa6, 0xef, 0x12, 0x58, 0x0d, 0xaa, 0x4e, 0xd2, 0xa1, 0xa6, 0x4f, 0xfe, 0x0f, 0x4b, - 0x3a, 0xea, 0xe3, 0x80, 0x16, 0xb7, 0xc6, 0x35, 0x3f, 0xef, 0x32, 0xfe, 0xb8, 0xcb, 0xf8, 0xfb, - 0x3c, 0x0b, 0x0a, 0x9d, 0x8f, 0x92, 0xcb, 0x3f, 0xe6, 0xa1, 0x76, 0xaa, 0xc4, 0x2f, 0x08, 0x9d, - 0xc0, 0x82, 0xfd, 0xf0, 0x2a, 0x6e, 0xc2, 0x8d, 0x49, 0x1b, 0x16, 0x53, 0xda, 0xc3, 0xd4, 0x5b, - 0x70, 0x27, 0xa9, 0x71, 0x99, 0x93, 0xe4, 0x7f, 0x63, 0x89, 0x36, 0x37, 0x2a, 0x0b, 0x72, 0xfa, - 0x52, 0x85, 0xf7, 0x02, 0x96, 0x46, 0x76, 0xbb, 0x74, 0x51, 0x7a, 0x8d, 0x0f, 0xe6, 0xfe, 0x15, - 0x95, 0x5d, 0xa3, 0x18, 0x4f, 0xa6, 0x9b, 0x50, 0xe0, 0x1f, 0x23, 0x73, 0x5b, 0x4d, 0x80, 0x69, - 0x14, 0xd6, 0xd9, 0x13, 0xcc, 0x5c, 0xd5, 0x55, 0x03, 0x3b, 0x24, 0xd7, 0x60, 0xd1, 0xad, 0x56, - 0x64, 0x31, 0xff, 0x78, 0x32, 0xdf, 0x9c, 0xab, 0xff, 0x5e, 0x85, 0x1b, 0x33, 0x4c, 0x93, 0xcf, - 0x61, 0x85, 0x1e, 0x1f, 0x33, 0xce, 0x4c, 0x56, 0x94, 0xf0, 0x9d, 0x99, 0xee, 0xed, 0x17, 0x8a, - 0xc1, 0x04, 0x21, 0xbb, 0x50, 0x41, 0x3e, 0xf2, 0xe6, 0xdd, 0x56, 0xdc, 0x9e, 0x49, 0xb6, 0xf9, - 0xe8, 0x88, 0xaa, 0xc0, 0xea, 0x92, 0x23, 0x58, 0xe9, 0x4b, 0x1a, 0xba, 0x92, 0xae, 0xb8, 0x15, - 0x3f, 0x2d, 0x1e, 0x30, 0x3e, 0x95, 0xcc, 0x3f, 0xf5, 0x80, 0xf1, 0x8b, 0x07, 0x8c, 0xff, 0x95, - 0x50, 0xec, 0x27, 0xc1, 0x0d, 0x4d, 0x3b, 0x22, 0xde, 0x2f, 0x14, 0x50, 0xe5, 0x97, 0x77, 0x5f, - 0x52, 0x17, 0xc9, 0x23, 0xd8, 0x64, 0x03, 0x9a, 0x60, 0x28, 0x87, 0x69, 0x1a, 0x16, 0x3d, 0x79, - 0xc1, 0xe5, 0x62, 0xdd, 0x4d, 0x74, 0x86, 0x69, 0xda, 0xc9, 0x9b, 0x6e, 0x02, 0xab, 0xae, 0xd9, - 0x69, 0x4c, 0xf3, 0x47, 0xc0, 0xa2, 0x0b, 0xa0, 0x55, 0x76, 0x67, 0xfc, 0x43, 0x11, 0x63, 0xb7, - 0x30, 0x92, 0x97, 0xd7, 0x15, 0x7e, 0x4a, 0x44, 0x62, 0xb8, 0x2e, 0x45, 0x1c, 0xc6, 0x4c, 0xab, - 0xa1, 0x34, 0x4c, 0xf0, 0xb0, 0x37, 0x8c, 0x13, 0x34, 0xde, 0xd2, 0x05, 0xa5, 0xd0, 0x11, 0xf1, - 0xc1, 0x04, 0x6a, 0x39, 0xc6, 0x85, 0x7b, 0x55, 0x9e, 0x9f, 0x20, 0x03, 0x58, 0xb7, 0xab, 0x50, - 0xce, 0x85, 0xa1, 0x56, 0xae, 0xbd, 0x65, 0x17, 0xd0, 0x41, 0xe9, 0x80, 0x6c, 0x82, 0xa7, 0x66, - 0xf2, 0x90, 0xd6, 0xe4, 0x19, 0x21, 0xf1, 0xe1, 0xaa, 0x54, 0x4c, 0x28, 0x66, 0xb2, 0x30, 0x4a, - 0xa9, 0xd6, 0xa1, 0x3b, 0xa4, 0x2b, 0x2e, 0xd7, 0x9b, 0xe3, 0xa9, 0xe7, 0x76, 0xe6, 0xd0, 0x9e, - 0xd8, 0x0e, 0xac, 0x2b, 0xa4, 0x31, 0xe3, 0xb6, 0x11, 0x4a, 0x25, 0x7a, 0xe8, 0x55, 0x5d, 0xf8, - 0x0f, 0x66, 0xba, 0x17, 0x8c, 0xf5, 0x3b, 0x56, 0x3d, 0x58, 0x53, 0x67, 0xbe, 0xc9, 0x5d, 0x58, - 0x55, 0x28, 0x53, 0x16, 0xd1, 0x30, 0x12, 0x43, 0x6e, 0xdc, 0x31, 0x5e, 0x0d, 0xae, 0x14, 0xc2, - 0xe7, 0x56, 0x46, 0x9e, 0x41, 0x55, 0x8d, 0x63, 0x73, 0xa7, 0xba, 0xb6, 0x57, 0xff, 0xc0, 0x82, - 0x85, 0x66, 0x30, 0x85, 0xc8, 0x53, 0x58, 0xd6, 0xa8, 0x46, 0x2c, 0x42, 0xef, 0x8a, 0xe3, 0x67, - 0xb7, 0xed, 0x6e, 0xae, 0x97, 0x97, 0x64, 0x01, 0x91, 0x17, 0xb0, 0xa2, 0x8d, 0x7d, 0x79, 0x27, - 0x99, 0xb7, 0x7a, 0x41, 0x7f, 0x38, 0x40, 0x99, 0x8a, 0x6c, 0x60, 0x3b, 0x4b, 0x81, 0x04, 0x13, - 0x98, 0xb4, 0xa1, 0x66, 0x44, 0x6a, 0x11, 0xb7, 0xb9, 0x6b, 0xce, 0xd6, 0xdd, 0xd9, 0xb7, 0xd1, - 0x44, 0x37, 0x38, 0xcd, 0x91, 0x36, 0xac, 0x88, 0x11, 0xaa, 0xd4, 0xbe, 0x43, 0x62, 0x57, 0x20, - 0x0f, 0x67, 0x17, 0x48, 0x53, 0xbf, 0xee, 0xd9, 0x37, 0xee, 0xeb, 0x9c, 0x08, 0x26, 0xe8, 0xd6, - 0x17, 0xb0, 0x79, 0xae, 0xee, 0xcb, 0x5c, 0x48, 0x5b, 0xfb, 0x70, 0xf5, 0x3d, 0x75, 0x56, 0xea, - 0x4e, 0xfb, 0x79, 0x1e, 0x36, 0xde, 0x75, 0x91, 0xdc, 0x86, 0x1a, 0x95, 0x2c, 0x1c, 0xa1, 0xd2, - 0x4c, 0xf0, 0xc2, 0x10, 0x50, 0xc9, 0x8e, 0x72, 0x89, 0xed, 0x27, 0x27, 0x8c, 0xc7, 0x85, 0x39, - 0x37, 0x7e, 0x6f, 0x8f, 0x79, 0x05, 0xcb, 0x92, 0x9a, 0xa8, 0x8f, 0xba, 0xe8, 0x32, 0x8f, 0x2f, - 0x9d, 0x27, 0xdf, 0x36, 0x56, 0xd7, 0xe4, 0x83, 0xb1, 0x8d, 0xad, 0xef, 0xa1, 0x3a, 0x91, 0xda, - 0xf5, 0x5c, 0x33, 0xce, 0xbd, 0x73, 0x63, 0xfb, 0x57, 0x33, 0x8d, 0xf3, 0xf2, 0x3d, 0x3e, 0x87, - 0xea, 0x1e, 0xfc, 0xeb, 0xfd, 0xfd, 0xa7, 0xbe, 0x0e, 0xab, 0x67, 0x88, 0xfa, 0x35, 0x20, 0xe7, - 0x1f, 0x22, 0xad, 0xed, 0x37, 0xb7, 0xf2, 0x05, 0x8b, 0x9f, 0xc8, 0x73, 0xff, 0x87, 0xbd, 0x25, - 0xf7, 0x20, 0x78, 0xfc, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0x46, 0xd0, 0x38, 0xc2, 0x0e, - 0x00, 0x00, + // 1249 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0x6f, 0x73, 0x13, 0x37, + 0x13, 0xc0, 0x27, 0x71, 0xfe, 0x79, 0x4d, 0xfe, 0x09, 0x78, 0xb8, 0x27, 0xf3, 0x00, 0xc1, 0xf0, + 0x40, 0xa0, 0x9d, 0x73, 0x13, 0xde, 0x78, 0x68, 0x4b, 0x89, 0x89, 0x4b, 0x99, 0x96, 0xe0, 0x9e, + 0x3b, 0x79, 0xc1, 0x4c, 0xe7, 0x46, 0xbe, 0xdb, 0x9c, 0xd5, 0x9c, 0x25, 0x8d, 0x24, 0xbb, 0x5c, + 0xbf, 0x41, 0xdf, 0xf6, 0x55, 0x3f, 0x4a, 0xbf, 0x42, 0x5f, 0xf6, 0x1b, 0x75, 0xa4, 0x3b, 0xdb, + 0x09, 0xc1, 0x90, 0xeb, 0xd0, 0xf6, 0x9d, 0x6e, 0xb5, 0xbf, 0xd5, 0xee, 0x6a, 0xa5, 0xd5, 0xc1, + 0x2d, 0x21, 0x51, 0x51, 0x23, 0x54, 0x63, 0xb4, 0x4b, 0x53, 0xd9, 0xa7, 0xbb, 0x8d, 0x48, 0x0c, + 0xa4, 0xe0, 0xc8, 0x8d, 0x2f, 0x95, 0x30, 0x82, 0x5c, 0x63, 0xda, 0x30, 0xe1, 0x8f, 0x15, 0xfd, + 0xb1, 0xe2, 0xd6, 0x7f, 0x13, 0x21, 0x92, 0x14, 0x1b, 0x4e, 0xad, 0x37, 0x3c, 0x6e, 0x50, 0x9e, + 0xe5, 0xcc, 0x96, 0x7f, 0xd2, 0xd4, 0x3e, 0x13, 0x0d, 0x2a, 0x59, 0x83, 0x0e, 0x8d, 0xd0, 0x11, + 0x4d, 0x19, 0x4f, 0x1a, 0xa3, 0xbd, 0x1e, 0x1a, 0xba, 0xdb, 0x48, 0x90, 0x5b, 0x6b, 0x18, 0x17, + 0xfa, 0xf5, 0xf3, 0x6e, 0x9c, 0x0c, 0x7b, 0xa8, 0x38, 0x1a, 0xd4, 0xb9, 0x4e, 0xfd, 0x97, 0x65, + 0xb8, 0xfa, 0xdc, 0xba, 0xf2, 0x74, 0xec, 0x60, 0x17, 0x4d, 0x57, 0x62, 0x44, 0x1e, 0xc3, 0x42, + 0x8f, 0x6a, 0xf4, 0xae, 0x6f, 0xcf, 0xed, 0xd4, 0xf6, 0x1e, 0xf8, 0x33, 0x1c, 0xf6, 0x5b, 0x54, + 0xe3, 0x14, 0x96, 0x18, 0x05, 0x8e, 0x23, 0x9f, 0xc1, 0xa2, 0x64, 0xa9, 0x30, 0xde, 0x0d, 0x67, + 0xe0, 0xee, 0x4c, 0x03, 0x67, 0xe1, 0x1c, 0x72, 0xb4, 0x12, 0xaf, 0x33, 0xef, 0x66, 0x49, 0xda, + 0x42, 0xe4, 0x5b, 0xd8, 0xd0, 0x2c, 0xc6, 0x88, 0xaa, 0x90, 0xf1, 0x1f, 0x30, 0x32, 0x42, 0x79, + 0xdb, 0xa5, 0x0c, 0xad, 0x17, 0xfc, 0xf3, 0x02, 0x27, 0x8f, 0x61, 0x49, 0x8a, 0x94, 0x45, 0x99, + 0x77, 0xab, 0x94, 0xa1, 0x82, 0x22, 0x07, 0x50, 0x35, 0x98, 0xe2, 0x00, 0x8d, 0xca, 0xbc, 0x7a, + 0x29, 0x13, 0x53, 0x90, 0x3c, 0x81, 0xe5, 0x88, 0x19, 0x1a, 0x63, 0xea, 0xdd, 0x2e, 0x65, 0x63, + 0x8c, 0x91, 0x36, 0x00, 0x17, 0x31, 0x86, 0x34, 0x41, 0x6e, 0xbc, 0x3b, 0xe5, 0x1c, 0xb1, 0xe4, + 0xbe, 0x05, 0x6d, 0x3a, 0x12, 0x9a, 0xa6, 0x98, 0x79, 0xff, 0x2f, 0x97, 0x8e, 0x9c, 0x22, 0x4d, + 0xa8, 0x44, 0x9c, 0x79, 0x77, 0x4b, 0xc1, 0x16, 0x21, 0xfb, 0xb0, 0x12, 0x09, 0x85, 0x61, 0x7c, + 0xd8, 0xf5, 0xee, 0x95, 0xcc, 0x81, 0x50, 0x78, 0x70, 0xd8, 0x25, 0x2f, 0x61, 0x83, 0xf1, 0x44, + 0xa1, 0xd6, 0x61, 0x42, 0x0d, 0xfe, 0x48, 0x33, 0xed, 0xed, 0x6c, 0x57, 0x76, 0x6a, 0x7b, 0x77, + 0x66, 0x9a, 0x7a, 0x96, 0x2b, 0xe6, 0xc5, 0x51, 0xd0, 0x85, 0x4c, 0x93, 0x17, 0xb0, 0x8e, 0x6f, + 0xd8, 0xbb, 0x5f, 0xc2, 0xde, 0x1a, 0x9e, 0x31, 0x57, 0x7f, 0x05, 0x9b, 0xe7, 0x4e, 0x15, 0x69, + 0xc3, 0x32, 0x72, 0xda, 0x4b, 0x31, 0xf6, 0xe6, 0x5c, 0xd8, 0x1f, 0xcd, 0xb4, 0xfd, 0x5d, 0x26, + 0xb1, 0x25, 0x44, 0x7a, 0x44, 0xd3, 0x21, 0x7e, 0x29, 0x54, 0xa7, 0x15, 0x8c, 0xd9, 0xfa, 0xaf, + 0xf3, 0xb0, 0xfa, 0x77, 0x18, 0x26, 0xff, 0x83, 0x2a, 0xa7, 0x03, 0xd4, 0x92, 0x46, 0xe8, 0xcd, + 0x6f, 0xcf, 0xed, 0x54, 0x83, 0xa9, 0x80, 0x6c, 0x40, 0xa5, 0x3f, 0xec, 0x79, 0xe0, 0xe4, 0x76, + 0x68, 0x25, 0x86, 0x26, 0x5e, 0x2d, 0x97, 0x18, 0x9a, 0x90, 0x47, 0xb0, 0xa0, 0x25, 0x46, 0xef, + 0xbd, 0x30, 0xac, 0x17, 0xcf, 0xb9, 0x41, 0x75, 0x4c, 0x23, 0x0c, 0x1c, 0x43, 0x5a, 0x50, 0x39, + 0x69, 0x6a, 0x6f, 0xcf, 0xa1, 0x9f, 0xcc, 0x44, 0xbf, 0x9e, 0xdc, 0x7f, 0x01, 0x6a, 0x31, 0x54, + 0x11, 0xea, 0xbc, 0xb2, 0x4e, 0x9a, 0xba, 0xfe, 0xfb, 0x3c, 0x5c, 0x6d, 0xbf, 0x36, 0xa8, 0x38, + 0x4d, 0xff, 0x85, 0x14, 0x8d, 0xc3, 0x87, 0xbf, 0x10, 0xfe, 0x75, 0x80, 0xa8, 0x4f, 0x95, 0x09, + 0x25, 0x35, 0x7d, 0x97, 0xc0, 0x6a, 0x50, 0x75, 0x92, 0x0e, 0x35, 0x7d, 0xf2, 0x31, 0x2c, 0xe9, + 0xa8, 0x8f, 0x03, 0x5a, 0xdc, 0x1a, 0x57, 0xfc, 0xbc, 0xcb, 0xf8, 0xe3, 0x2e, 0xe3, 0xef, 0xf3, + 0x2c, 0x28, 0x74, 0x3e, 0x48, 0x2e, 0x7f, 0xab, 0x40, 0xed, 0x54, 0x89, 0xff, 0x33, 0x19, 0x24, + 0xb0, 0x60, 0x3f, 0xbc, 0x8a, 0x9b, 0x70, 0x63, 0xd2, 0x86, 0xc5, 0x94, 0xf6, 0x30, 0xf5, 0x16, + 0xdc, 0x81, 0x6c, 0x5c, 0xe4, 0x40, 0xfa, 0xdf, 0x58, 0xa2, 0xcd, 0x8d, 0xca, 0x82, 0x9c, 0xbe, + 0x50, 0xfd, 0x3e, 0x83, 0xa5, 0x91, 0xf5, 0x59, 0x17, 0x15, 0xdc, 0x78, 0x67, 0x88, 0x2f, 0xa8, + 0xec, 0x1a, 0xc5, 0x78, 0x32, 0xdd, 0xcb, 0x02, 0xff, 0x10, 0x1b, 0xb0, 0xd5, 0x04, 0x98, 0x46, + 0x61, 0x9d, 0x3d, 0xc1, 0xcc, 0xa5, 0xbe, 0x1a, 0xd8, 0x21, 0xb9, 0x02, 0x8b, 0x6e, 0xb5, 0x22, + 0x8b, 0xf9, 0xc7, 0xa3, 0xf9, 0xe6, 0x5c, 0xfd, 0x8f, 0x2a, 0x5c, 0x9b, 0x61, 0x9a, 0x7c, 0x0e, + 0x2b, 0xf4, 0xf8, 0x98, 0x71, 0x66, 0xb2, 0x62, 0x1f, 0x6f, 0xcd, 0x74, 0x6f, 0xbf, 0x50, 0x0c, + 0x26, 0x08, 0xd9, 0x85, 0x0a, 0xf2, 0x91, 0x37, 0xef, 0xb6, 0xe2, 0xe6, 0x4c, 0xb2, 0xcd, 0x47, + 0x47, 0x54, 0x05, 0x56, 0x97, 0x1c, 0xc1, 0x4a, 0x5f, 0xd2, 0xd0, 0x9d, 0x8c, 0x8a, 0x5b, 0xf1, + 0xd3, 0xe2, 0x1d, 0xe4, 0x53, 0xc9, 0xfc, 0x53, 0xef, 0x20, 0xbf, 0x78, 0x07, 0xf9, 0x5f, 0x09, + 0xc5, 0x7e, 0x12, 0xdc, 0xd0, 0xb4, 0x23, 0xe2, 0xfd, 0x42, 0x01, 0x55, 0xde, 0x03, 0xfa, 0x92, + 0xba, 0x48, 0x1e, 0xc0, 0x26, 0x1b, 0xd0, 0x04, 0x43, 0x39, 0x4c, 0xd3, 0xb0, 0x68, 0xed, 0x0b, + 0x2e, 0x17, 0xeb, 0x6e, 0xa2, 0x33, 0x4c, 0xd3, 0x4e, 0xde, 0xbb, 0x13, 0x58, 0x75, 0x3d, 0x53, + 0x63, 0x9a, 0xbf, 0x25, 0x16, 0x5d, 0x00, 0xad, 0xb2, 0x3b, 0xe3, 0x1f, 0x8a, 0x18, 0xbb, 0x85, + 0x91, 0xbc, 0xbc, 0x2e, 0xf1, 0x53, 0x22, 0x12, 0xc3, 0x55, 0x29, 0xe2, 0x30, 0x66, 0x5a, 0x0d, + 0xa5, 0x61, 0x82, 0x87, 0xbd, 0x61, 0x9c, 0xa0, 0xf1, 0x96, 0xde, 0x53, 0x0a, 0x1d, 0x11, 0x1f, + 0x4c, 0xa0, 0x96, 0x63, 0x5c, 0xb8, 0x97, 0xe5, 0xf9, 0x09, 0x32, 0x80, 0x75, 0xbb, 0x0a, 0xe5, + 0x5c, 0x18, 0x6a, 0xe5, 0xda, 0x5b, 0x76, 0x01, 0x1d, 0x94, 0x0e, 0xc8, 0x26, 0x78, 0x6a, 0x26, + 0x0f, 0x69, 0x4d, 0x9e, 0x11, 0x12, 0x1f, 0x2e, 0x4b, 0xc5, 0x84, 0x62, 0x26, 0x0b, 0xa3, 0x94, + 0x6a, 0x1d, 0xba, 0x43, 0xba, 0xe2, 0x72, 0xbd, 0x39, 0x9e, 0x7a, 0x6a, 0x67, 0x0e, 0xed, 0x89, + 0xed, 0xc0, 0xba, 0x42, 0x1a, 0x33, 0x6e, 0xfb, 0xa9, 0x54, 0xa2, 0x87, 0x5e, 0xd5, 0x85, 0x7f, + 0x6f, 0xa6, 0x7b, 0xc1, 0x58, 0xbf, 0x63, 0xd5, 0x83, 0x35, 0x75, 0xe6, 0x9b, 0xdc, 0x86, 0x55, + 0x85, 0x32, 0x65, 0x11, 0x0d, 0x23, 0x31, 0xe4, 0xc6, 0x1d, 0xe3, 0xd5, 0xe0, 0x52, 0x21, 0x7c, + 0x6a, 0x65, 0xe4, 0x09, 0x54, 0xd5, 0x38, 0x36, 0x77, 0xaa, 0x6b, 0x7b, 0xf5, 0x77, 0x2c, 0x58, + 0x68, 0x06, 0x53, 0x88, 0x3c, 0x86, 0x65, 0x8d, 0x6a, 0xc4, 0x22, 0xf4, 0x2e, 0x39, 0x7e, 0x76, + 0xf7, 0xef, 0xe6, 0x7a, 0x79, 0x49, 0x16, 0x10, 0x79, 0x06, 0x2b, 0xda, 0xd8, 0x07, 0x7c, 0x92, + 0x79, 0xab, 0xef, 0xb9, 0x24, 0x0f, 0x50, 0xa6, 0x22, 0x1b, 0xd8, 0x06, 0x55, 0x20, 0xc1, 0x04, + 0x26, 0x6d, 0xa8, 0x19, 0x91, 0x5a, 0xc4, 0x6d, 0xee, 0x9a, 0xb3, 0x75, 0x7b, 0xf6, 0x6d, 0x34, + 0xd1, 0x0d, 0x4e, 0x73, 0xa4, 0x0d, 0x2b, 0x62, 0x84, 0x2a, 0xb5, 0xcf, 0x99, 0xd8, 0x15, 0xc8, + 0xfd, 0xd9, 0x05, 0xd2, 0xd4, 0x2f, 0x7b, 0xf6, 0xa9, 0xfc, 0x32, 0x27, 0x82, 0x09, 0xba, 0xf5, + 0x05, 0x6c, 0x9e, 0xab, 0xfb, 0x32, 0x17, 0xd2, 0xd6, 0x3e, 0x5c, 0x7e, 0x4b, 0x9d, 0x95, 0xba, + 0xd3, 0x7e, 0x9e, 0x87, 0x8d, 0x37, 0x5d, 0x24, 0x37, 0xa1, 0x46, 0x25, 0x0b, 0x47, 0xa8, 0x34, + 0x13, 0xbc, 0x30, 0x04, 0x54, 0xb2, 0xa3, 0x5c, 0x62, 0xfb, 0xc9, 0x09, 0xe3, 0x71, 0x61, 0xce, + 0x8d, 0xdf, 0xda, 0x63, 0x5e, 0xc0, 0xb2, 0xa4, 0x26, 0xea, 0xa3, 0x2e, 0xba, 0xcc, 0xc3, 0x0b, + 0xe7, 0xc9, 0xb7, 0xfd, 0xd9, 0x75, 0xba, 0x60, 0x6c, 0x63, 0xeb, 0x7b, 0xa8, 0x4e, 0xa4, 0x76, + 0x3d, 0xd7, 0xd3, 0x73, 0xef, 0xdc, 0xd8, 0xfe, 0x1c, 0x4d, 0xe3, 0xbc, 0xf8, 0x53, 0x21, 0x87, + 0xea, 0x1e, 0xfc, 0xe7, 0xed, 0xfd, 0xa7, 0xbe, 0x0e, 0xab, 0x67, 0x88, 0xfa, 0x15, 0x20, 0xe7, + 0xbb, 0x71, 0x6b, 0xfb, 0xd5, 0x8d, 0x7c, 0xc1, 0xe2, 0x5f, 0xf4, 0xdc, 0x6f, 0x66, 0x6f, 0xc9, + 0xbd, 0x2b, 0x1e, 0xfe, 0x19, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xee, 0x71, 0x45, 0x09, 0x0f, 0x00, + 0x00, } diff --git a/operator/v1alpha1/component.proto b/operator/v1alpha1/component.proto index 66e9e9a2c48..7361d1daa2a 100644 --- a/operator/v1alpha1/component.proto +++ b/operator/v1alpha1/component.proto @@ -85,8 +85,8 @@ message ExternalComponentSpec { // Configuration for gateways. message GatewaySpec { - // Enablement is implied by the existence of this spec. - + // Selects whether this gateway is installed. + TypeBoolValueForPB enabled = 1; // Namespace for the gateway. string namespace = 2; // Name for the gateway. diff --git a/operator/v1alpha1/istio.operator.v1alpha1.pb.html b/operator/v1alpha1/istio.operator.v1alpha1.pb.html index 1c9e96437fb..adf1b77dcf0 100644 --- a/operator/v1alpha1/istio.operator.v1alpha1.pb.html +++ b/operator/v1alpha1/istio.operator.v1alpha1.pb.html @@ -476,6 +476,17 @@

GatewaySpec

+ +enabled +TypeBoolValueForPB + +

Selects whether this gateway is installed.

+ + + +No + + namespace string diff --git a/python/istio_api/operator/v1alpha1/component_pb2.py b/python/istio_api/operator/v1alpha1/component_pb2.py index 4b01b5e5eff..e1d29bec2e7 100644 --- a/python/istio_api/operator/v1alpha1/component_pb2.py +++ b/python/istio_api/operator/v1alpha1/component_pb2.py @@ -23,7 +23,7 @@ package='istio.operator.v1alpha1', syntax='proto3', serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), - serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xb6\x02\n\x0bGatewaySpec\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12?\n\x06values\x18\x1e \x01(\x0b\x32/.istio.operator.v1alpha1.TypeMapStringInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xf4\x02\n\x0bGatewaySpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12?\n\x06values\x18\x1e \x01(\x0b\x32/.istio.operator.v1alpha1.TypeMapStringInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') , dependencies=[google_dot_protobuf_dot_any__pb2.DESCRIPTOR,k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2.DESCRIPTOR,operator_dot_v1alpha1_dot_kubernetes__pb2.DESCRIPTOR,]) @@ -341,8 +341,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1833, - serialized_end=1877, + serialized_start=1895, + serialized_end=1939, ) _GATEWAYSPEC = _descriptor.Descriptor( @@ -353,49 +353,56 @@ containing_type=None, fields=[ _descriptor.FieldDescriptor( - name='namespace', full_name='istio.operator.v1alpha1.GatewaySpec.namespace', index=0, + name='enabled', full_name='istio.operator.v1alpha1.GatewaySpec.enabled', index=0, + number=1, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='namespace', full_name='istio.operator.v1alpha1.GatewaySpec.namespace', index=1, number=2, type=9, cpp_type=9, label=1, has_default_value=False, default_value=_b("").decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='name', full_name='istio.operator.v1alpha1.GatewaySpec.name', index=1, + name='name', full_name='istio.operator.v1alpha1.GatewaySpec.name', index=2, number=3, type=9, cpp_type=9, label=1, has_default_value=False, default_value=_b("").decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='label', full_name='istio.operator.v1alpha1.GatewaySpec.label', index=2, + name='label', full_name='istio.operator.v1alpha1.GatewaySpec.label', index=3, number=4, type=11, cpp_type=10, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='hub', full_name='istio.operator.v1alpha1.GatewaySpec.hub', index=3, + name='hub', full_name='istio.operator.v1alpha1.GatewaySpec.hub', index=4, number=10, type=9, cpp_type=9, label=1, has_default_value=False, default_value=_b("").decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='tag', full_name='istio.operator.v1alpha1.GatewaySpec.tag', index=4, + name='tag', full_name='istio.operator.v1alpha1.GatewaySpec.tag', index=5, number=11, type=9, cpp_type=9, label=1, has_default_value=False, default_value=_b("").decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='values', full_name='istio.operator.v1alpha1.GatewaySpec.values', index=5, + name='values', full_name='istio.operator.v1alpha1.GatewaySpec.values', index=6, number=30, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=6, + name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=7, number=50, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, @@ -414,7 +421,7 @@ oneofs=[ ], serialized_start=1567, - serialized_end=1877, + serialized_end=1939, ) @@ -451,8 +458,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2789, - serialized_end=2840, + serialized_start=2851, + serialized_end=2902, ) _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY = _descriptor.Descriptor( @@ -488,8 +495,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2842, - serialized_end=2895, + serialized_start=2904, + serialized_end=2957, ) _KUBERNETESRESOURCESSPEC = _descriptor.Descriptor( @@ -616,8 +623,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1880, - serialized_end=2895, + serialized_start=1942, + serialized_end=2957, ) @@ -654,8 +661,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3037, - serialized_end=3117, + serialized_start=3099, + serialized_end=3179, ) _K8SOBJECTOVERLAY = _descriptor.Descriptor( @@ -705,8 +712,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2898, - serialized_end=3117, + serialized_start=2960, + serialized_end=3179, ) @@ -729,8 +736,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3119, - serialized_end=3143, + serialized_start=3181, + serialized_end=3205, ) @@ -753,8 +760,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3145, - serialized_end=3160, + serialized_start=3207, + serialized_end=3222, ) @@ -777,8 +784,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3162, - serialized_end=3182, + serialized_start=3224, + serialized_end=3244, ) _ISTIOCOMPONENTSETSPEC.fields_by_name['base'].message_type = _BASECOMPONENTSPEC @@ -803,6 +810,7 @@ _EXTERNALCOMPONENTSPEC.fields_by_name['schema'].message_type = google_dot_protobuf_dot_any__pb2._ANY _EXTERNALCOMPONENTSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC _GATEWAYSPEC_LABELENTRY.containing_type = _GATEWAYSPEC +_GATEWAYSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB _GATEWAYSPEC.fields_by_name['label'].message_type = _GATEWAYSPEC_LABELENTRY _GATEWAYSPEC.fields_by_name['values'].message_type = _TYPEMAPSTRINGINTERFACE _GATEWAYSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC From de10e5ea85c887309258a8d395ae09bfdc12e112 Mon Sep 17 00:00:00 2001 From: Martin Ostrowski Date: Fri, 3 Jan 2020 16:53:51 -0800 Subject: [PATCH 7/7] Remove CoreDNS from core components list --- operator/v1alpha1/component.pb.go | 168 ++++++++---------- operator/v1alpha1/component.proto | 4 - .../v1alpha1/istio.operator.v1alpha1.pb.html | 20 --- .../operator/v1alpha1/component_pb2.py | 78 ++++---- 4 files changed, 108 insertions(+), 162 deletions(-) diff --git a/operator/v1alpha1/component.pb.go b/operator/v1alpha1/component.pb.go index ac03d6c9039..11978b1d2fa 100644 --- a/operator/v1alpha1/component.pb.go +++ b/operator/v1alpha1/component.pb.go @@ -34,7 +34,6 @@ type IstioComponentSetSpec struct { NodeAgent *ComponentSpec `protobuf:"bytes,36,opt,name=node_agent,json=nodeAgent,proto3" json:"node_agent,omitempty"` Galley *ComponentSpec `protobuf:"bytes,37,opt,name=galley,proto3" json:"galley,omitempty"` Cni *ComponentSpec `protobuf:"bytes,38,opt,name=cni,proto3" json:"cni,omitempty"` - CoreDNS *ComponentSpec `protobuf:"bytes,39,opt,name=core_dNS,json=coreDNS,proto3" json:"core_dNS,omitempty"` IngressGateways []*GatewaySpec `protobuf:"bytes,40,rep,name=ingress_gateways,json=ingressGateways,proto3" json:"ingress_gateways,omitempty"` EgressGateways []*GatewaySpec `protobuf:"bytes,41,rep,name=egress_gateways,json=egressGateways,proto3" json:"egress_gateways,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -137,13 +136,6 @@ func (m *IstioComponentSetSpec) GetCni() *ComponentSpec { return nil } -func (m *IstioComponentSetSpec) GetCoreDNS() *ComponentSpec { - if m != nil { - return m.CoreDNS - } - return nil -} - func (m *IstioComponentSetSpec) GetIngressGateways() []*GatewaySpec { if m != nil { return m.IngressGateways @@ -355,8 +347,6 @@ type GatewaySpec struct { Hub string `protobuf:"bytes,10,opt,name=hub,proto3" json:"hub,omitempty"` // Tag for the component (overrides top level tag setting). Tag string `protobuf:"bytes,11,opt,name=tag,proto3" json:"tag,omitempty"` - // Overrides for values.yaml. - Values map[string]interface{} `protobuf:"bytes,30,opt,name=values,proto3" json:"values,omitempty"` // Kubernetes resource spec. K8S *KubernetesResourcesSpec `protobuf:"bytes,50,opt,name=k8s,proto3" json:"k8s,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -425,7 +415,6 @@ func (m *GatewaySpec) GetTag() string { return "" } - func (m *GatewaySpec) GetK8S() *KubernetesResourcesSpec { if m != nil { return m.K8S @@ -754,84 +743,81 @@ func init() { func init() { proto.RegisterFile("operator/v1alpha1/component.proto", fileDescriptor_6ed34a579e9b43a2) } var fileDescriptor_6ed34a579e9b43a2 = []byte{ - // 1249 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0x6f, 0x73, 0x13, 0x37, - 0x13, 0xc0, 0x27, 0x71, 0xfe, 0x79, 0x4d, 0xfe, 0x09, 0x78, 0xb8, 0x27, 0xf3, 0x00, 0xc1, 0xf0, - 0x40, 0xa0, 0x9d, 0x73, 0x13, 0xde, 0x78, 0x68, 0x4b, 0x89, 0x89, 0x4b, 0x99, 0x96, 0xe0, 0x9e, - 0x3b, 0x79, 0xc1, 0x4c, 0xe7, 0x46, 0xbe, 0xdb, 0x9c, 0xd5, 0x9c, 0x25, 0x8d, 0x24, 0xbb, 0x5c, - 0xbf, 0x41, 0xdf, 0xf6, 0x55, 0x3f, 0x4a, 0xbf, 0x42, 0x5f, 0xf6, 0x1b, 0x75, 0xa4, 0x3b, 0xdb, - 0x09, 0xc1, 0x90, 0xeb, 0xd0, 0xf6, 0x9d, 0x6e, 0xb5, 0xbf, 0xd5, 0xee, 0x6a, 0xa5, 0xd5, 0xc1, - 0x2d, 0x21, 0x51, 0x51, 0x23, 0x54, 0x63, 0xb4, 0x4b, 0x53, 0xd9, 0xa7, 0xbb, 0x8d, 0x48, 0x0c, - 0xa4, 0xe0, 0xc8, 0x8d, 0x2f, 0x95, 0x30, 0x82, 0x5c, 0x63, 0xda, 0x30, 0xe1, 0x8f, 0x15, 0xfd, - 0xb1, 0xe2, 0xd6, 0x7f, 0x13, 0x21, 0x92, 0x14, 0x1b, 0x4e, 0xad, 0x37, 0x3c, 0x6e, 0x50, 0x9e, - 0xe5, 0xcc, 0x96, 0x7f, 0xd2, 0xd4, 0x3e, 0x13, 0x0d, 0x2a, 0x59, 0x83, 0x0e, 0x8d, 0xd0, 0x11, - 0x4d, 0x19, 0x4f, 0x1a, 0xa3, 0xbd, 0x1e, 0x1a, 0xba, 0xdb, 0x48, 0x90, 0x5b, 0x6b, 0x18, 0x17, - 0xfa, 0xf5, 0xf3, 0x6e, 0x9c, 0x0c, 0x7b, 0xa8, 0x38, 0x1a, 0xd4, 0xb9, 0x4e, 0xfd, 0x97, 0x65, - 0xb8, 0xfa, 0xdc, 0xba, 0xf2, 0x74, 0xec, 0x60, 0x17, 0x4d, 0x57, 0x62, 0x44, 0x1e, 0xc3, 0x42, - 0x8f, 0x6a, 0xf4, 0xae, 0x6f, 0xcf, 0xed, 0xd4, 0xf6, 0x1e, 0xf8, 0x33, 0x1c, 0xf6, 0x5b, 0x54, - 0xe3, 0x14, 0x96, 0x18, 0x05, 0x8e, 0x23, 0x9f, 0xc1, 0xa2, 0x64, 0xa9, 0x30, 0xde, 0x0d, 0x67, - 0xe0, 0xee, 0x4c, 0x03, 0x67, 0xe1, 0x1c, 0x72, 0xb4, 0x12, 0xaf, 0x33, 0xef, 0x66, 0x49, 0xda, - 0x42, 0xe4, 0x5b, 0xd8, 0xd0, 0x2c, 0xc6, 0x88, 0xaa, 0x90, 0xf1, 0x1f, 0x30, 0x32, 0x42, 0x79, - 0xdb, 0xa5, 0x0c, 0xad, 0x17, 0xfc, 0xf3, 0x02, 0x27, 0x8f, 0x61, 0x49, 0x8a, 0x94, 0x45, 0x99, - 0x77, 0xab, 0x94, 0xa1, 0x82, 0x22, 0x07, 0x50, 0x35, 0x98, 0xe2, 0x00, 0x8d, 0xca, 0xbc, 0x7a, - 0x29, 0x13, 0x53, 0x90, 0x3c, 0x81, 0xe5, 0x88, 0x19, 0x1a, 0x63, 0xea, 0xdd, 0x2e, 0x65, 0x63, - 0x8c, 0x91, 0x36, 0x00, 0x17, 0x31, 0x86, 0x34, 0x41, 0x6e, 0xbc, 0x3b, 0xe5, 0x1c, 0xb1, 0xe4, - 0xbe, 0x05, 0x6d, 0x3a, 0x12, 0x9a, 0xa6, 0x98, 0x79, 0xff, 0x2f, 0x97, 0x8e, 0x9c, 0x22, 0x4d, - 0xa8, 0x44, 0x9c, 0x79, 0x77, 0x4b, 0xc1, 0x16, 0x21, 0xfb, 0xb0, 0x12, 0x09, 0x85, 0x61, 0x7c, - 0xd8, 0xf5, 0xee, 0x95, 0xcc, 0x81, 0x50, 0x78, 0x70, 0xd8, 0x25, 0x2f, 0x61, 0x83, 0xf1, 0x44, - 0xa1, 0xd6, 0x61, 0x42, 0x0d, 0xfe, 0x48, 0x33, 0xed, 0xed, 0x6c, 0x57, 0x76, 0x6a, 0x7b, 0x77, - 0x66, 0x9a, 0x7a, 0x96, 0x2b, 0xe6, 0xc5, 0x51, 0xd0, 0x85, 0x4c, 0x93, 0x17, 0xb0, 0x8e, 0x6f, - 0xd8, 0xbb, 0x5f, 0xc2, 0xde, 0x1a, 0x9e, 0x31, 0x57, 0x7f, 0x05, 0x9b, 0xe7, 0x4e, 0x15, 0x69, - 0xc3, 0x32, 0x72, 0xda, 0x4b, 0x31, 0xf6, 0xe6, 0x5c, 0xd8, 0x1f, 0xcd, 0xb4, 0xfd, 0x5d, 0x26, - 0xb1, 0x25, 0x44, 0x7a, 0x44, 0xd3, 0x21, 0x7e, 0x29, 0x54, 0xa7, 0x15, 0x8c, 0xd9, 0xfa, 0xaf, - 0xf3, 0xb0, 0xfa, 0x77, 0x18, 0x26, 0xff, 0x83, 0x2a, 0xa7, 0x03, 0xd4, 0x92, 0x46, 0xe8, 0xcd, - 0x6f, 0xcf, 0xed, 0x54, 0x83, 0xa9, 0x80, 0x6c, 0x40, 0xa5, 0x3f, 0xec, 0x79, 0xe0, 0xe4, 0x76, - 0x68, 0x25, 0x86, 0x26, 0x5e, 0x2d, 0x97, 0x18, 0x9a, 0x90, 0x47, 0xb0, 0xa0, 0x25, 0x46, 0xef, - 0xbd, 0x30, 0xac, 0x17, 0xcf, 0xb9, 0x41, 0x75, 0x4c, 0x23, 0x0c, 0x1c, 0x43, 0x5a, 0x50, 0x39, - 0x69, 0x6a, 0x6f, 0xcf, 0xa1, 0x9f, 0xcc, 0x44, 0xbf, 0x9e, 0xdc, 0x7f, 0x01, 0x6a, 0x31, 0x54, - 0x11, 0xea, 0xbc, 0xb2, 0x4e, 0x9a, 0xba, 0xfe, 0xfb, 0x3c, 0x5c, 0x6d, 0xbf, 0x36, 0xa8, 0x38, - 0x4d, 0xff, 0x85, 0x14, 0x8d, 0xc3, 0x87, 0xbf, 0x10, 0xfe, 0x75, 0x80, 0xa8, 0x4f, 0x95, 0x09, - 0x25, 0x35, 0x7d, 0x97, 0xc0, 0x6a, 0x50, 0x75, 0x92, 0x0e, 0x35, 0x7d, 0xf2, 0x31, 0x2c, 0xe9, - 0xa8, 0x8f, 0x03, 0x5a, 0xdc, 0x1a, 0x57, 0xfc, 0xbc, 0xcb, 0xf8, 0xe3, 0x2e, 0xe3, 0xef, 0xf3, - 0x2c, 0x28, 0x74, 0x3e, 0x48, 0x2e, 0x7f, 0xab, 0x40, 0xed, 0x54, 0x89, 0xff, 0x33, 0x19, 0x24, - 0xb0, 0x60, 0x3f, 0xbc, 0x8a, 0x9b, 0x70, 0x63, 0xd2, 0x86, 0xc5, 0x94, 0xf6, 0x30, 0xf5, 0x16, - 0xdc, 0x81, 0x6c, 0x5c, 0xe4, 0x40, 0xfa, 0xdf, 0x58, 0xa2, 0xcd, 0x8d, 0xca, 0x82, 0x9c, 0xbe, - 0x50, 0xfd, 0x3e, 0x83, 0xa5, 0x91, 0xf5, 0x59, 0x17, 0x15, 0xdc, 0x78, 0x67, 0x88, 0x2f, 0xa8, - 0xec, 0x1a, 0xc5, 0x78, 0x32, 0xdd, 0xcb, 0x02, 0xff, 0x10, 0x1b, 0xb0, 0xd5, 0x04, 0x98, 0x46, - 0x61, 0x9d, 0x3d, 0xc1, 0xcc, 0xa5, 0xbe, 0x1a, 0xd8, 0x21, 0xb9, 0x02, 0x8b, 0x6e, 0xb5, 0x22, - 0x8b, 0xf9, 0xc7, 0xa3, 0xf9, 0xe6, 0x5c, 0xfd, 0x8f, 0x2a, 0x5c, 0x9b, 0x61, 0x9a, 0x7c, 0x0e, - 0x2b, 0xf4, 0xf8, 0x98, 0x71, 0x66, 0xb2, 0x62, 0x1f, 0x6f, 0xcd, 0x74, 0x6f, 0xbf, 0x50, 0x0c, - 0x26, 0x08, 0xd9, 0x85, 0x0a, 0xf2, 0x91, 0x37, 0xef, 0xb6, 0xe2, 0xe6, 0x4c, 0xb2, 0xcd, 0x47, - 0x47, 0x54, 0x05, 0x56, 0x97, 0x1c, 0xc1, 0x4a, 0x5f, 0xd2, 0xd0, 0x9d, 0x8c, 0x8a, 0x5b, 0xf1, - 0xd3, 0xe2, 0x1d, 0xe4, 0x53, 0xc9, 0xfc, 0x53, 0xef, 0x20, 0xbf, 0x78, 0x07, 0xf9, 0x5f, 0x09, - 0xc5, 0x7e, 0x12, 0xdc, 0xd0, 0xb4, 0x23, 0xe2, 0xfd, 0x42, 0x01, 0x55, 0xde, 0x03, 0xfa, 0x92, - 0xba, 0x48, 0x1e, 0xc0, 0x26, 0x1b, 0xd0, 0x04, 0x43, 0x39, 0x4c, 0xd3, 0xb0, 0x68, 0xed, 0x0b, - 0x2e, 0x17, 0xeb, 0x6e, 0xa2, 0x33, 0x4c, 0xd3, 0x4e, 0xde, 0xbb, 0x13, 0x58, 0x75, 0x3d, 0x53, - 0x63, 0x9a, 0xbf, 0x25, 0x16, 0x5d, 0x00, 0xad, 0xb2, 0x3b, 0xe3, 0x1f, 0x8a, 0x18, 0xbb, 0x85, - 0x91, 0xbc, 0xbc, 0x2e, 0xf1, 0x53, 0x22, 0x12, 0xc3, 0x55, 0x29, 0xe2, 0x30, 0x66, 0x5a, 0x0d, - 0xa5, 0x61, 0x82, 0x87, 0xbd, 0x61, 0x9c, 0xa0, 0xf1, 0x96, 0xde, 0x53, 0x0a, 0x1d, 0x11, 0x1f, - 0x4c, 0xa0, 0x96, 0x63, 0x5c, 0xb8, 0x97, 0xe5, 0xf9, 0x09, 0x32, 0x80, 0x75, 0xbb, 0x0a, 0xe5, - 0x5c, 0x18, 0x6a, 0xe5, 0xda, 0x5b, 0x76, 0x01, 0x1d, 0x94, 0x0e, 0xc8, 0x26, 0x78, 0x6a, 0x26, - 0x0f, 0x69, 0x4d, 0x9e, 0x11, 0x12, 0x1f, 0x2e, 0x4b, 0xc5, 0x84, 0x62, 0x26, 0x0b, 0xa3, 0x94, - 0x6a, 0x1d, 0xba, 0x43, 0xba, 0xe2, 0x72, 0xbd, 0x39, 0x9e, 0x7a, 0x6a, 0x67, 0x0e, 0xed, 0x89, - 0xed, 0xc0, 0xba, 0x42, 0x1a, 0x33, 0x6e, 0xfb, 0xa9, 0x54, 0xa2, 0x87, 0x5e, 0xd5, 0x85, 0x7f, - 0x6f, 0xa6, 0x7b, 0xc1, 0x58, 0xbf, 0x63, 0xd5, 0x83, 0x35, 0x75, 0xe6, 0x9b, 0xdc, 0x86, 0x55, - 0x85, 0x32, 0x65, 0x11, 0x0d, 0x23, 0x31, 0xe4, 0xc6, 0x1d, 0xe3, 0xd5, 0xe0, 0x52, 0x21, 0x7c, - 0x6a, 0x65, 0xe4, 0x09, 0x54, 0xd5, 0x38, 0x36, 0x77, 0xaa, 0x6b, 0x7b, 0xf5, 0x77, 0x2c, 0x58, - 0x68, 0x06, 0x53, 0x88, 0x3c, 0x86, 0x65, 0x8d, 0x6a, 0xc4, 0x22, 0xf4, 0x2e, 0x39, 0x7e, 0x76, - 0xf7, 0xef, 0xe6, 0x7a, 0x79, 0x49, 0x16, 0x10, 0x79, 0x06, 0x2b, 0xda, 0xd8, 0x07, 0x7c, 0x92, - 0x79, 0xab, 0xef, 0xb9, 0x24, 0x0f, 0x50, 0xa6, 0x22, 0x1b, 0xd8, 0x06, 0x55, 0x20, 0xc1, 0x04, - 0x26, 0x6d, 0xa8, 0x19, 0x91, 0x5a, 0xc4, 0x6d, 0xee, 0x9a, 0xb3, 0x75, 0x7b, 0xf6, 0x6d, 0x34, - 0xd1, 0x0d, 0x4e, 0x73, 0xa4, 0x0d, 0x2b, 0x62, 0x84, 0x2a, 0xb5, 0xcf, 0x99, 0xd8, 0x15, 0xc8, - 0xfd, 0xd9, 0x05, 0xd2, 0xd4, 0x2f, 0x7b, 0xf6, 0xa9, 0xfc, 0x32, 0x27, 0x82, 0x09, 0xba, 0xf5, - 0x05, 0x6c, 0x9e, 0xab, 0xfb, 0x32, 0x17, 0xd2, 0xd6, 0x3e, 0x5c, 0x7e, 0x4b, 0x9d, 0x95, 0xba, - 0xd3, 0x7e, 0x9e, 0x87, 0x8d, 0x37, 0x5d, 0x24, 0x37, 0xa1, 0x46, 0x25, 0x0b, 0x47, 0xa8, 0x34, - 0x13, 0xbc, 0x30, 0x04, 0x54, 0xb2, 0xa3, 0x5c, 0x62, 0xfb, 0xc9, 0x09, 0xe3, 0x71, 0x61, 0xce, - 0x8d, 0xdf, 0xda, 0x63, 0x5e, 0xc0, 0xb2, 0xa4, 0x26, 0xea, 0xa3, 0x2e, 0xba, 0xcc, 0xc3, 0x0b, - 0xe7, 0xc9, 0xb7, 0xfd, 0xd9, 0x75, 0xba, 0x60, 0x6c, 0x63, 0xeb, 0x7b, 0xa8, 0x4e, 0xa4, 0x76, - 0x3d, 0xd7, 0xd3, 0x73, 0xef, 0xdc, 0xd8, 0xfe, 0x1c, 0x4d, 0xe3, 0xbc, 0xf8, 0x53, 0x21, 0x87, - 0xea, 0x1e, 0xfc, 0xe7, 0xed, 0xfd, 0xa7, 0xbe, 0x0e, 0xab, 0x67, 0x88, 0xfa, 0x15, 0x20, 0xe7, - 0xbb, 0x71, 0x6b, 0xfb, 0xd5, 0x8d, 0x7c, 0xc1, 0xe2, 0x5f, 0xf4, 0xdc, 0x6f, 0x66, 0x6f, 0xc9, - 0xbd, 0x2b, 0x1e, 0xfe, 0x19, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xee, 0x71, 0x45, 0x09, 0x0f, 0x00, - 0x00, + // 1213 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0x6d, 0x73, 0xdb, 0x44, + 0x10, 0xc7, 0x27, 0x76, 0x9e, 0xbc, 0x6e, 0x9e, 0xae, 0x2d, 0x15, 0x19, 0xda, 0xa6, 0x6e, 0x29, + 0x69, 0x61, 0x64, 0x92, 0xbe, 0xf1, 0x14, 0x28, 0x8d, 0x1b, 0x53, 0x3a, 0xd0, 0xd6, 0x28, 0x4c, + 0x5e, 0x74, 0x86, 0xf1, 0x9c, 0xa5, 0x8d, 0x7c, 0xe4, 0x7c, 0x77, 0x73, 0x77, 0x36, 0x15, 0xdf, + 0x80, 0x6f, 0xc0, 0x57, 0xe2, 0x15, 0xc3, 0x27, 0xe1, 0x2b, 0x30, 0x77, 0x92, 0xed, 0xa4, 0xa9, + 0x49, 0xcc, 0x14, 0x78, 0x27, 0xad, 0xf6, 0xf7, 0xbf, 0xdd, 0xd5, 0x9e, 0xf6, 0x04, 0xb7, 0xa4, + 0x42, 0x4d, 0xad, 0xd4, 0xf5, 0xe1, 0x0e, 0xe5, 0xaa, 0x47, 0x77, 0xea, 0xb1, 0xec, 0x2b, 0x29, + 0x50, 0xd8, 0x50, 0x69, 0x69, 0x25, 0xb9, 0xc6, 0x8c, 0x65, 0x32, 0x1c, 0x39, 0x86, 0x23, 0xc7, + 0xcd, 0xf7, 0x53, 0x29, 0x53, 0x8e, 0x75, 0xef, 0xd6, 0x1d, 0x1c, 0xd5, 0xa9, 0xc8, 0x72, 0x66, + 0x33, 0x3c, 0x6e, 0x98, 0x90, 0xc9, 0x3a, 0x55, 0xac, 0x4e, 0x07, 0x56, 0x9a, 0x98, 0x72, 0x26, + 0xd2, 0xfa, 0x70, 0xb7, 0x8b, 0x96, 0xee, 0xd4, 0x53, 0x14, 0x4e, 0x0d, 0x93, 0xc2, 0xbf, 0x76, + 0x36, 0x8c, 0xe3, 0x41, 0x17, 0xb5, 0x40, 0x8b, 0x26, 0xf7, 0xa9, 0xfd, 0xbe, 0x08, 0x57, 0x9f, + 0xb9, 0x50, 0x9e, 0x8c, 0x02, 0x3c, 0x40, 0x7b, 0xa0, 0x30, 0x26, 0x8f, 0x60, 0xbe, 0x4b, 0x0d, + 0x06, 0xd7, 0xb7, 0xe6, 0xb6, 0xab, 0xbb, 0xf7, 0xc3, 0x29, 0x01, 0x87, 0x4d, 0x6a, 0x70, 0x02, + 0x2b, 0x8c, 0x23, 0xcf, 0x91, 0xcf, 0x61, 0x41, 0x31, 0x2e, 0x6d, 0x70, 0xc3, 0x0b, 0xdc, 0x9d, + 0x2a, 0x70, 0x1a, 0xce, 0x21, 0x4f, 0x6b, 0xf9, 0x3a, 0x0b, 0x6e, 0xce, 0x48, 0x3b, 0x88, 0x7c, + 0x07, 0xeb, 0x86, 0x25, 0x18, 0x53, 0xdd, 0x61, 0xe2, 0x47, 0x8c, 0xad, 0xd4, 0xc1, 0xd6, 0x4c, + 0x42, 0x6b, 0x05, 0xff, 0xac, 0xc0, 0xc9, 0x23, 0x58, 0x54, 0x92, 0xb3, 0x38, 0x0b, 0x6e, 0xcd, + 0x24, 0x54, 0x50, 0x64, 0x1f, 0x2a, 0x16, 0x39, 0xf6, 0xd1, 0xea, 0x2c, 0xa8, 0xcd, 0x24, 0x31, + 0x01, 0xc9, 0x63, 0x58, 0x8a, 0x99, 0xa5, 0x09, 0xf2, 0xe0, 0xf6, 0x4c, 0x1a, 0x23, 0x8c, 0xb4, + 0x00, 0x84, 0x4c, 0xb0, 0x43, 0x53, 0x14, 0x36, 0xb8, 0x33, 0x5b, 0x20, 0x8e, 0xdc, 0x73, 0xa0, + 0x2b, 0x47, 0x4a, 0x39, 0xc7, 0x2c, 0xf8, 0x70, 0xb6, 0x72, 0xe4, 0x14, 0x69, 0x40, 0x39, 0x16, + 0x2c, 0xb8, 0x3b, 0x13, 0xec, 0x10, 0xf2, 0x12, 0xd6, 0x99, 0x48, 0x35, 0x1a, 0xd3, 0x49, 0xa9, + 0xc5, 0x9f, 0x68, 0x66, 0x82, 0xed, 0xad, 0xf2, 0x76, 0x75, 0xf7, 0xce, 0x54, 0x99, 0xa7, 0xb9, + 0x63, 0xfe, 0x66, 0x0b, 0xba, 0xb0, 0x19, 0xf2, 0x1c, 0xd6, 0xf0, 0x0d, 0xbd, 0x7b, 0x33, 0xe8, + 0xad, 0xe2, 0x29, 0xb9, 0xda, 0x2b, 0xd8, 0x38, 0xb3, 0x25, 0x48, 0x0b, 0x96, 0x50, 0xd0, 0x2e, + 0xc7, 0x24, 0x98, 0xf3, 0x29, 0x7f, 0x3c, 0x55, 0xfb, 0xfb, 0x4c, 0x61, 0x53, 0x4a, 0x7e, 0x48, + 0xf9, 0x00, 0xbf, 0x92, 0xba, 0xdd, 0x8c, 0x46, 0x6c, 0xed, 0xd7, 0x12, 0xac, 0xfc, 0x1b, 0xc2, + 0xe4, 0x03, 0xa8, 0x08, 0xda, 0x47, 0xa3, 0x68, 0x8c, 0x41, 0x69, 0x6b, 0x6e, 0xbb, 0x12, 0x4d, + 0x0c, 0x64, 0x1d, 0xca, 0xbd, 0x41, 0x37, 0x00, 0x6f, 0x77, 0x97, 0xce, 0x62, 0x69, 0x1a, 0x54, + 0x73, 0x8b, 0xa5, 0x29, 0x79, 0x08, 0xf3, 0x46, 0x61, 0x7c, 0xee, 0x6e, 0x77, 0x51, 0x3c, 0x13, + 0x16, 0xf5, 0x11, 0x8d, 0x31, 0xf2, 0x0c, 0x69, 0x42, 0xf9, 0xb8, 0x61, 0x82, 0x5d, 0x8f, 0x7e, + 0x3a, 0x15, 0xfd, 0x66, 0xfc, 0xf1, 0x8a, 0xd0, 0xc8, 0x81, 0x8e, 0xd1, 0xe4, 0x6d, 0x71, 0xdc, + 0x30, 0xb5, 0xdf, 0x4a, 0x70, 0xb5, 0xf5, 0xda, 0xa2, 0x16, 0x94, 0xff, 0x0f, 0x25, 0x1a, 0xa5, + 0x0f, 0xff, 0x20, 0xfd, 0xeb, 0x00, 0x71, 0x8f, 0x6a, 0xdb, 0x51, 0xd4, 0xf6, 0x7c, 0x01, 0x2b, + 0x51, 0xc5, 0x5b, 0xda, 0xd4, 0xf6, 0xc8, 0x27, 0xb0, 0x68, 0xe2, 0x1e, 0xf6, 0x69, 0xb1, 0xe5, + 0xaf, 0x84, 0xf9, 0x88, 0x08, 0x47, 0x23, 0x22, 0xdc, 0x13, 0x59, 0x54, 0xf8, 0xbc, 0x93, 0x5a, + 0xfe, 0x59, 0x82, 0xea, 0x89, 0x16, 0xff, 0x6f, 0x2a, 0x48, 0x60, 0xde, 0xdd, 0x04, 0x65, 0xff, + 0xc0, 0x5f, 0x93, 0x16, 0x2c, 0x70, 0xda, 0x45, 0x1e, 0xcc, 0xfb, 0x0d, 0x59, 0xbf, 0xc8, 0x86, + 0x0c, 0xbf, 0x75, 0x44, 0x4b, 0x58, 0x9d, 0x45, 0x39, 0x7d, 0xa1, 0xfe, 0x7d, 0x07, 0x75, 0xdb, + 0x6c, 0x00, 0x4c, 0x16, 0x77, 0x6b, 0x1c, 0x63, 0xe6, 0x2b, 0x56, 0x89, 0xdc, 0x25, 0xb9, 0x02, + 0x0b, 0x43, 0x57, 0x97, 0x22, 0xf9, 0xfc, 0xe6, 0x61, 0xa9, 0x31, 0x57, 0xfb, 0xa3, 0x02, 0xd7, + 0xa6, 0x48, 0x93, 0x2f, 0x60, 0x99, 0x1e, 0x1d, 0x31, 0xc1, 0x6c, 0x56, 0x94, 0xff, 0xd6, 0xd4, + 0xf0, 0xf6, 0x0a, 0xc7, 0x68, 0x8c, 0x90, 0x1d, 0x28, 0xa3, 0x18, 0x06, 0x25, 0x5f, 0xc1, 0x9b, + 0x53, 0xc9, 0x96, 0x18, 0x1e, 0x52, 0x1d, 0x39, 0x5f, 0x72, 0x08, 0xcb, 0x3d, 0x45, 0x3b, 0xbe, + 0xa1, 0xcb, 0x7e, 0xc5, 0xcf, 0x8a, 0xb3, 0x47, 0x48, 0x15, 0x0b, 0x4f, 0x9c, 0x3d, 0xc2, 0xe2, + 0xec, 0x11, 0x7e, 0x2d, 0x35, 0xfb, 0x59, 0x0a, 0x4b, 0x79, 0x5b, 0x26, 0x7b, 0x85, 0x03, 0xea, + 0x7c, 0xf6, 0xf4, 0x14, 0xf5, 0x99, 0xdc, 0x87, 0x0d, 0xd6, 0xa7, 0x29, 0x76, 0xd4, 0x80, 0xf3, + 0x4e, 0x31, 0x4e, 0xe7, 0x7d, 0x2d, 0xd6, 0xfc, 0x83, 0xf6, 0x80, 0xf3, 0x76, 0x3e, 0x2f, 0x53, + 0x58, 0xf1, 0x73, 0xca, 0x20, 0xcf, 0xe7, 0xf7, 0x82, 0x4f, 0xa0, 0x39, 0xeb, 0x9b, 0x09, 0x5f, + 0xc8, 0x04, 0x0f, 0x0a, 0x91, 0xbc, 0x2b, 0x2e, 0x89, 0x13, 0x26, 0x92, 0xc0, 0x55, 0x25, 0x93, + 0x4e, 0xc2, 0x8c, 0x1e, 0x28, 0xcb, 0xa4, 0xe8, 0x74, 0x07, 0x49, 0x8a, 0x36, 0x58, 0x3c, 0xa7, + 0x15, 0xda, 0x32, 0xd9, 0x1f, 0x43, 0x4d, 0xcf, 0xf8, 0x74, 0x2f, 0xab, 0xb3, 0x0f, 0x48, 0x1f, + 0xd6, 0xdc, 0x2a, 0x54, 0x08, 0x69, 0xa9, 0xb3, 0x9b, 0x60, 0xc9, 0x27, 0xb4, 0x3f, 0x73, 0x42, + 0xae, 0xc0, 0x13, 0x99, 0x3c, 0xa5, 0x55, 0x75, 0xca, 0x48, 0x42, 0xb8, 0xac, 0x34, 0x93, 0x9a, + 0xd9, 0xac, 0x13, 0x73, 0x6a, 0x4c, 0xc7, 0xef, 0xad, 0x65, 0x5f, 0xeb, 0x8d, 0xd1, 0xa3, 0x27, + 0xee, 0xc9, 0x0b, 0xb7, 0xd1, 0xda, 0xb0, 0xa6, 0x91, 0x26, 0x4c, 0xb8, 0x31, 0xa8, 0xb4, 0xec, + 0x62, 0x50, 0xf1, 0xe9, 0x7f, 0x34, 0x35, 0xbc, 0x68, 0xe4, 0xdf, 0x76, 0xee, 0xd1, 0xaa, 0x3e, + 0x75, 0x4f, 0x6e, 0xc3, 0x8a, 0x46, 0xc5, 0x59, 0x4c, 0x3b, 0xb1, 0x1c, 0x08, 0xeb, 0x77, 0xdf, + 0x4a, 0x74, 0xa9, 0x30, 0x3e, 0x71, 0x36, 0xf2, 0x18, 0x2a, 0x7a, 0x94, 0x9b, 0xdf, 0x8c, 0xd5, + 0xdd, 0xda, 0xdf, 0x2c, 0x58, 0x78, 0x46, 0x13, 0x88, 0x3c, 0x82, 0x25, 0x83, 0x7a, 0xc8, 0x62, + 0x0c, 0x2e, 0x79, 0x7e, 0xfa, 0xd0, 0x3e, 0xc8, 0xfd, 0xf2, 0x96, 0x2c, 0x20, 0xf2, 0x14, 0x96, + 0x8d, 0x75, 0x87, 0xe6, 0x34, 0x0b, 0x56, 0xce, 0xf9, 0xb6, 0xed, 0xa3, 0xe2, 0x32, 0xeb, 0xbb, + 0xb9, 0x52, 0x20, 0xd1, 0x18, 0x26, 0x2d, 0xa8, 0x5a, 0xc9, 0x1d, 0xe2, 0x5f, 0xee, 0xaa, 0xd7, + 0xba, 0x3d, 0xfd, 0x3b, 0x39, 0xf6, 0x8d, 0x4e, 0x72, 0xa4, 0x05, 0xcb, 0x72, 0x88, 0x9a, 0xbb, + 0x53, 0x48, 0xe2, 0x1b, 0xe4, 0xde, 0xf4, 0x06, 0x69, 0x98, 0x97, 0x5d, 0x77, 0x3c, 0x7d, 0x99, + 0x13, 0xd1, 0x18, 0xdd, 0xfc, 0x12, 0x36, 0xce, 0xf4, 0xfd, 0x2c, 0x1f, 0xa4, 0xcd, 0x3d, 0xb8, + 0xfc, 0x96, 0x3e, 0x9b, 0xe9, 0x9b, 0xf6, 0x4b, 0x09, 0xd6, 0xdf, 0x0c, 0x91, 0xdc, 0x84, 0x2a, + 0x55, 0xac, 0x33, 0x44, 0x6d, 0x98, 0x14, 0x85, 0x10, 0x50, 0xc5, 0x0e, 0x73, 0x8b, 0x1b, 0x03, + 0xc7, 0x4c, 0x24, 0x85, 0x9c, 0xbf, 0x7e, 0xeb, 0x68, 0x78, 0x0e, 0x4b, 0x8a, 0xda, 0xb8, 0x87, + 0xa6, 0x18, 0x0e, 0x0f, 0x2e, 0x5c, 0xa7, 0xd0, 0x8d, 0x55, 0x3f, 0xa0, 0xa2, 0x91, 0xc6, 0xe6, + 0x0f, 0x50, 0x19, 0x5b, 0xdd, 0x7a, 0x7e, 0x14, 0xe7, 0xd1, 0xf9, 0x6b, 0xf7, 0x43, 0x32, 0xc9, + 0xf3, 0xe2, 0x13, 0x3e, 0x87, 0x6a, 0x01, 0xbc, 0xe7, 0xec, 0xcf, 0xa9, 0x3a, 0xb0, 0x9a, 0x89, + 0x74, 0xec, 0x50, 0x5b, 0x83, 0x95, 0x53, 0x44, 0xed, 0x0a, 0x90, 0xb3, 0x43, 0xb4, 0xb9, 0xf5, + 0xea, 0x46, 0xbe, 0x60, 0xf1, 0xff, 0x77, 0xe6, 0xd7, 0xae, 0xbb, 0xe8, 0x8f, 0x03, 0x0f, 0xfe, + 0x0a, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x01, 0xbb, 0xc8, 0x7d, 0x0e, 0x00, 0x00, } diff --git a/operator/v1alpha1/component.proto b/operator/v1alpha1/component.proto index 7361d1daa2a..b87cb484db1 100644 --- a/operator/v1alpha1/component.proto +++ b/operator/v1alpha1/component.proto @@ -34,7 +34,6 @@ message IstioComponentSetSpec { ComponentSpec node_agent = 36; ComponentSpec galley = 37; ComponentSpec cni = 38; - ComponentSpec core_dNS = 39; repeated GatewaySpec ingress_gateways = 40; repeated GatewaySpec egress_gateways = 41; @@ -99,9 +98,6 @@ message GatewaySpec { // Tag for the component (overrides top level tag setting). string tag = 11; - // Overrides for values.yaml. - TypeMapStringInterface values = 30; - // Kubernetes resource spec. KubernetesResourcesSpec k8s = 50; } diff --git a/operator/v1alpha1/istio.operator.v1alpha1.pb.html b/operator/v1alpha1/istio.operator.v1alpha1.pb.html index adf1b77dcf0..d3e12a07912 100644 --- a/operator/v1alpha1/istio.operator.v1alpha1.pb.html +++ b/operator/v1alpha1/istio.operator.v1alpha1.pb.html @@ -537,17 +537,6 @@

GatewaySpec

Tag for the component (overrides top level tag setting).

- - -No - - - -values -TypeMapStringInterface - -

Overrides for values.yaml.

- No @@ -768,15 +757,6 @@

IstioComponentSetSpec

No - -coreDNS -ComponentSpec - - - -No - - ingressGateways GatewaySpec[] diff --git a/python/istio_api/operator/v1alpha1/component_pb2.py b/python/istio_api/operator/v1alpha1/component_pb2.py index e1d29bec2e7..b9617d10cea 100644 --- a/python/istio_api/operator/v1alpha1/component_pb2.py +++ b/python/istio_api/operator/v1alpha1/component_pb2.py @@ -23,7 +23,7 @@ package='istio.operator.v1alpha1', syntax='proto3', serialized_options=_b('Z\036istio.io/api/operator/v1alpha1'), - serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\x8f\x06\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x38\n\x08\x63ore_dNS\x18\' \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xf4\x02\n\x0bGatewaySpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12?\n\x06values\x18\x1e \x01(\x0b\x32/.istio.operator.v1alpha1.TypeMapStringInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') + serialized_pb=_b('\n!operator/v1alpha1/component.proto\x12\x17istio.operator.v1alpha1\x1a\x19google/protobuf/any.proto\x1a.k8s.io/api/autoscaling/v2beta1/generated.proto\x1a\"operator/v1alpha1/kubernetes.proto\"\xd5\x05\n\x15IstioComponentSetSpec\x12\x38\n\x04\x62\x61se\x18\x1d \x01(\x0b\x32*.istio.operator.v1alpha1.BaseComponentSpec\x12\x35\n\x05pilot\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x35\n\x05proxy\x18\x1f \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12@\n\x10sidecar_injector\x18 \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06policy\x18! \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x39\n\ttelemetry\x18\" \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x37\n\x07\x63itadel\x18# \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12:\n\nnode_agent\x18$ \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x36\n\x06galley\x18% \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12\x33\n\x03\x63ni\x18& \x01(\x0b\x32&.istio.operator.v1alpha1.ComponentSpec\x12>\n\x10ingress_gateways\x18( \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\x12=\n\x0f\x65gress_gateways\x18) \x03(\x0b\x32$.istio.operator.v1alpha1.GatewaySpec\"Q\n\x11\x42\x61seComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\"\xef\x01\n\rComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12\x34\n\x04spec\x18\x1e \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\x97\x02\n\x15\x45xternalComponentSpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x34\n\x04spec\x18\n \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\x12\x12\n\nchart_path\x18\x1e \x01(\t\x12$\n\x06schema\x18# \x01(\x0b\x32\x14.google.protobuf.Any\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\"\xb3\x02\n\x0bGatewaySpec\x12<\n\x07\x65nabled\x18\x01 \x01(\x0b\x32+.istio.operator.v1alpha1.TypeBoolValueForPB\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12>\n\x05label\x18\x04 \x03(\x0b\x32/.istio.operator.v1alpha1.GatewaySpec.LabelEntry\x12\x0b\n\x03hub\x18\n \x01(\t\x12\x0b\n\x03tag\x18\x0b \x01(\t\x12=\n\x03k8s\x18\x32 \x01(\x0b\x32\x30.istio.operator.v1alpha1.KubernetesResourcesSpec\x1a,\n\nLabelEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf7\x07\n\x17KubernetesResourcesSpec\x12\x33\n\x08\x61\x66\x66inity\x18\x01 \x01(\x0b\x32!.istio.operator.v1alpha1.Affinity\x12,\n\x03\x65nv\x18\x02 \x03(\x0b\x32\x1f.istio.operator.v1alpha1.EnvVar\x12M\n\x08hpa_spec\x18\x03 \x01(\x0b\x32;.k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec\x12\x19\n\x11image_pull_policy\x18\x04 \x01(\t\x12Y\n\rnode_selector\x18\x05 \x03(\x0b\x32\x42.istio.operator.v1alpha1.KubernetesResourcesSpec.NodeSelectorEntry\x12O\n\x15pod_disruption_budget\x18\x06 \x01(\x0b\x32\x30.istio.operator.v1alpha1.PodDisruptionBudgetSpec\x12]\n\x0fpod_annotations\x18\x07 \x03(\x0b\x32\x44.istio.operator.v1alpha1.KubernetesResourcesSpec.PodAnnotationsEntry\x12\x1b\n\x13priority_class_name\x18\x08 \x01(\t\x12@\n\x0freadiness_probe\x18\t \x01(\x0b\x32\'.istio.operator.v1alpha1.ReadinessProbe\x12\x15\n\rreplica_count\x18\n \x01(\r\x12\x35\n\tresources\x18\x0b \x01(\x0b\x32\".istio.operator.v1alpha1.Resources\x12\x35\n\x07service\x18\x0c \x01(\x0b\x32$.istio.operator.v1alpha1.ServiceSpec\x12=\n\x08strategy\x18\r \x01(\x0b\x32+.istio.operator.v1alpha1.DeploymentStrategy\x12\x38\n\x0btolerations\x18\x0e \x01(\x0b\x32#.istio.operator.v1alpha1.Toleration\x12;\n\x08overlays\x18\x64 \x03(\x0b\x32).istio.operator.v1alpha1.K8sObjectOverlay\x1a\x33\n\x11NodeSelectorEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13PodAnnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdb\x01\n\x10K8sObjectOverlay\x12\x13\n\x0b\x61pi_version\x18\x01 \x01(\t\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x44\n\x07patches\x18\x04 \x03(\x0b\x32\x33.istio.operator.v1alpha1.K8sObjectOverlay.PathValue\x1aP\n\tPathValue\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.istio.operator.v1alpha1.TypeInterface\"\x18\n\x16TypeMapStringInterface\"\x0f\n\rTypeInterface\"\x14\n\x12TypeBoolValueForPBB Z\x1eistio.io/api/operator/v1alpha1b\x06proto3') , dependencies=[google_dot_protobuf_dot_any__pb2.DESCRIPTOR,k8s_dot_io_dot_api_dot_autoscaling_dot_v2beta1_dot_generated__pb2.DESCRIPTOR,operator_dot_v1alpha1_dot_kubernetes__pb2.DESCRIPTOR,]) @@ -108,21 +108,14 @@ is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='core_dNS', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.core_dNS', index=10, - number=39, type=11, cpp_type=10, label=1, - has_default_value=False, default_value=None, - message_type=None, enum_type=None, containing_type=None, - is_extension=False, extension_scope=None, - serialized_options=None, file=DESCRIPTOR), - _descriptor.FieldDescriptor( - name='ingress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.ingress_gateways', index=11, + name='ingress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.ingress_gateways', index=10, number=40, type=11, cpp_type=10, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='egress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.egress_gateways', index=12, + name='egress_gateways', full_name='istio.operator.v1alpha1.IstioComponentSetSpec.egress_gateways', index=11, number=41, type=11, cpp_type=10, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, @@ -141,7 +134,7 @@ oneofs=[ ], serialized_start=174, - serialized_end=957, + serialized_end=899, ) @@ -171,8 +164,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=959, - serialized_end=1040, + serialized_start=901, + serialized_end=982, ) @@ -237,8 +230,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1043, - serialized_end=1282, + serialized_start=985, + serialized_end=1224, ) @@ -303,8 +296,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1285, - serialized_end=1564, + serialized_start=1227, + serialized_end=1506, ) @@ -341,8 +334,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1895, - serialized_end=1939, + serialized_start=1772, + serialized_end=1816, ) _GATEWAYSPEC = _descriptor.Descriptor( @@ -395,14 +388,7 @@ is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), _descriptor.FieldDescriptor( - name='values', full_name='istio.operator.v1alpha1.GatewaySpec.values', index=6, - number=30, type=11, cpp_type=10, label=1, - has_default_value=False, default_value=None, - message_type=None, enum_type=None, containing_type=None, - is_extension=False, extension_scope=None, - serialized_options=None, file=DESCRIPTOR), - _descriptor.FieldDescriptor( - name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=7, + name='k8s', full_name='istio.operator.v1alpha1.GatewaySpec.k8s', index=6, number=50, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, @@ -420,8 +406,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1567, - serialized_end=1939, + serialized_start=1509, + serialized_end=1816, ) @@ -458,8 +444,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2851, - serialized_end=2902, + serialized_start=2728, + serialized_end=2779, ) _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY = _descriptor.Descriptor( @@ -495,8 +481,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2904, - serialized_end=2957, + serialized_start=2781, + serialized_end=2834, ) _KUBERNETESRESOURCESSPEC = _descriptor.Descriptor( @@ -623,8 +609,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1942, - serialized_end=2957, + serialized_start=1819, + serialized_end=2834, ) @@ -661,8 +647,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3099, - serialized_end=3179, + serialized_start=2976, + serialized_end=3056, ) _K8SOBJECTOVERLAY = _descriptor.Descriptor( @@ -712,8 +698,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2960, - serialized_end=3179, + serialized_start=2837, + serialized_end=3056, ) @@ -736,8 +722,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3181, - serialized_end=3205, + serialized_start=3058, + serialized_end=3082, ) @@ -760,8 +746,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3207, - serialized_end=3222, + serialized_start=3084, + serialized_end=3099, ) @@ -784,8 +770,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=3224, - serialized_end=3244, + serialized_start=3101, + serialized_end=3121, ) _ISTIOCOMPONENTSETSPEC.fields_by_name['base'].message_type = _BASECOMPONENTSPEC @@ -798,7 +784,6 @@ _ISTIOCOMPONENTSETSPEC.fields_by_name['node_agent'].message_type = _COMPONENTSPEC _ISTIOCOMPONENTSETSPEC.fields_by_name['galley'].message_type = _COMPONENTSPEC _ISTIOCOMPONENTSETSPEC.fields_by_name['cni'].message_type = _COMPONENTSPEC -_ISTIOCOMPONENTSETSPEC.fields_by_name['core_dNS'].message_type = _COMPONENTSPEC _ISTIOCOMPONENTSETSPEC.fields_by_name['ingress_gateways'].message_type = _GATEWAYSPEC _ISTIOCOMPONENTSETSPEC.fields_by_name['egress_gateways'].message_type = _GATEWAYSPEC _BASECOMPONENTSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB @@ -812,7 +797,6 @@ _GATEWAYSPEC_LABELENTRY.containing_type = _GATEWAYSPEC _GATEWAYSPEC.fields_by_name['enabled'].message_type = _TYPEBOOLVALUEFORPB _GATEWAYSPEC.fields_by_name['label'].message_type = _GATEWAYSPEC_LABELENTRY -_GATEWAYSPEC.fields_by_name['values'].message_type = _TYPEMAPSTRINGINTERFACE _GATEWAYSPEC.fields_by_name['k8s'].message_type = _KUBERNETESRESOURCESSPEC _KUBERNETESRESOURCESSPEC_NODESELECTORENTRY.containing_type = _KUBERNETESRESOURCESSPEC _KUBERNETESRESOURCESSPEC_PODANNOTATIONSENTRY.containing_type = _KUBERNETESRESOURCESSPEC