route.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # pylint: skip-file
  2. # flake8: noqa
  3. # noqa: E302,E301
  4. # pylint: disable=too-many-instance-attributes
  5. class RouteConfig(object):
  6. ''' Handle route options '''
  7. # pylint: disable=too-many-arguments
  8. def __init__(self,
  9. sname,
  10. namespace,
  11. kubeconfig,
  12. labels=None,
  13. destcacert=None,
  14. cacert=None,
  15. cert=None,
  16. key=None,
  17. host=None,
  18. tls_termination=None,
  19. service_name=None,
  20. wildcard_policy=None,
  21. weight=None,
  22. port=None):
  23. ''' constructor for handling route options '''
  24. self.kubeconfig = kubeconfig
  25. self.name = sname
  26. self.namespace = namespace
  27. self.labels = labels
  28. self.host = host
  29. self.tls_termination = tls_termination
  30. self.destcacert = destcacert
  31. self.cacert = cacert
  32. self.cert = cert
  33. self.key = key
  34. self.service_name = service_name
  35. self.port = port
  36. self.data = {}
  37. self.wildcard_policy = wildcard_policy
  38. if wildcard_policy is None:
  39. self.wildcard_policy = 'None'
  40. self.weight = weight
  41. if weight is None:
  42. self.weight = 100
  43. self.create_dict()
  44. def create_dict(self):
  45. ''' return a service as a dict '''
  46. self.data['apiVersion'] = 'v1'
  47. self.data['kind'] = 'Route'
  48. self.data['metadata'] = {}
  49. self.data['metadata']['name'] = self.name
  50. self.data['metadata']['namespace'] = self.namespace
  51. if self.labels:
  52. self.data['metadata']['labels'] = self.labels
  53. self.data['spec'] = {}
  54. self.data['spec']['host'] = self.host
  55. if self.tls_termination:
  56. self.data['spec']['tls'] = {}
  57. self.data['spec']['tls']['termination'] = self.tls_termination
  58. if self.tls_termination != 'passthrough':
  59. self.data['spec']['tls']['key'] = self.key
  60. self.data['spec']['tls']['caCertificate'] = self.cacert
  61. self.data['spec']['tls']['certificate'] = self.cert
  62. if self.tls_termination == 'reencrypt':
  63. self.data['spec']['tls']['destinationCACertificate'] = self.destcacert
  64. self.data['spec']['to'] = {'kind': 'Service',
  65. 'name': self.service_name,
  66. 'weight': self.weight}
  67. self.data['spec']['wildcardPolicy'] = self.wildcard_policy
  68. if self.port:
  69. self.data['spec']['port'] = {}
  70. self.data['spec']['port']['targetPort'] = self.port
  71. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  72. class Route(Yedit):
  73. ''' Class to wrap the oc command line tools '''
  74. wildcard_policy = "spec.wildcardPolicy"
  75. host_path = "spec.host"
  76. port_path = "spec.port.targetPort"
  77. service_path = "spec.to.name"
  78. weight_path = "spec.to.weight"
  79. cert_path = "spec.tls.certificate"
  80. cacert_path = "spec.tls.caCertificate"
  81. destcacert_path = "spec.tls.destinationCACertificate"
  82. termination_path = "spec.tls.termination"
  83. key_path = "spec.tls.key"
  84. kind = 'route'
  85. def __init__(self, content):
  86. '''Route constructor'''
  87. super(Route, self).__init__(content=content)
  88. def get_destcacert(self):
  89. ''' return cert '''
  90. return self.get(Route.destcacert_path)
  91. def get_cert(self):
  92. ''' return cert '''
  93. return self.get(Route.cert_path)
  94. def get_key(self):
  95. ''' return key '''
  96. return self.get(Route.key_path)
  97. def get_cacert(self):
  98. ''' return cacert '''
  99. return self.get(Route.cacert_path)
  100. def get_service(self):
  101. ''' return service name '''
  102. return self.get(Route.service_path)
  103. def get_weight(self):
  104. ''' return service weight '''
  105. return self.get(Route.weight_path)
  106. def get_termination(self):
  107. ''' return tls termination'''
  108. return self.get(Route.termination_path)
  109. def get_host(self):
  110. ''' return host '''
  111. return self.get(Route.host_path)
  112. def get_port(self):
  113. ''' return port '''
  114. return self.get(Route.port_path)
  115. def get_wildcard_policy(self):
  116. ''' return wildcardPolicy '''
  117. return self.get(Route.wildcard_policy)