Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlesne committed Mar 30, 2023
2 parents 5923d44 + c9370ec commit b67deed
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 22 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ jobs:

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Download Helm chart
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -112,8 +112,8 @@ jobs:

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Version
id: version
Expand Down Expand Up @@ -150,6 +150,13 @@ jobs:
type=schedule
type=semver,pattern={{version}},value=${{ steps.version.outputs.version_full }}
type=sha
labels: |
io.artifacthub.package.category=integration-delivery
io.artifacthub.package.keywords=agent,azure,azure-devops,azure-pipelines,container,devops,docker,helm,kubernetes,pipelines
io.artifacthub.package.logo-url=https://raw.githubusercontent.com/${{ env.CONTAINER_NAME }}/${{ github.sha }}/logo.svg
io.artifacthub.package.maintainers=[{"name":"${{ github.actor }}","email":"${{ github.actor }}@users.noreply.github.com"}]
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ env.CONTAINER_NAME }}/${{ github.sha }}/README.md
io.artifacthub.package.license=MIT
- name: Build/push container
uses: docker/build-push-action@v4
Expand Down
9 changes: 9 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2023 Clémence Lesné, [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 2 additions & 2 deletions artifacthub-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# See: https://artifacthub.io/packages/search?repo=azure-pipelines-agent
repositoryID: 9cc083d3-128e-4cbb-934f-8c62b42ef538
owners:
- name: Clémence Lesné
email: [email protected]
- name: clemlesne
email: [email protected]
29 changes: 16 additions & 13 deletions src/helm/azure-pipelines-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ version: 0.0.0
appVersion: 0.0.0
icon: https://raw.githubusercontent.com/clemlesne/azure-pipelines-agent/master/logo.svg
keywords:
- agent
- azure
- azure-devops
- azure-pipelines
- container
- devops
- docker
- helm
- kubernetes
- pipelines
- agent
- azure
- azure-devops
- azure-pipelines
- container
- devops
- docker
- helm
- kubernetes
- pipelines
home: https://github.com/clemlesne/azure-pipelines-agent
sources:
- https://github.com/clemlesne/azure-pipelines-agent
- https://github.com/clemlesne/azure-pipelines-agent
maintainers:
- name: clemlesne
email: [email protected]
- name: clemlesne
email: [email protected]
annotations:
artifacthub.io/category: integration-delivery
artifacthub.io/license: MIT
2 changes: 1 addition & 1 deletion src/helm/azure-pipelines-agent/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}-{{ .Values.image.tagSuffix | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: AZP_AGENT_NAME
Expand Down
4 changes: 2 additions & 2 deletions src/helm/azure-pipelines-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
replicaCount: 1

image:
repository: ghcr.io/clemlesne/azure-pipelines-agent:bullseye-main
repository: ghcr.io/clemlesne/azure-pipelines-agent:bullseye
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tagSuffix: ""

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit b67deed

Please sign in to comment.