Last active
February 22, 2018 21:25
-
-
Save gerred/3ec7e311f37e0231b6d2b4a95296a238 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
--- | |
# kind: replicated | |
replicated_api_version: 2.9.2 | |
name: "Learning Replicated" | |
# | |
# https://help.replicated.com/docs/packaging-an-application/application-properties/ | |
# | |
properties: | |
app_url: http://{{repl ConfigOption "hostname" }} | |
console_title: "Learning Replicated" | |
# | |
# https://help.replicated.com/docs/kb/supporting-your-customers/install-known-versions/ | |
# | |
host_requirements: | |
replicated_version: ">=2.9.2" | |
# | |
# Settings screen | |
# https://help.replicated.com/docs/packaging-an-application/config-screen/ | |
# | |
config: | |
- name: hostname | |
title: Hostname | |
description: Ensure this domain name is routable on your network. | |
items: | |
- name: hostname | |
title: Hostname | |
value: '{{repl ConsoleSetting "tls.hostname" }}' | |
type: text | |
test_proc: | |
display_name: Check DNS | |
command: resolve_host | |
# | |
# Documentation for additional features | |
# https://help.replicated.com/categories/packaging-an-application/ | |
# | |
--- | |
# kind: scheduler-swarm | |
version: '3.6' | |
services: | |
redis: | |
image: redis:3.2.11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment