Hello community,

here is the log from the commit of package busybox-k8s-yaml for 
openSUSE:Leap:15.2 checked in at 2020-03-09 17:59:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/busybox-k8s-yaml (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.busybox-k8s-yaml.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "busybox-k8s-yaml"

Mon Mar  9 17:59:43 2020 rev:1 rq:781111 version:1.0

Changes:
--------
New Changes file:

--- /dev/null   2019-12-19 10:12:34.003146842 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.busybox-k8s-yaml.new.26092/busybox-k8s-yaml.changes
   2020-03-09 17:59:44.164649838 +0100
@@ -0,0 +1,4 @@
+-------------------------------------------------------------------
+Sat Feb 22 17:37:38 UTC 2020 - Thorsten Kukuk <[email protected]>
+
+- Initial version

New:
----
  LICENSE
  busybox-k8s-yaml.changes
  busybox-k8s-yaml.spec
  busybox.yaml

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ busybox-k8s-yaml.spec ++++++
#
# spec file for package netcfg
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via https://bugs.opensuse.org/
#


Name:           busybox-k8s-yaml
Version:        1.0
Release:        0
Summary:        K8s yaml file to deploy busybox
License:        MIT
Source0:        busybox.yaml
Source1:        LICENSE
BuildArch:      noarch

%description
K8s yaml file to deploy busybox on a kubernetes cluster.

%prep

%build
cp %{SOURCE1} .

%install
mkdir -p %{buildroot}%{_datadir}/k8s-yaml/busybox
install -m 644 %{SOURCE0} %{buildroot}%{_datadir}/k8s-yaml/busybox/

%files
%dir %{_datadir}/k8s-yaml
%{_datadir}/k8s-yaml/busybox
%license LICENSE

%changelog
++++++ LICENSE ++++++
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
++++++ busybox.yaml ++++++
apiVersion: v1
kind: Pod
metadata:
  name: busybox
  namespace: default
spec:
  containers:
  - name: busybox
    image: registry.opensuse.org/opensuse/busybox
    command:
      - sleep
      - "3600"
    imagePullPolicy: Always
  restartPolicy: Always

Reply via email to