-
Notifications
You must be signed in to change notification settings - Fork 4
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
pb-6586 | chore: add version field for cluster objects #240
Conversation
OSS Scan Results:
Total issues: 43 |
License Evaluation Results:
Total License Issues: 0 |
OSS Scan Results:
Total issues: 43 |
License Evaluation Results:
Total License Issues: 0 |
OSS Scan Results:
Total issues: 43 |
License Evaluation Results:
Total License Issues: 0 |
pkg/apis/v1/api.proto
Outdated
@@ -66,6 +66,7 @@ message ClusterInfo { | |||
(gogoproto.moretags) = "secure:\"true\"" | |||
]; | |||
Provider provider = 17; | |||
string version = 18; |
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.
I thinks this would make it more clear on what version details it is.
string version = 18; | |
string k8sversion = 18; |
OSS Scan Results:
Total issues: 43 |
License Evaluation Results:
Total License Issues: 0 |
pb-6586 | chore: add version field for cluster objects
License Evaluation Results:
Total License Issues: 0 |
Adds `k8s_version` field in the ClusterInfo API.
What this PR does / why we need it:
Adds the
version
field incluster
object for storing the Kubernetes version of the cluster.Which issue(s) this PR fixes (optional)
Addresses PB-6586