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 Apr 3, 2023
2 parents 6d419e6 + 17ede97 commit 422c8bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ jobs:
file: src/docker/Dockerfile-${{ matrix.os }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.arch }}
provenance: true
push: true
sbom: true
tags: ${{ steps.meta.outputs.tags }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Features:
- Compatible with Debian, Ubuntu and Red Hat LTS releases.
- SBOM (Software Bill of Materials) is packaged with each container image.
- System updates are applied every days.
- Systems are based on [Microsoft official .NET images](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about).
- Systems are based on [Microsoft official .NET images](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) and [Red Hat Universal Base Image](https://catalog.redhat.com/software/containers/ubi8/ubi-minimal/5c359a62bed8bd75a2c3fba8).

## Usage

Expand Down Expand Up @@ -81,7 +81,7 @@ helm upgrade --install agent clemlesne-azure-pipelines-agent/azure-pipelines-age
| `image.flavor` | Container image tag | `bullseye` |
| `image.pullPolicy` | Container image pull policy | `Always` if `image.tag` is `latest`, else `IfNotPresent` |
| `image.repository` | Container image repository | `ghcr.io/clemlesne/azure-pipelines-agent:bullseye` |
| `image.version` | Container image tag | *App version* |
| `image.version` | Container image tag | *Version* |
| `initContainers` | InitContainers for the agent pod. | `[]` |
| `nameOverride` | Overrides release name | `""` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
Expand Down
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 @@ -36,7 +36,7 @@ spec:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.flavor }}-{{ .Values.image.version | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.flavor }}-{{ .Values.image.version | default .Chart.Version }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: AZP_AGENT_NAME
Expand Down

0 comments on commit 422c8bf

Please sign in to comment.