We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390f3cf commit de596e9Copy full SHA for de596e9
examples/deployment_crud.py
@@ -82,6 +82,12 @@ def main():
82
# default location.
83
config.load_kube_config()
84
apps_v1 = client.AppsV1Api()
85
+
86
+ # Uncomment the following lines to enable debug logging
87
+ # c = client.Configuration()
88
+ # c.debug = True
89
+ # apps_v1 = client.AppsV1Api(api_client=client.ApiClient(configuration=c))
90
91
# Create a deployment object with client-python API. The deployment we
92
# created is same as the `nginx-deployment.yaml` in the /examples folder.
93
deployment = create_deployment_object()
0 commit comments