generated from RogerSik/vscode-template
Initial commit
This commit is contained in:
@@ -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
|
||||||
@@ -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 }}
|
||||||
@@ -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 }}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# k8s
|
||||||
|
secret.yml
|
||||||
|
secret.yaml
|
||||||
|
|
||||||
|
# dev
|
||||||
|
.local
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
ignored:
|
||||||
|
- DL3008 # no need to pin versions
|
||||||
Vendored
+10
@@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+15
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# https://github.com/hadolint/hadolint/wiki/DL4006
|
||||||
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
Reference in New Issue
Block a user