Skip to content

Commit

Permalink
Added mtls initContainer patch
Browse files Browse the repository at this point in the history
Added env & volume patches

Client changes

fix GetDomain method
  • Loading branch information
Bobbins228 committed Apr 12, 2024
1 parent 5cb51fc commit b6421bd
Show file tree
Hide file tree
Showing 6 changed files with 536 additions and 53 deletions.
5 changes: 4 additions & 1 deletion raycluster_webhook/config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
runAsUser: 1234
containers:
- name: server
image: quay.io/rh_ee_egallina/altwebhook:v89
image: quay.io/mcampbel/webhook:v6
imagePullPolicy: Always
ports:
- containerPort: 8443
Expand Down Expand Up @@ -59,6 +59,9 @@ rules:
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "watch", "list"]
- apiGroups: ["route.openshift.io"]
resources: ["routes"]
verbs: ["get", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down
6 changes: 4 additions & 2 deletions raycluster_webhook/src/go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module Webhook

go 1.20
go 1.21

require (
github.com/openshift/api v0.0.0-20240405191225-abd990ce290b
github.com/ray-project/kuberay/ray-operator v1.1.0
k8s.io/api v0.29.3
k8s.io/apimachinery v0.29.3
k8s.io/client-go v0.29.3
sigs.k8s.io/controller-runtime v0.17.3
sigs.k8s.io/yaml v1.4.0
)

require (
Expand Down Expand Up @@ -37,6 +37,7 @@ require (
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/openshift/client-go v0.0.0-20240408153607-64bd6feb83ae
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.18.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
Expand All @@ -63,4 +64,5 @@ require (
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)
Loading

0 comments on commit b6421bd

Please sign in to comment.