This is an automated email from the ASF dual-hosted git repository.
zhongxjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git
The following commit(s) were added to refs/heads/master by this push:
new 987f8d49 [charts] Adjusting the startup strategy (#631)
987f8d49 is described below
commit 987f8d49ce8e295eddd7e69d209ee36a78af3476
Author: Jian Zhong <[email protected]>
AuthorDate: Sat Mar 1 14:44:35 2025 +0800
[charts] Adjusting the startup strategy (#631)
---
manifests/charts/admin/templates/deployment.yaml | 17 +-
.../nacos/templates/configmap.yaml | 2 +-
.../nacos/templates/statefulset.yaml | 2 +-
.../register-discovery/nacos/values.yaml | 4 +-
.../zookeeper/templates/statefulset.yaml | 4 +-
.../register-discovery/zookeeper/values.yaml | 2 +
manifests/profiles/default.yaml | 3 +
manifests/profiles/demo.yaml | 4 +
operator/pkg/apis/proto/values_types.proto | 40 +-
operator/pkg/apis/values_types.pb.go | 507 +++++++++++----------
operator/pkg/component/component.go | 3 +-
11 files changed, 313 insertions(+), 275 deletions(-)
diff --git a/manifests/charts/admin/templates/deployment.yaml
b/manifests/charts/admin/templates/deployment.yaml
index 8d22d399..6e9a3c14 100644
--- a/manifests/charts/admin/templates/deployment.yaml
+++ b/manifests/charts/admin/templates/deployment.yaml
@@ -59,8 +59,8 @@ spec:
- name: admin-admission
containerPort: 5443
env:
- {{- $zooName := include "zoo.name" . -}}
- {{- $nacosName := include "nacos.name" . -}}
+ {{- $zooName := printf "zookeeper" -}}
+ {{- $nacosName := printf "nacos" -}}
{{- $zooReplicas := int .Values.zookeeper.replicas -}}
{{- $nacosReplicas := int $nacos.replicas -}}
{{- $zooHeadless := printf "%s-%s" $zooName "headless" | trunc 63 -}}
@@ -70,18 +70,15 @@ spec:
{{- $clusterDomain := $admin.clusterDomain -}}
{{- $zooPort := include "zoo.client" . -}}
{{- $nacosPort := $nacos.serverPort -}}
- {{- $register := .Values.register }}
- {{- if (eq $register true) }}
- {{- if and (eq $register $zoo.enabled true) }}
- - name: DUBBO_STORE_TRADITIONAL_REGISTRY
- value: zookeeper://{{ $zooName }}.{{ $zooNamespace }}.svc.{{
$clusterDomain }}:{{ $zooPort }}
- {{- else if and (eq $register $nacos.enabled true) }}
+ {{- if $nacos.enabled }}
- name: DUBBO_STORE_TRADITIONAL_REGISTRY
value: nacos://{{ range $k, $v := until $nacosReplicas }}{{
$nacosName }}-{{ $v }}.{{ $nacosName }}.{{ $nacosNamespace }}.svc.{{
$clusterDomain }}:{{ $nacosPort }}{{ if ne (add $k 1) $nacosReplicas }},{{ end
}}{{ end }}
- {{- else }}
+ {{- else if $zoo.enabled }}
- name: DUBBO_STORE_TRADITIONAL_REGISTRY
value: zookeeper://{{ range $k, $v := until $zooReplicas }}{{
$zooName }}-{{ $v }}.{{ $zooName }}.{{ $zooNamespace }}.svc.{{ $clusterDomain
}}:{{ $zooPort }}{{ if ne (add $k 1) $zooReplicas }},{{ end }}{{ end }}
- {{- end }}
+ {{- else }}
+ - name: DUBBO_STORE_TRADITIONAL_REGISTRY
+ value: nacos://{{ range $k, $v := until $nacosReplicas }}{{
$nacosName }}-{{ $v }}.{{ $nacosName }}.{{ $nacosNamespace }}.svc.{{
$clusterDomain }}:{{ $nacosPort }}{{ if ne (add $k 1) $nacosReplicas }},{{ end
}}{{ end }}
{{- end }}
- name: DUBBO_RUNTIME_KUBERNETES_ADMISSION_SERVER_CERT_DIR
value: /var/run/secrets/dubbo.io/tls-cert
diff --git
a/manifests/charts/dubbo-control/register-discovery/nacos/templates/configmap.yaml
b/manifests/charts/dubbo-control/register-discovery/nacos/templates/configmap.yaml
index 57b5194e..88ea1f7b 100644
---
a/manifests/charts/dubbo-control/register-discovery/nacos/templates/configmap.yaml
+++
b/manifests/charts/dubbo-control/register-discovery/nacos/templates/configmap.yaml
@@ -1,6 +1,6 @@
{{- $nacos := .Values -}}
{{- $ncs := .Values.nacos }}
-{{- if eq $nacos.storage.type "mysql" | default $ncs.storage.type }}
+{{- if eq $nacos.storage.type "mysql" }}
apiVersion: v1
kind: ConfigMap
metadata:
diff --git
a/manifests/charts/dubbo-control/register-discovery/nacos/templates/statefulset.yaml
b/manifests/charts/dubbo-control/register-discovery/nacos/templates/statefulset.yaml
index 2185b718..1998f871 100644
---
a/manifests/charts/dubbo-control/register-discovery/nacos/templates/statefulset.yaml
+++
b/manifests/charts/dubbo-control/register-discovery/nacos/templates/statefulset.yaml
@@ -94,7 +94,7 @@ spec:
apiVersion: v1
fieldPath: metadata.namespace
{{- end }}
- {{- if eq $nacos.storage.type "mysql" | default $ncs.storage.type }}
+ {{- if eq $nacos.storage.type "mysql" }}
- name: SPRING_DATASOURCE_PLATFORM
value: "mysql"
- name: MYSQL_SERVICE_HOST
diff --git
a/manifests/charts/dubbo-control/register-discovery/nacos/values.yaml
b/manifests/charts/dubbo-control/register-discovery/nacos/values.yaml
index 310adc84..91d23abe 100644
--- a/manifests/charts/dubbo-control/register-discovery/nacos/values.yaml
+++ b/manifests/charts/dubbo-control/register-discovery/nacos/values.yaml
@@ -14,6 +14,8 @@
# limitations under the License.
_internal_default_values_not_set:
+ ## Whether to enable the nacos.
+ enabled: false
## Specifies the mode in which nacos is running (standalone, cluster, etc.).
mode: standalone
## Override the namespace where the resource is deployed.
@@ -144,7 +146,7 @@ _internal_default_values_not_set:
preferhostmode: ~
storage:
# Specifies the storage type (embedded, mysql, etc.).
- type: embedded
+ type: ""
# For MySQL storage, you need to change the "embedded" to "mysql" before
you can use the db configuration.
db:
# Specifies the database host.
diff --git
a/manifests/charts/dubbo-control/register-discovery/zookeeper/templates/statefulset.yaml
b/manifests/charts/dubbo-control/register-discovery/zookeeper/templates/statefulset.yaml
index b7d4446a..3d98e2ed 100644
---
a/manifests/charts/dubbo-control/register-discovery/zookeeper/templates/statefulset.yaml
+++
b/manifests/charts/dubbo-control/register-discovery/zookeeper/templates/statefulset.yaml
@@ -67,9 +67,9 @@ spec:
- name: ZOO_LISTEN_ALLIPS_ENABLED
value: {{ ternary "yes" "no" $zookeeper.listenOnAllIPs | quote }}
- name: ZOO_AUTOPURGE_INTERVAL
- value: {{ $zookeeper.autopurge.purgeInterval |default
$zoo.autopurge.purgeInterval | quote }}
+ value: {{ $zookeeper.autopurge.purgeInterval | quote }}
- name: ZOO_AUTOPURGE_RETAIN_COUNT
- value: {{ $zookeeper.autopurge.snapRetainCount |default
$zoo.autopurge.snapRetainCount | quote }}
+ value: {{ $zookeeper.autopurge.snapRetainCount | quote }}
- name: ZOO_MAX_SESSION_TIMEOUT
value: {{ $zookeeper.maxSessionTimeout | quote }}
{{- $zooName := include "zoo.name" . }}
diff --git
a/manifests/charts/dubbo-control/register-discovery/zookeeper/values.yaml
b/manifests/charts/dubbo-control/register-discovery/zookeeper/values.yaml
index ee309742..d19824da 100644
--- a/manifests/charts/dubbo-control/register-discovery/zookeeper/values.yaml
+++ b/manifests/charts/dubbo-control/register-discovery/zookeeper/values.yaml
@@ -14,6 +14,8 @@
# limitations under the License.
_internal_default_values_not_set:
+ ## Whether to enable the zookeeper.
+ enabled: false
## Override the namespace where the resource is deployed.
namespaceOverride: ~
## Labels to attach to the resource.
diff --git a/manifests/profiles/default.yaml b/manifests/profiles/default.yaml
index 124fdb2e..e81d7657 100644
--- a/manifests/profiles/default.yaml
+++ b/manifests/profiles/default.yaml
@@ -33,6 +33,9 @@ spec:
values:
global:
dubboNamespace: dubbo-system
+ nacos:
+ enabled: true
+ zookeeper: {}
diff --git a/manifests/profiles/demo.yaml b/manifests/profiles/demo.yaml
index 05863519..1a01c6ac 100644
--- a/manifests/profiles/demo.yaml
+++ b/manifests/profiles/demo.yaml
@@ -28,3 +28,7 @@ spec:
enabled: true
values:
profile: demo
+ nacos:
+ enabled: false
+ zookeeper:
+ enabled: true
diff --git a/operator/pkg/apis/proto/values_types.proto
b/operator/pkg/apis/proto/values_types.proto
index 84b171f0..89a87951 100644
--- a/operator/pkg/apis/proto/values_types.proto
+++ b/operator/pkg/apis/proto/values_types.proto
@@ -18,33 +18,35 @@ message BaseConfig {
}
message ZookeeperConfig {
- google.protobuf.StringValue dataLogDir = 1;
+ google.protobuf.BoolValue enabled = 1;
+
+ google.protobuf.StringValue dataLogDir = 2;
- google.protobuf.Int64Value tickTime = 2;
+ google.protobuf.Int64Value tickTime = 3;
- google.protobuf.Int64Value initLimit = 3;
+ google.protobuf.Int64Value initLimit = 4;
- google.protobuf.Int64Value syncLimit = 4;
+ google.protobuf.Int64Value syncLimit = 5;
- google.protobuf.Int64Value preAllocSize = 5;
+ google.protobuf.Int64Value preAllocSize = 6;
- google.protobuf.Int64Value snapCount = 6;
+ google.protobuf.Int64Value snapCount = 7;
- google.protobuf.StringValue fourlwCommandsWhitelist = 7;
+ google.protobuf.StringValue fourlwCommandsWhitelist = 8;
- google.protobuf.BoolValue listenOnAllIPs = 8;
+ google.protobuf.BoolValue listenOnAllIPs = 9;
- ZookeeperAutopurge autopurge = 9;
+ ZookeeperAutopurge autopurge = 10;
- google.protobuf.Int64Value maxClientCnxns = 10;
+ google.protobuf.Int64Value maxClientCnxns = 11;
- google.protobuf.Int64Value maxSessionTimeout = 11;
+ google.protobuf.Int64Value maxSessionTimeout = 12;
- google.protobuf.Int64Value heapSize = 12;
+ google.protobuf.Int64Value heapSize = 13;
- google.protobuf.StringValue logLevel = 13;
+ google.protobuf.StringValue logLevel = 14;
- ZookeeperAuth auth = 14;
+ ZookeeperAuth auth = 15;
}
message ZookeeperAutopurge {
@@ -88,13 +90,15 @@ message ZookeeperAuthQuorumConfig {
}
message NacosConfig {
- google.protobuf.StringValue mode = 1;
+ google.protobuf.BoolValue enabled = 1;
+
+ google.protobuf.StringValue mode = 2;
- NacosStorage storage = 2;
+ NacosStorage storage = 3;
- NacosPlugin plugin = 3;
+ NacosPlugin plugin = 4;
- string preferhostmode = 4;
+ string preferhostmode = 5;
}
message NacosStorage {
diff --git a/operator/pkg/apis/values_types.pb.go
b/operator/pkg/apis/values_types.pb.go
index bb1f37c4..f9bc47cb 100644
--- a/operator/pkg/apis/values_types.pb.go
+++ b/operator/pkg/apis/values_types.pb.go
@@ -123,20 +123,21 @@ type ZookeeperConfig struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- DataLogDir *wrapperspb.StringValue
`protobuf:"bytes,1,opt,name=dataLogDir,proto3" json:"dataLogDir,omitempty"`
- TickTime *wrapperspb.Int64Value
`protobuf:"bytes,2,opt,name=tickTime,proto3" json:"tickTime,omitempty"`
- InitLimit *wrapperspb.Int64Value
`protobuf:"bytes,3,opt,name=initLimit,proto3" json:"initLimit,omitempty"`
- SyncLimit *wrapperspb.Int64Value
`protobuf:"bytes,4,opt,name=syncLimit,proto3" json:"syncLimit,omitempty"`
- PreAllocSize *wrapperspb.Int64Value
`protobuf:"bytes,5,opt,name=preAllocSize,proto3" json:"preAllocSize,omitempty"`
- SnapCount *wrapperspb.Int64Value
`protobuf:"bytes,6,opt,name=snapCount,proto3" json:"snapCount,omitempty"`
- FourlwCommandsWhitelist *wrapperspb.StringValue
`protobuf:"bytes,7,opt,name=fourlwCommandsWhitelist,proto3"
json:"fourlwCommandsWhitelist,omitempty"`
- ListenOnAllIPs *wrapperspb.BoolValue
`protobuf:"bytes,8,opt,name=listenOnAllIPs,proto3"
json:"listenOnAllIPs,omitempty"`
- Autopurge *ZookeeperAutopurge
`protobuf:"bytes,9,opt,name=autopurge,proto3" json:"autopurge,omitempty"`
- MaxClientCnxns *wrapperspb.Int64Value
`protobuf:"bytes,10,opt,name=maxClientCnxns,proto3"
json:"maxClientCnxns,omitempty"`
- MaxSessionTimeout *wrapperspb.Int64Value
`protobuf:"bytes,11,opt,name=maxSessionTimeout,proto3"
json:"maxSessionTimeout,omitempty"`
- HeapSize *wrapperspb.Int64Value
`protobuf:"bytes,12,opt,name=heapSize,proto3" json:"heapSize,omitempty"`
- LogLevel *wrapperspb.StringValue
`protobuf:"bytes,13,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
- Auth *ZookeeperAuth
`protobuf:"bytes,14,opt,name=auth,proto3" json:"auth,omitempty"`
+ Enabled *wrapperspb.BoolValue
`protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
+ DataLogDir *wrapperspb.StringValue
`protobuf:"bytes,2,opt,name=dataLogDir,proto3" json:"dataLogDir,omitempty"`
+ TickTime *wrapperspb.Int64Value
`protobuf:"bytes,3,opt,name=tickTime,proto3" json:"tickTime,omitempty"`
+ InitLimit *wrapperspb.Int64Value
`protobuf:"bytes,4,opt,name=initLimit,proto3" json:"initLimit,omitempty"`
+ SyncLimit *wrapperspb.Int64Value
`protobuf:"bytes,5,opt,name=syncLimit,proto3" json:"syncLimit,omitempty"`
+ PreAllocSize *wrapperspb.Int64Value
`protobuf:"bytes,6,opt,name=preAllocSize,proto3" json:"preAllocSize,omitempty"`
+ SnapCount *wrapperspb.Int64Value
`protobuf:"bytes,7,opt,name=snapCount,proto3" json:"snapCount,omitempty"`
+ FourlwCommandsWhitelist *wrapperspb.StringValue
`protobuf:"bytes,8,opt,name=fourlwCommandsWhitelist,proto3"
json:"fourlwCommandsWhitelist,omitempty"`
+ ListenOnAllIPs *wrapperspb.BoolValue
`protobuf:"bytes,9,opt,name=listenOnAllIPs,proto3"
json:"listenOnAllIPs,omitempty"`
+ Autopurge *ZookeeperAutopurge
`protobuf:"bytes,10,opt,name=autopurge,proto3" json:"autopurge,omitempty"`
+ MaxClientCnxns *wrapperspb.Int64Value
`protobuf:"bytes,11,opt,name=maxClientCnxns,proto3"
json:"maxClientCnxns,omitempty"`
+ MaxSessionTimeout *wrapperspb.Int64Value
`protobuf:"bytes,12,opt,name=maxSessionTimeout,proto3"
json:"maxSessionTimeout,omitempty"`
+ HeapSize *wrapperspb.Int64Value
`protobuf:"bytes,13,opt,name=heapSize,proto3" json:"heapSize,omitempty"`
+ LogLevel *wrapperspb.StringValue
`protobuf:"bytes,14,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
+ Auth *ZookeeperAuth
`protobuf:"bytes,15,opt,name=auth,proto3" json:"auth,omitempty"`
}
func (x *ZookeeperConfig) Reset() {
@@ -171,6 +172,13 @@ func (*ZookeeperConfig) Descriptor() ([]byte, []int) {
return file_values_types_proto_rawDescGZIP(), []int{2}
}
+func (x *ZookeeperConfig) GetEnabled() *wrapperspb.BoolValue {
+ if x != nil {
+ return x.Enabled
+ }
+ return nil
+}
+
func (x *ZookeeperConfig) GetDataLogDir() *wrapperspb.StringValue {
if x != nil {
return x.DataLogDir
@@ -558,10 +566,11 @@ type NacosConfig struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- Mode *wrapperspb.StringValue
`protobuf:"bytes,1,opt,name=mode,proto3" json:"mode,omitempty"`
- Storage *NacosStorage
`protobuf:"bytes,2,opt,name=storage,proto3" json:"storage,omitempty"`
- Plugin *NacosPlugin
`protobuf:"bytes,3,opt,name=plugin,proto3" json:"plugin,omitempty"`
- Preferhostmode string
`protobuf:"bytes,4,opt,name=preferhostmode,proto3"
json:"preferhostmode,omitempty"`
+ Enabled *wrapperspb.BoolValue
`protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
+ Mode *wrapperspb.StringValue
`protobuf:"bytes,2,opt,name=mode,proto3" json:"mode,omitempty"`
+ Storage *NacosStorage
`protobuf:"bytes,3,opt,name=storage,proto3" json:"storage,omitempty"`
+ Plugin *NacosPlugin
`protobuf:"bytes,4,opt,name=plugin,proto3" json:"plugin,omitempty"`
+ Preferhostmode string
`protobuf:"bytes,5,opt,name=preferhostmode,proto3"
json:"preferhostmode,omitempty"`
}
func (x *NacosConfig) Reset() {
@@ -596,6 +605,13 @@ func (*NacosConfig) Descriptor() ([]byte, []int) {
return file_values_types_proto_rawDescGZIP(), []int{7}
}
+func (x *NacosConfig) GetEnabled() *wrapperspb.BoolValue {
+ if x != nil {
+ return x.Enabled
+ }
+ return nil
+}
+
func (x *NacosConfig) GetMode() *wrapperspb.StringValue {
if x != nil {
return x.Mode
@@ -986,99 +1002,129 @@ var file_values_types_proto_rawDesc = []byte{
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x15,
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x75, 0x62, 0x62, 0x6f, 0x43,
0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x43, 0x52, 0x44, 0x73, 0x22, 0xa0, 0x07, 0x0a, 0x0f, 0x5a, 0x6f,
0x6f, 0x6b, 0x65, 0x65,
- 0x70, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x3c, 0x0a,
0x0a, 0x64, 0x61, 0x74,
- 0x61, 0x4c, 0x6f, 0x67, 0x44, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1c, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e,
- 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x0a, 0x64, 0x61, 0x74,
- 0x61, 0x4c, 0x6f, 0x67, 0x44, 0x69, 0x72, 0x12, 0x37, 0x0a, 0x08, 0x74,
0x69, 0x63, 0x6b, 0x54,
- 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
0x67, 0x6f, 0x6f, 0x67,
+ 0x67, 0x43, 0x52, 0x44, 0x73, 0x22, 0xd6, 0x07, 0x0a, 0x0f, 0x5a, 0x6f,
0x6f, 0x6b, 0x65, 0x65,
+ 0x70, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x34, 0x0a,
0x07, 0x65, 0x6e, 0x61,
+ 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x42, 0x6f, 0x6f,
+ 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
0x6c, 0x65, 0x64, 0x12,
+ 0x3c, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x6f, 0x67, 0x44, 0x69,
0x72, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x6f, 0x67, 0x44, 0x69,
0x72, 0x12, 0x37, 0x0a,
+ 0x08, 0x74, 0x69, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32,
+ 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75,
+ 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x08, 0x74, 0x69,
+ 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x39, 0x0a, 0x09, 0x69, 0x6e,
0x69, 0x74, 0x4c, 0x69,
+ 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
0x49, 0x6e, 0x74, 0x36,
- 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x74, 0x69, 0x63, 0x6b,
0x54, 0x69, 0x6d, 0x65,
- 0x12, 0x39, 0x0a, 0x09, 0x69, 0x6e, 0x69, 0x74, 0x4c, 0x69, 0x6d, 0x69,
0x74, 0x18, 0x03, 0x20,
+ 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x69, 0x6e, 0x69, 0x74,
0x4c, 0x69, 0x6d, 0x69,
+ 0x74, 0x12, 0x39, 0x0a, 0x09, 0x73, 0x79, 0x6e, 0x63, 0x4c, 0x69, 0x6d,
0x69, 0x74, 0x18, 0x05,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34,
0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x52, 0x09, 0x73, 0x79, 0x6e, 0x63, 0x4c, 0x69, 0x6d, 0x69, 0x74,
0x12, 0x3f, 0x0a, 0x0c,
+ 0x70, 0x72, 0x65, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x53, 0x69, 0x7a, 0x65,
0x18, 0x06, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52,
+ 0x0c, 0x70, 0x72, 0x65, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x53, 0x69, 0x7a,
0x65, 0x12, 0x39, 0x0a,
+ 0x09, 0x73, 0x6e, 0x61, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x07,
0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x62,
+ 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x52, 0x09, 0x73,
+ 0x6e, 0x61, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x56, 0x0a, 0x17,
0x66, 0x6f, 0x75, 0x72,
+ 0x6c, 0x77, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x57, 0x68,
0x69, 0x74, 0x65, 0x6c,
+ 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
0x53, 0x74, 0x72, 0x69,
+ 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x17, 0x66, 0x6f, 0x75,
0x72, 0x6c, 0x77, 0x43,
+ 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x57, 0x68, 0x69, 0x74, 0x65,
0x6c, 0x69, 0x73, 0x74,
+ 0x12, 0x42, 0x0a, 0x0e, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x4f, 0x6e,
0x41, 0x6c, 0x6c, 0x49,
+ 0x50, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42,
0x6f, 0x6f, 0x6c, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x4f, 0x6e, 0x41, 0x6c,
+ 0x6c, 0x49, 0x50, 0x73, 0x12, 0x49, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x6f,
0x70, 0x75, 0x72, 0x67,
+ 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x64, 0x75,
0x62, 0x62, 0x6f, 0x2e,
+ 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61,
0x6c, 0x70, 0x68, 0x61,
+ 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41,
0x75, 0x74, 0x6f, 0x70,
+ 0x75, 0x72, 0x67, 0x65, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x70, 0x75,
0x72, 0x67, 0x65, 0x12,
+ 0x43, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
0x43, 0x6e, 0x78, 0x6e,
+ 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e,
0x74, 0x36, 0x34, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x43, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x43,
+ 0x6e, 0x78, 0x6e, 0x73, 0x12, 0x49, 0x0a, 0x11, 0x6d, 0x61, 0x78, 0x53,
0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x0c, 0x20,
0x01, 0x28, 0x0b, 0x32,
+ 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75,
+ 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x11, 0x6d, 0x61,
+ 0x78, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65,
0x6f, 0x75, 0x74, 0x12,
+ 0x37, 0x0a, 0x08, 0x68, 0x65, 0x61, 0x70, 0x53, 0x69, 0x7a, 0x65, 0x18,
0x0d, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f,
+ 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x08,
+ 0x68, 0x65, 0x61, 0x70, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x38, 0x0a, 0x08,
0x6c, 0x6f, 0x67, 0x4c,
+ 0x65, 0x76, 0x65, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x53, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6c, 0x6f,
0x67, 0x4c, 0x65, 0x76,
+ 0x65, 0x6c, 0x12, 0x3a, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x0f,
0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x26, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f,
+ 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x5a,
0x6f, 0x6f, 0x6b, 0x65,
+ 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52, 0x04, 0x61, 0x75,
0x74, 0x68, 0x22, 0x9e,
+ 0x01, 0x0a, 0x12, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72,
0x41, 0x75, 0x74, 0x6f,
+ 0x70, 0x75, 0x72, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x0f, 0x73, 0x6e, 0x61,
0x70, 0x52, 0x65, 0x74,
+ 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1b,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66,
+ 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x0f, 0x73, 0x6e, 0x61,
+ 0x70, 0x52, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x12, 0x41, 0x0a, 0x0d,
+ 0x70, 0x75, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61,
0x6c, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56,
0x61, 0x6c, 0x75, 0x65,
- 0x52, 0x09, 0x69, 0x6e, 0x69, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12,
0x39, 0x0a, 0x09, 0x73,
- 0x79, 0x6e, 0x63, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1b,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x09, 0x73, 0x79, 0x6e,
- 0x63, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x3f, 0x0a, 0x0c, 0x70, 0x72,
0x65, 0x41, 0x6c, 0x6c,
- 0x6f, 0x63, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x1b, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
0x75, 0x66, 0x2e, 0x49,
- 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0c, 0x70,
0x72, 0x65, 0x41, 0x6c,
- 0x6c, 0x6f, 0x63, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x39, 0x0a, 0x09, 0x73,
0x6e, 0x61, 0x70, 0x43,
- 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x49, 0x6e, 0x74,
- 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x73, 0x6e, 0x61,
0x70, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x12, 0x56, 0x0a, 0x17, 0x66, 0x6f, 0x75, 0x72, 0x6c, 0x77,
0x43, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x73, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73,
0x74, 0x18, 0x07, 0x20,
+ 0x52, 0x0d, 0x70, 0x75, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72,
0x76, 0x61, 0x6c, 0x22,
+ 0xa7, 0x01, 0x0a, 0x0d, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65,
0x72, 0x41, 0x75, 0x74,
+ 0x68, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18,
0x01, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x32, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74,
+ 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e,
0x5a, 0x6f, 0x6f, 0x6b,
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x43, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x43,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x12, 0x4a, 0x0a,
+ 0x06, 0x71, 0x75, 0x6f, 0x72, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x32, 0x2e,
+ 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
0x6f, 0x72, 0x2e, 0x76,
+ 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b,
0x65, 0x65, 0x70, 0x65,
+ 0x72, 0x41, 0x75, 0x74, 0x68, 0x51, 0x75, 0x6f, 0x72, 0x75, 0x6d, 0x43,
0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x52, 0x06, 0x71, 0x75, 0x6f, 0x72, 0x75, 0x6d, 0x22, 0xa3, 0x03,
0x0a, 0x19, 0x5a, 0x6f,
+ 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x43,
0x6c, 0x69, 0x65, 0x6e,
+ 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x34, 0x0a, 0x07, 0x65,
0x6e, 0x61, 0x62, 0x6c,
+ 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42,
0x6f, 0x6f, 0x6c, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
0x64, 0x12, 0x3c, 0x0a,
+ 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18,
0x02, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f,
+ 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52,
+ 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12,
0x44, 0x0a, 0x0e, 0x63,
+ 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
0x64, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x52, 0x17, 0x66, 0x6f, 0x75, 0x72, 0x6c, 0x77, 0x43, 0x6f, 0x6d,
0x6d, 0x61, 0x6e, 0x64,
- 0x73, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x42,
0x0a, 0x0e, 0x6c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x4f, 0x6e, 0x41, 0x6c, 0x6c, 0x49, 0x50, 0x73,
0x18, 0x08, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x0e,
- 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x4f, 0x6e, 0x41, 0x6c, 0x6c, 0x49,
0x50, 0x73, 0x12, 0x49,
- 0x0a, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x70, 0x75, 0x72, 0x67, 0x65, 0x18,
0x09, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x2b, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74,
- 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e,
0x5a, 0x6f, 0x6f, 0x6b,
- 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x6f, 0x70, 0x75, 0x72,
0x67, 0x65, 0x52, 0x09,
- 0x61, 0x75, 0x74, 0x6f, 0x70, 0x75, 0x72, 0x67, 0x65, 0x12, 0x43, 0x0a,
0x0e, 0x6d, 0x61, 0x78,
- 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6e, 0x78, 0x6e, 0x73, 0x18,
0x0a, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x0e,
- 0x6d, 0x61, 0x78, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6e, 0x78,
0x6e, 0x73, 0x12, 0x49,
- 0x0a, 0x11, 0x6d, 0x61, 0x78, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x54, 0x69, 0x6d, 0x65,
- 0x6f, 0x75, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
0x49, 0x6e, 0x74, 0x36,
- 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x11, 0x6d, 0x61, 0x78, 0x53,
0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x37, 0x0a,
0x08, 0x68, 0x65, 0x61,
- 0x70, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x1b, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
0x66, 0x2e, 0x49, 0x6e,
- 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x68, 0x65,
0x61, 0x70, 0x53, 0x69,
- 0x7a, 0x65, 0x12, 0x38, 0x0a, 0x08, 0x6c, 0x6f, 0x67, 0x4c, 0x65, 0x76,
0x65, 0x6c, 0x18, 0x0d,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x52, 0x08, 0x6c, 0x6f, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x12, 0x3a, 0x0a, 0x04,
- 0x61, 0x75, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
0x2e, 0x64, 0x75, 0x62,
- 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e,
0x76, 0x31, 0x61, 0x6c,
- 0x70, 0x68, 0x61, 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70,
0x65, 0x72, 0x41, 0x75,
- 0x74, 0x68, 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x22, 0x9e, 0x01, 0x0a,
0x12, 0x5a, 0x6f, 0x6f,
- 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x6f, 0x70, 0x75,
0x72, 0x67, 0x65, 0x12,
- 0x45, 0x0a, 0x0f, 0x73, 0x6e, 0x61, 0x70, 0x52, 0x65, 0x74, 0x61, 0x69,
0x6e, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49,
0x6e, 0x74, 0x36, 0x34,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f, 0x73, 0x6e, 0x61, 0x70, 0x52,
0x65, 0x74, 0x61, 0x69,
- 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x41, 0x0a, 0x0d, 0x70, 0x75,
0x72, 0x67, 0x65, 0x49,
- 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1b, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e,
- 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0d,
0x70, 0x75, 0x72, 0x67,
- 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x22, 0xa7, 0x01,
0x0a, 0x0d, 0x5a, 0x6f,
- 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12,
0x4a, 0x0a, 0x06, 0x63,
- 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x32, 0x2e, 0x64, 0x75,
- 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
0x2e, 0x76, 0x31, 0x61,
- 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65,
0x70, 0x65, 0x72, 0x41,
- 0x75, 0x74, 0x68, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x52,
- 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x4a, 0x0a, 0x06, 0x71,
0x75, 0x6f, 0x72, 0x75,
- 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x64, 0x75,
0x62, 0x62, 0x6f, 0x2e,
- 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61,
0x6c, 0x70, 0x68, 0x61,
- 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41,
0x75, 0x74, 0x68, 0x51,
- 0x75, 0x6f, 0x72, 0x75, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
0x06, 0x71, 0x75, 0x6f,
- 0x72, 0x75, 0x6d, 0x22, 0xa3, 0x03, 0x0a, 0x19, 0x5a, 0x6f, 0x6f, 0x6b,
0x65, 0x65, 0x70, 0x65,
- 0x72, 0x41, 0x75, 0x74, 0x68, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43,
0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x12, 0x34, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
0x18, 0x01, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x07,
- 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x3c, 0x0a, 0x0a, 0x63,
0x6c, 0x69, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x1c, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
0x66, 0x2e, 0x53, 0x74,
- 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0a, 0x63,
0x6c, 0x69, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x44, 0x0a, 0x0e, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1c, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e,
- 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x0e, 0x63, 0x6c, 0x69,
- 0x65, 0x6e, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12,
0x3e, 0x0a, 0x0b, 0x73,
+ 0x65, 0x52, 0x0e, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x73,
0x73, 0x77, 0x6f, 0x72,
+ 0x64, 0x12, 0x3e, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x55,
0x73, 0x65, 0x72, 0x73,
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
0x55, 0x73, 0x65, 0x72,
+ 0x73, 0x12, 0x46, 0x0a, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x50,
0x61, 0x73, 0x73, 0x77,
+ 0x6f, 0x72, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x53, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f, 0x73, 0x65,
0x72, 0x76, 0x65, 0x72,
+ 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x44, 0x0a,
0x0e, 0x65, 0x78, 0x69,
+ 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18,
0x06, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f,
+ 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52,
+ 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x63,
0x72, 0x65, 0x74, 0x22,
+ 0xa7, 0x03, 0x0a, 0x19, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65,
0x72, 0x41, 0x75, 0x74,
+ 0x68, 0x51, 0x75, 0x6f, 0x72, 0x75, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x12, 0x34, 0x0a,
+ 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1a,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66,
+ 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07,
0x65, 0x6e, 0x61, 0x62,
+ 0x6c, 0x65, 0x64, 0x12, 0x3e, 0x0a, 0x0b, 0x6c, 0x65, 0x61, 0x72, 0x6e,
0x65, 0x72, 0x55, 0x73,
+ 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53,
0x74, 0x72, 0x69, 0x6e,
+ 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x6c, 0x65, 0x61, 0x72,
0x6e, 0x65, 0x72, 0x55,
+ 0x73, 0x65, 0x72, 0x12, 0x46, 0x0a, 0x0f, 0x6c, 0x65, 0x61, 0x72, 0x6e,
0x65, 0x72, 0x50, 0x61,
+ 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x1c, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
0x75, 0x66, 0x2e, 0x53,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f,
0x6c, 0x65, 0x61, 0x72,
+ 0x6e, 0x65, 0x72, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12,
0x3e, 0x0a, 0x0b, 0x73,
0x65, 0x72, 0x76, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x73, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0b,
0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x62,
0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x0b,
@@ -1091,97 +1137,74 @@ var file_values_types_proto_rawDesc = []byte{
0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x1c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
0x66, 0x2e, 0x53, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x65,
0x78, 0x69, 0x73, 0x74,
- 0x69, 0x6e, 0x67, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0xa7, 0x03,
0x0a, 0x19, 0x5a, 0x6f,
- 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x51,
0x75, 0x6f, 0x72, 0x75,
- 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x34, 0x0a, 0x07, 0x65,
0x6e, 0x61, 0x62, 0x6c,
- 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42,
0x6f, 0x6f, 0x6c, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
0x64, 0x12, 0x3e, 0x0a,
- 0x0b, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56,
0x61, 0x6c, 0x75, 0x65,
- 0x52, 0x0b, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x65, 0x72, 0x55, 0x73, 0x65,
0x72, 0x12, 0x46, 0x0a,
- 0x0f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x65, 0x72, 0x50, 0x61, 0x73, 0x73,
0x77, 0x6f, 0x72, 0x64,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x65,
0x72, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x3e, 0x0a, 0x0b, 0x73, 0x65, 0x72,
0x76, 0x65, 0x72, 0x55,
- 0x73, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x53, 0x74, 0x72,
- 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x73, 0x65,
0x72, 0x76, 0x65, 0x72,
- 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x46, 0x0a, 0x0f, 0x73, 0x65, 0x72,
0x76, 0x65, 0x72, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1c,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x0f, 0x73, 0x65,
- 0x72, 0x76, 0x65, 0x72, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
0x73, 0x12, 0x44, 0x0a,
- 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x63,
0x72, 0x65, 0x74, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x67, 0x53, 0x65, 0x63,
- 0x72, 0x65, 0x74, 0x22, 0xe6, 0x01, 0x0a, 0x0b, 0x4e, 0x61, 0x63, 0x6f,
0x73, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x12, 0x30, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52,
- 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x3f, 0x0a, 0x07, 0x73, 0x74, 0x6f,
0x72, 0x61, 0x67, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x75, 0x62,
0x62, 0x6f, 0x2e, 0x6f,
- 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c,
0x70, 0x68, 0x61, 0x31,
- 0x2e, 0x4e, 0x61, 0x63, 0x6f, 0x73, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
0x65, 0x52, 0x07, 0x73,
- 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x70, 0x6c,
0x75, 0x67, 0x69, 0x6e,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x64, 0x75, 0x62,
0x62, 0x6f, 0x2e, 0x6f,
- 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c,
0x70, 0x68, 0x61, 0x31,
- 0x2e, 0x4e, 0x61, 0x63, 0x6f, 0x73, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e,
0x52, 0x06, 0x70, 0x6c,
- 0x75, 0x67, 0x69, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x72, 0x65, 0x66,
0x65, 0x72, 0x68, 0x6f,
- 0x73, 0x74, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0e, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x68, 0x6f, 0x73, 0x74, 0x6d, 0x6f, 0x64, 0x65,
0x22, 0x54, 0x0a, 0x0c,
- 0x4e, 0x61, 0x63, 0x6f, 0x73, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
0x12, 0x12, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
0x74, 0x79, 0x70, 0x65,
- 0x12, 0x30, 0x0a, 0x02, 0x64, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x20, 0x2e, 0x64,
- 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
0x72, 0x2e, 0x76, 0x31,
- 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x4e, 0x61, 0x63, 0x6f, 0x73,
0x44, 0x42, 0x52, 0x02,
- 0x64, 0x62, 0x22, 0x93, 0x01, 0x0a, 0x07, 0x4e, 0x61, 0x63, 0x6f, 0x73,
0x44, 0x42, 0x12, 0x12,
- 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x68, 0x6f,
- 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f,
0x72, 0x74, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1a,
0x0a, 0x08, 0x75, 0x73,
- 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
0x52, 0x08, 0x75, 0x73,
- 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18,
0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x22, 0x43, 0x0a, 0x0b,
0x4e, 0x61, 0x63, 0x6f,
- 0x73, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x12, 0x34, 0x0a, 0x07, 0x65,
0x6e, 0x61, 0x62, 0x6c,
- 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42,
0x6f, 0x6f, 0x6c, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
0x64, 0x22, 0x9e, 0x02,
- 0x0a, 0x06, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x06,
0x67, 0x6c, 0x6f, 0x62,
- 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64,
0x75, 0x62, 0x62, 0x6f,
+ 0x69, 0x6e, 0x67, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x9c, 0x02,
0x0a, 0x0b, 0x4e, 0x61,
+ 0x63, 0x6f, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x34, 0x0a,
0x07, 0x65, 0x6e, 0x61,
+ 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
0x2e, 0x42, 0x6f, 0x6f,
+ 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
0x6c, 0x65, 0x64, 0x12,
+ 0x30, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1c, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e,
+ 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x04, 0x6d, 0x6f, 0x64,
+ 0x65, 0x12, 0x3f, 0x0a, 0x07, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f,
0x70, 0x65, 0x72, 0x61,
+ 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31,
0x2e, 0x4e, 0x61, 0x63,
+ 0x6f, 0x73, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x52, 0x07, 0x73,
0x74, 0x6f, 0x72, 0x61,
+ 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e,
0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f,
0x70, 0x65, 0x72, 0x61,
+ 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31,
0x2e, 0x4e, 0x61, 0x63,
+ 0x6f, 0x73, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x52, 0x06, 0x70, 0x6c,
0x75, 0x67, 0x69, 0x6e,
+ 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x68, 0x6f,
0x73, 0x74, 0x6d, 0x6f,
+ 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x72,
0x65, 0x66, 0x65, 0x72,
+ 0x68, 0x6f, 0x73, 0x74, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x54, 0x0a, 0x0c,
0x4e, 0x61, 0x63, 0x6f,
+ 0x73, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04,
0x74, 0x79, 0x70, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
0x12, 0x30, 0x0a, 0x02,
+ 0x64, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x64,
0x75, 0x62, 0x62, 0x6f,
0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31,
0x61, 0x6c, 0x70, 0x68,
- 0x61, 0x31, 0x2e, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x43, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x52,
- 0x06, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x62,
0x61, 0x73, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x64, 0x75, 0x62, 0x62,
0x6f, 0x2e, 0x6f, 0x70,
- 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70,
0x68, 0x61, 0x31, 0x2e,
- 0x42, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x04,
0x62, 0x61, 0x73, 0x65,
- 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x46,
0x0a, 0x09, 0x7a, 0x6f,
- 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x28, 0x2e,
+ 0x61, 0x31, 0x2e, 0x4e, 0x61, 0x63, 0x6f, 0x73, 0x44, 0x42, 0x52, 0x02,
0x64, 0x62, 0x22, 0x93,
+ 0x01, 0x0a, 0x07, 0x4e, 0x61, 0x63, 0x6f, 0x73, 0x44, 0x42, 0x12, 0x12,
0x0a, 0x04, 0x68, 0x6f,
+ 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f,
0x73, 0x74, 0x12, 0x12,
+ 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x6e, 0x61,
+ 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03,
0x20, 0x01, 0x28, 0x03,
+ 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
0x65, 0x72, 0x6e, 0x61,
+ 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
0x65, 0x72, 0x6e, 0x61,
+ 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
0x72, 0x64, 0x18, 0x05,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
0x72, 0x64, 0x12, 0x14,
+ 0x0a, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28,
0x09, 0x52, 0x05, 0x70,
+ 0x61, 0x72, 0x61, 0x6d, 0x22, 0x43, 0x0a, 0x0b, 0x4e, 0x61, 0x63, 0x6f,
0x73, 0x50, 0x6c, 0x75,
+ 0x67, 0x69, 0x6e, 0x12, 0x34, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
0x65, 0x64, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56,
0x61, 0x6c, 0x75, 0x65,
+ 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x9e, 0x02,
0x0a, 0x06, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x67, 0x6c, 0x6f, 0x62,
0x61, 0x6c, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f,
0x2e, 0x6f, 0x70, 0x65,
+ 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68,
0x61, 0x31, 0x2e, 0x47,
+ 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
0x06, 0x67, 0x6c, 0x6f,
+ 0x62, 0x61, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x62, 0x61, 0x73, 0x65, 0x18,
0x02, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x23, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74,
+ 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e,
0x42, 0x61, 0x73, 0x65,
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x04, 0x62, 0x61, 0x73, 0x65,
0x12, 0x18, 0x0a, 0x07,
+ 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x07, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x46, 0x0a, 0x09, 0x7a, 0x6f,
0x6f, 0x6b, 0x65, 0x65,
+ 0x70, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e,
0x64, 0x75, 0x62, 0x62,
+ 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76,
0x31, 0x61, 0x6c, 0x70,
+ 0x68, 0x61, 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70, 0x65,
0x72, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x52, 0x09, 0x7a, 0x6f, 0x6f, 0x6b, 0x65, 0x65, 0x70,
0x65, 0x72, 0x12, 0x3a,
+ 0x0a, 0x05, 0x6e, 0x61, 0x63, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x24, 0x2e,
0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
0x6f, 0x72, 0x2e, 0x76,
- 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x5a, 0x6f, 0x6f, 0x6b,
0x65, 0x65, 0x70, 0x65,
- 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x09, 0x7a, 0x6f, 0x6f,
0x6b, 0x65, 0x65, 0x70,
- 0x65, 0x72, 0x12, 0x3a, 0x0a, 0x05, 0x6e, 0x61, 0x63, 0x6f, 0x73, 0x18,
0x05, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x24, 0x2e, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74,
- 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e,
0x4e, 0x61, 0x63, 0x6f,
- 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x05, 0x6e, 0x61, 0x63,
0x6f, 0x73, 0x22, 0x8c,
- 0x01, 0x0a, 0x0b, 0x49, 0x6e, 0x74, 0x4f, 0x72, 0x53, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x12, 0x12,
- 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
0x52, 0x04, 0x74, 0x79,
- 0x70, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c,
0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52,
- 0x06, 0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x12, 0x34, 0x0a, 0x06, 0x73,
0x74, 0x72, 0x56, 0x61,
- 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74,
0x72, 0x69, 0x6e, 0x67,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x06, 0x73, 0x74, 0x72, 0x56, 0x61,
0x6c, 0x42, 0x22, 0x5a,
- 0x20, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2e, 0x69, 0x6f, 0x2f, 0x64, 0x75,
0x62, 0x62, 0x6f, 0x2f,
- 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2f, 0x70, 0x6b, 0x67,
0x2f, 0x61, 0x70, 0x69,
- 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2e, 0x4e, 0x61, 0x63, 0x6f,
0x73, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x52, 0x05, 0x6e, 0x61, 0x63, 0x6f, 0x73, 0x22, 0x8c,
0x01, 0x0a, 0x0b, 0x49,
+ 0x6e, 0x74, 0x4f, 0x72, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x12,
0x0a, 0x04, 0x74, 0x79,
+ 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x74, 0x79,
0x70, 0x65, 0x12, 0x33,
+ 0x0a, 0x06, 0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1b,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66,
+ 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x06, 0x69, 0x6e, 0x74,
+ 0x56, 0x61, 0x6c, 0x12, 0x34, 0x0a, 0x06, 0x73, 0x74, 0x72, 0x56, 0x61,
0x6c, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x52, 0x06, 0x73, 0x74, 0x72, 0x56, 0x61, 0x6c, 0x42, 0x22, 0x5a,
0x20, 0x64, 0x75, 0x62,
+ 0x62, 0x6f, 0x2e, 0x69, 0x6f, 0x2f, 0x64, 0x75, 0x62, 0x62, 0x6f, 0x2f,
0x6f, 0x70, 0x65, 0x72,
+ 0x61, 0x74, 0x6f, 0x72, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x70, 0x69,
0x73, 0x62, 0x06, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
@@ -1218,52 +1241,54 @@ var file_values_types_proto_goTypes = []interface{}{
}
var file_values_types_proto_depIdxs = []int32{
13, // 0:
dubbo.operator.v1alpha1.BaseConfig.enableDubboConfigCRDs:type_name ->
google.protobuf.BoolValue
- 14, // 1: dubbo.operator.v1alpha1.ZookeeperConfig.dataLogDir:type_name
-> google.protobuf.StringValue
- 15, // 2: dubbo.operator.v1alpha1.ZookeeperConfig.tickTime:type_name ->
google.protobuf.Int64Value
- 15, // 3: dubbo.operator.v1alpha1.ZookeeperConfig.initLimit:type_name
-> google.protobuf.Int64Value
- 15, // 4: dubbo.operator.v1alpha1.ZookeeperConfig.syncLimit:type_name
-> google.protobuf.Int64Value
- 15, // 5:
dubbo.operator.v1alpha1.ZookeeperConfig.preAllocSize:type_name ->
google.protobuf.Int64Value
- 15, // 6: dubbo.operator.v1alpha1.ZookeeperConfig.snapCount:type_name
-> google.protobuf.Int64Value
- 14, // 7:
dubbo.operator.v1alpha1.ZookeeperConfig.fourlwCommandsWhitelist:type_name ->
google.protobuf.StringValue
- 13, // 8:
dubbo.operator.v1alpha1.ZookeeperConfig.listenOnAllIPs:type_name ->
google.protobuf.BoolValue
- 3, // 9: dubbo.operator.v1alpha1.ZookeeperConfig.autopurge:type_name
-> dubbo.operator.v1alpha1.ZookeeperAutopurge
- 15, // 10:
dubbo.operator.v1alpha1.ZookeeperConfig.maxClientCnxns:type_name ->
google.protobuf.Int64Value
- 15, // 11:
dubbo.operator.v1alpha1.ZookeeperConfig.maxSessionTimeout:type_name ->
google.protobuf.Int64Value
- 15, // 12: dubbo.operator.v1alpha1.ZookeeperConfig.heapSize:type_name
-> google.protobuf.Int64Value
- 14, // 13: dubbo.operator.v1alpha1.ZookeeperConfig.logLevel:type_name
-> google.protobuf.StringValue
- 4, // 14: dubbo.operator.v1alpha1.ZookeeperConfig.auth:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuth
- 15, // 15:
dubbo.operator.v1alpha1.ZookeeperAutopurge.snapRetainCount:type_name ->
google.protobuf.Int64Value
- 15, // 16:
dubbo.operator.v1alpha1.ZookeeperAutopurge.purgeInterval:type_name ->
google.protobuf.Int64Value
- 5, // 17: dubbo.operator.v1alpha1.ZookeeperAuth.client:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig
- 6, // 18: dubbo.operator.v1alpha1.ZookeeperAuth.quorum:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig
- 13, // 19:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.enabled:type_name ->
google.protobuf.BoolValue
- 14, // 20:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.clientUser:type_name ->
google.protobuf.StringValue
- 14, // 21:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.clientPassword:type_name ->
google.protobuf.StringValue
- 14, // 22:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.serverUsers:type_name ->
google.protobuf.StringValue
- 14, // 23:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.serverPasswords:type_name ->
google.protobuf.StringValue
- 14, // 24:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.existingSecret:type_name ->
google.protobuf.StringValue
- 13, // 25:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.enabled:type_name ->
google.protobuf.BoolValue
- 14, // 26:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.learnerUser:type_name ->
google.protobuf.StringValue
- 14, // 27:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.learnerPassword:type_name ->
google.protobuf.StringValue
- 14, // 28:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.serverUsers:type_name ->
google.protobuf.StringValue
- 14, // 29:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.serverPasswords:type_name ->
google.protobuf.StringValue
- 14, // 30:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.existingSecret:type_name ->
google.protobuf.StringValue
- 14, // 31: dubbo.operator.v1alpha1.NacosConfig.mode:type_name ->
google.protobuf.StringValue
- 8, // 32: dubbo.operator.v1alpha1.NacosConfig.storage:type_name ->
dubbo.operator.v1alpha1.NacosStorage
- 10, // 33: dubbo.operator.v1alpha1.NacosConfig.plugin:type_name ->
dubbo.operator.v1alpha1.NacosPlugin
- 9, // 34: dubbo.operator.v1alpha1.NacosStorage.db:type_name ->
dubbo.operator.v1alpha1.NacosDB
- 13, // 35: dubbo.operator.v1alpha1.NacosPlugin.enabled:type_name ->
google.protobuf.BoolValue
- 0, // 36: dubbo.operator.v1alpha1.Values.global:type_name ->
dubbo.operator.v1alpha1.GlobalConfig
- 1, // 37: dubbo.operator.v1alpha1.Values.base:type_name ->
dubbo.operator.v1alpha1.BaseConfig
- 2, // 38: dubbo.operator.v1alpha1.Values.zookeeper:type_name ->
dubbo.operator.v1alpha1.ZookeeperConfig
- 7, // 39: dubbo.operator.v1alpha1.Values.nacos:type_name ->
dubbo.operator.v1alpha1.NacosConfig
- 16, // 40: dubbo.operator.v1alpha1.IntOrString.intVal:type_name ->
google.protobuf.Int32Value
- 14, // 41: dubbo.operator.v1alpha1.IntOrString.strVal:type_name ->
google.protobuf.StringValue
- 42, // [42:42] is the sub-list for method output_type
- 42, // [42:42] is the sub-list for method input_type
- 42, // [42:42] is the sub-list for extension type_name
- 42, // [42:42] is the sub-list for extension extendee
- 0, // [0:42] is the sub-list for field type_name
+ 13, // 1: dubbo.operator.v1alpha1.ZookeeperConfig.enabled:type_name ->
google.protobuf.BoolValue
+ 14, // 2: dubbo.operator.v1alpha1.ZookeeperConfig.dataLogDir:type_name
-> google.protobuf.StringValue
+ 15, // 3: dubbo.operator.v1alpha1.ZookeeperConfig.tickTime:type_name ->
google.protobuf.Int64Value
+ 15, // 4: dubbo.operator.v1alpha1.ZookeeperConfig.initLimit:type_name
-> google.protobuf.Int64Value
+ 15, // 5: dubbo.operator.v1alpha1.ZookeeperConfig.syncLimit:type_name
-> google.protobuf.Int64Value
+ 15, // 6:
dubbo.operator.v1alpha1.ZookeeperConfig.preAllocSize:type_name ->
google.protobuf.Int64Value
+ 15, // 7: dubbo.operator.v1alpha1.ZookeeperConfig.snapCount:type_name
-> google.protobuf.Int64Value
+ 14, // 8:
dubbo.operator.v1alpha1.ZookeeperConfig.fourlwCommandsWhitelist:type_name ->
google.protobuf.StringValue
+ 13, // 9:
dubbo.operator.v1alpha1.ZookeeperConfig.listenOnAllIPs:type_name ->
google.protobuf.BoolValue
+ 3, // 10: dubbo.operator.v1alpha1.ZookeeperConfig.autopurge:type_name
-> dubbo.operator.v1alpha1.ZookeeperAutopurge
+ 15, // 11:
dubbo.operator.v1alpha1.ZookeeperConfig.maxClientCnxns:type_name ->
google.protobuf.Int64Value
+ 15, // 12:
dubbo.operator.v1alpha1.ZookeeperConfig.maxSessionTimeout:type_name ->
google.protobuf.Int64Value
+ 15, // 13: dubbo.operator.v1alpha1.ZookeeperConfig.heapSize:type_name
-> google.protobuf.Int64Value
+ 14, // 14: dubbo.operator.v1alpha1.ZookeeperConfig.logLevel:type_name
-> google.protobuf.StringValue
+ 4, // 15: dubbo.operator.v1alpha1.ZookeeperConfig.auth:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuth
+ 15, // 16:
dubbo.operator.v1alpha1.ZookeeperAutopurge.snapRetainCount:type_name ->
google.protobuf.Int64Value
+ 15, // 17:
dubbo.operator.v1alpha1.ZookeeperAutopurge.purgeInterval:type_name ->
google.protobuf.Int64Value
+ 5, // 18: dubbo.operator.v1alpha1.ZookeeperAuth.client:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig
+ 6, // 19: dubbo.operator.v1alpha1.ZookeeperAuth.quorum:type_name ->
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig
+ 13, // 20:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.enabled:type_name ->
google.protobuf.BoolValue
+ 14, // 21:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.clientUser:type_name ->
google.protobuf.StringValue
+ 14, // 22:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.clientPassword:type_name ->
google.protobuf.StringValue
+ 14, // 23:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.serverUsers:type_name ->
google.protobuf.StringValue
+ 14, // 24:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.serverPasswords:type_name ->
google.protobuf.StringValue
+ 14, // 25:
dubbo.operator.v1alpha1.ZookeeperAuthClientConfig.existingSecret:type_name ->
google.protobuf.StringValue
+ 13, // 26:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.enabled:type_name ->
google.protobuf.BoolValue
+ 14, // 27:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.learnerUser:type_name ->
google.protobuf.StringValue
+ 14, // 28:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.learnerPassword:type_name ->
google.protobuf.StringValue
+ 14, // 29:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.serverUsers:type_name ->
google.protobuf.StringValue
+ 14, // 30:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.serverPasswords:type_name ->
google.protobuf.StringValue
+ 14, // 31:
dubbo.operator.v1alpha1.ZookeeperAuthQuorumConfig.existingSecret:type_name ->
google.protobuf.StringValue
+ 13, // 32: dubbo.operator.v1alpha1.NacosConfig.enabled:type_name ->
google.protobuf.BoolValue
+ 14, // 33: dubbo.operator.v1alpha1.NacosConfig.mode:type_name ->
google.protobuf.StringValue
+ 8, // 34: dubbo.operator.v1alpha1.NacosConfig.storage:type_name ->
dubbo.operator.v1alpha1.NacosStorage
+ 10, // 35: dubbo.operator.v1alpha1.NacosConfig.plugin:type_name ->
dubbo.operator.v1alpha1.NacosPlugin
+ 9, // 36: dubbo.operator.v1alpha1.NacosStorage.db:type_name ->
dubbo.operator.v1alpha1.NacosDB
+ 13, // 37: dubbo.operator.v1alpha1.NacosPlugin.enabled:type_name ->
google.protobuf.BoolValue
+ 0, // 38: dubbo.operator.v1alpha1.Values.global:type_name ->
dubbo.operator.v1alpha1.GlobalConfig
+ 1, // 39: dubbo.operator.v1alpha1.Values.base:type_name ->
dubbo.operator.v1alpha1.BaseConfig
+ 2, // 40: dubbo.operator.v1alpha1.Values.zookeeper:type_name ->
dubbo.operator.v1alpha1.ZookeeperConfig
+ 7, // 41: dubbo.operator.v1alpha1.Values.nacos:type_name ->
dubbo.operator.v1alpha1.NacosConfig
+ 16, // 42: dubbo.operator.v1alpha1.IntOrString.intVal:type_name ->
google.protobuf.Int32Value
+ 14, // 43: dubbo.operator.v1alpha1.IntOrString.strVal:type_name ->
google.protobuf.StringValue
+ 44, // [44:44] is the sub-list for method output_type
+ 44, // [44:44] is the sub-list for method input_type
+ 44, // [44:44] is the sub-list for extension type_name
+ 44, // [44:44] is the sub-list for extension extendee
+ 0, // [0:44] is the sub-list for field type_name
}
func init() { file_values_types_proto_init() }
diff --git a/operator/pkg/component/component.go
b/operator/pkg/component/component.go
index c1cb397c..301fc7b8 100644
--- a/operator/pkg/component/component.go
+++ b/operator/pkg/component/component.go
@@ -31,6 +31,7 @@ var AllComponents = []Component{
{
UserFacingName: BaseComponentName,
SpecName: "base",
+ ResourceType: "Base",
Default: true,
HelmSubDir: "base",
HelmValuesTreeRoot: "global",
@@ -38,8 +39,8 @@ var AllComponents = []Component{
{
UserFacingName: AdminComponentName,
SpecName: "admin",
- ContainerName: "dashboard",
ResourceType: "Deployment",
+ ContainerName: "dashboard",
Default: true,
HelmSubDir: "admin",
HelmValuesTreeRoot: "admin",