Enable CI with Azure Pipelines
This commit is contained in:
Родитель
9e758a6948
Коммит
9826f37158
|
@ -0,0 +1,29 @@
|
|||
variables:
|
||||
KUBECTL_VERSION: v1.9.6
|
||||
HELM_VERSION: v2.8.2
|
||||
HELM_PATH: $(System.DefaultWorkingDirectory)/helm
|
||||
|
||||
steps:
|
||||
- task: HelmInstaller@0
|
||||
inputs:
|
||||
helmVersion: $(HELM_VERSION)
|
||||
kubectlVersion: $(KUBECTL_VERSION)
|
||||
installKubectl: true
|
||||
displayName: 'Install helm'
|
||||
|
||||
- script: |
|
||||
helm --version
|
||||
helm init --client-only
|
||||
helm repo add stable https://kubernetes-charts.storage.googleapis.com
|
||||
for chart in $(find . -name 'requirements.yaml'); do
|
||||
helm dep build $(dirname ${chart})
|
||||
done
|
||||
displayName: 'Initialize helm'
|
||||
|
||||
- script: |
|
||||
helm lint charts/vsts-agent
|
||||
displayName: 'Helm lint'
|
||||
|
||||
- script: |
|
||||
helm template charts/vsts-agent
|
||||
displayName: 'Helm template'
|
26
.travis.yml
26
.travis.yml
|
@ -1,26 +0,0 @@
|
|||
language: generic
|
||||
|
||||
env:
|
||||
global:
|
||||
- KUBECTL_VERSION="v1.9.6"
|
||||
- HELM_VERSION="v2.8.2"
|
||||
|
||||
install:
|
||||
- wget https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -O /tmp/kubectl
|
||||
- chmod +x /tmp/kubectl
|
||||
- wget http://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz -O /tmp/helm.tar.gz
|
||||
- tar xzf /tmp/helm.tar.gz -C /tmp --strip-components=1
|
||||
- chmod +x /tmp/helm
|
||||
- export PATH=$PATH:/tmp
|
||||
|
||||
before_script:
|
||||
- helm init --client-only
|
||||
- helm repo add stable https://kubernetes-charts.storage.googleapis.com
|
||||
- |
|
||||
for chart in $(find . -name 'requirements.yaml'); do
|
||||
helm dep build $(dirname ${chart})
|
||||
done
|
||||
|
||||
script:
|
||||
- helm lint charts/vsts-agent
|
||||
- helm template charts/vsts-agent
|
|
@ -1,6 +1,6 @@
|
|||
## Introduction
|
||||
|
||||
[![Build Status](https://travis-ci.org/Azure/helm-vsts-agent.svg?branch=master)](https://travis-ci.org/Azure/helm-vsts-agent)
|
||||
[![Build Status](https://dev.azure.com/azure/helm-vsts-agent/_apis/build/status/Azure.helm-vsts-agent?branchName=master)](https://dev.azure.com/azure/helm-vsts-agent/_build/latest?definitionId=12?branchName=master)
|
||||
|
||||
This chart bootstraps a [Visual Studio Team Services agent pool](https://github.com/Microsoft/vsts-agent) on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче