Skip to content
Snippets Groups Projects
Commit 51e95d99 authored by Siarhei Poliak [EPAM / GCP]'s avatar Siarhei Poliak [EPAM / GCP] Committed by Oleksandr Kosse (EPAM)
Browse files

Gonrg 9457 remove schema clean feature

parent 308d1ff6
No related branches found
No related tags found
1 merge request!652Gonrg 9457 remove schema clean feature
......@@ -83,8 +83,8 @@ The following software have components provided under the terms of this license:
- Byte Buddy (without dependencies) (from https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy)
- Byte Buddy Java agent (from https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent)
- ClassMate (from http://github.com/cowtowncoder/java-classmate)
- Cloud Key Management Service (KMS) API v1-rev20240131-2.0.0 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms)
- Cloud Storage JSON API v1-rev20240209-2.0.0 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Cloud Key Management Service (KMS) API v1-rev20240219-2.0.0 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms)
- Cloud Storage JSON API v1-rev20240311-2.0.0 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Collections (from https://repo1.maven.org/maven2/commons-collections/commons-collections)
- Commons Digester (from http://commons.apache.org/digester/)
- Converter: Jackson (from https://github.com/square/retrofit, https://repo1.maven.org/maven2/com/squareup/retrofit2/converter-jackson)
......@@ -728,7 +728,6 @@ gpl-2.0-classpath
The following software have components provided under the terms of this license:
- Jakarta Annotations API (from https://projects.eclipse.org/projects/ee4j.ca)
- Jakarta Validation API (from https://beanvalidation.org)
========================================================================
public-domain
......
......@@ -9,8 +9,7 @@ COPY ./deployments ./
RUN apk update && apk add jq bash py3-pip
RUN pip3 install --upgrade pip && \
pip3 install -r ./scripts/requirements.txt && \
pip3 install -r ./scripts/gc-deployment-requirements.txt && \
pip3 install -r ./scripts/schema-cleaner/requirements.txt
pip3 install -r ./scripts/gc-deployment-requirements.txt
RUN chmod +x /opt/bootstrap_schema.sh
RUN addgroup -g 10001 -S nonroot \
&& adduser -h /opt -G nonroot -S -u 10001 nonroot
......
......@@ -14,18 +14,11 @@
# - OPENID_PROVIDER_URL
# - OPENID_PROVIDER_CLIENT_ID
# - OPENID_PROVIDER_CLIENT_SECRET
# (with datastore cleanup)
# - SCHEMA_BUCKET
# - DATASTORE_NAMESPACE
# - DATASTORE_KIND
# - ENABLE_CLEANUP
#
set -e
source ./validate-env.sh "SCHEMA_URL"
source ./validate-env.sh "ENTITLEMENTS_HOST"
source ./validate-env.sh "ENABLE_CLEANUP"
bootstrap_schema_gettoken_onprem() {
......@@ -81,19 +74,8 @@ else
# Specifying "system" partition for GC installation
export DATA_PARTITION="system"
if [ "${ENABLE_CLEANUP}" == "true" ]
then
source ./validate-env.sh "SCHEMA_BUCKET"
source ./validate-env.sh "DATASTORE_NAMESPACE"
source ./validate-env.sh "DATASTORE_KIND"
echo "Started schema cleanup"
python3 ./scripts/schema-cleaner/main.py -u "${SCHEMA_URL}"/api/schema-service/v1/schemas/system
echo "Finished schema cleanup"
fi
# Get credentials for Google Cloud
bootstrap_schema_gettoken_gc
fi
# Precheck entitlements
......
......@@ -10,11 +10,5 @@ data:
DATA_PARTITION: {{ .Values.global.dataPartitionId | quote }}
{{- end }}
ONPREM_ENABLED: {{ .Values.global.onPremEnabled | quote }}
ENABLE_CLEANUP: {{ .Values.data.enableCleanup | quote }}
SCHEMA_URL: {{ .Values.data.schemaHost | quote }}
ENTITLEMENTS_HOST: {{ .Values.data.entitlementsHost | quote }}
{{- if .Values.data.enableCleanup }}
SCHEMA_BUCKET: {{ .Values.data.schemaBucket | quote }}
DATASTORE_NAMESPACE: {{ .Values.data.datastoreNamespace | quote }}
DATASTORE_KIND: {{ .Values.data.datastoreKind | quote }}
{{- end }}
ENTITLEMENTS_HOST: {{ .Values.data.entitlementsHost | quote }}
......@@ -12,10 +12,6 @@ data:
partitionHost: "http://partition"
schemaTopicName: "schema-changed"
schemaChangedMessagingEnabled: true
datastoreKind: "system_schema_osm"
datastoreNamespace: "dataecosystem"
enableCleanup: false
schemaBucket: ""
schemaHost: "http://schema"
#Deployments
requestsCpu: "220m"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment