Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. cluster_types = {
  2. 'Service': ''.join([
  3. cluster_types_root,
  4. ':',
  5. '/api/v1/namespaces/{namespace}/services'
  6. ]),
  7. 'ConfigMap': ''.join([
  8. cluster_types_root,
  9. ':',
  10. '/api/v1/namespaces/{namespace}/configmaps'
  11. ]),
  12. 'Deployment': ''.join([
  13. cluster_types_root,
  14. '-apps',
  15. ':',
  16. '/apis/apps/v1beta1/namespaces/{namespace}/deployments'
  17. ])
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement