Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: argoproj/argo-helm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: argo-cd-3.35.0
Choose a base ref
...
head repository: argoproj/argo-helm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: argo-cd-3.35.1
Choose a head ref
  • 4 commits
  • 5 files changed
  • 3 contributors

Commits on Mar 3, 2022

  1. fix(argo-workflows): Avoid "namespace: null" when singleNamespace is …

    …true (#1154)
    
    Signed-off-by: darklore <zodiac.brave.story@gmail.com>
    darklore authored Mar 3, 2022
    Copy the full SHA
    d30d850 View commit details

Commits on Mar 5, 2022

  1. fix(argo-workflows): Update argo workflows to v3.2.9 (#1156)

    Signed-off-by: darklore <zodiac.brave.story@gmail.com>
    darklore authored Mar 5, 2022
    Copy the full SHA
    cb6ef0c View commit details
  2. chore: Configure issue template chooser to disallow blank issues (#1157)

    Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
    mkilchhofer authored Mar 5, 2022
    Copy the full SHA
    430bb21 View commit details

Commits on Mar 6, 2022

  1. fix(argo-cd): Use upstream entrypoint.sh (#1159)

    Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
    jkroepke authored Mar 6, 2022
    Copy the full SHA
    f985751 View commit details
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
blank_issues_enabled: false

contact_links:
- name: Chat on Slack
url: https://argoproj.github.io/community/join-slack
about: Maybe chatting with the community can help
4 changes: 2 additions & 2 deletions charts/argo-cd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.2.5
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 3.35.0
version: 3.35.1
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
@@ -21,4 +21,4 @@ dependencies:
condition: redis-ha.enabled
annotations:
artifacthub.io/changes: |
- "[Added]: Expose 'clusterResources' parameter in configs.clusterCredentials"
- "[Changed]: Use upstream entrypoint.sh for argocd-repo-server"
2 changes: 2 additions & 0 deletions charts/argo-cd/templates/argocd-repo-server/deployment.yaml
Original file line number Diff line number Diff line change
@@ -40,6 +40,8 @@ spec:
- name: {{ .Values.repoServer.name }}
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy }}
command:
- entrypoint.sh
args:
- argocd-repo-server
{{- if or (and .Values.redis.enabled (not $redisHa.enabled)) (and $redisHa.enabled $redisHa.haproxy.enabled) }}
6 changes: 3 additions & 3 deletions charts/argo-workflows/Chart.yaml
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@ apiVersion: v2
name: argo-workflows
description: A Helm chart for Argo Workflows
type: application
version: 0.11.0
appVersion: v3.2.7
version: 0.11.2
appVersion: v3.2.9
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
home: https://github.com/argoproj/argo-helm
sources:
@@ -15,4 +15,4 @@ maintainers:
- name: benjaminws
annotations:
artifacthub.io/changes: |
- "[Added]: Workflow Controller Volumes and VolumeMounts parameters"
- "[Changed]: Update to app version v3.2.9"
4 changes: 3 additions & 1 deletion charts/argo-workflows/templates/controller/workflow-rb.yaml
Original file line number Diff line number Diff line change
@@ -5,7 +5,9 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: {{ template "argo-workflows.fullname" $ }}-workflow
namespace: {{ $namespace }}
{{- with $namespace }}
namespace: {{ . }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role