fix linter and flux paths

This commit is contained in:
Lee 2024-09-23 10:13:51 +01:00
parent cea3b46673
commit 7a0bade84f
4 changed files with 8 additions and 7 deletions

@ -4,16 +4,17 @@ on:
push: push:
branches: [main, master] branches: [main, master]
paths: paths:
- "apps/**" - "kubernetes/apps/**"
pull_request: pull_request:
paths: paths:
- "apps/**" - "kubernetes/apps/**"
jobs: jobs:
scan: scan:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout
uses: actions/checkout@v4
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
@ -36,4 +37,4 @@ jobs:
- name: Scan yaml files with kube-linter - name: Scan yaml files with kube-linter
run: | run: |
kube-linter lint ./apps kube-linter lint .kubernetes/apps

@ -11,6 +11,6 @@ spec:
sourceRef: sourceRef:
kind: GitRepository kind: GitRepository
name: flux-system name: flux-system
path: ./apps/production path: ./kubernetes/apps/production
prune: true prune: true
wait: true wait: true

@ -20,7 +20,7 @@ metadata:
namespace: flux-system namespace: flux-system
spec: spec:
interval: 10m0s interval: 10m0s
path: ./clusters/production path: ./kubernetes/clusters/production
prune: true prune: true
sourceRef: sourceRef:
kind: GitRepository kind: GitRepository

@ -9,6 +9,6 @@ spec:
sourceRef: sourceRef:
kind: GitRepository kind: GitRepository
name: flux-system name: flux-system
path: ./infrastructure path: ./kubernetes/infrastructure
prune: true prune: true
wait: true wait: true