You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1766,10 +1768,12 @@ NodePort define optional port used in case of Auto or NodePort type.
1766
1768
### .spec.externalAccess.type: string
1767
1769
1768
1770
Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
1769
-
+ doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
1770
-
+ doc/enum: None|limit access to application running inside the Kubernetes cluster.
1771
-
+ doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
1772
-
+ doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
1771
+
1772
+
Possible Values:
1773
+
* Auto (default) - Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
1774
+
* None - limit access to application running inside the Kubernetes cluster.
1775
+
* LoadBalancer - Create a Service of type LoadBalancer for the ArangoDB deployment.
1776
+
* NodePort - Create a Service of type NodePort for the ArangoDB deployment.
@@ -2736,10 +2742,12 @@ NodePort define optional port used in case of Auto or NodePort type.
2736
2742
### .spec.sync.externalAccess.type: string
2737
2743
2738
2744
Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
2739
-
+ doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
2740
-
+ doc/enum: None|limit access to application running inside the Kubernetes cluster.
2741
-
+ doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
2742
-
+ doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
2745
+
2746
+
Possible Values:
2747
+
* Auto (default) - Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
2748
+
* None - limit access to application running inside the Kubernetes cluster.
2749
+
* LoadBalancer - Create a Service of type LoadBalancer for the ArangoDB deployment.
2750
+
* NodePort - Create a Service of type NodePort for the ArangoDB deployment.
// Licensed under the Apache License, Version 2.0 (the "License");
7
7
// you may not use this file except in compliance with the License.
@@ -30,12 +30,8 @@ import (
30
30
)
31
31
32
32
// ArangoDeploymentArchitecture defines the list of supported architectures.
33
-
// Possible values are:
34
-
// - `amd64`: Use processors with the x86-64 architecture.
35
-
// - `arm64`: Use processors with the 64-bit ARM architecture.
36
-
// The setting expects a list of strings, but you should only specify a single list item for the architecture, except when you want to migrate from one architecture to the other.
37
-
// The first list item defines the new default architecture for the deployment that you want to migrate to.
38
-
// To use the ARM architecture, you need to enable it in the operator first using --set "operator.architectures={amd64,arm64}". See Installation with Helm.
33
+
// +doc/enum: amd64|Use processors with the x86-64 architecture.
34
+
// +doc/enum: arm64|Use processors with the 64-bit ARM architecture.
Copy file name to clipboardExpand all lines: pkg/apis/deployment/v1/external_access_spec.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ import (
32
32
typeExternalAccessSpecstruct {
33
33
34
34
// Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
35
-
// +doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
36
-
// +doc/enum: None|limit access to application running inside the Kubernetes cluster.
37
-
// +doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
38
-
// +doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
35
+
// +doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
36
+
// +doc/enum: None|limit access to application running inside the Kubernetes cluster.
37
+
// +doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
38
+
// +doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
39
39
Type*ExternalAccessType`json:"type,omitempty"`
40
40
41
41
// NodePort define optional port used in case of Auto or NodePort type.
@@ -48,7 +48,7 @@ type ExternalAccessSpec struct {
48
48
// If specified and supported by the platform, this will restrict traffic through the cloud-provider
49
49
// load-balancer will be restricted to the specified client IPs. This field will be ignored if the
// Licensed under the Apache License, Version 2.0 (the "License");
7
7
// you may not use this file except in compliance with the License.
@@ -30,12 +30,8 @@ import (
30
30
)
31
31
32
32
// ArangoDeploymentArchitecture defines the list of supported architectures.
33
-
// Possible values are:
34
-
// - `amd64`: Use processors with the x86-64 architecture.
35
-
// - `arm64`: Use processors with the 64-bit ARM architecture.
36
-
// The setting expects a list of strings, but you should only specify a single list item for the architecture, except when you want to migrate from one architecture to the other.
37
-
// The first list item defines the new default architecture for the deployment that you want to migrate to.
38
-
// To use the ARM architecture, you need to enable it in the operator first using --set "operator.architectures={amd64,arm64}". See Installation with Helm.
33
+
// +doc/enum: amd64|Use processors with the x86-64 architecture.
34
+
// +doc/enum: arm64|Use processors with the 64-bit ARM architecture.
Copy file name to clipboardExpand all lines: pkg/apis/deployment/v2alpha1/external_access_spec.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ import (
32
32
typeExternalAccessSpecstruct {
33
33
34
34
// Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
35
-
// +doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
36
-
// +doc/enum: None|limit access to application running inside the Kubernetes cluster.
37
-
// +doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
38
-
// +doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
35
+
// +doc/enum: Auto|Create a Service of type LoadBalancer and fallback to a Service or type NodePort when the LoadBalancer is not assigned an IP address.
36
+
// +doc/enum: None|limit access to application running inside the Kubernetes cluster.
37
+
// +doc/enum: LoadBalancer|Create a Service of type LoadBalancer for the ArangoDB deployment.
38
+
// +doc/enum: NodePort|Create a Service of type NodePort for the ArangoDB deployment.
39
39
Type*ExternalAccessType`json:"type,omitempty"`
40
40
41
41
// NodePort define optional port used in case of Auto or NodePort type.
@@ -48,7 +48,7 @@ type ExternalAccessSpec struct {
48
48
// If specified and supported by the platform, this will restrict traffic through the cloud-provider
49
49
// load-balancer will be restricted to the specified client IPs. This field will be ignored if the
0 commit comments