initial commit
All checks were successful
Build and Publish TechDocs (Helm Chart Resource) / build-and-publish-helm-chart (push) Successful in 1m9s
All checks were successful
Build and Publish TechDocs (Helm Chart Resource) / build-and-publish-helm-chart (push) Successful in 1m9s
Change-Id: I26d65d84aa31f5cc4cc0835e3fb7269fedc73b45
This commit is contained in:
100
.gitignore
vendored
Normal file
100
.gitignore
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
# Java / Maven
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
*.class
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
*.iml
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Build artifacts
|
||||
build/
|
||||
dist/
|
||||
out/
|
||||
|
||||
# Helm Chart
|
||||
helm/charts/
|
||||
helm/*.lock
|
||||
Chart.lock
|
||||
*.tgz
|
||||
|
||||
# Kubernetes / Helm
|
||||
k8s/values-*.yaml
|
||||
k8s/generated/
|
||||
k8s/manifests/
|
||||
|
||||
# Environment-specific configs
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
# Adding these two support multiple backstage environments with different values files
|
||||
# values-development.yaml
|
||||
# values-staging.yaml
|
||||
# values-production.yaml
|
||||
|
||||
# Secrets and credentials
|
||||
secrets/
|
||||
*-secret.yaml
|
||||
*.key
|
||||
*.pem
|
||||
.ssh/
|
||||
|
||||
# Test coverage
|
||||
coverage/
|
||||
.coverage
|
||||
|
||||
# Terraform (if using Helm provider)
|
||||
.terraform/
|
||||
*.tfstate
|
||||
*.tfstate.backup
|
||||
terraform.tfvars
|
||||
.terraformrc
|
||||
|
||||
# Docker
|
||||
docker-compose.override.yml
|
||||
.dockerignore
|
||||
|
||||
# IDE generated files
|
||||
*.iws
|
||||
*.ipr
|
||||
|
||||
# Node dependencies (if UI component exists)
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# Python environment
|
||||
__pycache__/
|
||||
*.pyc
|
||||
venv/
|
||||
env/
|
||||
|
||||
# IDEs
|
||||
.vscode/
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Temp files
|
||||
*.tmp
|
||||
*.bak
|
||||
.cache/
|
||||
|
||||
# Generated files
|
||||
dist/
|
||||
build/
|
||||
Reference in New Issue
Block a user