-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove trivy as it just does not work
- Loading branch information
1 parent
b687b3a
commit 641d464
Showing
5 changed files
with
14 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,35 +131,3 @@ jobs: | |
name: Test videos | ||
path: integration/cypress/videos/ | ||
retention-days: 14 | ||
|
||
trivy: | ||
runs-on: ubuntu-latest | ||
needs: [frontend, backend, marketing] | ||
steps: | ||
- name: Trivy - Frontend | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/frontend:alpha | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" | ||
- name: Trivy - Backend | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/backend:alpha | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" | ||
- name: Trivy - Marketing | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/marketing:alpha | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,35 +159,3 @@ jobs: | |
name: Test videos | ||
path: integration/cypress/videos/ | ||
retention-days: 14 | ||
|
||
trivy: | ||
runs-on: ubuntu-latest | ||
needs: [frontend, backend, marketing] | ||
steps: | ||
- name: Trivy - Frontend | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/frontend:canary | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" | ||
- name: Trivy - Backend | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/backend:canary | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" | ||
- name: Trivy - Marketing | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: retrospected/marketing:canary | ||
format: "table" | ||
exit-code: "1" | ||
ignore-unfixed: true | ||
vuln-type: "os,library" | ||
severity: "CRITICAL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,11 @@ services: | |
image: retrospected/backend:canary | ||
depends_on: | ||
- redis | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:3201/healthz"] | ||
interval: 2s | ||
timeout: 5s | ||
retries: 30 | ||
environment: | ||
SELF_HOSTED_ADMIN: '[email protected]' | ||
DB_PASSWORD: some-password | ||
|
@@ -43,7 +48,8 @@ services: | |
frontend: | ||
image: retrospected/frontend:canary | ||
depends_on: | ||
- backend | ||
backend: | ||
condition: service_healthy | ||
restart: unless-stopped | ||
logging: | ||
driver: 'json-file' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,11 @@ services: | |
image: retrospected/backend:latest | ||
depends_on: | ||
- redis | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:3201/healthz"] | ||
interval: 2s | ||
timeout: 5s | ||
retries: 30 | ||
environment: | ||
SELF_HOSTED_ADMIN: '[email protected]' | ||
DB_PASSWORD: some-password | ||
|
@@ -43,7 +48,8 @@ services: | |
frontend: | ||
image: retrospected/frontend:latest | ||
depends_on: | ||
- backend | ||
backend: | ||
condition: service_healthy | ||
restart: unless-stopped | ||
logging: | ||
driver: 'json-file' | ||
|