Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: helm rollout check with digest #1535

Merged
merged 5 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
working-directory: ${{ inputs.directory }}
shell: bash
run: |
echo tags are ${{ inputs.backend_tag }} ${{ inputs.migrations_tag }} ${{ inputs.frontend_tag }}
# Login to OpenShift (NOTE: project command is a safeguard)
oc login --token=${{ secrets.oc_token }} --server=${{ vars.oc_server }}
oc project ${{ vars.oc_namespace }}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ Features:
* Sandboxed development environments
* Gateable production deployments
* Container publishing (ghcr.io) and importing (OpenShift)
* Security, vulnerability, infrastructure and container scan tools
* Security, vulnerability, infrastructure, and container scan tools
* Automatic dependency patching available from [bcgov/nr-renovate](https://github.com/bcgov/nr-renovate)
* Enforced code reviews and workflow jobs (pass|fail)
* Helm Package Manager for atomic deployments
* Sample application stack:
* Database: Postgres, PostGIS, backups
* Frontend: TypeScript, Caddy Server
Expand Down
4 changes: 2 additions & 2 deletions charts/quickstart-openshift/values-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ backend:
protocol: TCP
resources: # this is optional
limits:
cpu: 150m
cpu: 250m
memory: 250Mi
requests:
cpu: 100m
Expand Down Expand Up @@ -95,7 +95,7 @@ backend:
value: "quickstart"
resources:
limits:
cpu: 250m
cpu: 500m
memory: 250Mi
requests:
cpu: 200m
Expand Down
6 changes: 3 additions & 3 deletions charts/quickstart-openshift/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ backend:
protocol: TCP
resources: # this is optional
limits:
cpu: 150m
cpu: 250m
memory: 250Mi
requests:
cpu: 75m
cpu: 100m
memory: 150Mi
readinessProbe:
httpGet:
Expand Down Expand Up @@ -87,7 +87,7 @@ backend:
value: "quickstart"
resources:
limits:
cpu: 250m
cpu: 500m
memory: 250Mi
requests:
cpu: 200m
Expand Down