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
Environment setting specifies the type of environment in which the deployment is created.
2903
2903
2904
2904
Possible Values:
2905
-
* Development (default) - This value optimizes the deployment for development use. It is possible to run a deployment on a small number of nodes (e.g. minikube).
2906
-
* Production - This value optimizes the deployment for production use. It puts required affinity constraints on all pods to avoid Agents & DB-Servers from running on the same machine.
2905
+
* `"Development"` (default) - This value optimizes the deployment for development use. It is possible to run a deployment on a small number of nodes (e.g. minikube).
2906
+
* `"Production"` - This value optimizes the deployment for production use. It puts required affinity constraints on all pods to avoid Agents & DB-Servers from running on the same machine.
Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
2965
2965
2966
2966
Possible Values:
2967
-
* 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.
2968
-
* None - limit access to application running inside the Kubernetes cluster.
2969
-
* LoadBalancer - Create a Service of type LoadBalancer for the ArangoDB deployment.
2970
-
* NodePort - Create a Service of type NodePort for the ArangoDB deployment.
2967
+
* `"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.
2968
+
* `"None"` - limit access to application running inside the Kubernetes cluster.
2969
+
* `"LoadBalancer"` - Create a Service of type LoadBalancer for the ArangoDB deployment.
2970
+
* `"NodePort"` - Create a Service of type NodePort for the ArangoDB deployment.
Type specifies the type of Service that will be created to provide access to the ArangoDB deployment from outside the Kubernetes cluster.
4530
4530
4531
4531
Possible Values:
4532
-
* 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.
4533
-
* None - limit access to application running inside the Kubernetes cluster.
4534
-
* LoadBalancer - Create a Service of type LoadBalancer for the ArangoDB deployment.
4535
-
* NodePort - Create a Service of type NodePort for the ArangoDB deployment.
4532
+
* `"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.
4533
+
* `"None"` - limit access to application running inside the Kubernetes cluster.
4534
+
* `"LoadBalancer"` - Create a Service of type LoadBalancer for the ArangoDB deployment.
4535
+
* `"NodePort"` - Create a Service of type NodePort for the ArangoDB deployment.
* ClusterIP (default) - service will only be accessible inside the cluster, via the cluster IP
277
-
* NodePort - service will be exposed on one port of every node, in addition to 'ClusterIP' type
278
-
* LoadBalancer - service will be exposed via an external load balancer (if the cloud provider supports it), in addition to 'NodePort' type
279
-
* ExternalName - service consists of only a reference to an external name that kubedns or equivalent will return as a CNAME record, with no exposing or proxying of any pods involved
276
+
*`"ClusterIP"` (default) - service will only be accessible inside the cluster, via the cluster IP
277
+
*`"NodePort"` - service will be exposed on one port of every node, in addition to 'ClusterIP' type
278
+
*`"LoadBalancer"` - service will be exposed via an external load balancer (if the cloud provider supports it), in addition to 'NodePort' type
279
+
*`"ExternalName"` - service consists of only a reference to an external name that kubedns or equivalent will return as a CNAME record, with no exposing or proxying of any pods involved
0 commit comments