Skip to content

Commit 37bf15a

Browse files
authored
Merge pull request #380 from ezgidemirel/fix-205
Add store config scheme
2 parents 4a08392 + 9d3bb04 commit 37bf15a

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

apis/v1alpha1/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Copyright 2021 Upbound Inc.
33
*/
44

5-
// Package v1alpha1 contains the core resources of the aws jet provider.
5+
// Package v1alpha1 contains the core resources of the aws provider.
66
// +kubebuilder:object:generate=true
77
// +groupName=aws.upbound.io
88
// +versionName=v1alpha1

apis/v1alpha1/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ type StoreConfigStatus struct {
2222

2323
// +kubebuilder:object:root=true
2424

25-
// A StoreConfig configures how GCP controller should store connection details.
25+
// A StoreConfig configures how AWS controller should store connection details.
2626
// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
2727
// +kubebuilder:printcolumn:name="TYPE",type="string",JSONPath=".spec.type"
2828
// +kubebuilder:printcolumn:name="DEFAULT-SCOPE",type="string",JSONPath=".spec.defaultScope"
29-
// +kubebuilder:resource:scope=Cluster,categories={crossplane,store,gcp}
29+
// +kubebuilder:resource:scope=Cluster,categories={crossplane,store,aws}
3030
// +kubebuilder:subresource:status
3131
type StoreConfig struct {
3232
metav1.TypeMeta `json:",inline"`

apis/zz_register.go

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

config/provider.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ var (
9393
var (
9494
BasePackages = config.BasePackages{
9595
APIVersion: []string{
96+
"apis/v1alpha1",
9697
"apis/v1beta1",
9798
},
9899
Controller: []string{

package/crds/aws.upbound.io_storeconfigs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
categories:
1313
- crossplane
1414
- store
15-
- gcp
15+
- aws
1616
kind: StoreConfig
1717
listKind: StoreConfigList
1818
plural: storeconfigs
@@ -32,7 +32,7 @@ spec:
3232
name: v1alpha1
3333
schema:
3434
openAPIV3Schema:
35-
description: A StoreConfig configures how GCP controller should store connection
35+
description: A StoreConfig configures how AWS controller should store connection
3636
details.
3737
properties:
3838
apiVersion:

0 commit comments

Comments
 (0)