-
Notifications
You must be signed in to change notification settings - Fork 7
Address low-complexity issues #41
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
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
aff4da5
Containerfile: move controller binaries to /usr/local/bin/
jlebon 6b451e7
e2e: use bink --label flag instead of post-join patching
jlebon 2abe881
config: add example BootcNodePool with full options
jlebon fdb2ffe
ci: Publish container images to GHCR
jlebon 6ed59c7
Use published GHCR image in manifests
jlebon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,21 @@ | ||
| # This sample pool targets all worker nodes. All optional fields are shown | ||
| # commented out with default or example values. | ||
| apiVersion: node.bootc.dev/v1alpha1 | ||
| kind: BootcNodePool | ||
| metadata: | ||
| labels: | ||
| app.kubernetes.io/name: bootc-operator | ||
| app.kubernetes.io/managed-by: kustomize | ||
| name: bootcnodepool-sample | ||
| name: workers | ||
| spec: | ||
| # TODO(user): Add fields here | ||
| nodeSelector: | ||
| matchLabels: | ||
| node-role.kubernetes.io/worker: "" | ||
| image: | ||
| ref: ghcr.io/alicefr/bink/node:latest | ||
| # rollout: | ||
| # maxUnavailable: 1 # default | ||
| # paused: false # default | ||
| # drainTimeoutSeconds: 300 # example; default: no timeout | ||
| # disruption: | ||
| # rebootPolicy: AllowSoftReboot # example; default: RebootOnly | ||
| # pullSecretRef: # example; default: none | ||
| # name: my-pull-secret | ||
| # namespace: bootc-operator | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,2 @@ | ||
| ## Append samples of your project ## | ||
| resources: | ||
| - bootc_v1alpha1_bootcnodepool.yaml | ||
| - bootc_v1alpha1_bootcnode.yaml | ||
| # +kubebuilder:scaffold:manifestskustomizesamples |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: we still don't support the tag, we should reference the digest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. Would be nice to have a sample that works here. But the bink/node image has no fixed tag anyway so there's no digest to use. I think I'll just add a comment there for now to say that tags are not supported yet and you'd use a digest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filed https://github.com/jlebon/bootc-operator/issues/45