-
Notifications
You must be signed in to change notification settings - Fork 107
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 #602 from epiphany-platform/develop
Merge develop into master
- Loading branch information
Showing
334 changed files
with
12,609 additions
and
3,435 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,27 @@ | ||
# Changelog 0.4 | ||
|
||
## [0.4.0] 2019-10-11 | ||
|
||
### Added | ||
|
||
- Offline installation | ||
- Azure cluster deployments with Epicli | ||
- Delete commands to remove clusters from cloud providers (AWS, Azure) | ||
- Devcontainer for Epicli development using VSCode | ||
- Debug flag for Epicli | ||
|
||
### Changed | ||
|
||
- Various improvements in Epicli | ||
- Documentation cleanup and updates | ||
|
||
### Fixed | ||
|
||
- [#407](https://github.com/epiphany-platform/epiphany/issues/407) - Deployment/Application role fails because Kubernetes cluster is not ready after reboot. | ||
- [#410](https://github.com/epiphany-platform/epiphany/issues/410) - Node_exporter ports are not present in defaults resulting in Prometheus not beeing able to scrape data with minimal cluster data.yaml. | ||
- [#548](https://github.com/epiphany-platform/epiphany/issues/548) - Epicli fails on AWS when clustering RabbitMQ nodes. | ||
- [#549](https://github.com/epiphany-platform/epiphany/issues/549) - Need to allow traffic on port 5432 to enable PostgreSQL replication on AWS. | ||
|
||
### Known issues | ||
|
||
- |
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
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
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
2 changes: 1 addition & 1 deletion
2
core/data/azure/infrastructure/epiphany-qa-basic/basic-data.yaml
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
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
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,35 @@ | ||
FROM python:3.7 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
ARG USERNAME=vscode | ||
ARG USER_UID=1000 | ||
ARG USER_GID=$USER_UID | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \ | ||
|
||
&& apt-get -y install git procps lsb-release gcc make musl-dev libffi-dev tar unzip \ | ||
|
||
&& apt-get -y install ruby-full \ | ||
|
||
&& gem install serverspec rake rspec_junit_formatter \ | ||
|
||
&& pip --disable-pip-version-check --no-cache-dir install pylint \ | ||
|
||
&& pip --disable-pip-version-check --no-cache-dir install pipenv \ | ||
|
||
&& groupadd --gid $USER_GID $USERNAME \ | ||
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \ | ||
|
||
&& apt-get install -y sudo \ | ||
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \ | ||
&& chmod 0440 /etc/sudoers.d/$USERNAME \ | ||
|
||
&& apt-get autoremove -y \ | ||
&& apt-get clean -y \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ENV DEBIAN_FRONTEND= | ||
|
||
|
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,18 @@ | ||
{ | ||
"name": "epicli", | ||
"dockerFile": "Dockerfile", | ||
"extensions": [ | ||
"ms-python.python", | ||
"littlefoxteam.vscode-python-test-adapter", | ||
"vscoss.vscode-ansible", | ||
"wholroyd.jinja", | ||
"redhat.vscode-yaml", | ||
"mauve.terraform", | ||
"davidanson.vscode-markdownlint" | ||
], | ||
"settings": { | ||
"python.pythonPath": "/usr/local/bin/python", | ||
}, | ||
"postCreateCommand": "sudo pipenv install --system --dev", | ||
"runArgs": [ "-u", "vscode" ] | ||
} |
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,12 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-vscode-remote.remote-containers", | ||
"ms-python.python", | ||
"littlefoxteam.vscode-python-test-adapter", | ||
"vscoss.vscode-ansible", | ||
"wholroyd.jinja", | ||
"redhat.vscode-yaml", | ||
"mauve.terraform", | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} |
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,41 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "epicli", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/cli/epicli.py", | ||
"cwd": "${workspaceFolder}", | ||
"pythonPath": "${config:python.pythonPath}", | ||
"env": { "PYTHONPATH": "${workspaceFolder}" }, | ||
"console": "integratedTerminal", | ||
"args": ["apply", "-f", "${workspaceFolder}/PATH_TO_YOUR_DATA_YAML"] | ||
}, | ||
{ | ||
"name": "python unit tests", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/run-tests.py", | ||
"cwd": "${workspaceFolder}", | ||
"pythonPath": "${config:python.pythonPath}", | ||
"env": { "PYTHONPATH": "${workspaceFolder}" }, | ||
"console": "integratedTerminal", | ||
"args": ["python"] | ||
}, | ||
{ | ||
"name": "server spec tests", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/run-tests.py", | ||
"cwd": "${workspaceFolder}", | ||
"pythonPath": "${config:python.pythonPath}", | ||
"env": { "PYTHONPATH": "${workspaceFolder}" }, | ||
"console": "integratedTerminal", | ||
"args": ["spec", "-i", "${workspaceFolder}/PATH_TO_CLUSTER_INVENTORY", "-u", "ADMIN_USER", "-k", "${workspaceFolder}/PATH_TO_SSH_KEY"] | ||
} | ||
] | ||
} |
Oops, something went wrong.