Accepting request 900168 from Virtualization
OBS-URL: https://build.opensuse.org/request/show/900168 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/containerized-data-importer?expand=0&rev=7
This commit is contained in:
commit
2079b67a48
2
_service
2
_service
@ -1,7 +1,7 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="filename">containerized-data-importer</param>
|
<param name="filename">containerized-data-importer</param>
|
||||||
<param name="revision">v1.34.0</param>
|
<param name="revision">v1.35.0</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="submodules">disable</param>
|
<param name="submodules">disable</param>
|
||||||
<param name="url">https://github.com/kubevirt/containerized-data-importer</param>
|
<param name="url">https://github.com/kubevirt/containerized-data-importer</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:21ac75024264159e1b77087202b74908d4ec177b4ddcf57292fa817143a52e80
|
|
||||||
size 198140237
|
|
3
containerized-data-importer-1.35.0.tar.gz
Normal file
3
containerized-data-importer-1.35.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3516a4d4a9dbefe2c88c550287df136131e9d3301c525fa7c870e09c29fd36b6
|
||||||
|
size 198383391
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 14 06:05:08 UTC 2021 - Vasily Ulyanov <vasily.ulyanov@suse.com>
|
||||||
|
|
||||||
|
- Use registry.suse.com as the default fallback for sle
|
||||||
|
- Rename macro registry_path to kubevirt_registry_path
|
||||||
|
- Update to version 1.35.0
|
||||||
|
Release notes https://github.com/kubevirt/containerized-data-importer/releases/tag/v1.35.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 4 13:04:46 UTC 2021 - Fabian Vogt <fvogt@suse.com>
|
Fri Jun 4 13:04:46 UTC 2021 - Fabian Vogt <fvogt@suse.com>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: containerized-data-importer
|
Name: containerized-data-importer
|
||||||
Version: 1.34.0
|
Version: 1.35.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Container native virtualization
|
Summary: Container native virtualization
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -119,36 +119,32 @@ tar --strip-components=1 -xf %{S:0}
|
|||||||
# Hackery to determine which registry path to use in cdi-operator.yaml
|
# Hackery to determine which registry path to use in cdi-operator.yaml
|
||||||
# when building the manifests
|
# when building the manifests
|
||||||
#
|
#
|
||||||
# The 'registry_path' macro can be used to define an explicit path in the
|
# The 'kubevirt_registry_path' macro can be used to define an explicit path in
|
||||||
# project config, e.g.
|
# the project config, e.g.
|
||||||
#
|
#
|
||||||
# Macros:
|
# Macros:
|
||||||
# %registry_path registry.opensuse.org/Virtualization/container
|
# %kubevirt_registry_path registry.opensuse.org/Virtualization/container
|
||||||
# :Macros
|
# :Macros
|
||||||
#
|
#
|
||||||
# 'registry_path' can also be defined when building locally, e.g.
|
# 'kubevirt_registry_path' can also be defined when building locally, e.g.
|
||||||
#
|
#
|
||||||
# osc build --define='registry_path registry.opensuse.org/foo/bar/baz' ...
|
# osc build --define='kubevirt_registry_path registry.opensuse.org/foo/bar/baz' ...
|
||||||
#
|
#
|
||||||
# If 'registry_path' is not specified, the standard publish location for SLE and
|
# If 'kubevirt_registry_path' is not specified, the standard publish location for
|
||||||
# openSUSE-based containers is used.
|
# SLE and openSUSE-based containers is used.
|
||||||
#
|
#
|
||||||
# TODO:
|
%if "%{?kubevirt_registry_path}" == ""
|
||||||
# 1. Determine "standard publish location" for SLE and openSUSE variants
|
|
||||||
# 2. Support Leap when 1 is done
|
|
||||||
#
|
|
||||||
%if "%{?registry_path}" == ""
|
|
||||||
distro='%{?sle_version}:%{is_opensuse}'
|
distro='%{?sle_version}:%{is_opensuse}'
|
||||||
case "${distro}" in
|
case "${distro}" in
|
||||||
150200:0)
|
150200:0)
|
||||||
reg_path='registry.suse.de/suse/containers/sle-server/15/containers/suse/sles/15.2' ;;
|
reg_path='registry.suse.com/suse/sles/15.2' ;;
|
||||||
150300:0)
|
150300:0)
|
||||||
reg_path='registry.suse.de/suse/containers/sle-server/15/containers/suse/sles/15.3' ;;
|
reg_path='registry.suse.com/suse/sles/15.3' ;;
|
||||||
*)
|
*)
|
||||||
reg_path='registry.opensuse.org/kubevirt' ;;
|
reg_path='registry.opensuse.org/kubevirt' ;;
|
||||||
esac
|
esac
|
||||||
%else
|
%else
|
||||||
reg_path='%{registry_path}'
|
reg_path='%{kubevirt_registry_path}'
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
export GOPATH=%{_builddir}/go
|
export GOPATH=%{_builddir}/go
|
||||||
|
Loading…
Reference in New Issue
Block a user