2022-11-12 22:57:42 +00:00
|
|
|
import kopf
|
|
|
|
import kubernetes
|
|
|
|
import base64
|
|
|
|
import json
|
|
|
|
|
2022-11-26 12:49:57 +00:00
|
|
|
from utils.utils import unlock_bw, get_secret_from_bitwarden
|
2022-11-12 22:57:42 +00:00
|
|
|
|
2023-04-21 12:39:06 +00:00
|
|
|
|
|
|
|
def create_dockerlogin(
|
|
|
|
logger,
|
|
|
|
secret,
|
|
|
|
secret_json,
|
|
|
|
username_ref,
|
|
|
|
password_ref,
|
|
|
|
registry):
|
2022-11-12 22:57:42 +00:00
|
|
|
secret.type = "dockerconfigjson"
|
|
|
|
secret.data = {}
|
|
|
|
auths_dict = {}
|
|
|
|
registry_dict = {}
|
|
|
|
reg_auth_dict = {}
|
|
|
|
|
|
|
|
_username = secret_json["login"][username_ref]
|
|
|
|
logger.info(f"Creating login with username: {_username}")
|
|
|
|
_password = secret_json["login"][password_ref]
|
2023-04-21 12:39:06 +00:00
|
|
|
cred_field = str(
|
|
|
|
base64.b64encode(
|
|
|
|
f"{_username}:{_password}".encode("utf-8")),
|
|
|
|
"utf-8")
|
2022-11-12 22:57:42 +00:00
|
|
|
|
|
|
|
reg_auth_dict["auth"] = cred_field
|
|
|
|
registry_dict[registry] = reg_auth_dict
|
|
|
|
auths_dict["auths"] = registry_dict
|
2023-04-21 12:39:06 +00:00
|
|
|
secret.data[".dockerconfigjson"] = str(base64.b64encode(
|
|
|
|
json.dumps(auths_dict).encode("utf-8")), "utf-8")
|
2022-11-12 22:57:42 +00:00
|
|
|
return secret
|
|
|
|
|
2023-04-21 12:39:06 +00:00
|
|
|
|
2022-11-26 20:33:31 +00:00
|
|
|
@kopf.on.create('registry-credential.lerentis.uploadfilter24.eu')
|
2022-11-12 22:57:42 +00:00
|
|
|
def create_managed_registry_secret(spec, name, namespace, logger, **kwargs):
|
|
|
|
username_ref = spec.get('usernameRef')
|
|
|
|
password_ref = spec.get('passwordRef')
|
|
|
|
registry = spec.get('registry')
|
|
|
|
id = spec.get('id')
|
|
|
|
secret_name = spec.get('name')
|
|
|
|
secret_namespace = spec.get('namespace')
|
|
|
|
|
|
|
|
unlock_bw(logger)
|
2022-11-26 17:55:42 +00:00
|
|
|
logger.info(f"Locking up secret with ID: {id}")
|
|
|
|
secret_json_object = json.loads(get_secret_from_bitwarden(id))
|
2022-11-12 22:57:42 +00:00
|
|
|
|
|
|
|
api = kubernetes.client.CoreV1Api()
|
|
|
|
|
|
|
|
annotations = {
|
2022-11-26 20:33:31 +00:00
|
|
|
"managed": "registry-credential.lerentis.uploadfilter24.eu",
|
2022-11-12 22:57:42 +00:00
|
|
|
"managedObject": f"{namespace}/{name}"
|
|
|
|
}
|
|
|
|
secret = kubernetes.client.V1Secret()
|
2023-04-21 12:39:06 +00:00
|
|
|
secret.metadata = kubernetes.client.V1ObjectMeta(
|
|
|
|
name=secret_name, annotations=annotations)
|
|
|
|
secret = create_dockerlogin(
|
|
|
|
logger,
|
|
|
|
secret,
|
|
|
|
secret_json_object,
|
|
|
|
username_ref,
|
|
|
|
password_ref,
|
|
|
|
registry)
|
2022-11-12 22:57:42 +00:00
|
|
|
|
|
|
|
obj = api.create_namespaced_secret(
|
|
|
|
secret_namespace, secret
|
|
|
|
)
|
|
|
|
|
2023-04-21 12:39:06 +00:00
|
|
|
logger.info(
|
|
|
|
f"Registry Secret {secret_namespace}/{secret_name} has been created")
|
|
|
|
|
2022-11-12 22:57:42 +00:00
|
|
|
|
2022-11-26 20:33:31 +00:00
|
|
|
@kopf.on.update('registry-credential.lerentis.uploadfilter24.eu')
|
2022-12-26 15:29:14 +00:00
|
|
|
@kopf.timer('registry-credential.lerentis.uploadfilter24.eu', interval=900)
|
2023-04-21 12:39:06 +00:00
|
|
|
def update_managed_registry_secret(
|
|
|
|
spec,
|
|
|
|
status,
|
|
|
|
name,
|
|
|
|
namespace,
|
|
|
|
logger,
|
|
|
|
body,
|
|
|
|
**kwargs):
|
2022-12-26 15:29:14 +00:00
|
|
|
|
|
|
|
username_ref = spec.get('usernameRef')
|
|
|
|
password_ref = spec.get('passwordRef')
|
|
|
|
registry = spec.get('registry')
|
|
|
|
id = spec.get('id')
|
|
|
|
secret_name = spec.get('name')
|
|
|
|
secret_namespace = spec.get('namespace')
|
|
|
|
|
2023-01-22 12:33:43 +00:00
|
|
|
old_config = None
|
|
|
|
old_secret_name = None
|
|
|
|
old_secret_namespace = None
|
|
|
|
if 'kopf.zalando.org/last-handled-configuration' in body.metadata.annotations:
|
2023-04-21 12:39:06 +00:00
|
|
|
old_config = json.loads(
|
|
|
|
body.metadata.annotations['kopf.zalando.org/last-handled-configuration'])
|
2023-01-22 12:33:43 +00:00
|
|
|
old_secret_name = old_config['spec'].get('name')
|
|
|
|
old_secret_namespace = old_config['spec'].get('namespace')
|
|
|
|
secret_name = spec.get('name')
|
|
|
|
secret_namespace = spec.get('namespace')
|
|
|
|
|
2023-04-21 12:39:06 +00:00
|
|
|
if old_config is not None and (
|
|
|
|
old_secret_name != secret_name or old_secret_namespace != secret_namespace):
|
2023-01-22 12:33:43 +00:00
|
|
|
# If the name of the secret or the namespace of the secret is different
|
|
|
|
# We have to delete the secret an recreate it
|
|
|
|
logger.info("Secret name or namespace changed, let's recreate it")
|
2023-04-21 12:39:06 +00:00
|
|
|
delete_managed_secret(
|
|
|
|
old_config['spec'],
|
|
|
|
name,
|
|
|
|
namespace,
|
|
|
|
logger,
|
|
|
|
**kwargs)
|
2023-01-22 12:33:43 +00:00
|
|
|
create_managed_registry_secret(spec, name, namespace, logger, **kwargs)
|
|
|
|
return
|
|
|
|
|
2022-12-26 15:29:14 +00:00
|
|
|
unlock_bw(logger)
|
|
|
|
logger.info(f"Locking up secret with ID: {id}")
|
|
|
|
secret_json_object = json.loads(get_secret_from_bitwarden(id))
|
|
|
|
|
|
|
|
api = kubernetes.client.CoreV1Api()
|
|
|
|
|
|
|
|
annotations = {
|
|
|
|
"managed": "registry-credential.lerentis.uploadfilter24.eu",
|
|
|
|
"managedObject": f"{namespace}/{name}"
|
|
|
|
}
|
|
|
|
secret = kubernetes.client.V1Secret()
|
2023-04-21 12:39:06 +00:00
|
|
|
secret.metadata = kubernetes.client.V1ObjectMeta(
|
|
|
|
name=secret_name, annotations=annotations)
|
|
|
|
secret = create_dockerlogin(
|
|
|
|
logger,
|
|
|
|
secret,
|
|
|
|
secret_json_object,
|
|
|
|
username_ref,
|
|
|
|
password_ref,
|
|
|
|
registry)
|
2022-12-26 15:29:14 +00:00
|
|
|
try:
|
|
|
|
obj = api.replace_namespaced_secret(
|
|
|
|
name=secret_name,
|
|
|
|
body=secret,
|
|
|
|
namespace="{}".format(secret_namespace))
|
2023-04-21 12:39:06 +00:00
|
|
|
logger.info(
|
|
|
|
f"Secret {secret_namespace}/{secret_name} has been updated")
|
|
|
|
except BaseException:
|
2022-12-26 15:29:14 +00:00
|
|
|
logger.warn(
|
|
|
|
f"Could not update secret {secret_namespace}/{secret_name}!")
|
|
|
|
|
2022-11-12 22:57:42 +00:00
|
|
|
|
2022-11-26 20:33:31 +00:00
|
|
|
@kopf.on.delete('registry-credential.lerentis.uploadfilter24.eu')
|
2022-11-12 22:57:42 +00:00
|
|
|
def delete_managed_secret(spec, name, namespace, logger, **kwargs):
|
|
|
|
secret_name = spec.get('name')
|
|
|
|
secret_namespace = spec.get('namespace')
|
|
|
|
api = kubernetes.client.CoreV1Api()
|
|
|
|
|
|
|
|
try:
|
|
|
|
api.delete_namespaced_secret(secret_name, secret_namespace)
|
2023-04-21 12:39:06 +00:00
|
|
|
logger.info(
|
|
|
|
f"Secret {secret_namespace}/{secret_name} has been deleted")
|
|
|
|
except BaseException:
|
|
|
|
logger.warn(
|
|
|
|
f"Could not delete secret {secret_namespace}/{secret_name}!")
|