diff --git a/.gitignore b/.gitignore index dbb03c4e..2b19cc4a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ dist/ # VS Code config workspace.code-workspace - # cache specific *.pyc **__pycache__** diff --git a/CHANGELOG.md b/CHANGELOG.md index 52143fca..97e0946c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [2.0.0] - 2024-01-16 +## [2.0.0] - 2024-02-08 ### Changed diff --git a/charts/cray-product-catalog/templates/configmap-hook.yaml b/charts/cray-product-catalog/templates/configmap-hook.yaml index 9835d9f2..8c32f855 100644 --- a/charts/cray-product-catalog/templates/configmap-hook.yaml +++ b/charts/cray-product-catalog/templates/configmap-hook.yaml @@ -77,7 +77,6 @@ spec: yq eval 'del(.metadata.resourceVersion, .metadata.uid, .metadata.annotations, .metadata.creationTimestamp, .metadata.selfLink, .metadata.managedFields)' - | kubectl create -f -" - --- apiVersion: batch/v1 kind: Job diff --git a/cray_product_catalog/catalog_update.py b/cray_product_catalog/catalog_update.py index 4e5d012a..2907f5ea 100755 --- a/cray_product_catalog/catalog_update.py +++ b/cray_product_catalog/catalog_update.py @@ -148,7 +148,7 @@ def create_config_map(api_instance, name, namespace): LOGGER.info("Created product ConfigMap %s/%s", namespace, name) return True except ApiException: - LOGGER.error("Error calling create_namespaced_config_map") + LOGGER.exception("Error calling create_namespaced_config_map") return False