You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add Pulumi Automation API scripts with only AWS support
This change adds Python scripts that use the Pulumi Automation
API to stand up MARA like how the bin/start.sh scripts currently
do.
* feat: integrate Automation API scripts with k8s secrets
This change adds a new Pulumi project named 'secrets' to
MARA. This project is used in conjuction with the Pulumi
Automation API to store secrets using the Kubernetes
secret store so the secrets can be used across Pulumi
projects.
* feat: improve authentication error output
This change outputs the results of the AWS cli command
'aws sts get-caller-identity' more tersely and without
a stacktrace when the command fails.
* feat: add differing behavior for container push per provider
* docs: update examples to reflect changes to secrets
* feat: add support for Digital Ocean to automation API scripts
* feat: add support for Digital Ocean Container Registry
* chore: upgrade default helm chart version
* chore: upgrade example version for ingress image name
* refactor: break headers into separate file
* refactor: normalize PulumiProject path property naming
The naming of the property "root_path" conflicted with the
initialization parameter "path" AS WELL AS the method
"path()". This change normalizes the property names such
that they do not ambiguously overlap.
* refactor: on_success closure params to single class
We want to be able to easily add new references to the state that
can be processed for on_success events. As such, the three variables
passed to those closures has been refactored to a single type which
references the original three variables. This will make adding new
variables easier.
* refactor: separate namespace creation from ingress controller
When using container registry credentials with nginx ingress controller,
one must create the credential secrets for the registry in the same
namespace as the ingress controller. By breaking it apart as a separate
step, it allows us to layer in additional logic (such as adding credentials)
after the namespace has been created and before the ingress controller
has been deployed.
* refactor: add DO Registry credentials to k8s secrets via a project
This change adds a new Pulumi project that gets the authentication
credentials for a Digital Ocean Container Repository, encodes them
as a Kubernetes secret, and then stores the secret in the running
cluster's nginx-ingress namespace.
* refactor: make pulumi color settings a method on EnvConfig
* refactor: add container registry implementation name method
* fix: AWS registry not being referenced using 'repository'
AWS ECR refers to itself as a repository and not a registry, we aim
to keep that naming consistent when referring directly to ECR nouns.
This change fixes a bug where we became over-eager using the word
'registry' instead of the noun 'repository' that is hardcoded in
the ECR stack reference.
* bugfix: change pipenv install to pipenv sync to avoid updating deps at build time (#157)
(cherry picked from commit 01ef1ff)
* chore: deprecated convenience scripts and projects (#159)
* chore: remove non-functional kubevip project
* chore: deprecation of resources as discussed in #155
(cherry picked from commit b4ff561)
* fix: typo in find command was causing pulumi stacks to not be deleted (#160)
(cherry picked from commit 0619d5d)
* chore: jenkins fixes and general cleanup of jenkinsfiles (#161)
* fix: typo in find command was causing pulumi stacks to not be deleted
* fix: formatting and find syntax in jenkins (esc for Groovy)
* fix: formatting and find syntax in jenkins (esc for Groovy)
* chore: clean up the comments a bit
(cherry picked from commit cf655d0)
* refactor: improve naming and fix typos
* feat: install Digital Ocean CLI tool
* feat: prompt user for parameters when starting up DO
* feat: add dns record support to Digital Ocean provider
* refactor: change name of container registry credentials project
* docs: small comment addition and doc change
Reference to the DO CLI is removed from the documentation
because it is installed as part of the setup_venv.sh script.
* chore: double Helm timeout for Prometheus install
* feat: allow adding new clusters to the kubectl config
Allow for adding and merging new clusters into the
users kubectl config. The AWS and Digital Ocean
CLIs do this automatically. However, not all SDKs
nor CLI tools do this. Here we add code that does
this so that the same type of functionality can be
done no matter what the underlying infrastructure
provider is.
* refactor: add method to insert project in exec order
Add a method to allow for the insertion of a project
anywhere in the execution order of a provider.
* chore: simplify function name
* feat: add check for empty configuration file
* refactor: break apart read and prompt operations
* chore: change encoding to ascii because it is correct
* feat: add automation API support for LKE and Harbor on Linode
This adds support for Linode using the Automation API scripts.
In order to provide support, the Harbor Container Registry was
added to the requirements. Now, before starting LKE an instance
of Harbor will be started in a Linode compute instance.
* refactor: remove bash provision and destroy scripts
* fix: typo in function parameter
* docs: add additional code comments
* feat: migrate to python logging for output
* docs: add MARA Runner design document
* fix: change sed flag from -r to posix compat -E
Fixes#168
* feat: add easy runner script to MARA automation
This change adds a bash script that sets up the
virtual environment and invokes the automation/main.py
script. Ideally, this would make running MARA much
easier than it currently is.
* fix: properly pass parameters to main.py from runner
* refactor: improve error messaging and operations parsing
* fix: fixes object has no attribute '__debug_logger_func' error
Fixes#166
There is an issue with methods being named with two leading
underscores being passed correctly to Pulumi's async handlers.
In this change, we rename the method and add a check for
the method's existence.
* test: fix test runner to work after directory refactor
* fix: enable force delete on ECR so that MARA can remove it
* fix: sensible message on refresh run without prev deployment
* fix: change import for better compatibility with test runner
* chore: upgrade pulumi deps and kubectl versions
* fix: add in updates to automation-api branch for version bumps (#172)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* chore: additional bug fixes and usability fixes to automation branch (#174)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* chore: updates to fix digital ocean deployment (#177)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: provide ability to still run kubeconfig deploys until they are cut over to automation api (#179)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: add repo-only IC deploy to support kubeconfig deploys
* fix: modifications to handle kubeconfig deploys for now
* fix: recommission bash scripts to support kubeconfig deploys for now
* fix: added gitkeep for IC manifests dir which is required for repo-only deploy (#180)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: add repo-only IC deploy to support kubeconfig deploys
* fix: modifications to handle kubeconfig deploys for now
* fix: recommission bash scripts to support kubeconfig deploys for now
* fix: gitkeep needed for manifests dir under repo nginx
* fix: updated jenkinsfiles for automation api work (#181)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: add repo-only IC deploy to support kubeconfig deploys
* fix: modifications to handle kubeconfig deploys for now
* fix: recommission bash scripts to support kubeconfig deploys for now
* fix: gitkeep needed for manifests dir under repo nginx
* chore: update jenkinsfiles for automation api
* chore: doc updates for automation-api changes (#183)
* fix: adding updates to jenkinsfiles (#185)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: add repo-only IC deploy to support kubeconfig deploys
* fix: modifications to handle kubeconfig deploys for now
* fix: recommission bash scripts to support kubeconfig deploys for now
* fix: gitkeep needed for manifests dir under repo nginx
* chore: update jenkinsfiles for automation api
* fix: updates to the jenkinsfiles
* chore: doc updates for automation-api changes
* fix: update to docker instance for minikube jenkins
* fix: add wheel back into setup_venv.sh (#187)
* fix: add variable for password fields in jenkins runs / accept stack argument / formatting (#188)
* chore: update cert-manager chart and crds
* chore: update logagent (filebeat) chart version
* chore: update nginx IC to latest chart version
* chore: update prometheus chart to latest version
* chore: update logstore (Elasticsearch) to latest chart versoin
* chore: update observability to new yaml and new chart
* chore: update example config with new values
* fix: remediation of deployment bugs
* fix: removed JWT-only logic from BoS
* fix: remove logic for sirius_host from deprecated jwt deploys
* fix: remove deprecated ingress-repo-only project
* fix: adjust min kubectl version deployed
* fix: refactor digitalocean to docean for variables
* fix: add repo-only IC deploy to support kubeconfig deploys
* fix: modifications to handle kubeconfig deploys for now
* fix: recommission bash scripts to support kubeconfig deploys for now
* fix: gitkeep needed for manifests dir under repo nginx
* chore: update jenkinsfiles for automation api
* fix: updates to the jenkinsfiles
* chore: doc updates for automation-api changes
* fix: update to docker instance for minikube jenkins
* fix: add wheel back into setup_venv.sh
* fix: jenkinsfile updates
* feat: accept stack value on CLI, handle mis-match
* chore: reformat markdown to fit standards
* fix: changes requested in #188
* refactor: break up stack environment logic into fnctions
* refactor: formatting changes to main.py
* fix: address PR comments and formatting
* refactor: formatting fixes
* fix: formatting and PR requested changes
* refactor: bash script cleanup
* chore: remove deprecated testcap script
* fix: shell isn't interpreting the args to pulumi right
* fix: still having weird globbing issues.
* fix: adjust jenkinsfiles for new runner syntax
* fix: linode jenkinsfile and log level adjust / comment add (#194)
* fix: update log level and add comment to clarify print stmt
* fix: add closing braces for Linode Jenkinsfile
* fix: cosmetic fix for || construct
* feat: add new logo to repo (#195)
Co-authored-by: Javier Evans <[email protected]>
Co-authored-by: Jason Schmidt <[email protected]>
Co-authored-by: Jason Schmidt <[email protected]>
The following is a set of guidelines for contributing. We really appreciate that you are considering contributing!
3
+
The following is a set of guidelines for contributing. We really appreciate
4
+
that you are considering contributing!
4
5
5
-
####Table Of Contents
6
+
## Table Of Contents
6
7
7
8
[Ask a Question](#ask-a-question)
8
9
9
10
[Contributing](#contributing)
10
11
11
12
[Style Guides](#style-guides)
12
-
*[Git Style Guide](#git-style-guide)
13
-
*[Go Style Guide](#go-style-guide)
13
+
14
+
*[Git Style Guide](#git-style-guide)
15
+
*[Go Style Guide](#go-style-guide)
14
16
15
17
[Code of Conduct](https://github.com/nginxinc/nginx-wrapper/blob/master/CODE_OF_CONDUCT.md)
16
18
@@ -22,33 +24,50 @@ Please open an Issue on GitHub with the label `question`.
22
24
23
25
### Report a Bug
24
26
25
-
To report a bug, open an issue on GitHub with the label `bug` using the available bug report issue template. Please ensure the issue has not already been reported.
27
+
To report a bug, open an issue on GitHub with the label `bug` using the
28
+
available bug report issue template. Please ensure the issue has not already
29
+
been reported.
26
30
27
31
### Suggest an Enhancement
28
32
29
-
To suggest an enhancement, please create an issue on GitHub with the label `enhancement` using the available feature issue template.
33
+
To suggest an enhancement, please create an issue on GitHub with the label
34
+
`enhancement` using the available feature issue template.
30
35
31
36
### Open a Pull Request
32
37
33
-
* Fork the repo, create a branch, submit a PR when your changes are tested and ready for review.
38
+
* Fork the repo, create a branch, submit a PR when your changes are tested and
39
+
ready for review.
34
40
* Fill in [our pull request template](/.github/PULL_REQUEST_TEMPLATE.md)
35
41
36
-
Note: if you’d like to implement a new feature, please consider creating a feature request issue first to start a discussion about the feature.
42
+
Note: if you’d like to implement a new feature, please consider creating a
43
+
feature request issue first to start a discussion about the feature.
37
44
38
45
## Style Guides
39
46
40
47
### Git Style Guide
41
48
42
-
* Keep a clean, concise and meaningful git commit history on your branch, rebasing locally and squashing before submitting a PR
43
-
* Use the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format when writing a commit message, so that changelogs can be automatically generated
44
-
* Follow the guidelines of writing a good commit message as described [here](https://chris.beams.io/posts/git-commit/) and summarised in the next few points
45
-
* In the subject line, use the present tense ("Add feature" not "Added feature")
46
-
* In the subject line, use the imperative mood ("Move cursor to..." not "Moves cursor to...")
47
-
* Limit the subject line to 72 characters or less
48
-
* Reference issues and pull requests liberally after the subject line
49
-
* Add more detailed description in the body of the git message (`git commit -a` to give you more space and time in your text editor to write a good message instead of `git commit -am`)
49
+
* Keep a clean, concise and meaningful git commit history on your branch,
50
+
rebasing locally and squashing before submitting a PR
51
+
* Use the
52
+
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format
53
+
when writing a commit message, so that changelogs can be automatically
54
+
generated
55
+
* Follow the guidelines of writing a good commit message as described
56
+
[here](https://chris.beams.io/posts/git-commit/) and summarised in the next
57
+
few points
58
+
* In the subject line, use the present tense
59
+
("Add feature" not "Added feature")
60
+
* In the subject line, use the imperative mood ("Move cursor to..." not
61
+
"Moves cursor to...")
62
+
* Limit the subject line to 72 characters or less
63
+
* Reference issues and pull requests liberally after the subject line
64
+
* Add more detailed description in the body of the git message (
65
+
`git commit -a` to give you more space and time in your text editor to
66
+
write a good message instead of `git commit -am`)
50
67
51
68
### Code Style Guide
52
69
53
-
* Python code should conform to the [PEP-8 style guidelines](https://www.python.org/dev/peps/pep-0008/) whenever possible.
0 commit comments