├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.rc.yaml ├── config.template.json ├── docker-entry.sh └── rs ├── app-service.yaml └── secret.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/README.md -------------------------------------------------------------------------------- /app.rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/app.rc.yaml -------------------------------------------------------------------------------- /config.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/config.template.json -------------------------------------------------------------------------------- /docker-entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/docker-entry.sh -------------------------------------------------------------------------------- /rs/app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/rs/app-service.yaml -------------------------------------------------------------------------------- /rs/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redspread/kube-mattermost/HEAD/rs/secret.yaml --------------------------------------------------------------------------------