當前位置: 首頁>>代碼示例>>Python>>正文


Python client.ApiextensionsV1beta1Api方法代碼示例

本文整理匯總了Python中kubernetes.client.ApiextensionsV1beta1Api方法的典型用法代碼示例。如果您正苦於以下問題:Python client.ApiextensionsV1beta1Api方法的具體用法?Python client.ApiextensionsV1beta1Api怎麽用?Python client.ApiextensionsV1beta1Api使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在kubernetes.client的用法示例。


在下文中一共展示了client.ApiextensionsV1beta1Api方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from kubernetes import client [as 別名]
# 或者: from kubernetes.client import ApiextensionsV1beta1Api [as 別名]
def __init__(self) -> None:
        kube_config.load_kube_config(
            config_file=os.environ.get("KUBECONFIG", KUBE_CONFIG_PATH),
            context=os.environ.get("KUBECONTEXT"),
        )
        models.V1beta1PodDisruptionBudgetStatus.disrupted_pods = property(
            fget=lambda *args, **kwargs: models.V1beta1PodDisruptionBudgetStatus.disrupted_pods(
                *args, **kwargs
            ),
            fset=_set_disrupted_pods,
        )
        self.deployments = kube_client.AppsV1Api()
        self.core = kube_client.CoreV1Api()
        self.policy = kube_client.PolicyV1beta1Api()
        self.apiextensions = kube_client.ApiextensionsV1beta1Api()
        self.custom = kube_client.CustomObjectsApi()
        self.autoscaling = kube_client.AutoscalingV2beta1Api()
        self.request = kube_client.ApiClient().request 
開發者ID:Yelp,項目名稱:paasta,代碼行數:20,代碼來源:kubernetes_tools.py

示例2: __init__

# 需要導入模塊: from kubernetes import client [as 別名]
# 或者: from kubernetes.client import ApiextensionsV1beta1Api [as 別名]
def __init__(self, bearer_token=None):
        '''
        Initialize connection to Kubernetes
        '''
        self.bearer_token = bearer_token
        api_client = None

        try:
            config.load_incluster_config()
        except config.config_exception.ConfigException:
            config.load_kube_config()

        if self.bearer_token:
            # Configure API key authorization: Bearer Token
            configuration = client.Configuration()
            configuration.api_key_prefix['authorization'] = 'Bearer'
            configuration.api_key['authorization'] = self.bearer_token
            api_client = client.ApiClient(configuration)

        self.client = client.CoreV1Api(api_client)
        self.batch_api = client.BatchV1Api(api_client)
        self.batch_v1beta1_api = client.BatchV1beta1Api(api_client)
        self.custom_objects = client.CustomObjectsApi(api_client)
        self.api_extensions = client.ApiextensionsV1beta1Api(api_client)
        self.extension_api = client.ExtensionsV1beta1Api(api_client)
        self.apps_v1_api = client.AppsV1Api(api_client) 
開發者ID:airshipit,項目名稱:armada,代碼行數:28,代碼來源:k8s.py

示例3: __init__

# 需要導入模塊: from kubernetes import client [as 別名]
# 或者: from kubernetes.client import ApiextensionsV1beta1Api [as 別名]
def __init__(self):
        # Create Kubernetes config.
        load_incluster_config()
        config = Configuration()
        config.debug = Settings.KUBERNETES_SERVICE_DEBUG
        self.api_client = client.ApiClient(config)

        # Re-usable API client instances.
        self.core_api = client.CoreV1Api(self.api_client)
        self.custom_objects_api = client.CustomObjectsApi(self.api_client)
        self.extensions_api = client.ApiextensionsV1beta1Api(self.api_client)
        self.apps_api = client.AppsV1beta1Api(self.api_client) 
開發者ID:Ultimaker,項目名稱:k8s-mongo-operator,代碼行數:14,代碼來源:KubernetesService.py

示例4: get_status_update_method

# 需要導入模塊: from kubernetes import client [as 別名]
# 或者: from kubernetes.client import ApiextensionsV1beta1Api [as 別名]
def get_status_update_method(self) -> None:
        """
        Get status update method from CRD.

        Depends on status subresource is set or unset in CRD.
        """
        name = '{}.{}'.format(self.plural, self.group)
        self.status_update_method = self.co_api.patch_namespaced_custom_object
        try:
            api_response = self.crd_api.read_custom_resource_definition(name)
        except ApiException as err:
            _LOGGER.error(
                '%s/%s: Exception when calling ApiextensionsV1beta1Api->'
                'read_custom_resource_definition: %s', self.group, self.plural, err)
            raise
        else:
            _LOGGER.debug(
                '%s/%s: Successfully read custom resource definition %s', self.group, self.plural,
                name)
            if api_response.spec.subresources is not None:
                if api_response.spec.subresources.status is not None:
                    self.status_update_method = self.co_api.patch_namespaced_custom_object_status
                    _LOGGER.info('There is a status subresource defined in CRD %s', name)
                    return

            _LOGGER.info('There is no status subresource defined in CRD %s', name) 
開發者ID:SAP,項目名稱:ewm-cloud-robotics,代碼行數:28,代碼來源:k8scrhandler.py


注:本文中的kubernetes.client.ApiextensionsV1beta1Api方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。