-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
47a809b
commit 62d4a28
Showing
11 changed files
with
262 additions
and
178 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json", | ||
"name": "ClusterTool Cluster", | ||
"image": "tccr.io/tccr/devcontainer:v1.0.0-RC28", | ||
"initializeCommand": "docker pull tccr.io/tccr/devcontainer:v1.0.0-RC28", | ||
"postCreateCommand": { | ||
"setup": "bash ${containerWorkspaceFolder}/.devcontainer/postCreateCommand.sh" | ||
}, | ||
"postStartCommand": { | ||
"git": "git config --global --add safe.directory ${containerWorkspaceFolder}" | ||
}, | ||
"postAttachCommand": "fish", | ||
"updateRemoteUserUID": false, | ||
"runArgs": ["--privileged"] | ||
} |
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,18 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
set -o noglob | ||
|
||
# Setup fisher plugin manager for fish and install plugins | ||
/usr/bin/fish -c " | ||
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher | ||
fisher install decors/fish-colored-man | ||
fisher install edc/bass | ||
fisher install jorgebucaran/autopair.fish | ||
fisher install nickeb96/puffer-fish | ||
fisher install PatrickF1/fzf.fish | ||
" | ||
|
||
# Create/update virtual environment | ||
if ! grep -q "venv /workspaces/" .venv/pyvenv.cfg; then | ||
rm -rf .venv | ||
fi |
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,23 @@ | ||
name: Automerge and Approve | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Placeholder"] # Name of the main CI workflow | ||
types: | ||
- completed | ||
|
||
jobs: | ||
automerge: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- id: automerge | ||
name: automerge | ||
uses: "pascalgn/[email protected]" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
UPDATE_RETRIES: 24 | ||
UPDATE_RETRY_SLEEP: 60000 | ||
MERGE_METHOD: "squash" |
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,19 @@ | ||
name: "Placeholder" | ||
|
||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.head_ref }}-placeholder | ||
# cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
placeholder: | ||
name: Placeholder PR Tests | ||
runs-on: ubuntu-latest | ||
if: always() | ||
steps: | ||
- name: Check Results | ||
run: | | ||
echo "Placeholder Finished" |
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
Large diffs are not rendered by default.
Oops, something went wrong.
149 changes: 76 additions & 73 deletions
149
clusters/main/kubernetes/flux-system/flux/clustersettings.secret.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,3 +9,4 @@ resources: | |
- ./upgradesettings.yaml | ||
- ./namespace.yaml | ||
# - sopsscret.secret.yaml | ||
# - sopssecret.secret.yaml |
Oops, something went wrong.