Skip to content

Commit

Permalink
1.10.0-beta7
Browse files Browse the repository at this point in the history
Signed-off-by: David VIEJO <dviejo@kungfusoftware.es>
  • Loading branch information
dviejokfs committed Jan 25, 2024
1 parent 04f1ba3 commit fd53ab8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 73 deletions.
2 changes: 1 addition & 1 deletion chart/hlf-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.10.0-beta5
version: 1.10.0-beta7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,77 +884,6 @@ spec:
items:
type: string
type: array
credentials:
nullable: true
properties:
cahost:
type: string
caname:
type: string
caport:
type: integer
catls:
properties:
cacert:
type: string
secretRef:
nullable: true
properties:
key:
type: string
name:
type: string
namespace:
type: string
required:
- key
- name
- namespace
type: object
required:
- cacert
type: object
csr:
properties:
cn:
type: string
hosts:
items:
type: string
type: array
type: object
enrollid:
type: string
enrollsecret:
type: string
external:
nullable: true
properties:
certificateKey:
type: string
privateKeyKey:
type: string
rootCertificateKey:
type: string
secretName:
type: string
secretNamespace:
type: string
required:
- certificateKey
- privateKeyKey
- rootCertificateKey
- secretName
- secretNamespace
type: object
required:
- cahost
- caname
- caport
- catls
- enrollid
- enrollsecret
type: object
env:
items:
description: EnvVar represents an environment variable present in
Expand Down
10 changes: 10 additions & 0 deletions chart/hlf-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ spec:
{{ if .Values.certificates.renewal.identity.enabled }}
- --auto-renew-identity-certificates=true
- --auto-renew-identity-certificates-delta={{ .Values.certificates.renewal.identity.delta }}
{{- end }}
{{ if .Values.helm.wait }}
- --helm-chart-wait=true
- --helm-chart-wait-timeout={{ .Values.helm.waitTimeout }}
{{- end }}
{{ if .Values.helm.maxHistory}}
- --helm-max-history={{ .Values.helm.maxHistory }}
{{- end }}
{{ if .Values.maxReconciles }}
- --max-reconciles={{ .Values.maxReconciles }}
{{- end }}
command:
- /hlf-operator
Expand Down
9 changes: 8 additions & 1 deletion chart/hlf-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ image:
repository: quay.io/kfsoftware/hlf-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v1.10.0-beta5"
tag: "v1.10.0-beta7"

maxReconciles: 10

helm:
wait: false
maxHistory: 10
waitTimeout: "5m" # only needed if wait is enabled

certificates:
renewal:
Expand Down

0 comments on commit fd53ab8

Please sign in to comment.