Initial commit

This commit is contained in:
2026-04-26 17:22:42 +02:00
commit c7842b9f3b
9 changed files with 117 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{Makefile,**.mk}]
# Use tabs for indentation (Makefiles require tabs)
indent_style = tab
+30
View File
@@ -0,0 +1,30 @@
name: docker-build mr
on:
push:
branches-ignore:
- main
jobs:
dockerfile_lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
build:
# needs: dockerfile_lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Kaniko build
uses: aevea/action-kaniko@master
with:
image: rogersik/ubuntu-xrdp
registry: gitea.sikorski.cloud
tag: "latest-dev"
cache: true
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}
+32
View File
@@ -0,0 +1,32 @@
---
name: docker-build main
on:
push:
branches:
- main
jobs:
dockerfile_lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
build:
# needs: dockerfile_lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Kaniko build
# https://github.com/aevea/action-kaniko/releases
uses: aevea/action-kaniko@v0.12.0
with:
image: rogersik/ubuntu-xrdp
registry: gitea.sikorski.cloud
tag: 'latest'
# tag_with_latest: true # https://github.com/aevea/action-kaniko/issues/66
cache: true
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}
+6
View File
@@ -0,0 +1,6 @@
# k8s
secret.yml
secret.yaml
# dev
.local
+2
View File
@@ -0,0 +1,2 @@
ignored:
- DL3008 # no need to pin versions
+10
View File
@@ -0,0 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"EditorConfig.EditorConfig",
// Code formatter using prettier
"esbenp.prettier-vscode",
"gamunu.opentofu"
]
}
+15
View File
@@ -0,0 +1,15 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"vs-kubernetes": {
"disable-linters": ["resource-limits"]
},
"[terraform]": {
"editor.defaultFormatter": "gamunu.opentofu"
},
"files.associations": {
".env*": "plaintext",
".gitignore": "plaintext"
}
}
+4
View File
@@ -0,0 +1,4 @@
FROM ubuntu:latest
# https://github.com/hadolint/hadolint/wiki/DL4006
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
+2
View File
@@ -0,0 +1,2 @@
# VSCode Template