HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/396/lib/third_party/kubernetes/config/incluster_config.py
#!/usr/bin/env python

# 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.

import os

from kubernetes.client import Configuration

from .config_exception import ConfigException

SERVICE_HOST_ENV_NAME = "KUBERNETES_SERVICE_HOST"
SERVICE_PORT_ENV_NAME = "KUBERNETES_SERVICE_PORT"
SERVICE_TOKEN_FILENAME = "/var/run/secrets/kubernetes.io/serviceaccount/token"
SERVICE_CERT_FILENAME = "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"


def _join_host_port(host, port):
  """Adapted golang's net.JoinHostPort"""
  template = "%s:%s"
  host_requires_bracketing = ":" in host or "%" in host
  if host_requires_bracketing:
    template = "[%s]:%s"
  return template % (host, port)


class InClusterConfigLoader(object):

  def __init__(self, token_filename, cert_filename, environ=os.environ):
    self._token_filename = token_filename
    self._cert_filename = cert_filename
    self._environ = environ

  def load_and_set(self):
    self._load_config()
    self._set_config()

  def _load_config(self):
    if (SERVICE_HOST_ENV_NAME not in self._environ or
        SERVICE_PORT_ENV_NAME not in self._environ):
      raise ConfigException("Service host/port is not set.")

    if (not self._environ[SERVICE_HOST_ENV_NAME] or
        not self._environ[SERVICE_PORT_ENV_NAME]):
      raise ConfigException("Service host/port is set but empty.")

    self.host = ("https://" +
                 _join_host_port(self._environ[SERVICE_HOST_ENV_NAME],
                                 self._environ[SERVICE_PORT_ENV_NAME]))

    if not os.path.isfile(self._token_filename):
      raise ConfigException("Service token file does not exists.")

    with open(self._token_filename) as f:
      self.token = f.read()
      if not self.token:
        raise ConfigException("Token file exists but empty.")

    if not os.path.isfile(self._cert_filename):
      raise ConfigException("Service certification file does not exists.")

    with open(self._cert_filename) as f:
      if not f.read():
        raise ConfigException("Cert file exists but empty.")

    self.ssl_ca_cert = self._cert_filename

  def _set_config(self):
    configuration = Configuration()
    configuration.host = self.host
    configuration.ssl_ca_cert = self.ssl_ca_cert
    configuration.api_key["authorization"] = "bearer " + self.token
    Configuration.set_default(configuration)


def load_incluster_config():
  """
    Use the service account kubernetes gives to pods to connect to kubernetes
    cluster. It's intended for clients that expect to be running inside a pod
    running on kubernetes. It will raise an exception if called from a process
    not running in a kubernetes environment.
  """
  InClusterConfigLoader(
      token_filename=SERVICE_TOKEN_FILENAME,
      cert_filename=SERVICE_CERT_FILENAME).load_and_set()