ELIOT Command Line Interface Commit
[eliot.git] / blueprints / common / elcli / elcli / cmd / common / constant.go
1 /*
2 Copyright 2019 The ELIOT Authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8     http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 package common
18
19 const (
20         //DefaultDockerVersion is the current default version of Docker
21         DefaultDockerVersion = "18.06.0"
22
23         //DefaultK8SVersion is the current default version of K8S
24         DefaultK8SVersion = "1.14.1"
25
26         // K8SImageRepository sets the image repository of Kubernetes
27         K8SImageRepository = "image-repository"
28
29         //K8SPodNetworkCidr sets pod network cidr of Kubernetes
30         K8SPodNetworkCidr = "pod-network-cidr"
31
32         //DockerVersion sets the version of Docker to be used
33         DockerVersion = "docker-version"
34
35         //KubernetesVersion sets the version of Kuberneted to be used
36         KubernetesVersion = "kubernetes-version"
37
38         //K8SAPIServerIPPort sets the IP:Port of Kubernetes api-server
39         K8SAPIServerIPPort = "k8sserverip"
40
41         //EliotCloudNodeIP sets the IP of KubeEdge cloud component
42         EliotCloudNodeIP = "eliotcloudnodeip"
43
44         //EliotEdgeNodeID Node unique idenfitcation string
45         EliotEdgeNodeID = "eliotedgenodeid"     
46 )