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
{{ message }}
This repository was archived by the owner on Nov 7, 2019. It is now read-only.
This is the resource version for the Kubernetes object.
12
+
ResourceName:
13
+
Description: >-
14
+
This is the resource name for the Kubernetes object
15
+
Type: String
16
+
AutoMinorVersionUpgrade:
17
+
Description: >-
18
+
Indicates that minor engine upgrades will be applied automatically to the cache cluster during the maintenance window.
19
+
Type: String
20
+
Default: false
21
+
AZMode:
22
+
Description: >-
23
+
For Memcached cache clusters, indicates whether the nodes are created in a single Availability Zone or across multiple Availability Zones in the cluster's region.
24
+
Type: String
25
+
CacheNodeType:
26
+
Description: >-
27
+
The compute and memory capacity of nodes in a cache cluster.
The name of the cache parameter group that is associated with this cache cluster.
34
+
Type: String
35
+
CacheSubnetGroupName:
36
+
Description: >-
37
+
The cache subnet group that you associate with a cache cluster.
38
+
"Required: Conditional. If you specified the VpcSecurityGroupIds property, you must specify this property."
39
+
Type: String
40
+
ClusterName:
41
+
Description: >-
42
+
This is the cluster name for the operator
43
+
Type: String
44
+
Engine:
45
+
Description: >-
46
+
The name of the cache engine to be used for this cache cluster, such as memcached or redis.
47
+
Type: String
48
+
Default: "redis"
49
+
EngineVersion:
50
+
Description: >-
51
+
The version of the cache engine to be used for this cluster.
52
+
Type: String
53
+
Default: "5.0.0"
54
+
NotificationTopicArn:
55
+
Description: >-
56
+
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications will be sent.
57
+
Type: String
58
+
NumCacheNodes:
59
+
Description: >-
60
+
The number of cache nodes that the cache cluster should have.
61
+
Type: Number
62
+
Default: "1"
63
+
Port:
64
+
Description: >-
65
+
The port number on which each of the cache nodes will accept connections.
66
+
Type: Number
67
+
PreferredMaintenanceWindow:
68
+
Description: >-
69
+
The weekly time range (in UTC) during which system maintenance can occur.
70
+
Type: String
71
+
Default: mon:05:00-mon:09:00
72
+
PreferredAvailabilityZone:
73
+
Description: >-
74
+
The Amazon EC2 Availability Zone in which the cache cluster is created.
75
+
Type: String
76
+
PreferredAvailabilityZones:
77
+
Description: >-
78
+
For Memcached cache clusters, the list of Availability Zones in which cache nodes are created. The number of Availability Zones listed must equal the number of cache nodes. For example, if you want to create three nodes in two different Availability Zones, you can specify ["us-east-1a", "us-east-1a", "us-east-1b"], which would create two nodes in us-east-1a and one node in us-east-1b.
79
+
Type: CommaDelimitedList
80
+
SnapshotWindow:
81
+
Description: >-
82
+
For Redis cache clusters, the daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your node group. For example, you can specify 05:00-09:00.
83
+
Type: String
84
+
Default: "05:00-09:00"
85
+
VpcSecurityGroupIds:
86
+
Description: >-
87
+
A list of VPC security group IDs. If your cache cluster isn't in a VPC, specify the CacheSecurityGroupNames property instead.
Copy file name to clipboardExpand all lines: cmd/aws-service-operator/main.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ func init() {
50
50
rootCmd.PersistentFlags().StringVarP(&awsRegion, "region", "r", "us-west-2", "AWS Region for resources to be created in")
51
51
rootCmd.PersistentFlags().StringVarP(&logLevel, "loglevel", "l", "Info", "Log level for the CLI")
52
52
rootCmd.PersistentFlags().StringVarP(&logFile, "logfile", "", "", "Log file for the CLI")
53
-
rootCmd.PersistentFlags().StringVarP(&resources, "resources", "", "cloudformationtemplate,dynamodb,ecrrepository,s3bucket,snssubscription,snstopic,sqsqueue", "Comma delimited list of CRDs to deploy")
53
+
rootCmd.PersistentFlags().StringVarP(&resources, "resources", "", "cloudformationtemplate,dynamodb,ecrrepository,elasticache,s3bucket,snssubscription,snstopic,sqsqueue", "Comma delimited list of CRDs to deploy")
54
54
rootCmd.PersistentFlags().StringVarP(&clusterName, "cluster-name", "i", "aws-operator", "Cluster name for the Application to run as, used to label the Cloudformation templated to avoid conflict")
55
55
rootCmd.PersistentFlags().StringVarP(&bucket, "bucket", "b", "aws-operator", "To configure the operator you need a base bucket to contain the resources")
56
56
rootCmd.PersistentFlags().StringVarP(&accountID, "account-id", "a", "", "AWS Account ID, this is used to configure outputs and operate on the proper account.")
0 commit comments