def _create()

in config_operator/config_operator/k8s/K8sConfigMap.py [0:0]


    def _create(self):
        try:
            logger.info(f'create configMap entry {self._configmap_name}')
            api_response = self._api_core_v1_instance.create_namespaced_config_map(
                namespace=self._namespace,
                body=self._create_configmap_object()
            )
            logger.info(api_response)

        except ApiException as e:
            raise e