Skip to content

Commit

Permalink
- remove prod tunnel
Browse files Browse the repository at this point in the history
- turn off tests
  • Loading branch information
elipe17 committed Nov 13, 2024
1 parent b40c243 commit 6fd3a9b
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 57 deletions.
112 changes: 56 additions & 56 deletions .circleci/build-and-test/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
when: << pipeline.parameters.build_and_test_all >>
jobs:
- secrets-check
- test-backend:
requires:
- secrets-check
- test-frontend:
requires:
- secrets-check
- test-e2e:
requires:
- secrets-check
# - test-backend:
# requires:
# - secrets-check
# - test-frontend:
# requires:
# - secrets-check
# - test-e2e:
# requires:
# - secrets-check

ci-build-and-test-all:
jobs:
Expand All @@ -22,52 +22,52 @@
- main
- master
- /^release.*/
- test-backend:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- test-frontend:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- test-e2e:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- make_erd: # from ../util folder
filters:
branches:
only:
- develop
- master
# - test-backend:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - test-frontend:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - test-e2e:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - make_erd: # from ../util folder
# filters:
# branches:
# only:
# - develop
# - master

build-and-test-backend:
when: << pipeline.parameters.build_and_test_backend >>
jobs:
- secrets-check
- test-backend:
requires:
- secrets-check
# build-and-test-backend:
# when: << pipeline.parameters.build_and_test_backend >>
# jobs:
# - secrets-check
# - test-backend:
# requires:
# - secrets-check

build-and-test-frontend:
when: << pipeline.parameters.build_and_test_frontend >>
jobs:
- secrets-check
- test-frontend:
requires:
- secrets-check
# build-and-test-frontend:
# when: << pipeline.parameters.build_and_test_frontend >>
# jobs:
# - secrets-check
# - test-frontend:
# requires:
# - secrets-check
2 changes: 1 addition & 1 deletion scripts/deploy-backend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ update_plg_networking() {
cf target -o hhs-acf-ofa -s "$CF_SPACE"

# Promtial needs to send logs to Loki
cf add-network-policy "$CGAPPNAME_BACKEND" loki -s "tanf-prod" --protocol tcp --port 8080
cf add-network-policy "$CGAPPNAME_BACKEND" loki --protocol tcp --port 8080

# Add network policy allowing Grafana to talk to the backend and to allow the backend to talk to Grafana
# TODO: to avoid having to target the prod space, move the network policies from grafana to an app to plg/deploy.sh
Expand Down

0 comments on commit 6fd3a9b

Please sign in to comment.