Compare commits
1 commit
main
...
cdi-v1.59.
Author | SHA1 | Date | |
---|---|---|---|
bcd6f8a284 |
5 changed files with 5315 additions and 4 deletions
|
@ -11,14 +11,14 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=github-releases depName=kubevirt/containerized-data-importer
|
# renovate: datasource=github-releases depName=kubevirt/containerized-data-importer
|
||||||
KUBEVIRTCDI_VERSION: v1.60.3
|
KUBEVIRTCDI_VERSION: v1.59.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fetch-upstream:
|
fetch-upstream:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
|
@ -11,14 +11,14 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=github-releases depName=kubevirt/kubevirt
|
# renovate: datasource=github-releases depName=kubevirt/kubevirt
|
||||||
KUBEVIRT_VERSION: v1.3.1
|
KUBEVIRT_VERSION: v1.2.2
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fetch-upstream:
|
fetch-upstream:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
5285
deploy/1-cdi-operator.yaml
Normal file
5285
deploy/1-cdi-operator.yaml
Normal file
File diff suppressed because it is too large
Load diff
18
deploy/2-cdi-cr.yaml
Normal file
18
deploy/2-cdi-cr.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: cdi.kubevirt.io/v1beta1
|
||||||
|
kind: CDI
|
||||||
|
metadata:
|
||||||
|
name: cdi
|
||||||
|
spec:
|
||||||
|
config:
|
||||||
|
featureGates:
|
||||||
|
- HonorWaitForFirstConsumer
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
infra:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/os: linux
|
||||||
|
tolerations:
|
||||||
|
- key: CriticalAddonsOnly
|
||||||
|
operator: Exists
|
||||||
|
workload:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/os: linux
|
8
deploy/kustomization.yaml
Normal file
8
deploy/kustomization.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://json.schemastore.org/kustomization.json
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- 1-cdi-operator.yaml
|
||||||
|
- 2-cdi-cr.yaml
|
||||||
|
|
Loading…
Reference in a new issue