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

Commit f0170cf

Browse files
Configures New Project Repo awslabs/aws-service-operator
**This change addresses the need by:** * closes #80 Signed-off-by: Christopher Hein <[email protected]>
1 parent 057cc00 commit f0170cf

File tree

75 files changed

+186
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+186
-186
lines changed

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ git:
3535
# Release will configure where the GitHub release is handled
3636
release:
3737
github:
38-
owner: christopherhein
39-
name: aws-operator
38+
owner: awslabs
39+
name: aws-service-operator
4040
draft: true
4141
prerelease: true
4242

cmd/aws-service-operator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
homedir "github.com/mitchellh/go-homedir"
66

7-
"github.com/christopherhein/aws-operator/pkg/config"
7+
"github.com/awslabs/aws-service-operator/pkg/config"
88

99
"github.com/spf13/cobra"
1010
"github.com/spf13/viper"

cmd/aws-service-operator/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/christopherhein/aws-operator/pkg/logger"
5-
"github.com/christopherhein/aws-operator/pkg/server"
4+
"github.com/awslabs/aws-service-operator/pkg/logger"
5+
"github.com/awslabs/aws-service-operator/pkg/server"
66
"github.com/sirupsen/logrus"
77
"github.com/spf13/cobra"
88
"os"

code-generation/cmd/aws-service-operator-codegen/process.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/christopherhein/aws-operator/code-generation/pkg/codegen"
4+
"github.com/awslabs/aws-service-operator/code-generation/pkg/codegen"
55
"github.com/spf13/cobra"
66
)
77

code-generation/pkg/codegen/assets/cft.go.templ

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"errors"
1010
"github.com/aws/aws-sdk-go/aws"
1111
"github.com/aws/aws-sdk-go/service/cloudformation"
12-
awsV1alpha1 "github.com/christopherhein/aws-operator/pkg/apis/service-operator.aws/v1alpha1"
13-
"github.com/christopherhein/aws-operator/pkg/config"
14-
"github.com/christopherhein/aws-operator/pkg/helpers"
12+
awsV1alpha1 "github.com/awslabs/aws-service-operator/pkg/apis/service-operator.aws/v1alpha1"
13+
"github.com/awslabs/aws-service-operator/pkg/config"
14+
"github.com/awslabs/aws-service-operator/pkg/helpers"
1515
)
1616

1717
// New generates a new object

code-generation/pkg/codegen/assets/controller.go.templ

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ package {{.Spec.Resource.Name}}
88
import (
99
{{- if .Spec.IsCustomized}}
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
11-
"github.com/christopherhein/aws-operator/pkg/helpers"
11+
"github.com/awslabs/aws-service-operator/pkg/helpers"
1212
{{- end}}
1313
"reflect"
1414

15-
"github.com/christopherhein/aws-operator/pkg/config"
15+
"github.com/awslabs/aws-service-operator/pkg/config"
1616
{{- if .Spec.Queue}}
17-
"github.com/christopherhein/aws-operator/pkg/queue"
17+
"github.com/awslabs/aws-service-operator/pkg/queue"
1818
{{- end}}
1919
opkit "github.com/christopherhein/operator-kit"
2020
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
2121
"k8s.io/client-go/tools/cache"
2222

23-
awsapi "github.com/christopherhein/aws-operator/pkg/apis/service-operator.aws"
24-
awsV1alpha1 "github.com/christopherhein/aws-operator/pkg/apis/service-operator.aws/v1alpha1"
25-
awsclient "github.com/christopherhein/aws-operator/pkg/client/clientset/versioned/typed/service-operator.aws/v1alpha1"
23+
awsapi "github.com/awslabs/aws-service-operator/pkg/apis/service-operator.aws"
24+
awsV1alpha1 "github.com/awslabs/aws-service-operator/pkg/apis/service-operator.aws/v1alpha1"
25+
awsclient "github.com/awslabs/aws-service-operator/pkg/client/clientset/versioned/typed/service-operator.aws/v1alpha1"
2626
{{- if .Spec.Customizations.Package}}
2727
"{{.Spec.Customizations.Package}}"
2828
{{- end}}

code-generation/pkg/codegen/assets/template_functions.go.templ

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
package helpers
77

88
import (
9-
awsclient "github.com/christopherhein/aws-operator/pkg/client/clientset/versioned/typed/service-operator.aws/v1alpha1"
10-
"github.com/christopherhein/aws-operator/pkg/config"
9+
awsclient "github.com/awslabs/aws-service-operator/pkg/client/clientset/versioned/typed/service-operator.aws/v1alpha1"
10+
"github.com/awslabs/aws-service-operator/pkg/config"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1212
)
1313

code-generation/pkg/codegen/templates.go

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configs/aws-service-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ items:
8989
serviceAccountName: aws-service-operator
9090
containers:
9191
- name: aws-service-operator
92-
image: awsserviceoperator/aws-service-operator:v0.0.1-alpha5
92+
image: awsserviceoperator/aws-service-operator:v0.0.1-alpha1
9393
imagePullPolicy: Always
9494
args:
9595
- server

models/cloudformationtemplate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
templateKey: URL
4545

4646
customizations:
47-
package: github.com/christopherhein/aws-operator/pkg/customizations/cloudformationtemplate
47+
package: github.com/awslabs/aws-service-operator/pkg/customizations/cloudformationtemplate
4848
add: cloudformationtemplate.OnAdd
4949
update: cloudformationtemplate.OnUpdate
5050
delete: cloudformationtemplate.OnDelete

0 commit comments

Comments
 (0)