-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'VKPR-104-create-sample-app-whoami-formula-in-cli' of ht…
…tps://github.com/vertigobr/vkpr-cli into VKPR-104-create-sample-app-whoami-formula-in-cli
- Loading branch information
Showing
18 changed files
with
120 additions
and
88 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
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
8 changes: 4 additions & 4 deletions
8
...manager/install/src/utils/cert-manager.sh → ...nager/install/src/utils/cert-manager.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
printf \ | ||
"installCRDs: false | ||
installCRDs: false | ||
ingressShim: | ||
defaultIssuerName: letsencrypt-staging | ||
defaultIssuerKind: ClusterIssuer | ||
defaultIssuerGroup: cert-manager.io" > $1 | ||
defaultIssuerGroup: cert-manager.io | ||
prometheus: | ||
enabled: false |
25 changes: 13 additions & 12 deletions
25
...nager/install/src/utils/cluster-issuer.sh → ...ert-manager/install/src/utils/issuer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
#!/bin/sh | ||
printf \ | ||
"apiVersion: cert-manager.io/v1 | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: letsencrypt-staging | ||
namespace: cert-manager | ||
spec: | ||
acme: | ||
email: $1 | ||
email: [email protected] | ||
server: https://acme-staging-v02.api.letsencrypt.org/directory | ||
privateKeySecretRef: | ||
name: acme-staging-issuer-account-key | ||
name: letsencrypt-staging-key | ||
solvers: | ||
- dns01: | ||
- selector: {} | ||
dns01: | ||
digitalocean: | ||
tokenSecretRef: | ||
name: digitalocean-dns | ||
key: $2 | ||
key: access-token | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: letsencrypt-production | ||
namespace: cert-manager | ||
spec: | ||
acme: | ||
# Change this email address to yours | ||
email: $1 | ||
email: [email protected] | ||
server: https://acme-v02.api.letsencrypt.org/directory | ||
privateKeySecretRef: | ||
name: acme-production-issuer-account-key | ||
name: letsencrypt-production-key | ||
solvers: | ||
- dns01: | ||
- selector: {} | ||
dns01: | ||
digitalocean: | ||
tokenSecretRef: | ||
name: digitalocean-dns | ||
key: $2" > $3 | ||
key: access-token |
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,7 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: digitalocean-dns | ||
namespace: cert-manager | ||
data: | ||
access-token: $token |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"short": "Add the Whoami to the cluster.", | ||
"long": "Add a Pod and dependences containing a Whoami App in the cluster." | ||
"short": "Manage whoami", | ||
"long": "Whoami is a Tiny Go webserver that prints OS information and HTTP request to output" | ||
} |
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,5 +1,4 @@ | ||
{ | ||
"dockerImageBuilder": "ritclizup/rit-shell-bat-builder", | ||
"inputs": [ | ||
{ | ||
"default": "whoami.localhost", | ||
|
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,4 +1,4 @@ | ||
{ | ||
"short": "Install the Whoami to the cluster.", | ||
"long": "Install the Pod and dependences containing a Whoami App in the cluster." | ||
"short": "Install whoami", | ||
"long": "Install the whoami in the cluster by a Helm Chart." | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"short": "Remove the Whoami from the cluster.", | ||
"long": "Remove all the content about the Whoami App in the cluster." | ||
"short": "Remove whoami", | ||
"long": "Remove the whoami and its dependencies from the cluster" | ||
} |
This file was deleted.
Oops, something went wrong.
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