73fdd53
%global with_debug   0
48c1dde
48c1dde
%if 0%{?with_debug}
434a8df
# https://bugzilla.redhat.com/show_bug.cgi?id=995136#c12
434a8df
%global _dwz_low_mem_die_limit 0
434a8df
%else
Timothy St. Clair dbc1b82
%global debug_package %{nil}
434a8df
%endif
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
%global provider                github
Timothy St. Clair dbc1b82
%global provider_tld            com
Timothy St. Clair dbc1b82
%global project                 kubernetes
Timothy St. Clair dbc1b82
%global repo                    kubernetes
acb57bd
# https://github.com/kubernetes/kubernetes
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
%global provider_prefix         %{provider}.%{provider_tld}/%{project}/%{repo}
Timothy St. Clair dbc1b82
%global import_path             k8s.io/kubernetes
4ba5d03
%global commit                  3ddd0f45aa91e2f30c70734b175631bec5b5825a
Timothy St. Clair dbc1b82
%global shortcommit              %(c=%{commit}; echo ${c:0:7})
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
# Needed otherwise "version_ldflags=$(kube::version_ldflags)" doesn't work
Timothy St. Clair dbc1b82
%global _buildshell  /bin/bash
Timothy St. Clair dbc1b82
%global _checkshell  /bin/bash
beef130
Timothy St. Clair dbc1b82
##############################################
Timothy St. Clair dbc1b82
Name:           kubernetes
4ba5d03
Version:        1.24.1
ea22bc2
Release:        5%{?dist}
e3e6032
Summary:        Container cluster management
e3e6032
License:        ASL 2.0
71c7a2e
URL:            https://%{import_path}
b93c9e7
ExclusiveArch:  x86_64 aarch64 ppc64le s390x %{arm}
1b108cb
Source0:        https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
2aa44d2
b1db376
Source101:      kube-proxy.service
b1db376
Source102:      kube-apiserver.service
b1db376
Source103:      kube-scheduler.service
b1db376
Source104:      kube-controller-manager.service
b1db376
Source105:      kubelet.service
b1db376
Source106:      environ-apiserver
b1db376
Source107:      environ-config
b1db376
Source108:      environ-controller-manager
b1db376
Source109:      environ-kubelet
b1db376
Source110:      environ-kubelet.kubeconfig
b1db376
Source111:      environ-proxy
b1db376
Source112:      environ-scheduler
b1db376
Source113:      kubernetes-accounting.conf
b1db376
Source114:      kubeadm.conf
b1db376
Source115:      kubernetes.conf
b1db376
0c27b56
Patch3:         build-with-debug-info.patch
1a8dcf0
e3e6032
# It obsoletes cadvisor but needs its source code (literally integrated)
77b7cad
Obsoletes:      cadvisor
77b7cad
f709bab
# kubernetes is decomposed into master and node subpackages
f709bab
# require both of them for updates
f709bab
Requires: kubernetes-master = %{version}-%{release}
f709bab
Requires: kubernetes-node = %{version}-%{release}
Eric Paris 2cc6e51
beef130
%description
beef130
%{summary}
beef130
Timothy St. Clair dbc1b82
##############################################
f709bab
%package master
f709bab
Summary: Kubernetes services for master host
f709bab
e04890d
BuildRequires: golang >= 1.15
f709bab
BuildRequires: systemd
f709bab
BuildRequires: rsync
318c31c
BuildRequires: go-md2man
f032fcc
BuildRequires: go-bindata
f709bab
f709bab
Requires(pre): shadow-utils
ec11eb3
Requires: kubernetes-client = %{version}-%{release}
f709bab
f709bab
# if node is installed with node, version and release must be the same
f709bab
Conflicts: kubernetes-node < %{version}-%{release}
f709bab
Conflicts: kubernetes-node > %{version}-%{release}
f709bab
f709bab
%description master
f709bab
Kubernetes services for master host
f709bab
Timothy St. Clair dbc1b82
##############################################
f709bab
%package node
f709bab
Summary: Kubernetes services for node host
f709bab
ea22bc2
Requires: (containerd or cri-o)
e04890d
Suggests: containerd
dd477cf
Requires: conntrack-tools
f709bab
Anthony Rabbito 9887c27
BuildRequires: golang >= 1.18.1
f709bab
BuildRequires: systemd
f709bab
BuildRequires: rsync
318c31c
BuildRequires: go-md2man
f032fcc
BuildRequires: go-bindata
f709bab
f709bab
Requires(pre): shadow-utils
Timothy St. Clair dbc1b82
Requires:      socat
Timothy St. Clair dbc1b82
Requires:      kubernetes-client = %{version}-%{release}
f709bab
f709bab
# if master is installed with node, version and release must be the same
f709bab
Conflicts: kubernetes-master < %{version}-%{release}
f709bab
Conflicts: kubernetes-master > %{version}-%{release}
f709bab
f709bab
%description node
f709bab
Kubernetes services for node host
f709bab
Timothy St. Clair dbc1b82
##############################################
Timothy St. Clair dbc1b82
%package  kubeadm
Timothy St. Clair dbc1b82
Summary:  Kubernetes tool for standing up clusters
Timothy St. Clair dbc1b82
Requires: kubernetes-node = %{version}-%{release}
85abbcc
85abbcc
Requires: containernetworking-plugins
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
%description kubeadm
Timothy St. Clair dbc1b82
Kubernetes tool for standing up clusters
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
##############################################
ec11eb3
%package client
ec11eb3
Summary: Kubernetes client tools
ec11eb3
Anthony Rabbito 9887c27
BuildRequires: golang >= 1.18.1
f032fcc
BuildRequires: go-bindata
250da30
BuildRequires: make
ec11eb3
ec11eb3
%description client
ec11eb3
Kubernetes client tools like kubectl
ec11eb3
Timothy St. Clair dbc1b82
##############################################
Timothy St. Clair dbc1b82
beef130
%prep
acb57bd
%setup -q -n %{repo}-%{commit}
acb57bd
c8b5dfd
%if 0%{?with_debug}
c8b5dfd
%patch3 -p1
c8b5dfd
%endif
e0a0e4c
3cd5654
# src/k8s.io/kubernetes/pkg/util/certificates
acb57bd
# Patch the code to remove eliptic.P224 support
3cd5654
# For whatever reason:
3cd5654
# https://groups.google.com/forum/#!topic/Golang-nuts/Oq4rouLEvrU
acb57bd
for dir in vendor/github.com/google/certificate-transparency/go/x509 pkg/util/certificates; do
Timothy St. Clair dbc1b82
  if [ -d "${dir}" ]; then
Timothy St. Clair dbc1b82
    pushd ${dir}
Timothy St. Clair dbc1b82
    sed -i "/^[^=]*$/ s/oidNamedCurveP224/oidNamedCurveP256/g" *.go
Timothy St. Clair dbc1b82
    sed -i "/^[^=]*$/ s/elliptic\.P224/elliptic.P256/g" *.go
Timothy St. Clair dbc1b82
    popd
Timothy St. Clair dbc1b82
  fi
