-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge development into master (#308)
Co-authored-by: Goncharenko Alexander <[email protected]> Co-authored-by: Anatol Karalkoŭ <[email protected]> Co-authored-by: denanmusinovic <[email protected]> Co-authored-by: Denan Musinovic <[email protected]> Co-authored-by: Oleg <[email protected]> Co-authored-by: gornication <[email protected]> Co-authored-by: Alexander Goncharenko <[email protected]> Co-authored-by: Maxim Ashin <[email protected]>
- Loading branch information
1 parent
97fd509
commit b4643b6
Showing
67 changed files
with
1,989 additions
and
1,174 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 |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
push: | ||
branches: | ||
- master | ||
- development | ||
- experimental | ||
|
||
jobs: | ||
packages: | ||
|
@@ -18,8 +20,23 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Bright Security" | ||
- name: Change name to development | ||
if: ${{ github.ref == 'refs/heads/development' }} | ||
run: | | ||
sed -i 's/brokencrystals/brokencrystals-dev/g' ./charts/brokencrystals/Chart.yaml | ||
sed -i 's/brkn/brkn-dev/g' ./charts/brokencrystals/Chart.yaml | ||
- name: Change values to development | ||
if: ${{ github.ref == 'refs/heads/development' }} | ||
run: | | ||
sed -i 's/^ main:.*/ main: development/' ./charts/brokencrystals/values.yaml | ||
sed -i 's/^ client:.*/ client: development/' ./charts/brokencrystals/values.yaml | ||
- name: Release packages | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
CR_SKIP_EXISTING: true | ||
|
||
|
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
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
62 changes: 0 additions & 62 deletions
62
charts/brokencrystals/templates/bc-postgres-deployment.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
91 changes: 0 additions & 91 deletions
91
charts/brokencrystals/templates/bc-prod-proxy-deployment.yaml
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
charts/brokencrystals/templates/config-keycloak-postgres.yaml
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "brokencrystals.fullname" . }}-keycloak-postgres | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
postgresql.conf.sample: | | ||
listen_addresses = '*' | ||
port = 5433 |
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
Oops, something went wrong.