- 
                Notifications
    You must be signed in to change notification settings 
- Fork 3.4k
Add example for remote cluster without kube client on server #446
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
Changes from 1 commit
317aeee
              a3f6195
              8b2b3cd
              67ae262
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| # Copyright 2016 The Kubernetes Authors. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|  | ||
| # This example demonstrate communication with a remove Kube cluster from a | ||
|          | ||
| # server outside of the cluster without kube client installed on it. | ||
| # The communication is secured with the use of Bearer token. | ||
|  | ||
| from kubernetes import client, config | ||
|  | ||
|  | ||
| def main(): | ||
| # Define the barer token we are going to use to authenticate. | ||
| # See here to create the token: | ||
| # https://kubernetes.io/docs/tasks/access-application-cluster/access-cluster/ | ||
| aToken = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | ||
|  | ||
| # Create a configuration object | ||
| configuration = client.Configuration() | ||
|  | ||
| # Specify the endpoint of your Kube cluster | ||
| configuration.host = "https://XXX.XXX.XXX.XXX:443" | ||
|  | ||
| # Security part. | ||
| # In this simple example we are not going to verify the SSL certificate of | ||
| # the remote cluster (for simplicity reason) | ||
| configuration.verify_ssl = False | ||
| # Nevertheless if you want to do it you can with these 2 parameters | ||
| # configuration.verify_ssl=True | ||
| # ssl_ca_cert is the filepath to the file that contains the certificate. | ||
| # configuration.ssl_ca_cert="certificate" | ||
|  | ||
| configuration.api_key = {"authorization": "Bearer " + aToken} | ||
|  | ||
| # Use our configuration | ||
| client.Configuration.set_default(configuration) | ||
|          | ||
|  | ||
| # Do calls | ||
| v1 = client.CoreV1Api() | ||
| print("Listing pods with their IPs:") | ||
| ret = v1.list_pod_for_all_namespaces(watch=False) | ||
| for i in ret.items: | ||
| print("%s\t%s\t%s" % | ||
| (i.status.pod_ip, i.metadata.namespace, i.metadata.name)) | ||
|  | ||
|  | ||
| if __name__ == '__main__': | ||
| main() | ||
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.
May look trivial, but 2016->2018
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.
Fix. Thx. Now we just need to hope it is merge before 2019 ;)