-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from arista-eosplus/release-1.6.0
Release 1.6.0
- Loading branch information
Showing
18 changed files
with
480 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
*.md | ||
!README.md | ||
docs | ||
test | ||
venv | ||
*.egg-info | ||
.git | ||
.gitignore | ||
.travis.yml | ||
.DS_Store | ||
rpm | ||
ztpserver.spec-e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# docker build -t ztpserver . | ||
# docker run -P ztpserver | ||
# docker run -i -t --rm -p 80:80 nginx | ||
# | ||
FROM python:2 | ||
|
||
LABEL version="0.1" | ||
LABEL maintainer="[email protected]" | ||
|
||
WORKDIR /src/ztpserver | ||
|
||
# COPY . . | ||
# COPY requirements.txt ./ | ||
# RUN pip install --no-cache-dir -r requirements.txt | ||
COPY dist/ztpserver-*.tar.gz ./ | ||
RUN pip install --no-cache-dir ztpserver-*.tar.gz | ||
|
||
VOLUME ["/usr/share/ztpserver", "/etc/ztpserver"] | ||
|
||
# RUN groupadd -r ztpsadmin && useradd --no-log-init -r -g ztpsadmin ztpsadmin | ||
|
||
EXPOSE 8080/TCP | ||
|
||
# WORKDIR /usr/share/ztpserver | ||
# CMD [ "python", "./myscript.py" ] | ||
# CMD sh | ||
|
||
# docker run -p 8080:8080 ztpserver [-d] | ||
ENTRYPOINT /usr/local/bin/ztps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.5.0 | ||
1.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Release 1.6.0 | ||
------------- | ||
|
||
New Modules | ||
^^^^^^^^^^^ | ||
|
||
Enhancements | ||
^^^^^^^^^^^^ | ||
|
||
* Add Ansible action docs (`352 <https://github.com/arista-eosplus/ztpserver/pull/352>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Update Bootstrap regex used to detect old EOS versions that do not support unix sockets (`354 <https://github.com/arista-eosplus/ztpserver/pull/354>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Add Docker (`362 <https://github.com/arista-eosplus/ztpserver/pull/362>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Added support for streaming large EOS images to device for smaller switches (`376 <https://github.com/arista-eosplus/ztpserver/pull/376>`_) [`mhartista <https://github.com/mharista>`_] | ||
|
||
Fixed | ||
^^^^^ | ||
|
||
* Fix RPM builds (`351 <https://github.com/arista-eosplus/ztpserver/pull/351>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Do not add blank line at the start of a file (`355 <https://github.com/arista-eosplus/ztpserver/pull/355>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Fix interface matcher for remote_interface to properly process regex() values (`360 <https://github.com/arista-eosplus/ztpserver/pull/360>`_) [`jerearista <https://github.com/jerearista>`_] | ||
* Fix intf pattern range (`361 <https://github.com/arista-eosplus/ztpserver/pull/361>`_) [`jerearista <https://github.com/jerearista>`_] | ||
|
||
Known Caveats | ||
^^^^^^^^^^^^^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.