Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ea85986

Browse files
authoredSep 3, 2020
Refactor and Knative (#4)
- Knative Type backend - Ansible based automation - README updates - Apps refactored out to its own repo
1 parent 7f6a475 commit ea85986

File tree

112 files changed

+2055
-4108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+2055
-4108
lines changed
 

‎.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = false
8+
insert_final_newline = false
9+
10+
[Makefile]
11+
indent_style = tab

‎.gitignore

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
11
target
22
*.class
33
token.yaml
4-
.vscode/
4+
env/envvars
5+
env/extravars
6+
env/extravars.*
7+
!env/extravars.example
8+
project/keys
9+
!project/keys/README.md
10+
project/.ansible
11+
out/**
12+
!out/.gitkeep
13+
artifacts/**
14+
!artifacts/.gitkeep
15+
inventory/**
16+
!inventory/hostsdocs.old
17+
.cache
18+
inventory/*
19+
!inventory/README.md
20+
!inventory/hosts.example
21+
!cluster/project/playbook.yml
22+
**/.kube/*
23+
**/inventory/*
24+
**/.ansible
25+
cluster/project/bin/*
26+
cluster/project/.argocd/*
27+
!cluster/project/bin/.gitkeep
28+
!cluster/inventory/hosts/hosts.example
29+
**/*.log

0 commit comments

Comments
 (0)
Please sign in to comment.