SHA256
1
0
forked from pool/traefik

Accepting request 666286 from home:pgeorgiadis

- Initial package release to version 1.7.7:
 * Check for watched namespace before getting kubernetes objects
 * Allow empty path with App-root annotation
 * kubernetes: sort and uniq TLS secrets
 * Skip TLS section with no secret in Kubernetes ingress

OBS-URL: https://build.opensuse.org/request/show/666286
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/traefik?expand=0&rev=1
This commit is contained in:
Richard Brown 2019-01-15 15:37:50 +00:00 committed by Git OBS Bridge
commit f05c6ddb4c
7 changed files with 120 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

12
_service Normal file
View File

@ -0,0 +1,12 @@
<services>
<service name="download_url" mode="disabled">
<param name="protocol">https</param>
<param name="host">github.com</param>
<param name="path">/containous/traefik/releases/download/v1.7.7/traefik-v1.7.7.src.tar.gz</param>
<param name="filename">traefik-v1.7.7.tar.gz</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar.gz</param>
<param name="compression">xz</param>
</service>
</services>

2
traefik-rpmlintrc Normal file
View File

@ -0,0 +1,2 @@
addFilter (".* W: position-independent-executable-suggested /usr/bin/traefik")
addFilter (".* W: statically-linked-binary /usr/bin/traefik")

3
traefik-v1.7.7.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e57bedfbcd49e8c3ed4cda2d46ff134cfe3de38bed244fd5cdb200c0e05dd64a
size 7194192

8
traefik.changes Normal file
View File

@ -0,0 +1,8 @@
-------------------------------------------------------------------
Thu Jan 10 14:50:22 UTC 2019 - pgeorgiadis@suse.com
- Initial package release to version 1.7.7:
* Check for watched namespace before getting kubernetes objects
* Allow empty path with App-root annotation
* kubernetes: sort and uniq TLS secrets
* Skip TLS section with no secret in Kubernetes ingress

71
traefik.spec Normal file
View File

@ -0,0 +1,71 @@
#
# spec file for package traefik
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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/
#
# Make sure that the binary is not getting stripped.
%{go_nostrip}
Name: traefik
Version: 1.7.7
Release: 0
Summary: The Cloud Native Edge Router
License: MIT
Group: Productivity/Networking/Web/Proxy
URL: https://traefik.io/
Source0: %{name}-v%{version}.tar.xz
BuildRequires: go-bindata
BuildRequires: fdupes
BuildRequires: golang(API) >= 1.10
BuildRequires: golang-packaging
Requires(pre): %fillup_prereq
%description
Traefik listens to your service registry/orchestrator API and instantly
generates the routes so your microservices are connected to the outside
world -- without further intervention from your part.
Traefik is a modern HTTP reverse proxy and load balancer that makes
deploying microservices easy. Traefik integrates with your existing
infrastructure components (Docker, Swarm mode, Kubernetes, Marathon,
Consul, Etcd, Rancher, Amazon ECS, ...) and configures itself
automatically and dynamically.
Pointing Traefik at your orchestrator should be the only configuration
step you need.
Documentation: http://docs.traefik.io/
%prep
%setup -q -c -n %{name}-v%{version}
%build
%{goprep} github.com/containous/traefik
# Start building ...
go generate
%{gobuild}
%install
%{goinstall}
%{gofilelist}
%fdupes %{buildroot}/%{_prefix}
%files -f file.lst
%{_bindir}/%{name}
%license LICENSE.md
%changelog