Skip to content

Commit

Permalink
fixed path in .flux
Browse files Browse the repository at this point in the history
  • Loading branch information
kafkasl committed Jul 19, 2023
1 parent 459d8bb commit 3c00414
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .flux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
namespace: FILLED_IN_BY_CI
spec:
interval: 5m0s
url: https://github.com/hms-dbmi-cellenics/iac
url: FILLED_IN_BY_CI
ref:
branch: FILLED_IN_BY_CI
---
Expand Down Expand Up @@ -82,9 +82,9 @@ spec:
# its own health checks/cordoning
readinessProbe:
probeType: exec
command: ["echo", "0"]
command: ['echo', '0']
loadBalancerHealthCheck:
path: "/robots.txt"
path: '/robots.txt'
periodSeconds: 30
livenessProbe:
probeType: tcpSocket
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ jobs:
- id: check-licenses
name: Check licenses
env:
ALLOWED_LICENSES: "MIT;Apache-2.0;BSD-3-Clause;ISC;BSD-2-Clause;BSD;CC0-1.0;0BSD;Unlicense;(MIT AND Zlib);(Unlicense OR Apache-2.0);BSD-3-Clause OR MIT;(MIT OR Apache-2.0);CC-BY-4.0;Apache-Style;(Apache-2.0 OR MPL-1.1);WTFPL;(WTFPL OR MIT);EPL-1.0;(MIT AND BSD-3-Clause);(MIT OR CC0-1.0);Custom: https://github.com/aws-amplify/amplify-js;SGI-B-2.0"
EXCLUDE_PACKAGES: "[email protected];[email protected];[email protected];[email protected];[email protected]"
ALLOWED_LICENSES: 'MIT;Apache-2.0;BSD-3-Clause;ISC;BSD-2-Clause;BSD;CC0-1.0;0BSD;Unlicense;(MIT AND Zlib);(Unlicense OR Apache-2.0);BSD-3-Clause OR MIT;(MIT OR Apache-2.0);CC-BY-4.0;Apache-Style;(Apache-2.0 OR MPL-1.1);WTFPL;(WTFPL OR MIT);EPL-1.0;(MIT AND BSD-3-Clause);(MIT OR CC0-1.0);Custom: https://github.com/aws-amplify/amplify-js;SGI-B-2.0'
EXCLUDE_PACKAGES: '[email protected];[email protected];[email protected];[email protected];[email protected]'
run: |-
npm install -g license-checker
license-checker --production --json --onlyAllow="${ALLOWED_LICENSES}" --excludePackages="${EXCLUDE_PACKAGES}"
Expand Down Expand Up @@ -315,6 +315,7 @@ jobs:
select(di == 0).metadata.labels.sandboxId = strenv(SANDBOX_ID) |
select(di == 1).metadata.name = strenv(CHART_SOURCE_NAME) |
select(di == 1).metadata.namespace = strenv(NAMESPACE) |
select(di == 1).spec.url = "https://github.com/" + strenv(GITHUB_REPOSITORY_OWNER ) + "/iac" |
select(di == 1).spec.ref.branch = strenv(CHART_REF) |
select(di == 2).metadata.name = strenv(DEPLOYMENT_NAME) |
select(di == 2).metadata.namespace = strenv(NAMESPACE) |
Expand Down

0 comments on commit 3c00414

Please sign in to comment.