ezelkow1 commented on a change in pull request #5004: URL: https://github.com/apache/trafficcontrol/pull/5004#discussion_r482258408
########## File path: infrastructure/docker/build/Dockerfile-tsb ########## @@ -0,0 +1,32 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +FROM golang:1.13 as tsb-build +RUN mkdir -p /go/src/github.com/comcast/tsb && cd /go/src/github.com/comcast/tsb && git init && git remote add origin https://github.com/comcast/tsb && git fetch --depth=1 origin 58e38cc84edf2415c05e5c1e78b242c03fa675fa && git reset --hard FETCH_HEAD +RUN CGOENABLED=0 go install github.com/comcast/tsb + +FROM centos:7 +MAINTAINER [email protected] + +RUN yum -y install git sudo +#ADD https://github.com/docker/compose/releases/download/1.26.2/docker-compose-Linux-x86_64 /usr/bin/docker-compose Review comment: should remove if not needed anymore ########## File path: traffic_server/tsb/trafficserver.spec ########## @@ -0,0 +1,151 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +%global src %{_topdir}/SOURCES/src +%global git_args --git-dir="%{src}/.git" --work-tree="%{src}" +%global tag %(git %{git_args} describe --long | sed 's/^\\\(.*\\\)-\\\([0-9]\\\+\\\)-g\\\([0-9a-f]\\\+\\\)$/\\\1/' | sed 's/-/_/') +%global distance %(git %{git_args} describe --long | sed 's/^\\\(.*\\\)-\\\([0-9]\\\+\\\)-g\\\([0-9a-f]\\\+\\\)$/\\\2/') +%global commit %(git %{git_args} describe --long | sed 's/^\\\(.*\\\)-\\\([0-9]\\\+\\\)-g\\\([0-9a-f]\\\+\\\)$/\\\3/') +%global git_serial %(git %{git_args} rev-list HEAD | wc -l) +%global install_prefix "/opt" +%global api_stats "4096" +%global _find_debuginfo_dwz_opts %{nil} + +Name: trafficserver +Version: %{tag} +Epoch: %{git_serial} +Release: %{distance}.%{commit}%{?dist} +Summary: Apache Traffic Server +Vendor: Apache +Group: Applications/Communications +License: Apache License, Version 2.0 +URL: https://github.com/apache/trafficserver +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +Requires: tcl, hwloc, pcre, libcap +BuildRequires: autoconf, automake, libtool, gcc-c++, glibc-devel, expat-devel, pcre, libcap-devel, pcre-devel, perl-ExtUtils-MakeMaker, tcl-devel, hwloc-devel +Source: src + +%description +Apache Traffic Server with Apache Traffic Control modifications and environment specific modifications + +%prep +%setup -c -T +cp -far %{src}/. . +cp -far %{src}/../traffic_server_jemalloc .. +autoreconf -vfi + +%build +./configure --with-openssl=/opt/trafficserver/openssl --prefix=%{install_prefix}/%{name} --with-user=ats --with-group=ats --with-build-number=%{release} --enable-experimental-plugins --with-max-api-stats=%{api_stats} --disable-unwind +make %{?_smp_mflags} +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/trafficserver/openssl/lib:/usr/local/lib +make %{?_smp_mflags} check + +%install +make DESTDIR=$RPM_BUILD_ROOT install + +mkdir -p $RPM_BUILD_ROOT/opt/trafficserver/etc/trafficserver/snapshots +mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/system +cp rc/trafficserver.service $RPM_BUILD_ROOT/usr/lib/systemd/system/ +cp ../traffic_server_jemalloc $RPM_BUILD_ROOT/opt/trafficserver/bin/ + +mkdir -p $RPM_BUILD_ROOT/opt/trafficserver/openssl +cp -r /opt/trafficserver/openssl/lib $RPM_BUILD_ROOT/opt/trafficserver/openssl/lib + +mkdir -p $RPM_BUILD_ROOT/opt/trafficserver/lua +cp -r /opt/build/luacrypto/src/.libs/crypto.so $RPM_BUILD_ROOT/opt/trafficserver/lua + +%clean +rm -rf $RPM_BUILD_ROOT + +%pre +id ats &>/dev/null || /usr/sbin/useradd -u 176 -r ats -s /sbin/nologin -d / + +%post +/bin/systemctl daemon-reload +/bin/systemctl enable trafficserver + +%preun +/bin/systemctl stop trafficserver + +# if 0 uninstall, if 1 upgrade +if [ "$1" = "0" ]; then + /bin/systemctl disable trafficserver +fi + +%postun +# Helpful in understanding order of operations in relation to install/uninstall/upgrade: +# https://fedoraproject.org/wiki/Packaging:Scriptlets + +# Always do this because the service file may have been updated. +/bin/systemctl daemon-reload + +# if 0 uninstall, if 1 upgrade +if [ "$1" = "0" ]; then + id ats &>/dev/null && /usr/sbin/userdel ats +fi + +%files +%defattr(-,root,root) +%attr(644,-,-) /usr/lib/systemd/system/trafficserver.service +%dir /opt/trafficserver +/opt/trafficserver/openssl +/opt/trafficserver/lua +/opt/trafficserver/bin +/opt/trafficserver/include +/opt/trafficserver/lib +/opt/trafficserver/libexec +/opt/trafficserver/share +%dir /opt/trafficserver/var +%attr(-,ats,ats) /opt/trafficserver/var/trafficserver +%dir /opt/trafficserver/var/log +%attr(-,ats,ats) /opt/trafficserver/var/log/trafficserver +%dir /opt/trafficserver/etc +%attr(-,ats,ats) %dir /opt/trafficserver/etc/trafficserver +%attr(-,ats,ats) %dir /opt/trafficserver/etc/trafficserver/snapshots +/opt/trafficserver/etc/trafficserver/body_factory +/opt/trafficserver/etc/trafficserver/trafficserver-release +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/cache.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/hosting.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/ip_allow.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/logging.yaml +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/parent.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/plugin.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/records.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/remap.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/socks.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/splitdns.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/ssl_multicert.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/ssl_server_name.yaml +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/storage.config +%config(noreplace) %attr(644,ats,ats) /opt/trafficserver/etc/trafficserver/volume.config + +%changelog Review comment: Do we want this full changelog in here, its fairly out of date anyway plus I might consider this going out to opensource to be a fresh start ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
