Skip to content

Commit

Permalink
Create extensions.json (truecharts#28902)
Browse files Browse the repository at this point in the history
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

**➕ App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: alfi0812 <[email protected]>
  • Loading branch information
alfi0812 authored Nov 6, 2024
1 parent 81e76ce commit 8f43540
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
13 changes: 13 additions & 0 deletions clustertool/embed/generic/root/DOTREPLACEenvrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#shellcheck disable=SC2148,SC2155
export KUBECONFIG="$(expand_path ./kubeconfig)"
export SOPS_AGE_KEY_FILE="$(expand_path ./age.key)"
# Venv
PATH_add "$(expand_path ./.venv/bin)"
export VIRTUAL_ENV="$(expand_path ./.venv)"
export PYTHONDONTWRITEBYTECODE="1"
# Talos
export TALOSCONFIG="$(expand_path ./kubernetes/bootstrap/talos/clusterconfig/talosconfig)"
# Bin
PATH_add "$(expand_path ./.bin)"
# Krew
PATH_add "$HOME/.krew/bin"
1 change: 1 addition & 0 deletions clustertool/embed/generic/root/DOTREPLACEgitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ clustertool
sopssecret.yaml
sopssecret*
*sopssecret*
mounts/
18 changes: 18 additions & 0 deletions clustertool/embed/generic/root/DOTREPLACEvscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"recommendations": [
"albert.TabOut",
"mikestead.dotenv",
"mitchdenny.ecdc",
"signageos.signageos-vscode-sops",
"EditorConfig.editorconfig",
"PKief.material-icon-theme",
"usernamehw.errorlens",
"redhat.vscode-yaml",
"weaveworks.vscode-gitops-tools",
"Tim-Koehler.helm-intellisense",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"sandipchitale.vscode-kubernetes-helm-extras",
"VadzimNestsiarenka.helm-template-preview-and-more",
"karyan40024.helmix"
]
}
20 changes: 20 additions & 0 deletions clustertool/embed/generic/root/DOTREPLACEvscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"files.associations": {
"*.json5": "jsonc",
"./kubernetes/**/*.sops.toml": "plaintext"
},
"sops.defaults.ageKeyFile": "age.key",
"yaml.schemas": {
"Kubernetes": "./kubernetes/*.yaml"
},
"vs-kubernetes": {
"vs-kubernetes.kubeconfig": "/workspaces/cluster/kubeconfig",
"vs-kubernetes.knownKubeconfigs": ["/workspaces/cluster/kubeconfig"]
},
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/usr/bin/fish"
}
},
"terminal.integrated.defaultProfile.linux": "fish"
}

0 comments on commit 8f43540

Please sign in to comment.