Charts CI
``` Updated: argo/argo-cd: - 6.7.13 haproxy/haproxy: - 1.39.1 metallb/metallb: - 0.14.5 ```pull/1015/head
parent
4c4c366a7c
commit
26c8760ba4
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
description: Bump argo-cd to v2.10.7
|
||||
description: Bump argocd-extension-installer to v0.0.5
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
|
@ -33,4 +33,4 @@ name: argo-cd
|
|||
sources:
|
||||
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
|
||||
- https://github.com/argoproj/argo-cd
|
||||
version: 6.7.12
|
||||
version: 6.7.13
|
||||
|
|
|
@ -950,7 +950,7 @@ NAME: my-release
|
|||
| server.extensions.extensionList | list | `[]` (See [values.yaml]) | Extensions for Argo CD |
|
||||
| server.extensions.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Image pull policy for extensions |
|
||||
| server.extensions.image.repository | string | `"quay.io/argoprojlabs/argocd-extension-installer"` | Repository to use for extension installer image |
|
||||
| server.extensions.image.tag | string | `"v0.0.1"` | Tag to use for extension installer image |
|
||||
| server.extensions.image.tag | string | `"v0.0.5"` | Tag to use for extension installer image |
|
||||
| server.extensions.resources | object | `{}` | Resource limits and requests for the argocd-extensions container |
|
||||
| server.extraArgs | list | `[]` | Additional command line arguments to pass to Argo CD server |
|
||||
| server.extraContainers | list | `[]` | Additional containers to be added to the server pod |
|
||||
|
|
|
@ -1682,7 +1682,7 @@ server:
|
|||
# -- Repository to use for extension installer image
|
||||
repository: "quay.io/argoprojlabs/argocd-extension-installer"
|
||||
# -- Tag to use for extension installer image
|
||||
tag: "v0.0.1"
|
||||
tag: "v0.0.5"
|
||||
# -- Image pull policy for extensions
|
||||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: ""
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- Use Ingress Controller 1.11.3 version for base image
|
||||
- Add more permissions needed for techdump tool
|
||||
- Parametrize metrics service type (#231)
|
||||
- Require K8s >= 1.23.0
|
||||
- Remove techdump toggle entirely
|
||||
catalog.cattle.io/certified: partner
|
||||
catalog.cattle.io/display-name: HAProxy Kubernetes Ingress Controller
|
||||
catalog.cattle.io/kube-version: '>=1.23.0-0'
|
||||
|
@ -24,4 +21,4 @@ name: haproxy
|
|||
sources:
|
||||
- https://github.com/haproxytech/kubernetes-ingress
|
||||
type: application
|
||||
version: 1.39.0
|
||||
version: 1.39.1
|
||||
|
|
|
@ -23,7 +23,7 @@ Service ports mapped are:
|
|||
containerPort: {{ $value }}
|
||||
protocol: TCP
|
||||
{{- end }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- name: quic
|
||||
containerPort: {{ .Values.controller.containerPort.https }}
|
||||
protocol: UDP
|
||||
|
@ -49,7 +49,7 @@ Service ports mapped are:
|
|||
hostIP: {{ $hostIP }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- name: quic
|
||||
containerPort: {{ .Values.controller.containerPort.https }}
|
||||
protocol: UDP
|
||||
|
|
|
@ -130,7 +130,6 @@ rules:
|
|||
verbs:
|
||||
- update
|
||||
{{- end }}
|
||||
{{- if .Values.controller.techdump.enabled }}
|
||||
- apiGroups:
|
||||
- "apps"
|
||||
resources:
|
||||
|
@ -141,5 +140,4 @@ rules:
|
|||
- get
|
||||
- list
|
||||
- watch
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
|
|
@ -101,7 +101,7 @@ spec:
|
|||
- --configmap={{ include "kubernetes-ingress.namespace" . }}/{{ include "kubernetes-ingress.fullname" . }}
|
||||
- --http-bind-port={{ .Values.controller.containerPort.http }}
|
||||
- --https-bind-port={{ .Values.controller.containerPort.https }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- --quic-bind-port={{ .Values.controller.containerPort.https }}
|
||||
- --quic-announce-port={{ .Values.controller.service.ports.https }}
|
||||
{{- end }}
|
||||
|
@ -151,7 +151,7 @@ spec:
|
|||
hostIP: {{ $hostIP }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- name: quic
|
||||
containerPort: {{ .Values.controller.containerPort.https }}
|
||||
protocol: UDP
|
||||
|
|
|
@ -101,7 +101,7 @@ spec:
|
|||
- --configmap={{ include "kubernetes-ingress.namespace" . }}/{{ include "kubernetes-ingress.fullname" . }}
|
||||
- --http-bind-port={{ .Values.controller.containerPort.http }}
|
||||
- --https-bind-port={{ .Values.controller.containerPort.https }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- --quic-bind-port={{ .Values.controller.containerPort.https }}
|
||||
- --quic-announce-port={{ .Values.controller.service.ports.https }}
|
||||
{{- end }}
|
||||
|
@ -145,7 +145,7 @@ spec:
|
|||
containerPort: {{ $value }}
|
||||
protocol: TCP
|
||||
{{- end }}
|
||||
{{- if semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version }}
|
||||
{{- if and (semverCompare ">=1.24.0-0" .Capabilities.KubeVersion.Version) .Values.controller.service.enablePorts.quic }}
|
||||
- name: quic
|
||||
containerPort: {{ .Values.controller.containerPort.https }}
|
||||
protocol: UDP
|
||||
|
|
|
@ -560,8 +560,3 @@ controller:
|
|||
path: /metrics
|
||||
scheme: http
|
||||
interval: 30s
|
||||
|
||||
## Techdump
|
||||
## Toggle to add the RBAC permissions needed for the techdump tool.
|
||||
techdump:
|
||||
enabled: false
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
dependencies:
|
||||
- name: crds
|
||||
repository: ""
|
||||
version: 0.14.4
|
||||
version: 0.14.5
|
||||
- name: frr-k8s
|
||||
repository: https://metallb.github.io/frr-k8s
|
||||
version: 0.0.10
|
||||
digest: sha256:b86c6655696e26961e41859b7b88c31797091692d910c7d1baae05af8591c937
|
||||
generated: "2024-03-26T16:10:37.59968399+01:00"
|
||||
version: 0.0.11
|
||||
digest: sha256:d427d5fe27f36681760453c22f8df5664e1d04b33bc6f495b46a6645d68b46ec
|
||||
generated: "2024-04-19T16:34:12.167710407+02:00"
|
||||
|
|
|
@ -5,16 +5,16 @@ annotations:
|
|||
catalog.cattle.io/namespace: metallb-system
|
||||
catalog.cattle.io/release-name: metallb
|
||||
apiVersion: v2
|
||||
appVersion: v0.14.4
|
||||
appVersion: v0.14.5
|
||||
dependencies:
|
||||
- condition: crds.enabled
|
||||
name: crds
|
||||
repository: file://./charts/crds
|
||||
version: 0.14.4
|
||||
version: 0.14.5
|
||||
- condition: frrk8s.enabled
|
||||
name: frr-k8s
|
||||
repository: file://./charts/frr-k8s
|
||||
version: 0.0.10
|
||||
version: 0.0.11
|
||||
description: A network load-balancer implementation for Kubernetes using standard
|
||||
routing protocols
|
||||
home: https://metallb.universe.tf
|
||||
|
@ -24,4 +24,4 @@ name: metallb
|
|||
sources:
|
||||
- https://github.com/metallb/metallb
|
||||
type: application
|
||||
version: 0.14.4
|
||||
version: 0.14.5
|
||||
|
|
|
@ -17,7 +17,7 @@ Kubernetes: `>= 1.19.0-0`
|
|||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| | crds | 0.0.0 |
|
||||
| https://metallb.github.io/frr-k8s | frr-k8s | 0.0.10 |
|
||||
| https://metallb.github.io/frr-k8s | frr-k8s | 0.0.11 |
|
||||
|
||||
## Values
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: v0.14.4
|
||||
appVersion: v0.14.5
|
||||
description: MetalLB CRDs
|
||||
home: https://metallb.universe.tf
|
||||
icon: https://metallb.universe.tf/images/logo/metallb-white.png
|
||||
|
@ -7,4 +7,4 @@ name: crds
|
|||
sources:
|
||||
- https://github.com/metallb/metallb
|
||||
type: application
|
||||
version: 0.14.4
|
||||
version: 0.14.5
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
dependencies:
|
||||
- name: crds
|
||||
repository: ""
|
||||
version: 0.0.10
|
||||
digest: sha256:b92d4dc6adb2f6a3b4279cd0f2b134b659950bd605bb710cb70f7add611f0f6e
|
||||
generated: "2024-02-21T14:41:51.446359887+01:00"
|
||||
version: 0.0.11
|
||||
digest: sha256:d4f716be0c84de180654aad05ce63aa91826873eaec2dd18e0fb5d7842a9d527
|
||||
generated: "2024-04-04T14:08:46.064693384+02:00"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
apiVersion: v2
|
||||
appVersion: v0.0.10
|
||||
appVersion: v0.0.11
|
||||
dependencies:
|
||||
- condition: crds.enabled
|
||||
name: crds
|
||||
repository: ""
|
||||
version: 0.0.10
|
||||
version: 0.0.11
|
||||
description: A cloud native wrapper of FRR
|
||||
home: https://metallb.universe.tf
|
||||
icon: https://metallb.universe.tf/images/logo/metallb-white.png
|
||||
|
@ -13,4 +13,4 @@ name: frr-k8s
|
|||
sources:
|
||||
- https://github.com/metallb/frr-k8s
|
||||
type: application
|
||||
version: 0.0.10
|
||||
version: 0.0.11
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# frr-k8s
|
||||
|
||||
![Version: 0.0.10](https://img.shields.io/badge/Version-0.0.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.0.10](https://img.shields.io/badge/AppVersion-v0.0.10-informational?style=flat-square)
|
||||
![Version: 0.0.11](https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.0.11](https://img.shields.io/badge/AppVersion-v0.0.11-informational?style=flat-square)
|
||||
|
||||
A cloud native wrapper of FRR
|
||||
|
||||
|
@ -16,7 +16,7 @@ Kubernetes: `>= 1.19.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| | crds | 0.0.10 |
|
||||
| | crds | 0.0.11 |
|
||||
|
||||
## Values
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: v0.0.10
|
||||
appVersion: v0.0.11
|
||||
description: FRR K8s CRDs
|
||||
home: https://metallb.universe.tf
|
||||
icon: https://metallb.universe.tf/images/logo/metallb-white.png
|
||||
|
@ -7,4 +7,4 @@ name: crds
|
|||
sources:
|
||||
- https://github.com/metallb/frr-k8s
|
||||
type: application
|
||||
version: 0.0.10
|
||||
version: 0.0.11
|
||||
|
|
|
@ -158,6 +158,12 @@ spec:
|
|||
of seconds
|
||||
rule: duration(self).getMilliseconds() % 1000 ==
|
||||
0
|
||||
disableMP:
|
||||
default: false
|
||||
description: To set if we want to disable MP BGP that
|
||||
will separate IPv4 and IPv6 route exchanges into
|
||||
distinct BGP sessions.
|
||||
type: boolean
|
||||
ebgpMultiHop:
|
||||
description: EBGPMultiHop indicates if the BGPPeer
|
||||
is multi-hops away.
|
||||
|
|
104
index.yaml
104
index.yaml
|
@ -244,7 +244,7 @@ entries:
|
|||
- annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
description: Bump argo-cd to v2.10.7
|
||||
description: Bump argocd-extension-installer to v0.0.5
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
|
@ -255,7 +255,7 @@ entries:
|
|||
catalog.cattle.io/release-name: argo-cd
|
||||
apiVersion: v2
|
||||
appVersion: v2.10.7
|
||||
created: "2024-04-16T10:49:51.810387823-06:00"
|
||||
created: "2024-04-20T00:52:18.340754134Z"
|
||||
dependencies:
|
||||
- condition: redis-ha.enabled
|
||||
name: redis-ha
|
||||
|
@ -263,7 +263,46 @@ entries:
|
|||
version: 4.26.1
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
|
||||
tool for Kubernetes.
|
||||
digest: d5112a9a9dc29ed5c6323dfd53c1d5c5aa5d2ccc787441b7f85525a90524d87e
|
||||
digest: 5cd532c42a1885e396561e3f50a1cfc99ea52aeeb25719bdacac4ddcb4242706
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
- argoproj
|
||||
- argocd
|
||||
- gitops
|
||||
kubeVersion: '>=1.23.0-0'
|
||||
maintainers:
|
||||
- name: argoproj
|
||||
url: https://argoproj.github.io/
|
||||
name: argo-cd
|
||||
sources:
|
||||
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
|
||||
- https://github.com/argoproj/argo-cd
|
||||
urls:
|
||||
- assets/argo/argo-cd-6.7.13.tgz
|
||||
version: 6.7.13
|
||||
- annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
description: Bump argo-cd to v2.10.7
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
catalog.cattle.io/certified: partner
|
||||
catalog.cattle.io/display-name: Argo CD
|
||||
catalog.cattle.io/kube-version: '>=1.23.0-0'
|
||||
catalog.cattle.io/release-name: argo-cd
|
||||
apiVersion: v2
|
||||
appVersion: v2.10.7
|
||||
created: "2024-04-20T00:52:09.464702704Z"
|
||||
dependencies:
|
||||
- condition: redis-ha.enabled
|
||||
name: redis-ha
|
||||
repository: file://./charts/redis-ha
|
||||
version: 4.26.1
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
|
||||
tool for Kubernetes.
|
||||
digest: ff5e93212268ac45273f5de5aa032afc562c691536b4516f381e6a6638b58c2d
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -22072,6 +22111,34 @@ entries:
|
|||
- assets/gopaddle/gopaddle-4.2.5.tgz
|
||||
version: 4.2.5
|
||||
haproxy:
|
||||
- annotations:
|
||||
artifacthub.io/changes: |
|
||||
- Remove techdump toggle entirely
|
||||
catalog.cattle.io/certified: partner
|
||||
catalog.cattle.io/display-name: HAProxy Kubernetes Ingress Controller
|
||||
catalog.cattle.io/kube-version: '>=1.23.0-0'
|
||||
catalog.cattle.io/release-name: haproxy
|
||||
apiVersion: v2
|
||||
appVersion: 1.11.3
|
||||
created: "2024-04-20T00:52:19.766116777Z"
|
||||
description: A Helm chart for HAProxy Kubernetes Ingress Controller
|
||||
digest: 37faab98b43e32809e44923eadad703141491598ba820a412fcf09e29adff735
|
||||
home: https://github.com/haproxytech/helm-charts/tree/main/kubernetes-ingress
|
||||
icon: https://raw.githubusercontent.com/haproxytech/helm-charts/main/kubernetes-ingress/chart-icon.png
|
||||
keywords:
|
||||
- ingress
|
||||
- haproxy
|
||||
kubeVersion: '>=1.23.0-0'
|
||||
maintainers:
|
||||
- email: dkorunic@haproxy.com
|
||||
name: Dinko Korunic
|
||||
name: haproxy
|
||||
sources:
|
||||
- https://github.com/haproxytech/kubernetes-ingress
|
||||
type: application
|
||||
urls:
|
||||
- assets/haproxy/haproxy-1.39.1.tgz
|
||||
version: 1.39.1
|
||||
- annotations:
|
||||
artifacthub.io/changes: |
|
||||
- Use Ingress Controller 1.11.3 version for base image
|
||||
|
@ -35166,6 +35233,37 @@ entries:
|
|||
- assets/loft/loft-2.2.101.tgz
|
||||
version: 2.2.101
|
||||
metallb:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: partner
|
||||
catalog.cattle.io/display-name: MetalLB
|
||||
catalog.cattle.io/kube-version: '>= 1.19.0-0'
|
||||
catalog.cattle.io/namespace: metallb-system
|
||||
catalog.cattle.io/release-name: metallb
|
||||
apiVersion: v2
|
||||
appVersion: v0.14.5
|
||||
created: "2024-04-20T00:52:22.273537026Z"
|
||||
dependencies:
|
||||
- condition: crds.enabled
|
||||
name: crds
|
||||
repository: file://./charts/crds
|
||||
version: 0.14.5
|
||||
- condition: frrk8s.enabled
|
||||
name: frr-k8s
|
||||
repository: file://./charts/frr-k8s
|
||||
version: 0.0.11
|
||||
description: A network load-balancer implementation for Kubernetes using standard
|
||||
routing protocols
|
||||
digest: 83cb85da29b1007a4002280f5c8c93f50420793e550012270fe10e2e3790335a
|
||||
home: https://metallb.universe.tf
|
||||
icon: https://metallb.universe.tf/images/logo/metallb-blue.png
|
||||
kubeVersion: '>= 1.19.0-0'
|
||||
name: metallb
|
||||
sources:
|
||||
- https://github.com/metallb/metallb
|
||||
type: application
|
||||
urls:
|
||||
- assets/metallb/metallb-0.14.5.tgz
|
||||
version: 0.14.5
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: partner
|
||||
catalog.cattle.io/display-name: MetalLB
|
||||
|
|
Loading…
Reference in New Issue