Skip to content
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
44 changes: 44 additions & 0 deletions bundle/manifests/k8s-nim-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1388,6 +1388,8 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
- name: ENABLE_WEBHOOKS
value: "true"
image: 'ghcr.io/nvidia/k8s-nim-operator:main'
imagePullPolicy: Always
livenessProbe:
Expand Down Expand Up @@ -1445,3 +1447,45 @@ spec:
supported: false
- type: AllNamespaces
supported: true
webhookdefinitions:
- type: ValidatingAdmissionWebhook
admissionReviewVersions:
- v1
containerPort: 9443
targetPort: 9443
deploymentName: k8s-nim-operator
failurePolicy: Fail
generateName: vnimcache-v1alpha1.kb.io
rules:
- apiGroups:
- apps.nvidia.com
apiVersions:
- v1alpha1
operations:
- CREATE
- UPDATE
resources:
- nimcaches
sideEffects: None
webhookPath: /validate-apps-nvidia-com-v1alpha1-nimcache
- type: ValidatingAdmissionWebhook
admissionReviewVersions:
- v1
containerPort: 9443
targetPort: 9443
deploymentName: k8s-nim-operator
failurePolicy: Fail
generateName: vnimservice-v1alpha1.kb.io
rules:
- apiGroups:
- apps.nvidia.com
apiVersions:
- v1alpha1
operations:
- CREATE
- UPDATE
resources:
- nimservices
sideEffects: None
webhookPath: /validate-apps-nvidia-com-v1alpha1-nimservice

4 changes: 2 additions & 2 deletions deployments/container/bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ LABEL com.redhat.delivery.operator.bundle=true
LABEL com.redhat.delivery.backport=false
LABEL vsc-ref=${GIT_COMMIT}

COPY bundle/${VERSION}/manifests /manifests/
COPY bundle/${VERSION}/metadata /metadata/
COPY bundle/manifests /manifests/
COPY bundle/metadata /metadata/
COPY bundle/tests/scorecard /tests/scorecard/
Loading