acb57bd
done
2b0d8bb
acb57bd
mkdir -p src/k8s.io/kubernetes
acb57bd
mv $(ls | grep -v "^src$") src/k8s.io/kubernetes/.
acb57bd
Timothy St. Clair dbc1b82
###############
b0ef5e0
c85c837
%build
2b0d8bb
pushd src/k8s.io/kubernetes/
d00582a
source hack/lib/init.sh
d00582a
kube::golang::setup_env
d00582a
c85c837
export KUBE_GIT_TREE_STATE="clean"
c85c837
export KUBE_GIT_COMMIT=%{commit}
b869480
export KUBE_GIT_VERSION=v{version}
2b0d8bb
export KUBE_EXTRA_GOPATH=$(pwd)/Godeps/_workspace
2aa44d2
73fdd53
# Build each binary separately to generate a unique build-id.
3cd5654
# Otherwise: Duplicate build-ids /builddir/build/BUILDROOT/.../usr/bin/kube-apiserver and /builddir/build/BUILDROOT/.../usr/bin/kubeadm
3cd5654
make WHAT="cmd/kube-proxy"
73fdd53
make WHAT="cmd/kube-apiserver"
3cd5654
make WHAT="cmd/kube-controller-manager"
3cd5654
make WHAT="cmd/kubelet"
73fdd53
make WHAT="cmd/kubeadm"
3cd5654
make WHAT="cmd/kube-scheduler"
3cd5654
make WHAT="cmd/kubectl"
Eric Paris b196e11
d00582a
# Gen docs
d00582a
make WHAT="cmd/gendocs"
d00582a
make WHAT="cmd/genkubedocs"
d00582a
make WHAT="cmd/genman"
d00582a
make WHAT="cmd/genyaml"
d00582a
kube::util::gen-docs .
318c31c
beef130
%install
2b0d8bb
pushd src/k8s.io/kubernetes/
d00582a
source hack/lib/init.sh
c85c837
kube::golang::setup_env
Eric Paris b196e11
2c89a45
%ifarch ppc64le
fc55ab8
output_path="_output/local/go/bin"
2c89a45
%else
c78c989
output_path="${KUBE_OUTPUT_BINPATH}/$(kube::golang::host_platform)"
2c89a45
%endif
2aa44d2
3cd5654
echo "+++ INSTALLING binaries"
b1db376
install -m 755 -d %{buildroot}%{_bindir}
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kube-proxy
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kube-apiserver
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kube-controller-manager
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kubelet
Timothy St. Clair dbc1b82
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kubeadm
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kube-scheduler
3cd5654
install -p -m 755 -t %{buildroot}%{_bindir} ${output_path}/kubectl
3cd5654
b1db376
echo "+++ INSTALLING kubelet service config"
Timothy St. Clair dbc1b82
install -d -m 0755 %{buildroot}/%{_sysconfdir}/systemd/system/kubelet.service.d
b1db376
install -p -m 0644 -t %{buildroot}/%{_sysconfdir}/systemd/system/kubelet.service.d %{SOURCE114}
Timothy St. Clair dbc1b82
b1db376
echo "+++ INSTALLING bash completion"
beef130
install -d -m 0755 %{buildroot}%{_datadir}/bash-completion/completions/
2b0d8bb
%{buildroot}%{_bindir}/kubectl completion bash > %{buildroot}%{_datadir}/bash-completion/completions/kubectl
beef130
b1db376
echo "+++ INSTALLING config files"
b1db376
%define remove_environ_prefix() %(echo -n %1|sed 's/.*environ-//g')
beef130
install -d -m 0755 %{buildroot}%{_sysconfdir}/%{name}
b1db376
install -d -m 0700 %{buildroot}%{_sysconfdir}/%{name}/manifests
b1db376
install -m 644 -T %{SOURCE106} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE106}}
b1db376
install -m 644 -T %{SOURCE107} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE107}}
b1db376
install -m 644 -T %{SOURCE108} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE108}}
b1db376
install -m 644 -T %{SOURCE109} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE109}}
b1db376
install -m 644 -T %{SOURCE110} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE110}}
b1db376
install -m 644 -T %{SOURCE111} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE111}}
b1db376
install -m 644 -T %{SOURCE112} %{buildroot}%{_sysconfdir}/%{name}/%{remove_environ_prefix %{SOURCE112}}
b1db376
b1db376
# place systemd/tmpfiles.d/kubernetes.conf to /usr/lib/tmpfiles.d/kubernetes.conf
b1db376
install -d -m 0755 %{buildroot}%{_tmpfilesdir}
b1db376
install -p -m 0644 -t %{buildroot}/%{_tmpfilesdir} %{SOURCE115}
beef130
b1db376
# enable CPU and Memory accounting
b1db376
install -d -m 0755 %{buildroot}/%{_sysconfdir}/systemd/system.conf.d
b1db376
install -p -m 0644 -t %{buildroot}/%{_sysconfdir}/systemd/system.conf.d %{SOURCE113}
b1db376
b1db376
echo "+++ INSTALLING service files"
beef130
install -d -m 0755 %{buildroot}%{_unitdir}
b1db376
install -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE101}
b1db376
install -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE102}
b1db376
install -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE103}
b1db376
install -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE104}
b1db376
install -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE105}
beef130
b1db376
echo "+++ INSTALLING manpages"
Eric Paris 6cf9084
install -d %{buildroot}%{_mandir}/man1
2aa44d2
# from k8s tarball copied docs/man/man1/*.1
d00582a
install -p -m 644 docs/man/man1/*.1 %{buildroot}%{_mandir}/man1
Eric Paris 6cf9084
b1db376
# install the place the kubelet defaults to put volumes and default folder structure
e3e6032
install -d %{buildroot}%{_sharedstatedir}/kubelet
0fced5c
e21fd06
mkdir -p %{buildroot}/run
e21fd06
install -d -m 0755 %{buildroot}/run/%{name}/
2b0d8bb
popd
85cd3ef
2b0d8bb
mv src/k8s.io/kubernetes/*.md .
2b0d8bb
mv src/k8s.io/kubernetes/LICENSE .
2b0d8bb
e3e6032
%check
20438b2
if [ 1 != 1 ]; then
e3e6032
echo "******Testing the commands*****"
e3e6032
hack/test-cmd.sh
e3e6032
echo "******Benchmarking kube********"
e3e6032
hack/benchmark-go.sh
e3e6032
e3e6032
# In Fedora 20 and RHEL7 the go cover tools isn't available correctly
e3e6032
echo "******Testing the go code******"
e3e6032
hack/test-go.sh
e3e6032
echo "******Testing integration******"
48c1dde
hack/test-integration.sh --use_go_build
20438b2
fi
e3e6032
Timothy St. Clair dbc1b82
##############################################
beef130
%files
f709bab
# empty as it depends on master and node
f709bab
Timothy St. Clair dbc1b82
##############################################
f709bab
%files master
2aa44d2
%license LICENSE
2aa44d2
%doc *.md
318c31c
%{_mandir}/man1/kube-apiserver.1*
318c31c
%{_mandir}/man1/kube-controller-manager.1*
318c31c
%{_mandir}/man1/kube-scheduler.1*
Colin Walters cdbe81d
%attr(754, -, kube) %caps(cap_net_bind_service=ep) %{_bindir}/kube-apiserver
beef130
%{_bindir}/kube-controller-manager
beef130
%{_bindir}/kube-scheduler
beef130
%{_unitdir}/kube-apiserver.service
beef130
%{_unitdir}/kube-controller-manager.service
f709bab
%{_unitdir}/kube-scheduler.service
beef130
%dir %{_sysconfdir}/%{name}
beef130
%config(noreplace) %{_sysconfdir}/%{name}/apiserver
f709bab
%config(noreplace) %{_sysconfdir}/%{name}/scheduler
f709bab
%config(noreplace) %{_sysconfdir}/%{name}/config
beef130
%config(noreplace) %{_sysconfdir}/%{name}/controller-manager
f709bab
%{_tmpfilesdir}/kubernetes.conf
e21fd06
%verify(not size mtime md5) %attr(755, kube,kube) %dir /run/%{name}
f709bab
Timothy St. Clair dbc1b82
##############################################
f709bab
%files node
2aa44d2
%license LICENSE
2aa44d2
%doc *.md
318c31c
%{_mandir}/man1/kubelet.1*
318c31c
%{_mandir}/man1/kube-proxy.1*
f709bab
%{_bindir}/kubelet
f709bab
%{_bindir}/kube-proxy
f709bab
%{_unitdir}/kube-proxy.service
f709bab
%{_unitdir}/kubelet.service
f709bab
%dir %{_sharedstatedir}/kubelet
f709bab
%dir %{_sysconfdir}/%{name}
b1db376
%dir %{_sysconfdir}/%{name}/manifests
f709bab
%config(noreplace) %{_sysconfdir}/%{name}/config
beef130
%config(noreplace) %{_sysconfdir}/%{name}/kubelet
f709bab
%config(noreplace) %{_sysconfdir}/%{name}/proxy
3cd5654
%config(noreplace) %{_sysconfdir}/%{name}/kubelet.kubeconfig
43a251e
%config(noreplace) %{_sysconfdir}/systemd/system.conf.d/kubernetes-accounting.conf
Eric Paris ee05804
%{_tmpfilesdir}/kubernetes.conf
e21fd06
%verify(not size mtime md5) %attr(755, kube,kube) %dir /run/%{name}
beef130
Timothy St. Clair dbc1b82
##############################################
Timothy St. Clair dbc1b82
%files kubeadm
Timothy St. Clair dbc1b82
%license LICENSE
Timothy St. Clair dbc1b82
%doc *.md
c78c989
%{_mandir}/man1/kubeadm.1*
c78c989
%{_mandir}/man1/kubeadm-*
Timothy St. Clair dbc1b82
%{_bindir}/kubeadm
Timothy St. Clair dbc1b82
%dir %{_sysconfdir}/systemd/system/kubelet.service.d
Timothy St. Clair dbc1b82
%config(noreplace) %{_sysconfdir}/systemd/system/kubelet.service.d/kubeadm.conf
Timothy St. Clair dbc1b82
Timothy St. Clair dbc1b82
##############################################
ec11eb3
%files client
2aa44d2
%license LICENSE
2aa44d2
%doc *.md
ec11eb3
%{_mandir}/man1/kubectl.1*
ec11eb3
%{_mandir}/man1/kubectl-*
ec11eb3
%{_bindir}/kubectl
ec11eb3
%{_datadir}/bash-completion/completions/kubectl
ec11eb3
Timothy St. Clair dbc1b82
##############################################
Timothy St. Clair dbc1b82
f709bab
%pre master
f709bab
getent group kube >/dev/null || groupadd -r kube
f709bab
getent passwd kube >/dev/null || useradd -r -g kube -d / -s /sbin/nologin \
f709bab
        -c "Kubernetes user" kube
f709bab
f709bab
%post master
f709bab
%systemd_post kube-apiserver kube-scheduler kube-controller-manager
f709bab
f709bab
%preun master
f709bab
%systemd_preun kube-apiserver kube-scheduler kube-controller-manager
f709bab
f709bab
%postun master
73fdd53
%systemd_postun kube-apiserver kube-scheduler kube-controller-manager
f709bab
f709bab
f709bab
%pre node
beef130
getent group kube >/dev/null || groupadd -r kube
beef130
getent passwd kube >/dev/null || useradd -r -g kube -d / -s /sbin/nologin \
beef130
        -c "Kubernetes user" kube
e3e6032
f709bab
%post node
f709bab
%systemd_post kubelet kube-proxy
43a251e
# If accounting is not currently enabled systemd reexec
ea22bc2
if [[ `systemctl show kubelet | grep -q -e CPUAccounting=no -e MemoryAccounting=no; echo $?` -eq 0 ]]; then
43a251e
  systemctl daemon-reexec
43a251e
fi
beef130
f709bab
%preun node
f709bab
%systemd_preun kubelet kube-proxy
beef130
f709bab
%postun node
73fdd53
%systemd_postun kubelet kube-proxy
beef130
Timothy St. Clair dbc1b82
############################################
beef130
%changelog
ea22bc2
* Mon Jul 25 2022 Anthony Rabbito <hello@anthonyrabbito.com> - 1.24.1-5
ea22bc2
- Remove docker suggestions and related known arguments since it's removed upstream.
ea22bc2
  resolves: #2110180
ea22bc2
0886874
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.1-4
0886874
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
0886874
b8238f9
* Tue Jul 19 2022 Maxwell G <gotmax@e.email> - 1.24.1-3
b8238f9
- Rebuild for CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in
b8238f9
  golang
b8238f9
e38900b
* Sat Jun 18 2022 Robert-André Mauchin <zebob.m@gmail.com> - 1.24.1-2
e38900b
- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, CVE-2022-27191,
e38900b
  CVE-2022-29526, CVE-2022-30629
e38900b
4ba5d03
* Fri Jun 10 2022 Anthony Rabbito <hello@anthonyrabbito.com> - 1.24.1-1
4ba5d03
- Update to 1.24.1
4ba5d03
Anthony Rabbito 9887c27
* Sun May 08 2022 Anthony Rabbito <hello@anthonyrabbito.com> - 1.24.0-1
Anthony Rabbito 9887c27
- Update to 1.24.0
Anthony Rabbito 9887c27
Anthony Rabbito 5a6a4f2
* Sun May 08 2022 Anthony Rabbito <hello@anthonyrabbito.com> - 1.23.6-1
Anthony Rabbito 5a6a4f2
- Update to 1.23.6
Anthony Rabbito 5a6a4f2
  resolves: #2082978
Anthony Rabbito 5a6a4f2
51676d6
* Tue Mar 01 2022 Jan Chaloupka <jchaloup@redhat.com> - 1.22.7-1
51676d6
- Update to 1.22.7
51676d6
  resolves: #2059662
51676d6
9b0c681
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.21.0-3
9b0c681
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
9b0c681
bc67e53
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.21.0-2
bc67e53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
bc67e53
1223d1c
* Wed May 12 2021 Jan Chaloupka <jchaloup@redhat.com> - 1.21.0-1
1223d1c
- Update to 1.21.0
1223d1c
  resolves: #1959262
1223d1c
e04890d
* Tue Mar 30 2021 Neal Gompa <ngompa13@gmail.com> - 1.20.5-1
e04890d
- Rebase to 1.20.5
e04890d
- Update node subpackage to correct CRI options
e04890d
373a3c5
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.6-3
373a3c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
373a3c5
84b11a5
* Fri Jan 08 2021 Kairui Song <ryncsn@gmail.com> - 1.19.6-2
84b11a5
- Fix missing --kubeconfig in KUBELET_KUBECONFIG env
84b11a5
  resolves: #1902518
84b11a5
5e82fa6
* Mon Jan 04 2021 Matthias Runge <mrunge@redhat.com> - 1.19.6-1
5e82fa6
- Update to v1.19.6
5e82fa6
6a7e8e5
* Mon Jan 04 2021 Kairui Song <ryncsn@gmail.com> - 1.19.3-1
6a7e8e5
- Update to v1.19.3
6a7e8e5
2d0d239
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.2-2
2d0d239
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2d0d239
c382dbb
* Fri May 15 2020 Kairui Song <ryncsn@gmail.com> - 1.18.2-1
c382dbb
- Update to v1.18.2
c382dbb
- Update service file and config file
c382dbb
- "contrib" is EOL, move files into this repo
c382dbb
- Update the build steps to fit latest upstream
c382dbb
16f769b
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.7-2
16f769b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
16f769b
92a4eb8
* Thu Jan 02 2020 Jan Chaloupka <jchaloup@redhat.com> - 1.15.7-1
92a4eb8
- Update to v1.15.7
92a4eb8
  resolves: #1784603
92a4eb8
1a8dcf0
* Thu Aug 15 2019 Jan Chaloupka <jchaloup@redhat.com> - 1.15.2-1
1a8dcf0
- Update to v1.15.2 (CVE-2019-11250 kubernetes: Bearer tokens written to logs at high verbosity levels (>= 7))
1a8dcf0
  resolves: #1740435
1a8dcf0
1d272bb
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.5-2
1d272bb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1d272bb
73fdd53
* Thu Apr 11 2019 Jan Chaloupka <jchaloup@redhat.com> - 1.13.5-1
73fdd53
- Update to v1.13.5 (CVE-2019-1002101 - Mishandling of symlinks allows for arbitrary file write via `kubectl cp`)
73fdd53
  resolves: #1693884
73fdd53
b613be8
* Tue Mar 05 2019 Jan Chaloupka <jchaloup@redhat.com> - 1.12.5-2
b613be8
- Allow to install cri-o as alternative to docker
b613be8
  resolves: #1631053
b613be8
- Allow to install moby-engine as alternative to docker
b613be8
  resolves: #1683154
b613be8
059b409
* Mon Feb 25 2019 Jan Chaloupka <jchaloup@redhat.com> - 1.12.5-1
059b409
- Update to v1.12.5 (Verify backend upgraded connection)
059b409
  resolves: #1655686
059b409
88b9dae
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.3-3
88b9dae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
88b9dae
937e4ce
* Fri Jan 11 2019 Jan Chaloupka <jchaloup@redhat.com> - 1.10.3-2
937e4ce
- Remove unit-test subpackage
937e4ce
  resolves: #1546742
937e4ce
41689fd
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.3-1
41689fd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
41689fd
Spyros Trigazis ef02555
* Thu May 31 2018 Spyros Trigazis <spyridon.trigazis@cern.ch> - 1.10.3-0
Spyros Trigazis ef02555
- Bump to upstream v1.10.3
Spyros Trigazis ef02555
a8da3ce
* Thu Apr 26 2018 Jan Chaloupka <jchaloup@redhat.com> - 1.9.6-3
a8da3ce
- systemd dropin needs --bootstrap-kubeconfig
a8da3ce
  resolves: #1542476
57cc3f0
- Update to v1.10.1
a8da3ce
b93c9e7
* Thu Apr 12 2018 Jan Chaloupka <jchaloup@redhat.com> - 1.9.6-2
b93c9e7
- Enable arm architecture
b93c9e7
  resolves: #1566210
b93c9e7
Spyros Trigazis 8ed3b52
* Thu Mar 22 2018 Spyros Trigazis <strigazi@gmail.com> - 1.9.6-1
Spyros Trigazis 8ed3b52
- Bump to upstream v1.9.6
Spyros Trigazis 8ed3b52
755d281
* Tue Mar 20 2018 Jan Chaloupka <jchaloup@redhat.com> - 1.9.5-1
755d281
- Bump to upstream v1.9.5
755d281
  resolves: #1554420
755d281
Spyros Trigazis 545a1c1
* Sun Feb 11 2018 Spyros Trigazis <strigazi@gmail.com> - 1.9.3-1
Spyros Trigazis 545a1c1
- Bump to upstream v1.9.3
Spyros Trigazis 545a1c1
6c9dc1d
* Fri Feb 09 2018 Jan Chaloupka <jchaloup@redhat.com> - 1.9.1-5
6c9dc1d
- Add --fail-swap-on=false flag to the /etc/kubernetes/kubelet
6c9dc1d
  resolves: #1542476
6c9dc1d
ace2ca3
* Thu Feb 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.1-4
ace2ca3
- Escape macro in %%changelog
ace2ca3
85165eb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-3
85165eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
85165eb
a05a8f1
* Mon Jan 15 2018 Jan Chaloupka <jchaloup@redhat.com> - 1.9.1-2
a05a8f1
- If docker is not available, try docker-ce instead (use boolean dependencies)
a05a8f1
  resolves: #1534508
a05a8f1
c78c989
* Fri Jan 12 2018 Spyros Trigazis <strigazi@gmail.com> - 1.9.1-1
c78c989
- Update to upstream v1.9.1
c78c989
  resolves #1533794
c78c989
298b8d4
* Tue Oct 24 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.8.1-1
298b8d4
- Update to upstream v1.8.1
298b8d4
  resolves: #1497135
298b8d4
851cfa0
* Mon Oct 02 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.8.0-1
851cfa0
- Update to upstream v1.8.0
851cfa0
  related: #1497625
851cfa0
cd6ac6c
* Mon Oct 02 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.7-1
cd6ac6c
- Update to upstream v1.7.7
cd6ac6c
  resolves: #1497625
cd6ac6c
f32f196
* Mon Sep 18 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.6-1
f32f196
- Update to upstream v1.7.6
f32f196
  resolves: #1492551
f32f196
6ce56ea
* Mon Sep 11 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.5-1
6ce56ea
- Update to upstream v1.7.5
6ce56ea
  resolves: #1490316
6ce56ea
de0f92c
* Fri Aug 18 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.4-1
de0f92c
- Fix the version
de0f92c
  related: #1482874
de0f92c
8959bd1
* Fri Aug 18 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.3-2
8959bd1
- Update to upstream v1.7.4
8959bd1
  resolves: #1482874
8959bd1
0f8fc94
* Tue Aug 08 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.3-1
0f8fc94
- Update to upstream v1.7.3
0f8fc94
  resolves: #1479685
0f8fc94
7e3c109
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-4
7e3c109
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
7e3c109
4d47665
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 1.7.2-3
4d47665
- Rebuild with binutils fix for ppc64le (#1475636)
4d47665
7367e27
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
7367e27
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7367e27
7866612
* Mon Jul 24 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.2-1
7866612
- Update to upstream v1.7.2
7866612
e1f50eb
* Mon Jul 24 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.1-2
e1f50eb
- Sync kubeadm.conf with upstream service configuration (set Restart,StartLimitInterval,RestartSec)
e1f50eb
9efe74b
* Fri Jul 14 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.7.1-1
9efe74b
- Update to upstream v1.7.1
9efe74b
  resolves: #1471767
9efe74b
f150360
* Sat Jul 08 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.6.7-1
f150360
- Update to upstream v1.6.7
f150360
  resolves: #1468823
f150360
  resolves: #1468752
f150360
Timothy St. Clair dbc1b82
* Fri May 19 2017 Timothy St. Clair <tstclair@heptio.com> - 1.6.4-1
Timothy St. Clair dbc1b82
- Add kubeadm subpackage to enable upstream deployments
Timothy St. Clair dbc1b82
667bebd
* Thu May 18 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.6.3-1
667bebd
- Update to upstream v1.6.3
667bebd
  resolves: #1452101
667bebd
eda87a2
* Fri May 12 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.6.2-2
eda87a2
- Extend archs with s390x
eda87a2
  resolves: #1400000
eda87a2
fd26101
* Tue May 02 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.6.2-1
fd26101
- Update to upstream v1.6.2
fd26101
  resolves: #1447338
fd26101
b0ef5e0
* Tue Apr 11 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.6.1-1
b0ef5e0
- Update to upstream v1.6.1
b0ef5e0
  related: #1422889
b0ef5e0
c9fc8fe
* Fri Mar 31 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.6-1
c9fc8fe
- Update to upstream v1.5.6
c9fc8fe
  related: #1422889
c9fc8fe
13bf6c5
* Mon Mar 27 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.5-4
13bf6c5
- Update to upstream v1.5.5
13bf6c5
  related: #1422889
13bf6c5
13b4aad
* Mon Mar 27 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.4-3
13b4aad
- re-enable debug-info
13b4aad
  related: #1422889
13b4aad
613a876
* Thu Mar 09 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.4-2
613a876
- Bump to upstream 7243c69eb523aa4377bce883e7c0dd76b84709a1
613a876
  related: #1422889
613a876
6db46af
* Thu Feb 16 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.3-1
6db46af
- Update to upstream v1.5.3
6db46af
  resolves: #1422889
6db46af
ebf49e4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-3
ebf49e4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ebf49e4
7222698
* Wed Jan 18 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.2-2
7222698
- fix rootScopeNaming generate selfLink
7222698
  resolves: #1413997
7222698
0cadee5
* Fri Jan 13 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.2-1
0cadee5
- Bump version as well
0cadee5
  related: #1412996
0cadee5
88e7537
* Fri Jan 13 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.1-2
88e7537
- Bump to upstream 1.5.2
88e7537
  resolves: #1412996
88e7537
fc55ab8
* Thu Jan 05 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.5.1-1
fc55ab8
- Bump to upstream 1.5.1
fc55ab8
  resolves: #1410186
fc55ab8
49e8173
* Wed Jan 04 2017 Jan Chaloupka <jchaloup@redhat.com> - 1.4.7-2
49e8173
- Generate the md files before they are converted to man pages
49e8173
  resolves: #1409943
49e8173
a6851c5
* Mon Dec 12 2016 Jan Chaloupka <jchaloup@redhat.com> - 1.4.7-1
a6851c5
- Bump to upstream v1.4.7
a6851c5
  resolves: #1403823
dd477cf
  New conntrack-tools dependency of kube-proxy
b93507c
  Build kubernetes on ppc64le with linkmode=external
b93507c
  resolves: #1392922
a6851c5
88856b2
* Mon Nov 14 2016 jchaloup <jchaloup@redhat.com> - 1.4.5-3
88856b2
- Patch unit-test subpackage to run tests over k8s distro binaries
88856b2
85cd3ef
* Wed Nov 09 2016 jchaloup <jchaloup@redhat.com> - 1.4.5-2
85cd3ef
- Add missing if devel around generated devel.file-list
85cd3ef
  related: #1390074
85cd3ef
acb57bd
* Tue Nov 08 2016 jchaloup <jchaloup@redhat.com> - 1.4.5-1
acb57bd
- Bump to upstream v1.4.5 (flip back to upstream based Kubernetes)
acb57bd
  related: #1390074
acb57bd
f032fcc
* Mon Oct 31 2016 jchaloup <jchaloup@redhat.com> - 1.4.0-0.1.beta3.git52492b4
d741110
- Update to origin v1.4.0-alpha.0 (ppc64le and arm unbuildable with the current golang version)
f032fcc
  resolves: #1390074
f032fcc
e35199a
* Mon Oct 24 2016 jchaloup <jchaloup@redhat.com> - 1.3.0-0.4.git52492b4
e35199a
- Update to origin v1.3.1
e35199a
  resolves: #1388092
e35199a
1d00721
* Thu Sep 08 2016 jchaloup <jchaloup@redhat.com> - 1.3.0-0.3.rc1.git507d3a7
1d00721
- Update to origin v1.3.0-rc1
1d00721
  resolves: #1374361
1d00721
afe0d23
* Thu Aug 11 2016 Dennis Gilmore <dennis@ausil.us> -1.3.0-0.2.git4a3f9c5
afe0d23
- enable armv7hl and aarch64
afe0d23
2b0d8bb
* Tue Aug 09 2016 jchaloup <jchaloup@redhat.com> - 1.3.0-0.1.git4a3f9c5
2b0d8bb
- Update to origin v1.3.0-alpha.3
2b0d8bb
  resolves: #1365601
2b0d8bb
c100d5b
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-0.27.git4a3f9c5
c100d5b
- https://fedoraproject.org/wiki/Changes/golang1.7
c100d5b
70b73cf
* Sun Jul 17 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.26.git4a3f9c5
70b73cf
- Update to origin v1.2.1
70b73cf
  resolves: #1357261
70b73cf
43a251e
* Wed Jul 13 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.25.git4a3f9c5
43a251e
- Enable CPU and Memory accounting on a node
43a251e
fc66c5c
* Wed Jun 29 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.24.git4a3f9c5
fc66c5c
- Be more verbose about devel subpackage
fc66c5c
  resolves: #1269449
fc66c5c
e21fd06
* Tue Jun 28 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.23.git4a3f9c5
e21fd06
- Own /run/kubernetes directory
e21fd06
  resolves: #1264699
e21fd06
5080568
* Sat May 28 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.22.git4a3f9c5
5080568
- Bump to origin v1.2.0
5080568
  resolves: #1340643
5080568
8b9c084
* Wed May 04 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.21.git4a3f9c5
8b9c084
- Extend uni-test subpackage to run other tests
8b9c084
49a423d
* Mon Apr 25 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.20.git4a3f9c5
49a423d
- Update support for ppc64le to use go compiler
49a423d
  related: #1306214
49a423d
2c89a45
* Thu Apr 21 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.19.git4a3f9c5
2c89a45
- Fix support for ppc64le
2c89a45
  related: #1306214
2c89a45
f4001ac
* Tue Apr 19 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.18.git4a3f9c5
f4001ac
- Bump to origin v1.1.6
f4001ac
  resolves: #1328357
f4001ac
586b3f0
* Mon Apr 11 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.17.alpha6.git4a3f9c5
586b3f0
- Don't disable extensions/v1beta1 by default to conform with upstream documentation
586b3f0
2a09c2d
* Wed Mar 30 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.16.alpha6.git4a3f9c5
2a09c2d
  Update to origin's v1.1.5
2a09c2d
  Build on ppc64le as well
2a09c2d
  resolves: #1306214
2a09c2d
72f1510
* Tue Mar 08 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.15.alpha6.gitf0cd09a
72f1510
- hyperkube.server: don't parse args for any command
72f1510
58fdec9
* Fri Mar 04 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.14.alpha6.gitf0cd09a
58fdec9
- Disable extensions/v1beta1 implicitly
58fdec9
3907aaf
* Tue Mar 01 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.13.alpha6.gitf0cd09a
3907aaf
- Hyperkube checks flags of individual commands/servers even if it does not define their flags.
3907aaf
  Thus resulting in 'uknown shorthand flag' error
3907aaf
e3d6b9a
* Mon Feb 29 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.12.alpha6.gitf0cd09a
e3d6b9a
- Disable v1beta3
67d5273
- hyperkube-kubectl-dont shift os.Args
e3d6b9a
18cb661
* Fri Feb 26 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.11.alpha6.gitf0cd09a
18cb661
- add kube- prefix to controller-manager, proxy and scheduler
18cb661
c4e5d1a
* Fri Feb 26 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.10.alpha6.gitf0cd09a
c4e5d1a
- Hardlink kube-controller-manager, kuber-scheduler, kubectl, kubelet and kube-proxy into hyperkube
c4e5d1a
- Keep kube-apiserver binary as it is (it has different permission and capabilities)
c4e5d1a
f7d2659
* Thu Feb 25 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.9.alpha6.gitf0cd09a
f7d2659
- Fix Content-Type of docker client response
f7d2659
  resolves: #1311861
f7d2659
6317626
* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-0.8.alpha6.gitf0cd09a
6317626
- https://fedoraproject.org/wiki/Changes/golang1.6
6317626
6a71873
* Mon Feb 22 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.7.alpha6.git4c8e6f4
6a71873
- Bump to origin 1.1.3
6a71873
  kube-version-change command replaced with kubectl convert (check out docs/admin/cluster-management.md)
6a71873
  related: 1295066
6a71873
a82b050
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-0.6.alpha1.git4c8e6f4
a82b050
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a82b050
ab3d4f3
* Thu Jan 21 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.5.alpha1.git4c8e6f4
ab3d4f3
- Bump to upstream e1d9873c1d5711b83fd3dd7eefe83a88ceb92c08
ab3d4f3
  related: #1291860
ab3d4f3
80268b9
* Thu Jan 07 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.4.alpha1.git4c8e6f4
80268b9
- Move definition of all version, git and commit macros at one place
80268b9
  resolves: #1291860
80268b9
242a65b
* Fri Jan 01 2016 jchaloup <jchaloup@redhat.com> - 1.2.0-0.3.alpha1.git4c8e6f4
242a65b
- Bump to upstream bf56e235826baded1772fb340266b8419c3e8f30
242a65b
  Rebase to origin's "v1.1.0.1 - Security Update to v1.1" release
242a65b
  resolves: #1295066
242a65b
c85c837
* Thu Nov 26 2015 jchaloup <jchaloup@redhat.com> - 1.2.0-0.2.alpha1.git4c8e6f4
c85c837
- Bump to origin upstream a41c9ff38d52fd508481c3c2bac13d52871fde02
c85c837
- Build kubernetes from origin's Godeps using hack/build-go.sh
c85c837
  origin's Godeps = kubernetes upstream + additional patches
c85c837
282e111
* Tue Oct 20 2015 jchaloup <jchaloup@redhat.com> - 1.2.0-0.1.alpha1.git4c8e6f4
282e111
- Bump to upstream 403de3874fba420fd096f2329b45fe2f5ae97e46
282e111
  related: #1211266
282e111
4a3f463
* Wed Oct 14 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.41.alpha1.gite9a6ef1
4a3f463
- Bump to origin upstream e9a6ef1cd4c29d45730289a497d18b19d7ba450d
4a3f463
  related: #1211266
4a3f463
e0a0e4c
* Fri Oct 09 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.40.alpha1.git5f38cb0
e0a0e4c
- Add missing short option for --server of kubectl
e0a0e4c
- Update unit-test-subpackage (only test-cmd.sh atm)
e0a0e4c
  related: #1211266
e0a0e4c
7a91c61
* Fri Oct 09 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.39.alpha1.git5f38cb0
7a91c61
- Add normalization of flags 
7a91c61
  related: #1211266
7a91c61
4b09ae4
* Fri Oct 02 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.38.alpha1.git5f38cb0
4b09ae4
- Restore unit-test subpackage (not yet tested)
4b09ae4
  related: #1211266
4b09ae4
40f5c00
* Wed Sep 30 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.37.alpha1.git5f38cb0
40f5c00
- Do not unset default cluster, otherwise k8s ends with error when no cluster set
40f5c00
  related: #1211266
40f5c00
73f7737
* Wed Sep 30 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.36.alpha0.git5f38cb0
73f7737
- Bump to o4n 5f38cb0e98c9e854cafba9c7f98dafd51e955ad8
73f7737
  related: #1211266
73f7737
f02e57d
* Tue Sep 29 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.35.alpha1.git2695cdc
f02e57d
- Update git version of k8s and o4n, add macros
f02e57d
  related: #1211266
f02e57d
2aa44d2
* Tue Sep 29 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.34.alpha1.git2695cdc
2aa44d2
- Built k8s from o4n tarball
2aa44d2
- Bump to upstream 2695cdcd29a8f11ef60278758e11f4817daf3c7c
2aa44d2
  related: #1211266
2aa44d2
444e4f2
* Tue Sep 22 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.33.alpha1.git09cf38e
444e4f2
- Bump to upstream 09cf38e9a80327e2d41654db277d00f19e2c84d0
444e4f2
  related: #1211266
444e4f2
bb4d281
* Thu Sep 17 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.32.alpha1.git400e685
b46f140
- Bump to upstream 400e6856b082ecf4b295568acda68d630fc000f1
b46f140
  related: #1211266
b46f140
8209673
* Wed Sep 16 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.31.gitd549fc4
8209673
- Bump to upstream d549fc400ac3e5901bd089b40168e1e6fb17341d
8209673
  related: #1211266
8209673
8209673
* Tue Sep 15 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.30.gitc9570e3
8209673
- Bump to upstream c9570e34d03c6700d83f796c0125d17c5064e57d
8209673
  related: #1211266
8209673
fe1b572
* Mon Sep 14 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.29.git86b4e77
fe1b572
- Bump to upstream 86b4e777e1947c1bc00e422306a3ca74cbd54dbe
fe1b572
  related: #1211266
fe1b572
323068c
* Thu Sep 10 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.28.gitf867ba3
323068c
- Bump to upstream f867ba3ba13e3dad422efd21c74f52b9762de37e
323068c
  related: #1211266
323068c
dcac430
* Wed Sep 09 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.27.git0f4fa4e
dcac430
- Bump to upstream 0f4fa4ed25ae9a9d1824fe55aeefb4d4ebfecdfd
dcac430
  related: #1211266
dcac430
351164f
* Tue Sep 08 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.26.git196f58b
351164f
- Bump to upstream 196f58b9cb25a2222c7f9aacd624737910b03acb
351164f
  related: #1211266
351164f
f468695
* Mon Sep 07 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.25.git96e0ed5
f468695
- Bump to upstream 96e0ed5749608d4cc32f61b3674deb04c8fa90ad
f468695
  related: #1211266
f468695
35718d1
* Sat Sep 05 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.24.git2e2def3
35718d1
- Bump to upstream 2e2def36a904fe9a197da5fc70e433e2e884442f
35718d1
  related: #1211266
35718d1
7ec2d24
* Fri Sep 04 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.23.gite724a52
7ec2d24
- Bump to upstream e724a5210adf717f62a72162621ace1e08730c75
7ec2d24
  related: #1211266
7ec2d24
208f5ae
* Thu Sep 03 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.22.gitb6f2f39
208f5ae
- Bump to upstream b6f2f396baec5105ff928cf61903c2c368259b21
208f5ae
  related: #1211266
208f5ae
cd77d1c
* Wed Sep 02 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.21.gitb4a3698
cd77d1c
- Bump to upstream b4a3698faed81410468eccf9f328ca6df3d0cca3
cd77d1c
  related: #1211266
cd77d1c
eabf85c
* Tue Sep 01 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.20.git2f9652c
eabf85c
- Bump to upstream 2f9652c7f1d4b8f333c0b5c8c1270db83b913436
eabf85c
  related: #1211266
eabf85c
4def06e
* Mon Aug 31 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.19.git66a644b
4def06e
- Bump to upstream 66a644b275ede9ddb98eb3f76e8d1840cafc2147
4def06e
  related: #1211266
4def06e
17482b1
* Thu Aug 27 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.18.gitab73849
17482b1
- Bump to upstream ab7384943748312f5e9294f42d42ed3983c7c96c
17482b1
  related: #1211266
17482b1
8bebc4e
* Wed Aug 26 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.17.git00e3442
8bebc4e
- Bump to upstream 00e34429e0242323ed34347cf0ab65b3d62b21f7
8bebc4e
  related: #1211266
8bebc4e
ef1c337
* Tue Aug 25 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.16.gita945785
ef1c337
- Bump to upstream a945785409d5b68f3a2721d2209300edb5abf1ce
ef1c337
  related: #1211266
ef1c337
f4b4fec
* Mon Aug 24 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.15.git5fe7029
f4b4fec
- Bump to upstream 5fe7029e688e1e5873a0b95a622edda5b5156d2b
f4b4fec
  related: #1211266
f4b4fec
55efd56
* Fri Aug 21 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.14.gitb6f18c7
55efd56
- Bump to upstream b6f18c7ce08714c8d4f6019463879a164a41750e
55efd56
  related: #1211266
55efd56
add5c04
* Thu Aug 20 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.13.git44fa48e
add5c04
- Bump to upstream 44fa48e5af44d3e988fa943d96a2de732d8cc666
add5c04
  related: #1211266
add5c04
5c1f8b0
* Wed Aug 19 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.12.gitb5a4a54
5c1f8b0
- Bump to upstream b5a4a548df0cffb99bdcc3b9b9e48d4025d0541c
5c1f8b0
  related: #1211266
5c1f8b0
b82a176
* Tue Aug 18 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.11.git919c7e9
b82a176
- Bump to upstream 919c7e94e23d2dcd5bdd96896e0a7990f9ae3338
b82a176
  related: #1211266
b82a176
61b68e4
* Tue Aug 18 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.10.git280b66c
61b68e4
- Bump to upstream 280b66c9012c21e253acd4e730f8684c39ca08ec
61b68e4
  related: #1211266
61b68e4
770f859
* Mon Aug 17 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.9.git081d9c6
770f859
- Bump to upstream 081d9c64d25c20ec16035036536511811118173d
770f859
  related: #1211266
770f859
3ea5161
* Fri Aug 14 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.8.git8dcbeba
3ea5161
- Bump to upstream 8dcbebae5ef6a7191d9dfb65c68833c6852a21ad
3ea5161
  related: #1211266
3ea5161
5b2495f
* Thu Aug 13 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.7.git968cbbe
5b2495f
- Bump to upstream 968cbbee5d4964bd916ba379904c469abb53d623
5b2495f
  related: #1211266
5b2495f
67f1049
* Wed Aug 12 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.6.gitc91950f
67f1049
- Bump to upstream c91950f01cb14ad47486dfcd2fdfb4be3ee7f36b
67f1049
  related: #1211266
67f1049
321a3fc
* Tue Aug 11 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.5.gite44c8e6
321a3fc
- Bump to upstream e44c8e6661c931f7fd434911b0d3bca140e1df3a
321a3fc
  related: #1211266
321a3fc
98e25a1
* Mon Aug 10 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.4.git2bfa9a1
98e25a1
- Bump to upstream 2bfa9a1f98147cfdc2e9f4cf50e2c430518d91eb
98e25a1
  related: #1243827
98e25a1
1b108cb
* Thu Aug 06 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.3.git4c42e13
1b108cb
- Bump to upstream 4c42e1302d3b351f3cb6074d32aa420bbd45e07d
1b108cb
- Change import path prefix to k8s.io/kubernetes
1b108cb
  related: #1243827
1b108cb
1b52c80
* Wed Aug 05 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.2.git159ba48
1b52c80
- Bump to upstream 159ba489329e9f6ce422541e13f97e1166090ec8
1b52c80
  related: #1243827
1b52c80
81d524f
* Sat Aug 01 2015 jchaloup <jchaloup@redhat.com> - 1.1.0-0.1.git6129d3d
81d524f
- Bump to upstream 6129d3d4eb80714286650818081a64ce2699afed
81d524f
  related: #1243827
81d524f
bf00f09
* Fri Jul 31 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.18.gitff058a1
bf00f09
- Bump to upstream ff058a1afeb63474f7a35805941f3b07c27aae0f
bf00f09
  related: #1243827
bf00f09
78bea4e
* Thu Jul 30 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.17.git769230e
78bea4e
- Bump to upstream 769230e735993bb0bf924279a40593c147c9a6ab
78bea4e
  related: #1243827
78bea4e
7ac2df7
* Wed Jul 29 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.16.gitdde7222
7ac2df7
- Bump to upstream dde72229dc9cbbdacfb2e44b22d9d5b357027020
7ac2df7
  related: #1243827
7ac2df7
5108e12
* Tue Jul 28 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.15.gitc5bffaa
5108e12
- Bump to upstream c5bffaaf3166513da6259c44a5d1ba8e86bea5ce
5108e12
  related: #1243827
5108e12
594f577
* Sat Jul 25 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.14.git5bd82ff
594f577
- Bump to upstream 5bd82ffe6da8f4e72e71b362635e558bfc412106
594f577
  related: #1243827
594f577
f4f8e87
* Fri Jul 24 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.13.git291acd1
f4f8e87
- Bump to upstream 291acd1a09ac836ec7524b060a19a6498d9878dd
f4f8e87
  related: #1243827
f4f8e87
873f9e3
* Thu Jul 23 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.12.gitfbed349
873f9e3
- Bump to upstream fbed3492bfa09e59b1c423fdd7c1ecad333a06ef
873f9e3
  related: #1243827
873f9e3
30960d3
* Tue Jul 21 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.11.gitfbc85e9
30960d3
- Add runtime dependency of kubernetes-node on socat (so kubectl port-forward works on AH)
30960d3
70f8be7
* Tue Jul 21 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.10.gitfbc85e9
70f8be7
- Update the build script for go1.5 as well
70f8be7
- Bump to upstream fbc85e9838f25547be94fbffeeb92a756d908ca0
70f8be7
  related: #1243827
70f8be7
f4983ac
* Mon Jul 20 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.9.git2d88675
f4983ac
- Bump to upstream 2d88675f2203d316d4bac312c7ccad12991b56c2
0c27b56
- Change KUBE_ETCD_SERVERS to listen on 2379 ports instead of 4001
0c27b56
  resolves: #1243827
ec11eb3
- Add kubernetes-client to provide kubectl command
ec11eb3
  resolves: #1241469
f4983ac
0a76cc3
* Mon Jul 20 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.8.gitb2dafda
0a76cc3
- Fix dependency and tests for go-1.5
0a76cc3
- with_debug off as the builds ends with error "ELFRESERVE too small: ..."
0a76cc3
Eric Paris 4f89faf
* Sat Jul 18 2015 Eric Paris <eparis@redhat.com> - 1.0.0-0.7.gitb2dafda
Eric Paris 7869d32
- Update apiserver binary gid
Eric Paris 7869d32
2c100de
* Fri Jul 17 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.6.gitb2dafda
2c100de
- Bump to upstream b2dafdaef5aceafad503ab56254b60f80da9e980
2c100de
  related: #1211266
2c100de
6cc11c1
* Thu Jul 16 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.5.git596a8a4
6cc11c1
- Bump to upstream 596a8a40d12498b5335140f50753980bfaea4f6b
6cc11c1
  related: #1211266
6cc11c1
0d1c2c8
* Wed Jul 15 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.4.git6ba532b
0d1c2c8
- Bump to upstream 6ba532b218cb5f5ea3f0e8dce5395182f388536c
0d1c2c8
  related: #1211266
0d1c2c8
0006a47
* Tue Jul 14 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.3.gitc616182
0006a47
- Bump to upstream c6161824db3784e6156131307a5e94647e5557fd
0006a47
  related: #1211266
0006a47
0da11eb
* Mon Jul 13 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.2.git2c27b1f
0da11eb
- Bump to upstream 2c27b1fa64f4e70f04575d1b217494f49332390e
0da11eb
  related: #1211266
0da11eb
f163795
* Sat Jul 11 2015 jchaloup <jchaloup@redhat.com> - 1.0.0-0.1.git1b37059
f163795
- Bump to upstream 1b370599ccf271741e657335c4943cb8c7dba28b
f163795
  related: #1211266
f163795
b339e2a
* Fri Jul 10 2015 jchaloup <jchaloup@redhat.com> - 0.21.1-0.2.gitccc4cfc
b339e2a
- Bump to upstream ccc4cfc7e11e0f127ac1cea045017dd799be3c63
b339e2a
  related: #1211266
b339e2a
0cde919
* Thu Jul 09 2015 jchaloup <jchaloup@redhat.com> - 0.21.1-0.1.git41f8907
0cde919
- Update generating of man pages from md (add genmanpages.sh)
0cde919
- Bump to upstream 41f89075396329cd46c58495c7d3f7e13adcaa96
0cde919
  related: #1211266
0cde919
9b306f9
* Wed Jul 08 2015 jchaloup <jchaloup@redhat.com> - 0.20.2-0.5.git77be29e
9b306f9
- Bump to upstream 77be29e3da71f0a136b6aa4048b2f0575c2598e4
9b306f9
  related: #1211266
9b306f9
4dd63cd
* Tue Jul 07 2015 jchaloup <jchaloup@redhat.com> - 0.20.2-0.4.git639a7da
4dd63cd
- Bump to upstream 639a7dac50a331414cc6c47083323388da0d8756
4dd63cd
  related: #1211266
4dd63cd
f44e021
* Mon Jul 06 2015 jchaloup <jchaloup@redhat.com> - 0.20.2-0.3.gitbb6f2f7
f44e021
- Bump to upstream bb6f2f7ad90596d624d84cc691eec0f518e90cc8
f44e021
  related: #1211266
f44e021
6cf9667
* Fri Jul 03 2015 jchaloup <jchaloup@redhat.com> - 0.20.2-0.2.git974377b
6cf9667
- Bump to upstream 974377b3064ac59b6e5694bfa568d67128026171
6cf9667
  related: #1211266
6cf9667
3c80a93
* Thu Jul 02 2015 jchaloup <jchaloup@redhat.com> - 0.20.2-0.1.gitef41ceb
3c80a93
- Bump to upstream ef41ceb3e477ceada84c5522f429f02ab0f5948e
3c80a93
  related: #1211266
3c80a93
318c31c
* Tue Jun 30 2015 jchaloup <jchaloup@redhat.com> - 0.20.0-0.3.git835eded
318c31c
- Bump to upstream 835eded2943dfcf13a89518715e4be842a6a3ac0
318c31c
- Generate missing man pages
318c31c
  related: #1211266
318c31c
59cfd9b
* Mon Jun 29 2015 jchaloup <jchaloup@redhat.com> - 0.20.0-0.2.git1c0b765
59cfd9b
- Bump to upstream 1c0b765df6dabfe9bd0e20489ed3bd18e6b3bda8
59cfd9b
  Comment out missing man pages
59cfd9b
  related: #1211266
59cfd9b
a606225
* Fri Jun 26 2015 jchaloup <jchaloup@redhat.com> - 0.20.0-0.1.git8ebd896
a606225
- Bump to upstream 8ebd896351513d446d56bc5785c070d2909226a3
a606225
  related: #1211266
a606225
af16fda
* Fri Jun 26 2015 jchaloup <jchaloup@redhat.com> - 0.19.3-0.6.git712f303
af16fda
- Bump to upstream 712f303350b35e70a573f3cb19193c8ec7ee7544
af16fda
  related: #1211266
af16fda
2281663
* Thu Jun 25 2015 jchaloup <jchaloup@redhat.com> - 0.19.3-0.5.git2803b86
2281663
- Bump to upstream 2803b86a42bf187afa816a7ce14fec754cc2af51
2281663
  related: #1211266
2281663
Eric Paris 857cddb
* Wed Jun 24 2015 Eric Paris <eparis@redhat.com> - 0.19.3-0.4.git5b4dc4e
Eric Paris 857cddb
- Set CAP_NET_BIND_SERVICE on the kube-apiserver so it can use 443
Eric Paris 857cddb
711c9af
* Wed Jun 24 2015 jchaloup <jchaloup@redhat.com> - 0.19.3-0.3.git5b4dc4e
711c9af
- Bump to upstream 5b4dc4edaa14e1ab4e3baa19df0388fa54dab344
711c9af
  pkg/cloudprovider/* packages does not conform to golang language specification
711c9af
  related: #1211266
711c9af
4a24b61
* Tue Jun 23 2015 jchaloup <jchaloup@redhat.com> - 0.19.3-0.2.gita2ce3ea
4a24b61
- Bump to upstream a2ce3ea5293553b1fe0db3cbc6d53bdafe061d79
4a24b61
  related: #1211266
4a24b61
ab9e2f0
* Mon Jun 22 2015 jchaloup <jchaloup@redhat.com> - 0.19.1-0.1.gitff0546d
ab9e2f0
- Bump to upstream ff0546da4fc23598de59db9f747c535545036463
ab9e2f0
  related: #1211266
ab9e2f0
02b506b
* Fri Jun 19 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.7.gitb2e9fed
02b506b
- Bump to upstream b2e9fed3490274509506285bdba309c50afb5c39
02b506b
  related: #1211266
02b506b
2e60340
* Thu Jun 18 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.6.gitf660940
2e60340
- Bump to upstream f660940dceb3fe6ffb1b14ba495a47d91b5cd910
2e60340
  related: #1211266
2e60340
ac85d97
* Wed Jun 17 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.5.git43889c6
ac85d97
- Bump to upstream 43889c612c4d396dcd8fbf3fbd217e106eaf5bce
ac85d97
  related: #1211266
ac85d97
30d4880
* Tue Jun 16 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.4.gita8269e3
30d4880
- Bump to upstream a8269e38c9e2bf81ba18cd6420e2309745d5b0b9
30d4880
  related: #1211266
30d4880
b00f041
* Sun Jun 14 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.3.git5e5c1d1
b00f041
- Bump to upstream 5e5c1d10976f2f26d356ca60ef7d0d715c9f00a2
b00f041
  related: #1211266
b00f041
35131f2
* Fri Jun 12 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.2.git0ca96c3
35131f2
- Bump to upstream 0ca96c3ac8b47114169f3b716ae4521ed8c7657c
35131f2
  related: #1211266
35131f2
324a7f7
* Thu Jun 11 2015 jchaloup <jchaloup@redhat.com> - 0.19.0-0.1.git5a02fc0
324a7f7
- Bump to upstream 5a02fc07d8a943132b9e68fe7169778253318487
324a7f7
  related: #1211266
324a7f7
8e9bf72
* Wed Jun 10 2015 jchaloup <jchaloup@redhat.com> - 0.18.2-0.3.git0dfb681
8e9bf72
- Bump to upstream 0dfb681ba5d5dba535895ace9d650667904b5df7
8e9bf72
  related: #1211266
8e9bf72
9e80b83
* Tue Jun 09 2015 jchaloup <jchaloup@redhat.com> - 0.18.2-0.2.gitb68e08f
9e80b83
- golang-cover is not needed
9e80b83
48c1dde
* Tue Jun 09 2015 jchaloup <jchaloup@redhat.com> - 0.18.2-0.1.gitb68e08f
48c1dde
- Bump to upstream b68e08f55f5ae566c4ea3905d0993a8735d6d34f
48c1dde
  related: #1211266
48c1dde
e5b5c73
* Sat Jun 06 2015 jchaloup <jchaloup@redhat.com> - 0.18.1-0.3.git0f1c4c2
e5b5c73
- Bump to upstream 0f1c4c25c344f70c3592040b2ef092ccdce0244f
e5b5c73
  related: #1211266
e5b5c73
42731b0
* Fri Jun 05 2015 jchaloup <jchaloup@redhat.com> - 0.18.1-0.2.git7309e1f
42731b0
- Bump to upstream 7309e1f707ea5dd08c51f803037d7d22c20e2b92
42731b0
  related: #1211266
42731b0
d6e0c44
* Thu Jun 04 2015 jchaloup <jchaloup@redhat.com> - 0.18.1-0.1.gita161edb
d6e0c44
- Bump to upstream a161edb3960c01ff6e14813858c2eeb85910009b
d6e0c44
  related: #1211266
d6e0c44
20438b2
* Wed Jun 03 2015 jchaloup <jchaloup@redhat.com> - 0.18.0-0.3.gitb5a91bd
20438b2
- Bump to upstream b5a91bda103ed2459f933959241a2b57331747ba
ace2ca3
- Don't run %%check section (kept only for local run). Tests are now handled via CI.
20438b2
  related: #1211266
20438b2
c1e14ee
* Tue Jun 02 2015 jchaloup <jchaloup@redhat.com> - 0.18.0-0.2.git5520386
c1e14ee
- Bump to upstream 5520386b180d3ddc4fa7b7dfe6f52642cc0c25f3
c1e14ee
  related: #1211266
c1e14ee
26fd165
* Mon Jun 01 2015 jchaloup <jchaloup@redhat.com> - 0.18.0-0.1.git0bb78fe
26fd165
- Bump to upstream 0bb78fe6c53ce38198cc3805c78308cdd4805ac8
26fd165
  related: #1211266
26fd165
10f01d8
* Fri May 29 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-6
10f01d8
- Bump to upstream ed4898d98c46869e9cbdb44186dfdeda9ff80cc2
10f01d8
  related: #1211266
10f01d8
2892dd0
* Thu May 28 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-5
2892dd0
- Bump to upstream 6fa2777e26559fc008eacac83eb165d25bd9a7de
2892dd0
  related: #1211266
2892dd0
84b7c29
* Tue May 26 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-4
84b7c29
- Bump to upstream 01fcb58673001e56c69e128ab57e0c3f701aeea5
84b7c29
  related: #1211266
84b7c29
f709bab
* Mon May 25 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-3
f709bab
- Decompose package into master and node subpackage.
f709bab
  Thanks to Avesh for testing and patience.
f709bab
  related: #1211266
f709bab
3a448db
* Mon May 25 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-2
3a448db
- Bump to upstream cf7b0bdc2a41d38613ac7f8eeea91cae23553fa2
3a448db
  related: #1211266
3a448db
772fe03
* Fri May 22 2015 jchaloup <jchaloup@redhat.com> - 0.17.1-1
772fe03
- Bump to upstream d9d12fd3f7036c92606fc3ba9046b365212fcd70
772fe03
  related: #1211266
772fe03
4ae2051
* Wed May 20 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-12
4ae2051
- Bump to upstream a76bdd97100c66a46e2b49288540dcec58a954c4
4ae2051
  related: #1211266
4ae2051
09840af
* Tue May 19 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-11
09840af
- Bump to upstream 10339d72b66a31592f73797a9983e7c207481b22
09840af
  related: #1211266
09840af
8641005
* Mon May 18 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-10
8641005
- Bump to upstream efb42b302d871f7217394205d84e5ae82335d786
8641005
  related: #1211266
8641005
0694557
* Sat May 16 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-9
0694557
- Bump to upstream d51e131726b925e7088b90915e99042459b628e0
0694557
  related: #1211266
0694557
5ea1627
* Fri May 15 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-8
5ea1627
- Bump to upstream 1ee33ac481a14db7b90e3bbac8cec4ceea822bfb
5ea1627
  related: #1211266
5ea1627
22a17cc
* Fri May 15 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-7
22a17cc
- Bump to upstream d3c6fb0d6a13c0177dcd67556d72963c959234ea
22a17cc
  related: #1211266
22a17cc
b747f35
* Fri May 15 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-6
b747f35
- Bump to upstream f57f31783089f41c0bdca8cb87a1001ca94e1a45
b747f35
  related: #1211266
b747f35
5a07549
* Thu May 14 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-5
5a07549
- Bump to upstream c90d381d0d5cf8ab7b8412106f5a6991d7e13c7d
5a07549
  related: #1211266
5a07549
434a8df
* Thu May 14 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-4
434a8df
- Bump to upstream 5010b2dde0f9b9eb820fe047e3b34bc9fa6324de
434a8df
- Add debug info
434a8df
  related: #1211266
434a8df
166dd43
* Wed May 13 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-3
166dd43
- Bump to upstream ec19d41b63f5fe7b2c939e7738a41c0fbe65d796
166dd43
  related: #1211266
166dd43
9ddd2bf
* Tue May 12 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-2
9ddd2bf
- Provide /usr/bin/kube-version-change binary
9ddd2bf
  related: #1211266
9ddd2bf
8916998
* Tue May 12 2015 jchaloup <jchaloup@redhat.com> - 0.17.0-1
8916998
- Bump to upstream 962f10ee580eea30e5f4ea725c4e9e3743408a58
8916998
  related: #1211266
8916998
17ef2e0
* Mon May 11 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-7
17ef2e0
- Bump to upstream 63182318c5876b94ac9b264d1224813b2b2ab541
17ef2e0
  related: #1211266
17ef2e0
78c113c
* Fri May 08 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-6
78c113c
- Bump to upstream d136728df7e2694df9e082902f6239c11b0f2b00
78c113c
- Add NetworkManager as dependency for /etc/resolv.conf
78c113c
  related: #1211266
78c113c
2bf47c7
* Thu May 07 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-5
2bf47c7
- Bump to upstream ca0f678b9a0a6dc795ac7a595350d0dbe9d0ac3b
2bf47c7
  related: #1211266
2bf47c7
b81b607
* Wed May 06 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-4
b81b607
- Add docs to kubernetes-unit-test
b81b607
  related: #1211266
b81b607
7c3ff17
* Wed May 06 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-3
7c3ff17
- Bump to upstream 3a24c0e898cb3060d7905af6df275a3be562451d
7c3ff17
  related: #1211266
7c3ff17
a210413
* Tue May 05 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-2
a210413
- Add api and README.md to kubernetes-unit-test
a210413
  related: #1211266
a210413
891fa80
* Tue May 05 2015 jchaloup <jchaloup@redhat.com> - 0.16.2-1
891fa80
- Bump to upstream 72048a824ca16c3921354197953fabecede5af47
891fa80
  related: #1211266
891fa80
e1af725
* Mon May 04 2015 jchaloup <jchaloup@redhat.com> - 0.16.1-2
e1af725
- Bump to upstream 1dcd80cdf3f00409d55cea1ef0e7faef0ae1d656
e1af725
  related: #1211266
e1af725
b429373
* Sun May 03 2015 jchaloup <jchaloup@redhat.com> - 0.16.1-1
b429373
- Bump to upstream 86751e8c90a3c0e852afb78d26cb6ba8cdbc37ba
b429373
  related: #1211266
b429373
ee1009f
* Fri May 01 2015 jchaloup <jchaloup@redhat.com> - 0.16.0-2
ee1009f
- Bump to upstream 72708d74b9801989ddbdc8403fc5ba4aafb7c1ef
ee1009f
  related: #1211266
ee1009f
dc9ee6b
* Wed Apr 29 2015 jchaloup <jchaloup@redhat.com> - 0.16.0-1
dc9ee6b
- Bump to upstream 7dcce2eeb7f28643d599c8b6a244523670d17c93
dc9ee6b
  related: #1211266
dc9ee6b
e3e6032
* Tue Apr 28 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-10
e3e6032
- Add unit-test subpackage
e3e6032
  related: #1211266
e3e6032
4307fd6
* Tue Apr 28 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-9
4307fd6
- Bump to upstream 99fc906f78cd2bcb08536c262867fa6803f816d5
4307fd6
  related: #1211266
4307fd6
5ce351f
* Mon Apr 27 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-8
5ce351f
- Bump to upstream 051dd96c542799dfab39184d2a7c8bacf9e88d85
5ce351f
  related: #1211266
5ce351f
76f7185
* Fri Apr 24 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-7
76f7185
- Bump to upstream 9f753c2592481a226d72cea91648db8fb97f0da8
76f7185
  related: #1211266
76f7185
9c18f8d
* Thu Apr 23 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-6
9c18f8d
- Bump to upstream cf824ae5e07965ba0b4b15ee88e08e2679f36978
9c18f8d
  related: #1211266
9c18f8d
7113a3c
* Tue Apr 21 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-5
7113a3c
- Bump to upstream 21788d8e6606038a0a465c97f5240b4e66970fbb
7113a3c
  related: #1211266
7113a3c
2c91dd0
* Mon Apr 20 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-4
2c91dd0
- Bump to upstream eb1ea269954da2ce557f3305fa88d42e3ade7975
2c91dd0
  related: #1211266
2c91dd0
77b7cad
* Fri Apr 17 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-3
77b7cad
- Obsolete cadvisor as it is integrated in kubelet
77b7cad
  related: #1211266
77b7cad
5d0a0d4
* Wed Apr 15 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-0.2.git0ea87e4
5d0a0d4
- Bump to upstream 0ea87e486407298dc1e3126c47f4076b9022fb09
5d0a0d4
  related: #1211266
5d0a0d4
b2b0821
* Tue Apr 14 2015 jchaloup <jchaloup@redhat.com> - 0.15.0-0.1.gitd02139d
b2b0821
- Bump to upstream d02139d2b454ecc5730cc535d415c1963a7fb2aa
b2b0821
  related: #1211266
b2b0821
4e604fe
* Sun Apr 12 2015 jchaloup <jchaloup@redhat.com> - 0.14.2-0.2.gitd577db9
4e604fe
- Bump to upstream d577db99873cbf04b8e17b78f17ec8f3a27eca30
4e604fe
c46cdd6
* Wed Apr 08 2015 jchaloup <jchaloup@redhat.com> - 0.14.2-0.1.git2719194
c46cdd6
- Bump to upstream 2719194154ffd38fd1613699a9dd10a00909957e
c46cdd6
  Use etcd-2.0.8 and higher
c46cdd6
6170e22
* Tue Apr 07 2015 jchaloup <jchaloup@redhat.com> - 0.14.1-0.2.gitd2f4734
6170e22
- Bump to upstream d2f473465738e6b6f7935aa704319577f5e890ba
6170e22
8025678
* Thu Apr 02 2015 jchaloup <jchaloup@redhat.com> - 0.14.1-0.1.gita94ffc8
8025678
- Bump to upstream a94ffc8625beb5e2a39edb01edc839cb8e59c444
8025678
6ed9101
* Wed Apr 01 2015 jchaloup <jchaloup@redhat.com> - 0.14.0-0.2.git8168344
6ed9101
- Bump to upstream 81683441b96537d4b51d146e39929b7003401cd5
6ed9101
ec0ebc4
* Tue Mar 31 2015 jchaloup <jchaloup@redhat.com> - 0.14.0-0.1.git9ed8761
ec0ebc4
- Bump to upstream 9ed87612d07f75143ac96ad90ff1ff68f13a2c67
ec0ebc4
- Remove [B]R from devel branch until the package has stable API
ec0ebc4
adf728d
* Mon Mar 30 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.6.git8a7a127
adf728d
- Bump to upstream 8a7a127352263439e22253a58628d37a93fdaeb2
adf728d
a824eca
* Fri Mar 27 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.5.git8d94c43
a824eca
- Bump to upstream 8d94c43e705824f23791b66ad5de4ea095d5bb32
a824eca
  resolves: #1205362
a824eca
1b453cf
* Wed Mar 25 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.4.git455fe82
1b453cf
- Bump to upstream 455fe8235be8fd9ba0ce21bf4f50a69d42e18693
1b453cf
578e073
* Mon Mar 23 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.3.gitef75888
578e073
- Remove runtime dependency on etcd
578e073
  resolves: #1202923
578e073
0189f12
* Sun Mar 22 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.2.gitef75888
0189f12
- Bump to upstream ef758881d108bb53a128126c503689104d17f477
0189f12
cf16ac2
* Fri Mar 20 2015 jchaloup <jchaloup@redhat.com> - 0.13.2-0.1.gita8f2cee
cf16ac2
- Bump to upstream a8f2cee8c5418676ee33a311fad57d6821d3d29a
cf16ac2
bae7be8
* Fri Mar 13 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.9.git53b25a7
bae7be8
- Bump to upstream 53b25a7890e31bdec6f2a95b32200d6cc27ae2ca
bae7be8
  fix kube-proxy.service and kubelet
bae7be8
  resolves: #1200919 #1200924
bae7be8
a4df9f8
* Fri Mar 13 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.8.git39dceb1
a4df9f8
- Bump to upstream 39dceb13a511a83963a766a439cb386d10764310
a4df9f8
Eric Paris ee05804
* Thu Mar 12 2015 Eric Paris <eparis@redhat.com> - 0.12.0-0.7.gita3fd0a9
ace2ca3
- Move from /etc/tmpfiles.d to %%{_tmpfilesdir}
a4df9f8
  resolves: #1200969
Eric Paris ee05804
7898d16
* Thu Mar 12 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.6.gita3fd0a9
7898d16
- Place contrib/init/systemd/tmpfiles.d/kubernetes.conf to /etc/tmpfiles.d/kubernetes.conf
7898d16
4030b14
* Thu Mar 12 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.5.gita3fd0a9
4030b14
- Bump to upstream a3fd0a9fd516bb6033f32196ae97aaecf8c096b1
4030b14
f83d9eb
* Tue Mar 10 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.4.gita4d871a
f83d9eb
- Bump to upstream a4d871a10086436557f804930812f2566c9d4d39
f83d9eb
1585b4e
* Fri Mar 06 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.3.git2700871
1585b4e
- Bump to upstream 2700871b049d5498167671cea6de8317099ad406
1585b4e
f54f9e4
* Thu Mar 05 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.2.git8b627f5
f54f9e4
- Bump to upstream 8b627f516fd3e4f62da90d401ceb3d38de6f8077
f54f9e4
cc5412b
* Tue Mar 03 2015 jchaloup <jchaloup@redhat.com> - 0.12.0-0.1.gitecca426
cc5412b
- Bump to upstream ecca42643b91a7117de8cd385b64e6bafecefd65
cc5412b
98c221e
* Mon Mar 02 2015 jchaloup <jchaloup@redhat.com> - 0.11.0-0.5.git6c5b390
98c221e
- Bump to upstream 6c5b390160856cd8334043344ef6e08568b0a5c9
98c221e
053b2fc
* Sat Feb 28 2015 jchaloup <jchaloup@redhat.com> - 0.11.0-0.4.git0fec31a
053b2fc
- Bump to upstream 0fec31a11edff14715a1efb27f77262a7c3770f4
053b2fc
2e73439
* Fri Feb 27 2015 jchaloup <jchaloup@redhat.com> - 0.11.0-0.3.git08402d7
2e73439
- Bump to upstream 08402d798c8f207a2e093de5a670c5e8e673e2de
2e73439
a170205
* Wed Feb 25 2015 jchaloup <jchaloup@redhat.com> - 0.11.0-0.2.git86434b4
a170205
- Bump to upstream 86434b4038ab87ac40219562ad420c3cc58c7c6b
a170205
5dd53b1
* Tue Feb 24 2015 jchaloup <jchaloup@redhat.com> - 0.11.0-0.1.git754a2a8
5dd53b1
- Bump to upstream 754a2a8305c812121c3845d8293efdd819b6a704
5dd53b1
  turn off integration tests until "FAILED: unexpected endpoints:
5dd53b1
  timed out waiting for the condition" problem is resolved
5dd53b1
  Adding back devel subpackage ([B]R list outdated)
5dd53b1
ae8462d
* Fri Feb 20 2015 jchaloup <jchaloup@redhat.com> - 0.10.1-0.3.git4c87805
ae8462d
- Bump to upstream 4c87805870b1b22e463c4bd711238ef68c77f0af
ae8462d
4796fb3
* Tue Feb 17 2015 jchaloup <jchaloup@redhat.com> - 0.10.1-0.2.git6f84bda
4796fb3
- Bump to upstream 6f84bdaba853872dbac69c84d3ab4b6964e85d8c
4796fb3
59967dd
* Tue Feb 17 2015 jchaloup <jchaloup@redhat.com> - 0.10.1-0.1.git7d6130e
59967dd
- Bump to upstream 7d6130edcdfabd7dd2e6a06fdc8fe5e333f07f5c
59967dd
ffbd237
* Sat Feb 07 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.7.gitc9c98ab
ffbd237
- Bump to upstream c9c98ab19eaa6f0b2ea17152c9a455338853f4d0
ffbd237
  Since some dependencies are broken, we can not build Kubernetes from Fedora deps.
ffbd237
  Switching to vendored source codes until Go draft is resolved
ffbd237
61feb8b
* Wed Feb 04 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.6.git7f5ed54
61feb8b
- Bump to upstream 7f5ed541f794348ae6279414cf70523a4d5133cc
61feb8b
61feb8b
* Tue Feb 03 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.5.git2ac6bbb
61feb8b
- Bump to upstream 2ac6bbb7eba7e69eac71bd9acd192cda97e67641
61feb8b
f4cdb5c
* Mon Feb 02 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.4.gite335e2d
f4cdb5c
- Bump to upstream e335e2d3e26a9a58d3b189ccf41ceb3770d1bfa9
f4cdb5c
96e197d
* Fri Jan 30 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.3.git55793ac
96e197d
- Bump to upstream 55793ac2066745f7243c666316499e1a8cf074f0
96e197d
cb5d41d
* Thu Jan 29 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.2.gitca6de16
cb5d41d
- Bump to upstream ca6de16df7762d4fc9b4ad44baa78d22e3f30742
cb5d41d
a5ae8dd
* Tue Jan 27 2015 jchaloup <jchaloup@redhat.com> - 0.9.1-0.1.git3623a01
a5ae8dd
- Bump to upstream 3623a01bf0e90de6345147eef62894057fe04b29
187bdc7
- update tests for etcd-2.0
a5ae8dd
8073018
* Thu Jan 22 2015 jchaloup <jchaloup@redhat.com> - 0.8.2-571.gitb2f287c
8073018
+- Bump to upstream b2f287c259d856f4c08052a51cd7772c563aff77
8073018
8073018
* Thu Jan 22 2015 Eric Paris <eparis@redhat.com> - 0.8.2-570.gitb2f287c
Eric Paris 3decc9a
- patch kubelet service file to use docker.service not docker.socket
Eric Paris 3decc9a
6f21f8a
* Wed Jan 21 2015 jchaloup <jchaloup@redhat.com> - 0.8.2-0.1.git5b04640
6f21f8a
- Bump to upstream 5b046406a957a1e7eda7c0c86dd7a89e9c94fc5f
6f21f8a
e37e2d4
* Sun Jan 18 2015 jchaloup <jchaloup@redhat.com> - 0.8.0-126.0.git68298f0
e37e2d4
- Add some missing dependencies
2d78dd3
- Add devel subpackage
e37e2d4
Eric Paris 396ad47
* Fri Jan 09 2015 Eric Paris <eparis@redhat.com> - 0.8.0-125.0.git68298f0
Eric Paris 396ad47
- Bump to upstream 68298f08a4980f95dfbf7b9f58bfec1808fb2670
Eric Paris 396ad47
Eric Paris 5c2a417
* Tue Dec 16 2014 Eric Paris <eparis@redhat.com> - 0.7.0-18.0.git52e165a
Eric Paris 5c2a417
- Bump to upstream 52e165a4fd720d1703ebc31bd6660e01334227b8
Eric Paris 5c2a417
Eric Paris 41f1a29
* Mon Dec 15 2014 Eric Paris <eparis@redhat.com> - 0.6-297.0.git5ef34bf
Eric Paris 41f1a29
- Bump to upstream 5ef34bf52311901b997119cc49eff944c610081b
Eric Paris 41f1a29
Eric Paris 41f1a29
* Wed Dec 03 2014 Eric Paris <eparis@redhat.com>
Eric Paris 41f1a29
- Replace patch to use old googlecode/go.net/ with BuildRequires on golang.org/x/net/
Eric Paris 41f1a29
Eric Paris 3301c67
* Tue Dec 02 2014 Eric Paris <eparis@redhat.com> - 0.6-4.0.git993ef88
Eric Paris 3301c67
- Bump to upstream 993ef88eec9012b221f79abe8f2932ee97997d28
Eric Paris 3301c67
Eric Paris 80f87bf
* Mon Dec 01 2014 Eric Paris <eparis@redhat.com> - 0.5-235.0.git6aabd98
Eric Paris 80f87bf
- Bump to upstream 6aabd9804fb75764b70e9172774002d4febcae34
Eric Paris 80f87bf
Eric Paris 17585c4
* Wed Nov 26 2014 Eric Paris <eparis@redhat.com> - 0.5-210.0.gitff1e9f4
Eric Paris 17585c4
- Bump to upstream ff1e9f4c191342c24974c030e82aceaff8ea9c24
Eric Paris 17585c4
Eric Paris e29c554
* Tue Nov 25 2014 Eric Paris <eparis@redhat.com> - 0.5-174.0.git64e07f7
Eric Paris e29c554
- Bump to upstream 64e07f7fe03d8692c685b09770c45f364967a119
Eric Paris e29c554
Eric Paris 32e5fa7
* Mon Nov 24 2014 Eric Paris <eparis@redhat.com> - 0.5-125.0.git162e498
Eric Paris 32e5fa7
- Bump to upstream 162e4983b947d2f6f858ca7607869d70627f5dff
Eric Paris 32e5fa7
Eric Paris 7f560ea
* Fri Nov 21 2014 Eric Paris <eparis@redhat.com> - 0.5-105.0.git3f74a1e
Eric Paris 7f560ea
- Bump to upstream 3f74a1e9f56b3c3502762930c0c551ccab0557ea
Eric Paris 7f560ea
Eric Paris 45b1935
* Thu Nov 20 2014 Eric Paris <eparis@redhat.com> - 0.5-65.0.gitc6158b8
Eric Paris 45b1935
- Bump to upstream c6158b8aa9c40fbf1732650a8611429536466b21
Eric Paris 06beba7
- include go-restful build requirement
Eric Paris 45b1935
Eric Paris 64689e5
* Tue Nov 18 2014 Eric Paris <eparis@redhat.com> - 0.5-14.0.gitdf0981b
Eric Paris 64689e5
- Bump to upstream df0981bc01c5782ad30fc45cb6f510f365737fc1
Eric Paris 64689e5
Eric Paris 63dea91
* Tue Nov 11 2014 Eric Paris <eparis@redhat.com> - 0.4-680.0.git30fcf24
Eric Paris 63dea91
- Bump to upstream 30fcf241312f6d0767c7d9305b4c462f1655f790
Eric Paris 63dea91
Eric Paris ac1c449
* Mon Nov 10 2014 Eric Paris <eparis@redhat.com> - 0.4-633.0.git6c70227
Eric Paris ac1c449
- Bump to upstream 6c70227a2eccc23966d32ea6d558ee05df46e400
Eric Paris ac1c449
Eric Paris b2a24d6
* Fri Nov 07 2014 Eric Paris <eparis@redhat.com> - 0.4-595.0.gitb695650
Eric Paris b2a24d6
- Bump to upstream b6956506fa2682afa93770a58ea8c7ba4b4caec1
Eric Paris b2a24d6
Eric Paris 2cc6e51
* Thu Nov 06 2014 Eric Paris <eparis@redhat.com> - 0.4-567.0.git3b1ef73
Eric Paris 2cc6e51
- Bump to upstream 3b1ef739d1fb32a822a22216fb965e22cdd28e7f
Eric Paris 2cc6e51
Eric Paris 2cc6e51
* Thu Nov 06 2014 Eric Paris <eparis@redhat.com> - 0.4-561.0.git06633bf
Eric Paris 2cc6e51
- Bump to upstream 06633bf4cdc1ebd4fc848f85025e14a794b017b4
Eric Paris 2cc6e51
- Make spec file more RHEL/CentOS friendly
Eric Paris 2cc6e51
Eric Paris 136cda1
* Tue Nov 04 2014 Eric Paris 
Eric Paris 136cda1
- Bump to upstream 5a649f2b9360a756fc8124897d3453a5fa9473a6
Eric Paris 136cda1
Eric Paris a933945
* Mon Nov 03 2014 Eric Paris 
Eric Paris a933945
- Bump to upstream a4abafea02babc529c9b5b9c825ba0bb3eec74c6
Eric Paris a933945
Eric Paris b196e11
* Mon Nov 03 2014 Eric Paris 
Eric Paris b196e11
- Bump to upstream 808be2d13b7bf14a3cf6985bc7c9d02f48a3d1e0
Eric Paris b196e11
- Includes upstream change to remove --machines from the APIServer
Eric Paris b196e11
- Port to new build system
ace2ca3
- Start running %%check tests again
Eric Paris 6d7725e
Eric Paris c638c2e
* Fri Oct 31 2014 Eric Paris 
Eric Paris c638c2e
- Bump to upstream a18cdac616962a2c486feb22afa3538fc3cf3a3a
Eric Paris c638c2e
Eric Paris 109846f
* Thu Oct 30 2014 Eric Paris 
Eric Paris 109846f
- Bump to upstream 78df01172af5cc132b7276afb668d31e91e61c11
Eric Paris 109846f
Eric Paris 98657e1
* Wed Oct 29 2014 Eric Paris 
Eric Paris 98657e1
- Bump to upstream 8e1d41670783cb75cf0c5088f199961a7d8e05e5
Eric Paris 98657e1
Eric Paris 904dfa7
* Tue Oct 28 2014 Eric Paris 
Eric Paris 904dfa7
- Bump to upstream 1c61486ec343246a81f62b4297671217c9576df7
Eric Paris 904dfa7
Eric Paris 2b03304
* Mon Oct 27 2014 Eric Paris 
Eric Paris 2b03304
- Bump to upstream dc7e3d6601a89e9017ca9db42c09fd0ecb36bb36
Eric Paris 2b03304
Eric Paris f86849e
* Fri Oct 24 2014 Eric Paris 
Eric Paris f86849e
- Bump to upstream e46af6e37f6e6965a63edb8eb8f115ae8ef41482
Eric Paris f86849e
Eric Paris bd32eac
* Thu Oct 23 2014 Eric Paris 
Eric Paris bd32eac
- Bump to upstream 77d2815b86e9581393d7de4379759c536df89edc
Eric Paris bd32eac
Eric Paris c335feb
* Wed Oct 22 2014 Eric Paris 
Eric Paris c335feb
- Bump to upstream 97dd7302ac2c2b9458a9348462a614ebf394b1ed
Eric Paris c335feb
- Use upstream kubectl bash completion instead of in-repo
Eric Paris c335feb
- Fix systemd_post and systemd_preun since we are using upstream service files
Eric Paris c335feb
Eric Paris d21193a
* Tue Oct 21 2014 Eric Paris 
Eric Paris d21193a
- Bump to upstream e8686429c4aa63fc73401259c8818da168a7b85e
Eric Paris d21193a
Eric Paris 4596a26
* Mon Oct 20 2014 Eric Paris 
Eric Paris 4596a26
- Bump to upstream d5377e4a394b4fc6e3088634729b538eac124b1b
Eric Paris 4596a26
- Use in tree systemd unit and Environment files
Eric Paris 4596a26
- Include kubectl bash completion from outside tree
Eric Paris 4596a26
Eric Paris 2bc7465
* Fri Oct 17 2014 Eric Paris 
Eric Paris 2bc7465
- Bump to upstream b01126322b826a15db06f6eeefeeb56dc06db7af
Eric Paris 2bc7465
- This is a major non backward compatible change.
Eric Paris 2bc7465
Eric Paris 6cf9084
* Thu Oct 16 2014 Eric Paris <eparis@redhat.com> - 0.4-0.0.git4452163
Eric Paris 6cf9084
- rebase to v0.4
Eric Paris 6cf9084
- include man pages
Eric Paris 6cf9084
0fced5c
* Tue Oct 14 2014 jchaloup <jchaloup@redhat.com> - 0.3-0.3.git98ac8e1
0fced5c
- create /var/lib/kubelet
0fced5c
- Use bash completions from upstream
0fced5c
- Bump to upstream 98ac8e178fcf1627399d659889bcb5fe25abdca4
0fced5c
- all by Eric Paris
0fced5c
beef130
* Mon Sep 29 2014 Jan Chaloupka <jchaloup@redhat.com> - 0.3-0.2.git88fdb65
beef130
- replace * with coresponding files
beef130
- remove dependency on gcc
beef130
beef130
* Wed Sep 24 2014 Eric Paris 
beef130
- Bump to upstream 88fdb659bc44cf2d1895c03f8838d36f4d890796
beef130
beef130
* Tue Sep 23 2014 Eric Paris 
beef130
- Bump to upstream bab5082a852218bb65aaacb91bdf599f9dd1b3ac
beef130
beef130
* Fri Sep 19 2014 Eric Paris 
beef130
- Bump to upstream 06316f486127697d5c2f5f4c82963dec272926cf
beef130
beef130
* Thu Sep 18 2014 Eric Paris 
beef130
- Bump to upstream f7a5ec3c36bd40cc2216c1da331ab647733769dd
beef130
beef130
* Wed Sep 17 2014 Eric Paris 
beef130
- Try to intelligently determine the deps
beef130
beef130
* Wed Sep 17 2014 Eric Paris 
beef130
- Bump to upstream ac8ee45f4fc4579b3ed65faafa618de9c0f8fb26
beef130
beef130
* Mon Sep 15 2014 Eric Paris 
beef130
- Bump to upstream 24b5b7e8d3a8af1eecf4db40c204e3c15ae955ba
beef130
beef130
* Thu Sep 11 2014 Eric Paris 
beef130
- Bump to upstream cc7999c00a40df21bd3b5e85ecea3b817377b231
beef130
beef130
* Wed Sep 10 2014 Eric Paris 
beef130
- Add bash completions
beef130
beef130
* Wed Sep 10 2014 Eric Paris 
beef130
- Bump to upstream 60d4770127d22e51c53e74ca94c3639702924bd2
beef130
beef130
* Mon Sep 08 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1-0.4.git6ebe69a
beef130
- prefer autosetup instead of setup (revert setup change in 0-0.3.git)
beef130
https://fedoraproject.org/wiki/Autosetup_packaging_draft
beef130
- revert version number to 0.1
beef130
beef130
* Mon Sep 08 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.3.git6ebe69a
beef130
- gopath defined in golang package already
beef130
- package owns /etc/kubernetes
beef130
- bash dependency implicit
beef130
- keep buildroot/$RPM_BUILD_ROOT macros consistent
beef130
- replace with macros wherever possible
beef130
- set version, release and source tarball prep as per
beef130
https://fedoraproject.org/wiki/Packaging:SourceURL#Github
beef130
beef130
* Mon Sep 08 2014 Eric Paris <eparis@redhat.com>
beef130
- make services restart automatically on error
beef130
beef130
* Sat Sep 06 2014 Eric Paris 
beef130
- Bump to upstream 6ebe69a8751508c11d0db4dceb8ecab0c2c7314a
beef130
beef130
* Wed Aug 13 2014 Eric Paris <eparis@redhat.com>
beef130
- update to upstream
beef130
- redo build to use project scripts
ace2ca3
- use project scripts in %%check
beef130
- rework deletion of third_party packages to easily detect changes
beef130
- run apiserver and controller-manager as non-root
beef130
beef130
* Mon Aug 11 2014 Adam Miller <maxamillion@redhat.com>
beef130
- update to upstream
beef130
- decouple the rest of third_party
beef130
beef130
* Thu Aug 7 2014 Eric Paris <eparis@redhat.com>
beef130
- update to head
beef130
- update package to include config files
beef130
beef130
* Wed Jul 16 2014 Colin Walters <walters@redhat.com>
beef130
- Initial package