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
Issue #, if available: aws-controllers-k8s/community#1076
Description of changes:
Adds the `config/controller/kustomization.yaml` file to the release part of the build, so that we can inject the release version and URL to the controller image path.
Example of new `kustomization.yaml` (for S3):
```yaml
resources:
- deployment.yaml
- service.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: public.ecr.aws/aws-controllers-k8s/s3-controller
newTag: v0.0.11
```
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Copy file name to clipboardExpand all lines: cmd/ack-generate/command/olm.go
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,9 @@ func init() {
58
58
olmCmd.PersistentFlags().BoolVar(
59
59
&optDisableCommonKeywords, "no-common-keywords", false, "does not include common keywords in the rendered cluster service version",
60
60
)
61
+
olmCmd.PersistentFlags().StringVar(
62
+
&optImageRepository, "image-repository", "", "the Docker image repository that stores the ACK service controller. Default: 'public.ecr.aws/aws-controllers-k8s/$service-controller'",
0 commit comments