Accepting request 976174 from home:vulyanov:branches:Virtualization:tpm
- Update to version 0.53.0 Release notes https://github.com/kubevirt/kubevirt/releases/tag/v0.53.0 - Build and pack virt-freezer and virt-probe helpers - Increase storage requirements in _constraints OBS-URL: https://build.opensuse.org/request/show/976174 OBS-URL: https://build.opensuse.org/package/show/Virtualization/kubevirt?expand=0&rev=83
This commit is contained in:
parent
0883e6b559
commit
7c13832987
@ -2,7 +2,7 @@
|
||||
<!-- Kubevirt needs larger disk for builds -->
|
||||
<hardware>
|
||||
<disk>
|
||||
<size unit="G">6</size>
|
||||
<size unit="G">10</size>
|
||||
</disk>
|
||||
</hardware>
|
||||
</constraints>
|
||||
|
2
_service
2
_service
@ -1,7 +1,7 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="filename">kubevirt</param>
|
||||
<param name="revision">v0.52.0</param>
|
||||
<param name="revision">v0.53.0</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="submodules">disable</param>
|
||||
<param name="url">https://github.com/kubevirt/kubevirt</param>
|
||||
|
@ -19,7 +19,7 @@ spec:
|
||||
serviceAccountName: kubevirt-testing
|
||||
containers:
|
||||
- name: target
|
||||
image: quay.io/kubevirt/disks-images-provider:v0.52.0
|
||||
image: quay.io/kubevirt/disks-images-provider:v0.53.0
|
||||
imagePullPolicy: Always
|
||||
lifecycle:
|
||||
preStop:
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4508deb461a7ba60ac0462dea8a7b6ee2615ec5d5ade21af82d6f0916a45b9dd
|
||||
size 14138514
|
3
kubevirt-0.53.0.tar.gz
Normal file
3
kubevirt-0.53.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13b02c216bde2499304bbc3e22228d68b0a6b954faf9d03f1f67310a808dbc9d
|
||||
size 13750935
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 9 15:18:55 UTC 2022 - Vasily Ulyanov <vasily.ulyanov@suse.com>
|
||||
|
||||
- Update to version 0.53.0
|
||||
Release notes https://github.com/kubevirt/kubevirt/releases/tag/v0.53.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 28 06:21:51 UTC 2022 - Vasily Ulyanov <vasily.ulyanov@suse.com>
|
||||
|
||||
- Build and pack virt-freezer and virt-probe helpers
|
||||
- Increase storage requirements in _constraints
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 11 07:30:43 UTC 2022 - Vasily Ulyanov <vasily.ulyanov@suse.com>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: kubevirt
|
||||
Version: 0.52.0
|
||||
Version: 0.53.0
|
||||
Release: 0
|
||||
Summary: Container native virtualization
|
||||
License: Apache-2.0
|
||||
@ -185,13 +185,16 @@ KUBEVIRT_GIT_VERSION='v%{version}' \
|
||||
KUBEVIRT_GIT_TREE_STATE="clean" \
|
||||
build_tests="true" \
|
||||
./hack/build-go.sh install \
|
||||
cmd/virtctl \
|
||||
cmd/virt-api \
|
||||
cmd/virt-controller \
|
||||
cmd/virt-chroot \
|
||||
cmd/virt-controller \
|
||||
cmd/virt-freezer \
|
||||
cmd/virt-handler \
|
||||
cmd/virt-launcher \
|
||||
cmd/virt-launcher-monitor \
|
||||
cmd/virt-operator \
|
||||
cmd/virt-probe \
|
||||
cmd/virtctl \
|
||||
%{nil}
|
||||
|
||||
env DOCKER_PREFIX=$reg_path DOCKER_TAG=%{version}-%{release} KUBEVIRT_NO_BAZEL=true ./hack/build-manifests.sh
|
||||
@ -206,6 +209,9 @@ install -p -m 0755 _out/cmd/virt-controller/virt-controller %{buildroot}%{_bindi
|
||||
install -p -m 0755 _out/cmd/virt-chroot/virt-chroot %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-handler/virt-handler %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-launcher/virt-launcher %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-launcher-monitor/virt-launcher-monitor %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-freezer/virt-freezer %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-probe/virt-probe %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/cmd/virt-operator/virt-operator %{buildroot}%{_bindir}/
|
||||
install -p -m 0755 _out/tests/tests.test %{buildroot}%{_bindir}/virt-tests
|
||||
install -p -m 0755 cmd/virt-launcher/node-labeller/node-labeller.sh %{buildroot}%{_bindir}/
|
||||
@ -271,6 +277,9 @@ install -m 0644 %{S:2} %{buildroot}%{_prefix}/lib/obs/service
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_bindir}/virt-launcher
|
||||
%{_bindir}/virt-launcher-monitor
|
||||
%{_bindir}/virt-freezer
|
||||
%{_bindir}/virt-probe
|
||||
%{_bindir}/node-labeller.sh
|
||||
|
||||
%files virt-operator
|
||||
|
Loading…
x
Reference in New Issue
Block a user