-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
358 changed files
with
5,610 additions
and
7,535 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
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,33 @@ | ||
name: Mirror dev to GitLab | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
mirror: | ||
if: github.repository == 'accessibility-exchange/platform' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "${{ vars.GIT_USER }}" | ||
git config --global user.email "${{ vars.GIT_EMAIL }}" | ||
git remote add gitlab ${{ vars.GITLAB_URL }} | ||
- name: Setup SSH | ||
uses: webfactory/ssh-agent@v0.7.0 | ||
with: | ||
ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} | ||
|
||
- name: Push to GitLab | ||
run: | | ||
ssh-keyscan git.kube.v1.colab.coop >> ~/.ssh/known_hosts | ||
git push gitlab dev:development |
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,33 @@ | ||
name: Mirror production to GitLab | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
|
||
jobs: | ||
mirror: | ||
if: github.repository == 'accessibility-exchange/platform' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "${{ vars.GIT_USER }}" | ||
git config --global user.email "${{ vars.GIT_EMAIL }}" | ||
git remote add gitlab ${{ vars.GITLAB_URL }} | ||
- name: Setup SSH | ||
uses: webfactory/ssh-agent@v0.7.0 | ||
with: | ||
ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} | ||
|
||
- name: Push to GitLab | ||
run: | | ||
ssh-keyscan git.kube.v1.colab.coop >> ~/.ssh/known_hosts | ||
git push gitlab production:production |
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,33 @@ | ||
name: Mirror staging to GitLab | ||
|
||
on: | ||
push: | ||
branches: | ||
- staging | ||
|
||
jobs: | ||
mirror: | ||
if: github.repository == 'accessibility-exchange/platform' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "${{ vars.GIT_USER }}" | ||
git config --global user.email "${{ vars.GIT_EMAIL }}" | ||
git remote add gitlab ${{ vars.GITLAB_URL }} | ||
- name: Setup SSH | ||
uses: webfactory/ssh-agent@v0.7.0 | ||
with: | ||
ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} | ||
|
||
- name: Push to GitLab | ||
run: | | ||
ssh-keyscan git.kube.v1.colab.coop >> ~/.ssh/known_hosts | ||
git push gitlab staging:staging |
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,33 @@ | ||
name: Mirror tags to GitLab | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
mirror: | ||
if: github.repository == 'accessibility-exchange/platform' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "${{ vars.GIT_USER }}" | ||
git config --global user.email "${{ vars.GIT_EMAIL }}" | ||
git remote add gitlab ${{ vars.GITLAB_URL }} | ||
- name: Setup SSH | ||
uses: webfactory/ssh-agent@v0.7.0 | ||
with: | ||
ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} | ||
|
||
- name: Push tags to GitLab | ||
run: | | ||
ssh-keyscan git.kube.v1.colab.coop >> ~/.ssh/known_hosts | ||
git push gitlab --tags |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
primary: | ||
configuration: |- | ||
[mysqld] | ||
basedir=/opt/bitnami/mysql | ||
bind-address=0.0.0.0 | ||
character-set-server=UTF8 | ||
collation-server=utf8_general_ci | ||
datadir=/bitnami/mysql/data | ||
default_authentication_plugin=mysql_native_password | ||
explicit_defaults_for_timestamp | ||
innodb_buffer_pool_size=1G | ||
innodb_doublewrite=1 | ||
innodb_flush_log_at_trx_commit=1 | ||
innodb_flush_method=O_DIRECT | ||
innodb_lock_wait_timeout=100 | ||
innodb_log_buffer_size=16M | ||
innodb_max_dirty_pages_pct=80 | ||
innodb_thread_concurrency=0 | ||
log-error=/opt/bitnami/mysql/logs/mysqld.log | ||
long_query_time=20.0 | ||
max_allowed_packet=16M | ||
pid-file=/opt/bitnami/mysql/tmp/mysqld.pid | ||
plugin_dir=/opt/bitnami/mysql/lib/plugin | ||
port=3306 | ||
skip-name-resolve | ||
slow_query_log=1 | ||
slow_query_log_file=/opt/bitnami/mysql/logs/mysqld.log | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
table_definition_cache=2048 | ||
table_open_cache=512 | ||
tmpdir=/opt/bitnami/mysql/tmp | ||
[client] | ||
default-character-set=UTF8 | ||
plugin_dir=/opt/bitnami/mysql/lib/plugin | ||
port=3306 | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
[manager] | ||
pid-file=/opt/bitnami/mysql/tmp/mysqld.pid | ||
port=3306 | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
secondary: | ||
configuration: |- | ||
[mysqld] | ||
basedir=/opt/bitnami/mysql | ||
bind-address=0.0.0.0 | ||
character-set-server=UTF8 | ||
collation-server=utf8_general_ci | ||
datadir=/bitnami/mysql/data | ||
default_authentication_plugin=mysql_native_password | ||
explicit_defaults_for_timestamp | ||
innodb_buffer_pool_size=1G | ||
innodb_doublewrite=1 | ||
innodb_flush_log_at_trx_commit=1 | ||
innodb_flush_method=O_DIRECT | ||
innodb_lock_wait_timeout=100 | ||
innodb_log_buffer_size=16M | ||
innodb_max_dirty_pages_pct=80 | ||
innodb_thread_concurrency=0 | ||
log-error=/opt/bitnami/mysql/logs/mysqld.log | ||
long_query_time=20.0 | ||
max_allowed_packet=16M | ||
pid-file=/opt/bitnami/mysql/tmp/mysqld.pid | ||
plugin_dir=/opt/bitnami/mysql/lib/plugin | ||
port=3306 | ||
skip-name-resolve | ||
slow_query_log=1 | ||
slow_query_log_file=/opt/bitnami/mysql/logs/mysqld.log | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
table_definition_cache=2048 | ||
table_open_cache=512 | ||
tmpdir=/opt/bitnami/mysql/tmp | ||
[client] | ||
default-character-set=UTF8 | ||
plugin_dir=/opt/bitnami/mysql/lib/plugin | ||
port=3306 | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
[manager] | ||
pid-file=/opt/bitnami/mysql/tmp/mysqld.pid | ||
port=3306 | ||
socket=/opt/bitnami/mysql/tmp/mysql.sock | ||
### Place those values in Vault | ||
# auth: | ||
# database: "" | ||
# username: "" | ||
# password: "" | ||
# rootPassword: "" | ||
# replicationPassword: "" |
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.