Skip to content

Commit

Permalink
Merge pull request #10 from lalithkota/develop-G2P-2355
Browse files Browse the repository at this point in the history
Triggering new helm chart build
  • Loading branch information
lalithkota authored Jun 19, 2024
2 parents 80c9ec7 + c26d1b3 commit 369bf0a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,22 @@ jobs:
REPORTING_INIT_SERVICE_NAME: reporting-init-shell-tools
steps:
- uses: actions/checkout@v3
- id: files
uses: jitterbit/get-changed-files@v1
- name: Docker build OS Kafka Connector
run: |
OS_KAFKA_CONNECTOR_DOCKER_BUILD="false"
for changed_file in ${{ steps.files.outputs.all }}; do
if [[ ${changed_file} =~ ^[opensearch-kafka-connector] ]]; then
OS_KAFKA_CONNECTOR_DOCKER_BUILD="true"
break
fi
done
if [ "$OS_KAFKA_CONNECTOR_DOCKER_BUILD" = "true" ]; then
echo "Nothing to build!"
exit 0;
fi
BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,')
OS_KAFKA_CONNECTOR_IMAGE_ID=$NAMESPACE/$OS_KAFKA_CONNECTOR_SERVICE_NAME
Expand Down Expand Up @@ -49,6 +63,18 @@ jobs:
docker push ${{ env.OS_KAFKA_CONNECTOR_IMAGE_ID }}:${{ env.OS_KAFKA_CONNECTOR_VERSION }}
- name: Docker build Reporting Init
run: |
REPORTING_INIT_DOCKER_BUILD="false"
for changed_file in ${{ steps.files.outputs.all }}; do
if [[ ${changed_file} =~ ^[reporting-init-docker] ]]; then
REPORTING_INIT_DOCKER_BUILD="true"
break
fi
done
if [ "$REPORTING_INIT_DOCKER_BUILD" != "true" ]; then
echo "Nothing to build!"
exit 0;
fi
BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,')
REPORTING_INIT_IMAGE_ID=$NAMESPACE/$REPORTING_INIT_SERVICE_NAME
Expand Down
1 change: 0 additions & 1 deletion charts/debezium/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ extraVolumes: []
##
extraVolumeMounts: []


kafkaBootstrapServers: '{{ .Release.Name }}-kafka:9092'

## For full list of available environment variables,
Expand Down
1 change: 0 additions & 1 deletion charts/opensearch-kafka-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ extraVolumes: []
##
extraVolumeMounts: []


kafkaBootstrapServers: '{{ .Release.Name }}-kafka:9092'

## For full list of available environment variables,
Expand Down
2 changes: 2 additions & 0 deletions charts/reporting-init/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ extraVolumes: []
extraVolumeMounts: []

debeziumConnectorConfigMap: ""

opensearchConnectorConfigMap: ""

dashboardsConnectorConfigMap: ""

gitConfig:
Expand Down
2 changes: 1 addition & 1 deletion charts/reporting/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
charts/
charts/*.tgz
Chart.lock
1 change: 1 addition & 0 deletions charts/reporting/charts/debezium
1 change: 1 addition & 0 deletions charts/reporting/charts/opensearch-kafka-connector

0 comments on commit 369bf0a

Please sign in to comment.