-
Notifications
You must be signed in to change notification settings - Fork 44
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 #10 from SolaceProducts/SOL-1244
Sol 1244
- Loading branch information
Showing
19 changed files
with
769 additions
and
164 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 +1,14 @@ | ||
apiVersion: v1 | ||
description: A Helm chart for Kubernetes | ||
description: Deploy Solace VMR Singleton or HA Cluster onto a Kubernetes Cluster | ||
name: solace | ||
version: 0.1.0 | ||
version: 0.2.0 | ||
icon: https://dev.solace.com/wp-content/uploads/2016/10/solace-logo-white.png | ||
maintainers: | ||
- name: kenbarr | ||
email: [email protected] | ||
home: http://dev.solace.com | ||
sources: | ||
- http://dev.solace.com | ||
- https://github.com/SolaceProducts/solace-kubernetes-quickstart | ||
keywords: | ||
- solace | ||
- vmr | ||
- vmr |
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 @@ | ||
[loggers] | ||
keys=root | ||
[handlers] | ||
keys=console | ||
[formatters] | ||
keys=formatter | ||
[logger_root] | ||
level=INFO | ||
#level=DEBUG | ||
handlers=console | ||
[handler_console] | ||
class=StreamHandler | ||
level=INFO | ||
#level=DEBUG | ||
formatter=formatter | ||
args=(sys.stdout,) | ||
[formatter_formatter] | ||
format=%(message)s |
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,16 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ template "solace.fullname" . }}-secrets | ||
labels: | ||
heritage: {{ .Release.Service }} | ||
release: {{ .Release.Name }} | ||
chart: {{ .Chart.Name }}-{{ .Chart.Version }} | ||
app: {{ template "solace.name" . }} | ||
annotations: | ||
"helm.sh/hook": pre-install | ||
"helm.sh/hook-weight": "5" | ||
type: Opaque | ||
data: | ||
username_admin_password: {{ b64enc "SOLOS_ADMIN_PASSWORD" }} |
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,19 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ template "solace.fullname" . }}-discovery | ||
labels: | ||
heritage: {{ .Release.Service }} | ||
release: {{ .Release.Name }} | ||
chart: {{ .Chart.Name }}-{{ .Chart.Version }} | ||
app: {{ template "solace.name" . }} | ||
annotations: | ||
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" | ||
spec: | ||
ports: | ||
- port: 8080 | ||
name: semp | ||
clusterIP: None | ||
selector: | ||
app: {{ template "solace.name" . }} | ||
release: {{ .Release.Name }} |
Oops, something went wrong.