diff --git a/helm/osdu-infra-onprem/Chart.yaml b/helm/osdu-infra-onprem/Chart.yaml index 4d4b0cb0ac5da4562b4a1808af3cdc284dd0bb86..d6410751e724af0387bf38d91463e3c89c2e4700 100644 --- a/helm/osdu-infra-onprem/Chart.yaml +++ b/helm/osdu-infra-onprem/Chart.yaml @@ -113,3 +113,11 @@ dependencies: version: 0.1.0 repository: https://community.opengroup.org/api/v4/projects/221/packages/helm/stable condition: gcp-partition-configmap.enabled + - name: gcp-unit-configmap + version: 0.1.0 + repository: https://community.opengroup.org/api/v4/projects/5/packages/helm/stable + condition: gcp-unit-configmap.enabled + - name: gcp-unit-deploy + version: 0.1.0 + repository: https://community.opengroup.org/api/v4/projects/5/packages/helm/stable + condition: gcp-unit-deploy.enabled diff --git a/helm/osdu-infra-onprem/values.yaml b/helm/osdu-infra-onprem/values.yaml index 44b52585dd783348d23e5853382600e7dee8097b..4de23e82e56c9cf52ea69cd0d2829fea78ce361c 100644 --- a/helm/osdu-infra-onprem/values.yaml +++ b/helm/osdu-infra-onprem/values.yaml @@ -317,7 +317,7 @@ gcp-crs-conversion-deploy: limits_cpu: "1" limits_memory: "1G" serviceAccountName: "crs-conversion-k8s" - image: "gcr.io/osdu-anthos/crs-conversion:onprem2" + image: "community.opengroup.org:5555/osdu/platform/system/reference/crs-conversion-service/osdu-gcp" imagePullPolicy: "IfNotPresent" conf: @@ -387,3 +387,33 @@ partitionBootstrap: app_name: "partition" # --- Partition values --- # + +# --- Unit values --- # + +gcp-unit-configmap: + enabled: true + data: + log_level: "INFO" + entitlement_url: "http://entitlements/api/entitlements/v2/" + conf: + configmap: "unit-config" + app_name: "unit" + + +gcp-unit-deploy: + enabled: true + data: + requests_cpu: "0.1" + requests_memory: "256M" + limits_cpu: "1" + limits_memory: "1G" + serviceAccountName: "unit-k8s" + image: "community.opengroup.org:5555/osdu/platform/system/reference/unit-service/osdu-gcp" + imagePullPolicy: "IfNotPresent" + + conf: + configmap: "unit-config" + app_name: "unit" + on_prem_enabled: true + +# --- End of Unit values --- #