UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 54ed5188 authored by Rob Mengert's avatar Rob Mengert
Browse files

Merge branch '2-update-kubevirt-https-github-com-kubevirt-kubevirt-to-v0-53-1' into 'main'

Resolve "Update [Kubevirt](https://github.com/kubevirt/kubevirt) to v0.53.1" [SKIP INTEGRATION]

Closes #2

See merge request platform-one/big-bang/apps/third-party/kubevirt!16
parents d106eae9 f6abc515
No related branches found
No related tags found
1 merge request!16Resolve "Update [Kubevirt](https://github.com/kubevirt/kubevirt) to v0.53.1" [SKIP INTEGRATION]
Pipeline #836440 failed
......@@ -2,12 +2,10 @@
Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## [0.1.3-alpha-bb.3] - unreleased
## [0.1.3-alpha-bb.4] - unreleased
- Update Kubevirt to v0.53.1
- Script written with skopeo in order to synchronize images between public locations and repo1
## [0.1.3-alpha-bb.1] - unreleased
- Pipeline fixes
## [0.1.3-alpha-bb.0] - 2022-06-24
- Initial Chart creation
\ No newline at end of file
# kubevirt
![Version: 0.1.3-alpha-bb.3](https://img.shields.io/badge/Version-0.1.3--alpha--bb.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.53.0](https://img.shields.io/badge/AppVersion-0.53.0-informational?style=flat-square)
![Version: 0.1.3-alpha-bb.4](https://img.shields.io/badge/Version-0.1.3--alpha--bb.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.53.1](https://img.shields.io/badge/AppVersion-0.53.1-informational?style=flat-square)
KubeVirt Big Bang package
......@@ -33,7 +33,7 @@ helm install kubevirt chart/
| deployment.spec.replicas | int | `2` | replica count |
| deployment.spec.template.spec.containers.image.name | string | `"virt-operator"` | |
| deployment.spec.template.spec.containers.image.registry | string | `"registry.dso.mil/platform-one/big-bang/apps/third-party/kubevirt"` | |
| deployment.spec.template.spec.containers.image.version | string | `"v0.53.0"` | |
| deployment.spec.template.spec.containers.image.version | string | `"v0.53.1"` | |
| deployment.spec.template.spec.containers.command.port | int | `8443` | |
| deployment.spec.template.spec.containers.command.verbosity | int | `2` | |
| deployment.spec.template.spec.containers.ports.metricsPort | int | `8443` | |
......
......@@ -2,5 +2,5 @@ apiVersion: v2
name: kubevirt
description: KubeVirt Big Bang package
type: application
version: 0.1.3-alpha-bb.3
appVersion: "0.53.0"
version: 0.1.3-alpha-bb.4
appVersion: "0.53.1"
apiVersion: v1
kind: Pod
apiVersion: batch/v1
kind: Job
metadata:
name: kubevirt-service-test
annotations:
"helm.sh/hook": test
# post-install was deploying this job immediately with helm install
"helm.sh/hook-delete-policy": hook-succeeded
spec:
containers:
- command: ["/bin/sh"]
args: ["-c", "nc -w 3 virt-api.kubevirt.svc.cluster.local 443;exit $?;"]
image: registry.dso.mil/platform-one/big-bang/apps/third-party/kubevirt/busybox:latest
name: kubevirt-service-test
restartPolicy: Never
template:
spec:
containers:
- command: ["/bin/sh"]
args: ["-c", "nc -w 3 virt-api.kubevirt.svc.cluster.local 443;exit $?;"]
image: registry.dso.mil/platform-one/big-bang/apps/third-party/kubevirt/busybox:latest
name: kubevirt-service-test
restartPolicy: Never
backoffLimit: 10
\ No newline at end of file
......@@ -8,7 +8,7 @@ deployment:
image:
name: virt-operator
registry: registry.dso.mil/platform-one/big-bang/apps/third-party/kubevirt
version: v0.53.0
version: v0.53.1
command:
port: 8443
verbosity: 2
......
......@@ -4,7 +4,7 @@ export IMGSRC_REPO=quay.io
export IMGSRC_PROJ=kubevirt
export IMGDST_REPO=registry.dso.mil
export IMGDST_PROJ=platform-one/big-bang/apps/third-party/kubevirt
export IMGTAG=v0.53.0
export IMGTAG=v0.53.1
function pullTagPush() {
export IMGNAME=$1
......
#!/bin/sh
export VERSION=0.53.0
export VERSION=0.53.1
echo "Downloading manifests for v$VERSION"
curl -sSLO https://github.com/kubevirt/kubevirt/releases/download/v${VERSION}/kubevirt-operator.yaml
curl -sSLO https://github.com/kubevirt/kubevirt/releases/download/v${VERSION}/kubevirt-cr.yaml
echo "Building manifests"
kustomize build -o chart/templates
mv chart/templates/apiextensions.k8s.io_v1_customresourcedefinition_kubevirts.kubevirt.io.yaml chart/crds/
rm -rf kubevirt-operator.yaml kubevirt-cr.yaml
\ No newline at end of file
rm -rf chart/templates/v1_namespace_kubevirt.yaml
rm -rf kubevirt-operator.yaml kubevirt-cr.yaml
echo "Done... "
echo " Next steps: Review Changes, make move-images, make update-readme, update Changelog"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment