Skip to content

Commit

Permalink
Fixing syntax error in configmap
Browse files Browse the repository at this point in the history
  • Loading branch information
chris.ditcher authored and chris.ditcher committed Sep 10, 2024
1 parent 6a6bea1 commit 3f9224c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ echo Creating config map "$APP_NAME"-config-map
oc create -n "$GRAD_NAMESPACE"-"$envValue" configmap "$APP_NAME"-config-map \
--from-literal=APP_LOG_LEVEL="$APP_LOG_LEVEL" \
--from-literal=BASELINE_ON_MIGRATE="true" \
--from-literal=CRON_SCHEDULED_PURGE_OLD_RECORDS: "0 0 0 * * *" \
--from-literal=RECORDS_STALE_IN_DAYS: 365 \
--from-literal=CRON_SCHEDULED_PURGE_OLD_RECORDS="0 0 0 * * *" \
--from-literal=RECORDS_STALE_IN_DAYS=365 \
--from-literal=CRON_SCHEDULED_GRAD_TO_TRAX_EVENTS="0 0/5 * * * *" \
--from-literal=CRON_SCHEDULED_GRAD_TO_TRAX_EVENTS_LOCK_AT_LEAST_FOR="PT1M" \
--from-literal=CRON_SCHEDULED_GRAD_TO_TRAX_EVENTS_LOCK_AT_MOST_FOR="PT5M" \
Expand All @@ -82,4 +82,4 @@ echo Creating config map "$APP_NAME"-flb-sc-config-map
oc create -n "$GRAD_NAMESPACE"-"$envValue" configmap "$APP_NAME"-flb-sc-config-map \
--from-literal=fluent-bit.conf="$FLB_CONFIG" \
--from-literal=parsers.conf="$PARSER_CONFIG" \
--dry-run=client -o yaml | oc apply -f -
--dry-run=client -o yaml | oc apply -f -

0 comments on commit 3f9224c

Please sign in to comment.