-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added autowizard / changed envvars usage / update to 2.9.0 (#17)
* added autowizard & changed envconfig * updated dependencies Signed-off-by: André Bauer <[email protected]> * updated gitignor * more changes Signed-off-by: André Bauer <[email protected]> * removed whitespace * fix volumename * fixed reademe * fixed env vars quotes * fix linebreak * fixed ports linebreak * use json for autowizard * updated zammad image * added comment again * build parallel * renamed jobs * changed shebang * fixed auto_wizard.json creation
- Loading branch information
Showing
12 changed files
with
373 additions
and
140 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,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
# | ||
# deploy zammad chart to zammad.github.io | ||
# | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ tmp | |
zammad.github.io | ||
zammad/charts | ||
zammad/index.yaml | ||
zammad/requirements.lock |
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,12 +1,14 @@ | ||
apiVersion: v1 | ||
name: zammad | ||
version: 0.1.10 | ||
appVersion: 2.8.0 | ||
version: 1.0.0 | ||
appVersion: 2.9.0 | ||
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails. | ||
home: https://zammad.org | ||
icon: https://raw.githubusercontent.com/zammad/zammad-documentation/master/images/zammad_logo_600x520.png | ||
sources: | ||
- https://github.com/zammad/zammad | ||
- https://github.com/zammad/zammad-docker-compose | ||
- https://github.com/zammad/zammad-helm | ||
maintainers: | ||
- name: monotek | ||
email: [email protected] | ||
|
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 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
dependencies: | ||
- name: elasticsearch | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
version: 1.15.1 | ||
version: 1.18.0 | ||
condition: useElasticsearch | ||
- name: memcached | ||
version: 2.4.0 | ||
version: 2.5.0 | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: useMemcached | ||
- name: postgresql | ||
version: 3.7.0 | ||
version: 3.9.5 | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: usePostgresql |
Oops, something went wrong.