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

✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) #2785

Merged
merged 1 commit into from
Jul 5, 2022

Conversation

camilamacedo86
Copy link
Member

@camilamacedo86 camilamacedo86 commented Jul 1, 2022

Description

Add new go/v4 alpha plugin that adds support for Apple Silicon
The new plugin uses the base language go v3 with kustomize/v2-alpha

Changes:

  • Add samples for go/v4 alpha
  • Add e2e tests for the new plugin
  • Add doc for the new plugin
  • Update quickstart and migration guide to let users be aware of
  • Remove unnecessary test for PROJECT v2 ( no longer supported )
  • Remove from the migration guide note to use go/v2 ( deprecated ) we do not want people using it anymore.

Closes: #1932

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. labels Jul 1, 2022
@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jul 1, 2022
@camilamacedo86 camilamacedo86 requested review from AlmogBaku and removed request for jmrodri and rashmigottipati July 1, 2022 08:38
@camilamacedo86 camilamacedo86 changed the title :sparkling: (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) ✨ : (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@camilamacedo86 camilamacedo86 changed the title ✨ : (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@camilamacedo86 camilamacedo86 force-pushed the gov4 branch 2 times, most recently from aee538f to efbca80 Compare July 1, 2022 08:46
@kubernetes-sigs kubernetes-sigs deleted a comment from k8s-ci-robot Jul 1, 2022
@camilamacedo86 camilamacedo86 changed the title ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 1, 2022
@camilamacedo86 camilamacedo86 force-pushed the gov4 branch 3 times, most recently from c059595 to a5dcd3a Compare July 1, 2022 09:13
@camilamacedo86 camilamacedo86 changed the title WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 1, 2022
@kubernetes-sigs kubernetes-sigs deleted a comment from k8s-ci-robot Jul 1, 2022
@camilamacedo86 camilamacedo86 mentioned this pull request Jul 1, 2022
4 tasks
@camilamacedo86 camilamacedo86 changed the title ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 1, 2022
@camilamacedo86 camilamacedo86 changed the title WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 1, 2022
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 1, 2022
@kubernetes-sigs kubernetes-sigs deleted a comment from k8s-ci-robot Jul 1, 2022
@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jul 4, 2022
@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jul 4, 2022
Copy link
Contributor

@everettraven everettraven left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First round. Mostly just a few docs wording changes and minor nits:

docs/book/src/migration/v2vsv3.md Outdated Show resolved Hide resolved
docs/book/src/migration/v2vsv3.md Outdated Show resolved Hide resolved
docs/book/src/plugins/go-v4-plugin.md Outdated Show resolved Hide resolved
docs/book/src/plugins/go-v4-plugin.md Outdated Show resolved Hide resolved
docs/book/src/plugins/go-v4-plugin.md Outdated Show resolved Hide resolved
docs/book/src/plugins/go-v4-plugin.md Outdated Show resolved Hide resolved
docs/book/src/quick-start.md Outdated Show resolved Hide resolved
docs/book/src/quick-start.md Outdated Show resolved Hide resolved
test/e2e/v4/generate_test.go Outdated Show resolved Hide resolved
}

var _ = Describe("kubebuilder", func() {
Context("project version 3", func() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit:

Suggested change
Context("project version 3", func() {
Context("project version 4", func() {

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The project version is 3 ( the project version is the schema version used for the PROJECT file) However, i think we might could add another context here that is not too helpful maybe.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah okay that makes sense. Thanks for clearing that up!

@camilamacedo86 camilamacedo86 changed the title ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 5, 2022
@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 5, 2022
@camilamacedo86 camilamacedo86 changed the title WIP: ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) ✨ (go/v4-alpha) new alpha plugin using kustomize v4 (add support for Apple Silicon) Jul 5, 2022
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jul 5, 2022
Copy link
Contributor

@everettraven everettraven left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jul 5, 2022
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: camilamacedo86, everettraven

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jul 5, 2022
…pport for Apple Silicon)

Co-authored-by: Bryce Palmer <everettraven@gmail.com>
@k8s-ci-robot
Copy link
Contributor

New changes are detected. LGTM label has been removed.

@k8s-ci-robot k8s-ci-robot removed lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. labels Jul 5, 2022
@camilamacedo86 camilamacedo86 added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jul 5, 2022
@k8s-ci-robot
Copy link
Contributor

@camilamacedo86: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-kubebuilder-e2e-k8s-1-21-2 c04f181 link false /test pull-kubebuilder-e2e-k8s-1-21-2

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support for arm macOS
4 participants