-
Notifications
You must be signed in to change notification settings - Fork 67
/
types.go
112 lines (97 loc) · 6.08 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
//
// 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 alicloud
import (
"path/filepath"
extensionsv1alpha1 "github.com/gardener/gardener/pkg/apis/extensions/v1alpha1"
)
const (
// Name is the name of the Alicloud provider.
Name = "provider-alicloud"
// InfraRelease is the name of the alicloud-infra chart.
InfraRelease = "alicloud-infra"
// MachineControllerManagerImageName is the name of the MachineControllerManager image.
MachineControllerManagerImageName = "machine-controller-manager"
// MachineControllerManagerProviderAlicloudImageName is the name of the MachineControllerManagerProviderAlicloud image.
MachineControllerManagerProviderAlicloudImageName = "machine-controller-manager-provider-alicloud"
// CloudControllerManagerImageName is the name of the CloudControllerManager image.
CloudControllerManagerImageName = "alicloud-controller-manager"
// CSIAttacherImageName is the name of the CSI attacher image.
CSIAttacherImageName = "csi-attacher"
// CSINodeDriverRegistrarImageName is the name of the CSI driver registrar image.
CSINodeDriverRegistrarImageName = "csi-node-driver-registrar"
// CSIProvisionerImageName is the name of the CSI provisioner image.
CSIProvisionerImageName = "csi-provisioner"
// CSISnapshotterImageName is the name of the CSI snapshotter image.
CSISnapshotterImageName = "csi-snapshotter"
// CSISnapshotControllerImageName is the name of the CSI snapshot controller image.
CSISnapshotControllerImageName = "csi-snapshot-controller"
// CSIResizerImageName is the name of the CSI resizer image.
CSIResizerImageName = "csi-resizer"
// CSILivenessProbeImageName is the name of the CSI liveness probe image.
CSILivenessProbeImageName = "csi-liveness-probe"
// CSIPluginImageName is the name of the CSI plugin image.
CSIPluginImageName = "csi-plugin-alicloud"
// CSISnapshotValidationWebhookImageName is the name of the csi-snapshot-validation-webhook image.
CSISnapshotValidationWebhookImageName = "csi-snapshot-validation-webhook"
// MachineControllerManagerName is a constant for the name of the machine-controller-manager.
MachineControllerManagerName = "machine-controller-manager"
// MachineControllerManagerVpaName is the name of the VerticalPodAutoscaler of the machine-controller-manager deployment.
MachineControllerManagerVpaName = "machine-controller-manager-vpa"
// MachineControllerManagerMonitoringConfigName is the name of the ConfigMap containing monitoring stack configurations for machine-controller-manager.
MachineControllerManagerMonitoringConfigName = "machine-controller-manager-monitoring-config"
// BackupSecretName is the name of the secret containing the credentials for storing the backups of Shoot clusters.
BackupSecretName = "etcd-backup"
// StorageEndpoint is the data field in a secret where the storage endpoint is stored at.
StorageEndpoint = "storageEndpoint"
//CloudControllerManagerName is the a constant for the name of the CloudController.
CloudControllerManagerName = "cloud-controller-manager"
// CSIPluginController is the a constant for the name of the csi-plugin-controller Deployment in the Seed.
CSIPluginController = "csi-plugin-controller"
// CSISnapshotControllerName is a constant for the name of the csi-snapshot-controller Deployment in the Seed.
CSISnapshotControllerName = "csi-snapshot-controller"
// CSISnapshotValidation is the constant for the name of the csi-snapshot-validation-webhook component.
CSISnapshotValidation = "csi-snapshot-validation"
// CRDVolumeSnapshotClasses is a constant for the name of VolumeSnapshotClasses CRD.
CRDVolumeSnapshotClasses = "volumesnapshotclasses.snapshot.storage.k8s.io"
// CRDVolumeSnapshotContents is a constant for the name of VolumeSnapshotContents CRD.
CRDVolumeSnapshotContents = "volumesnapshotcontents.snapshot.storage.k8s.io"
// CRDVolumeSnapshots is a constant for the name of CRDVolumeSnapshots CRD.
CRDVolumeSnapshots = "volumesnapshots.snapshot.storage.k8s.io"
// ServiceLinkedRoleForNATGateway is a constant for the name of service linked role of NAT gateway.
ServiceLinkedRoleForNATGateway = "AliyunServiceRoleForNatgw"
// ServiceForNATGateway is a constant for the name of service of NAT gateway.
ServiceForNATGateway = "nat.aliyuncs.com"
//ErrorCodeNoPermission is a constant for the error code of no permission.
ErrorCodeNoPermission = "NoPermission"
// ErrorCodeRoleEntityNotExist is a constant for the error code of role entity not exist.
ErrorCodeRoleEntityNotExist = "EntityNotExist.Role"
// ErrorCodeDomainRecordNotBelongToUser is a constant for the error code of domain record not belong to user.
ErrorCodeDomainRecordNotBelongToUser = "DomainRecordNotBelongToUser"
// DefaultDNSRegion is the default region to be used if a region is not specified in the DNS secret
// or in the DNSRecord resource.
DefaultDNSRegion = "cn-shanghai"
// CloudProviderConfigName is the name of the configmap containing the cloud provider config.
CloudProviderConfigName = "cloud-provider-config"
)
var (
// ChartsPath is the path to the charts
ChartsPath = filepath.Join("charts")
// InternalChartsPath is the path to the internal charts
InternalChartsPath = filepath.Join(ChartsPath, "internal")
// InfraChartPath is the path to the alicloud-infra chart.
InfraChartPath = filepath.Join(InternalChartsPath, "alicloud-infra")
// UsernamePrefix is a constant for the username prefix of components deployed by AWS.
UsernamePrefix = extensionsv1alpha1.SchemeGroupVersion.Group + ":" + Name + ":"
)