-
Notifications
You must be signed in to change notification settings - Fork 156
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
Implement preparing manifest applier in kubernetes plugin #5389
Conversation
Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]>
Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]>
@@ -33,10 +35,20 @@ import ( | |||
"google.golang.org/grpc/status" | |||
) | |||
|
|||
const ( | |||
defaultKubectlVersion = "1.18.2" |
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.
This is copied from current implementation.
defaultKubectlVersion = "1.18.2" |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #5389 +/- ##
==========================================
- Coverage 25.85% 25.84% -0.02%
==========================================
Files 448 448
Lines 48261 48281 +20
==========================================
Hits 12478 12478
- Misses 34812 34832 +20
Partials 971 971 ☔ View full report in Codecov by Sentry. |
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.
LGTM
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.
lgtm
What this PR does:
This PR implements the preparation of a manifest applier in the Kubernetes plugin.
Why we need it:
Without this PR, we cannot execute the K8S_SYNC stage.
Which issue(s) this PR fixes:
Part of #4980
Does this PR introduce a user-facing change?: No