This repository was archived by the owner on Nov 7, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed
code-generation/pkg/codegen Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 20
20
rootCmd = & cobra.Command {
21
21
Use : "aws-operator" ,
22
22
Short : "AWS Operator manages your AWS Infrastructure using CRDs and Operators" ,
23
- Long : `TODO WRITE THIS` ,
23
+ Long : `AWS Operator manages your AWS Infrastructure using CRDs and Operators.
24
+ With a single manifest file you can now model both the application and the resource necessary to run it.` ,
24
25
Run : func (c * cobra.Command , _ []string ) {
25
26
c .Help ()
26
27
},
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ type Config struct {
23
23
ClusterName string
24
24
Bucket string
25
25
AccountID string
26
- Recorder record.EventRecorder
26
+ Recorder record.EventRecorder
27
27
}
28
28
29
29
// LoggingConfig defines the attributes for the logger
Original file line number Diff line number Diff line change 7
7
"github.com/aws/aws-sdk-go/aws/session"
8
8
"time"
9
9
10
+ awsscheme "github.com/awslabs/aws-service-operator/pkg/client/clientset/versioned/scheme"
10
11
awsclient "github.com/awslabs/aws-service-operator/pkg/client/clientset/versioned/typed/service-operator.aws/v1alpha1"
11
12
"github.com/awslabs/aws-service-operator/pkg/config"
12
13
"github.com/awslabs/aws-service-operator/pkg/operator/cloudformationtemplate"
@@ -20,12 +21,11 @@ import (
20
21
corev1 "k8s.io/api/core/v1"
21
22
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
22
23
"k8s.io/client-go/kubernetes"
24
+ "k8s.io/client-go/kubernetes/scheme"
25
+ typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
23
26
"k8s.io/client-go/rest"
24
27
"k8s.io/client-go/tools/clientcmd"
25
28
"k8s.io/client-go/tools/record"
26
- typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
27
- "k8s.io/client-go/kubernetes/scheme"
28
- awsscheme "github.com/awslabs/aws-service-operator/pkg/client/clientset/versioned/scheme"
29
29
)
30
30
31
31
const controllerName = "aws-service-operator"
You can’t perform that action at this time.
0 commit comments