-
Notifications
You must be signed in to change notification settings - Fork 82
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
Licensing support #1337
Licensing support #1337
Conversation
Also, modified provider-kubeconfig generator to include https in the provided API server IP only if it is not already present.
In the original design, we were using the output of kubectl connections to find out the Pods and then running metrics and logs on those Pods. However, for workloads in which Pods get created at runtime, connections is not able to find all the newly created workload Pods. This leads to incomplete results for metrics and logs. A simple way to handle this is to use all the pods in the namespace in which the application pods are running for collecting logs and metrics. The runtime Pods are typically created in the same namespace in which the application is running. This will give accurate results (atleast more accurate than using the output of kubect connections for the list of Pods). Fixes: #1190
Merge branch 'master' into develop
Fixes: #1208
Service name check
Added a field ('error') to the status object. This is used by helmer to store any errors that are encountered when performing helm upgrade.
It provides a UI for managing application instances. But it does not run on the cluster. The open-source equivalent is consumerUI, which is deployed as part KubePlus deployment.
Fixes: #1222
- Added link to Contributing guidelines. These guidelines contain pointer to setting up development environment - Extracted Architecture in a separate section - Updated link to CNCF Application definition section - Added Getting Started section Fixes: #1221
deploy/kubeconfiggenerator.py
Outdated
|
||
msg = "" | ||
|
||
cmd1 = "kubectl get " + kind |
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.
Move this evaluation below line 1222.
plugins/crlicense.py
Outdated
appinstances = '' | ||
if args.appinstances: | ||
appinstances = args.appinstances | ||
if int(appinstances) < 0: |
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.
Change this to <=
plugins/kubectl-license-delete
Outdated
@@ -0,0 +1,56 @@ | |||
#!/bin/bash | |||
|
|||
#python3 crlicense.py delete "$@" |
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.
Delete
plugins/kubectl-license-get
Outdated
@@ -0,0 +1,58 @@ | |||
#!/bin/bash | |||
|
|||
#python3 crlicense.py get "$@" |
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.
Delete
No description provided.