Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Commit 7008af8

Browse files
Adding Source for removing Opkit managing CRDs
references #23 Signed-off-by: Christopher Hein <[email protected]>
1 parent d7704b0 commit 7008af8

15 files changed

+26
-37
lines changed

.generated_files

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
file-prefix zz_generated.
2+
path-prefix pkg/client/
3+
path-prefix pkg/operator
4+
file-name template_functions.go
5+
file-name aws-service-operator.yaml

cloudformation/dynamodb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: 'AWS Operator - Amazon DynamoDB'
2+
Description: 'AWS Service Operator - Amazon DynamoDB'
33
Parameters:
44
Namespace:
55
Description: >-
@@ -63,7 +63,7 @@ Resources:
6363
-
6464
AttributeName: !Ref RangeAttributeName
6565
KeyType: "RANGE"
66-
AttributeDefinitions:
66+
AttributeDefinitions:
6767
-
6868
AttributeName: !Ref HashAttributeName
6969
AttributeType: "S"

cloudformation/ecrrepository.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: 'AWS Operator - Amazon ECR Repository'
2+
Description: 'AWS Service Operator - Amazon ECR Repository'
33
Parameters:
44
Namespace:
55
Description: >-

cloudformation/s3bucket.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: 'AWS Operator - Amazon S3 Bucket'
2+
Description: 'AWS Service Operator - Amazon S3 Bucket'
33
Parameters:
44
Namespace:
55
Description: >-
@@ -90,13 +90,13 @@ Parameters:
9090
Default: "500.html"
9191
Mappings: {}
9292
Conditions:
93-
UseLogging: !Equals
93+
UseLogging: !Equals
9494
- !Ref EnableLogging
9595
- 'true'
96-
UseGlacierLifeCycle: !Equals
96+
UseGlacierLifeCycle: !Equals
9797
- !Ref EnableGlacierLifeCycle
9898
- 'true'
99-
UseVersioning: !Equals
99+
UseVersioning: !Equals
100100
- !Ref EnableVersioning
101101
- 'true'
102102
UseAsStaticSite: !Equals
@@ -122,7 +122,7 @@ Resources:
122122
Transitions:
123123
- TransitionInDays: !Ref GlacierLifeCycleTransitionInDays
124124
StorageClass: Glacier
125-
LoggingConfiguration: !If
125+
LoggingConfiguration: !If
126126
- UseLogging
127127
- DestinationBucketName: !Ref LoggingBucket
128128
LogFilePrefix: !Ref LoggingPrefix
@@ -138,7 +138,7 @@ Resources:
138138
Value: !Ref ClusterName
139139
- Key: Heritage
140140
Value: operator.aws
141-
VersioningConfiguration: !If
141+
VersioningConfiguration: !If
142142
- UseVersioning
143143
- Status: Enabled
144144
- !Ref 'AWS::NoValue'
@@ -171,7 +171,7 @@ Resources:
171171
DeletionPolicy: Retain
172172
Properties:
173173
AccessControl: LogDeliveryWrite
174-
BucketName: !Join
174+
BucketName: !Join
175175
- ''
176176
- - !Ref BucketName
177177
- logging
@@ -180,7 +180,7 @@ Outputs:
180180
Value: !Ref S3bucket
181181
Description: Name of the sample Amazon S3 bucket.
182182
BucketArn:
183-
Value: !GetAtt
183+
Value: !GetAtt
184184
- S3bucket
185185
- Arn
186186
Description: Name of the Amazon S3 bucket

cloudformation/snssubscription.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: 'AWS Operator - Amazon SNS Subscription'
2+
Description: 'AWS Service Operator - Amazon SNS Subscription'
33
Parameters:
44
Namespace:
55
Description: >-

cloudformation/snstopic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: 'AWS Operator - Amazon SNS Topic'
2+
Description: 'AWS Service Operator - Amazon SNS Topic'
33
Parameters:
44
Namespace:
55
Description: >-

cloudformation/sqsqueue.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: 2010-09-09
2-
Description: "AWS Operator - Amazon SQS Queue"
2+
Description: "AWS Service Operator - Amazon SQS Queue"
33
Parameters:
44
Namespace:
55
Type: String

models/cloudformationtemplate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: operator.aws/v1alpha1
1+
apiVersion: service-operator.aws/v1alpha1
22
kind: ModelDefinition
33
metadata:
44
name: CloudFormationTemplateResource

models/dynamodb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: operator.aws/v1alpha1
1+
apiVersion: service-operator.aws/v1alpha1
22
kind: ModelDefinition
33
metadata:
44
name: DynamoDBResource

models/ecrrepository.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: operator.aws/v1alpha1
1+
apiVersion: service-operator.aws/v1alpha1
22
kind: ModelDefinition
33
metadata:
44
name: ECRRepositoryResource

0 commit comments

Comments
 (0)