images/controlplane/status/app/cluster_status_check.py [30:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
logger = logging.getLogger()
logger.setLevel(logging.INFO)

logger.info('starting run...')

current_region = os.environ['AWS_REGION']
logger.info(f'current region is: {current_region}')

session_name = 'EKS_UPDATE_SESSION'

config_dict = {
    ConfigKey.cluster_name_key: os.environ[ConfigKey.cluster_name_key],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



images/dataplane/daemonset/app/daemonset.py [31:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
logger = logging.getLogger()
logger.setLevel(logging.INFO)

logger.info('starting run...')

current_region = os.environ['AWS_REGION']
logger.info(f'current region is: {current_region}')

session_name = 'EKS_UPDATE_SESSION'

config_dict = {
    ConfigKey.cluster_name_key: os.environ[ConfigKey.cluster_name_key],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



