Compare commits
12 Commits
907bb83ef4
...
2a5139e9b0
Author | SHA1 | Date | |
---|---|---|---|
|
2a5139e9b0 | ||
|
2a40a55649 | ||
|
3897cb8ee7 | ||
|
184cc663d9 | ||
|
ab9a1d385f | ||
|
6fdcccff69 | ||
|
6007cc9f09 | ||
|
4990e6fae9 | ||
|
f64d3eba0f | ||
|
c7f0e3071a | ||
|
0ec7ec199a | ||
|
3633fb4a59 |
@ -1,7 +1,10 @@
|
||||
name: Lint and Test Charts
|
||||
|
||||
on: []
|
||||
|
||||
on:
|
||||
push:
|
||||
# Pattern matched against refs/tags
|
||||
tags:
|
||||
- '**' # Push events to every tag including hierarchical tags like v1.0/beta
|
||||
jobs:
|
||||
lint-test:
|
||||
runs-on: ubuntu-latest
|
||||
@ -10,7 +13,7 @@ jobs:
|
||||
name: Check out code
|
||||
|
||||
- uses: mr-smithers-excellent/docker-build-push@v6
|
||||
name: Build & push Docker image
|
||||
name: Build & push Container image
|
||||
with:
|
||||
image: library/azure-agent
|
||||
registry: repo.rre.nu
|
||||
|
@ -28,8 +28,11 @@ jobs:
|
||||
files: 'charts/**'
|
||||
|
||||
- name: List all changed files
|
||||
env:
|
||||
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
run: |
|
||||
for file in ${{ steps.changed-files.output_all_changed_files }}; do
|
||||
echo "performing lint"
|
||||
for file in ${ALL_CHANGED_FILES}; do
|
||||
echo "$file was changed"
|
||||
helm lint $file
|
||||
done
|
||||
|
||||
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||
stringData:
|
||||
AZP_POOL: {{ .Values.azure.pool }}
|
||||
AZP_TOKEN: {{ .Values.azure.token }}
|
||||
AZP_URL {{ .Values.azure.url }}
|
||||
AZP_URL: {{ .Values.azure.url }}
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ include "az-agent.fullname" . }}
|
||||
|
@ -1,10 +1,9 @@
|
||||
# Default values for az-agent.
|
||||
# This is a YAML-formatted file. sdf
|
||||
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
azure:
|
||||
url
|
||||
url:
|
||||
pool:
|
||||
token:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user