-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lint, package, test and publish helm chart to helm.estafette.io
- Loading branch information
1 parent
b23346b
commit 3d808dc
Showing
27 changed files
with
559 additions
and
427 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
estafette-gke-node-pool-shifter | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.dll | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
chart/estafette-gke-node-pool-shifter/templates/clusterrole.yaml
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
chart/estafette-gke-node-pool-shifter/templates/clusterrolebinding.yaml
This file was deleted.
Oops, something went wrong.
62 changes: 0 additions & 62 deletions
62
chart/estafette-gke-node-pool-shifter/templates/deployment.yaml
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
chart/estafette-gke-node-pool-shifter/templates/secret.yaml
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
chart/estafette-gke-node-pool-shifter/templates/serviceaccount.yaml
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v1 | ||
appVersion: "1.0" | ||
description: Kubernetes controller that can shift nodes from one node pool to another, to favour for example preemptibles over regular vms | ||
name: estafette-gke-node-pool-shifter | ||
version: 0.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1. Get the application logs by running this command: | ||
kubectl logs -f -l app.kubernetes.io/name={{ include "estafette-gke-node-pool-shifter.name" . }},app.kubernetes.io/instance={{ .Release.Name }} -n {{ .Release.Namespace }} |
Oops, something went wrong.