Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

task/operator-sdk-generate-bundle: kustomize-dir param #1276

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions task/operator-sdk-generate-bundle/0.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Generate an OLM bundle using the operator-sdk
|---|---|---|---|
|input-dir|Directory to read cluster-ready operator manifests from|deploy|false|
|channels|Comma-separated list of channels the bundle belongs to|alpha|false|
|kustomize-dir|Directory containing kustomize bases in a "bases" dir and a kustomization.yaml for operator-framework manifests |""|false|
|version|Semantic version of the operator in the generated bundle||true|
|package-name|Bundle's package name||true|

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ spec:
- name: channels
description: Comma-separated list of channels the bundle belongs to
default: alpha
- name: kustomize-dir
description: >
Directory containing kustomize bases in a "bases" dir and a
kustomization.yaml for operator-framework manifests
default: ""
- name: version
description: Semantic version of the operator in the generated bundle
- name: package-name
Expand All @@ -37,3 +42,5 @@ spec:
- $(params.version)
- --package
- $(params.package-name)
- --kustomize-dir
- $(params.kustomize-dir)
Loading