-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
156 additions
and
28 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,18 @@ | ||
# Release Notes | ||
|
||
## Version 0.8.0 - 2020-10-15 | ||
|
||
Upgrades: | ||
|
||
- cert-manager: 1.0.3 | ||
- external-dns: 3.4.6 | ||
- nginx-ingress: REMOVED | ||
- ingress-nginx: 3.7.1 | ||
- prometheus-operator: REMOVED | ||
- kube-prometheus-stack: 10.1.0 | ||
- loki-stack: 0.41.2 | ||
- vault: 0.7.0 | ||
|
||
## Version 0.7.2 and before | ||
|
||
Crazy times, no record. Sorry fot that. |
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,56 @@ | ||
# Development | ||
|
||
Este documento explica como montar um ambiente para desenvolvimento do chart do vtg-ipaas. | ||
|
||
## Pré-requisitos | ||
|
||
### Arquivo /etc/hosts | ||
|
||
Insira a linha abaixo no arquivo /etc/hosts da estação de desenvolvimento: | ||
|
||
``` | ||
127.0.0.1 whoami.localdomain | ||
``` | ||
|
||
### Ferramentas | ||
|
||
Instale localmente as seguintes ferramentas: | ||
|
||
- k3d | ||
- helm | ||
- kubectl | ||
|
||
### Cluster k3d local | ||
|
||
Crie um cluster k3d local para uso durante o desenvolvimento: | ||
|
||
```sh | ||
k3d create -n vkpr-local \ | ||
--publish 8080:32080 \ | ||
--server-arg "--no-deploy=traefik" | ||
``` | ||
|
||
Os parâmetros acima desligam o Trefik (default do k3d), pois o Kong será o Ingress Controller. | ||
Após a criação do cluster ajuste o KUBECONFIG: | ||
|
||
```sh | ||
export KUBECONFIG="$(k3d get-kubeconfig --name='vkpr-local')" | ||
kubectl cluster-info | ||
``` | ||
|
||
## Local VKPR deployment | ||
|
||
### Get chart dependencies | ||
|
||
```sh | ||
cd charts/vkpr | ||
helm dependency update | ||
cd ../.. | ||
``` | ||
|
||
### Helm upgrade/install | ||
|
||
```sh | ||
helm upgrade -i vkpr -f ./examples/values-local.yaml ./charts/vkpr | ||
``` | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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