Compare commits
No commits in common. "2a5139e9b04ed73ea8d0922657017ba017afd42c" and "907bb83ef40d2c35149bd68ab00da7286829aeb3" have entirely different histories.
2a5139e9b0
...
907bb83ef4
@ -1,10 +1,7 @@
|
|||||||
name: Lint and Test Charts
|
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:
|
jobs:
|
||||||
lint-test:
|
lint-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -13,7 +10,7 @@ jobs:
|
|||||||
name: Check out code
|
name: Check out code
|
||||||
|
|
||||||
- uses: mr-smithers-excellent/docker-build-push@v6
|
- uses: mr-smithers-excellent/docker-build-push@v6
|
||||||
name: Build & push Container image
|
name: Build & push Docker image
|
||||||
with:
|
with:
|
||||||
image: library/azure-agent
|
image: library/azure-agent
|
||||||
registry: repo.rre.nu
|
registry: repo.rre.nu
|
||||||
|
@ -28,11 +28,8 @@ jobs:
|
|||||||
files: 'charts/**'
|
files: 'charts/**'
|
||||||
|
|
||||||
- name: List all changed files
|
- name: List all changed files
|
||||||
env:
|
|
||||||
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
||||||
run: |
|
run: |
|
||||||
echo "performing lint"
|
for file in ${{ steps.changed-files.output_all_changed_files }}; do
|
||||||
for file in ${ALL_CHANGED_FILES}; do
|
|
||||||
echo "$file was changed"
|
echo "$file was changed"
|
||||||
helm lint $file
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
stringData:
|
stringData:
|
||||||
AZP_POOL: {{ .Values.azure.pool }}
|
AZP_POOL: {{ .Values.azure.pool }}
|
||||||
AZP_TOKEN: {{ .Values.azure.token }}
|
AZP_TOKEN: {{ .Values.azure.token }}
|
||||||
AZP_URL: {{ .Values.azure.url }}
|
AZP_URL {{ .Values.azure.url }}
|
||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "az-agent.fullname" . }}
|
name: {{ include "az-agent.fullname" . }}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
# Default values for az-agent.
|
# Default values for az-agent.
|
||||||
# This is a YAML-formatted file. sdf
|
# This is a YAML-formatted file. sdf
|
||||||
|
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
azure:
|
azure:
|
||||||
url:
|
url
|
||||||
pool:
|
pool:
|
||||||
token:
|
token:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user