Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update domsed charts to 1.3.3 #16

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update domsed charts to 1.3.3
  • Loading branch information
ddl-wadkars committed May 10, 2024
commit 09cc8dc2e3c3eced5297e8e566be2ff70bc6694b
2 changes: 1 addition & 1 deletion domsed/helm/domsed/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: domsed-domino
version: 1.3.2
version: 1.3.3
description: Mutating Webhook domino
home: https://github.com/cerebrotech/domsed.git
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,25 @@ spec:
required:
- name
- value
artifactory:
type: object
properties:
image-pull-secret:
type: string
secret-ns:
type: string
artifactory-dns:
type: string
duration-seconds:
type: integer
build-arg-name:
type: string
required:
- image-pull-secret
- secret-ns
- artifactory-dns
- duration-seconds
- build-arg-name
jqSelector:
type: object
required:
Expand Down Expand Up @@ -519,7 +538,13 @@ spec:
x-kubernetes-preserve-unknown-fields: true

addLdapSupplementalGroups:
type: string

type: object
properties:
use_groups:
type: boolean
default: true
user_attribute:
type: string
default: ""
subresources:
status: {}
2 changes: 1 addition & 1 deletion domsed/helm/domsed/templates/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ webhooks:
- "rayclusters"
- "imagebuilds"
scope: "Namespaced"
failurePolicy: Fail
failurePolicy: "{{ .Values.mutation.failurePolicy }}"
timeoutSeconds: !!int "{{ .Values.mutation.timeoutSeconds | default 10 }}"
2 changes: 1 addition & 1 deletion domsed/helm/domsed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ image:
repository: quay.io/domino
container: domsed

appVersion: v1.3.2-release
appVersion: v1.3.3-release
pullPolicy: Always

replicas: 1
Expand Down