diff --git a/containers/techradar/zalando/index.html b/containers/techradar/zalando/index.html index f3e3586..4921c9e 100644 --- a/containers/techradar/zalando/index.html +++ b/containers/techradar/zalando/index.html @@ -4,7 +4,7 @@ + content="Tech Radar: a tool to visualize technology choices, inspire and support Engineering teams at Example to pick the best technologies for new projects"> Tech Radar - \ No newline at end of file + diff --git a/examples/ansible/role.gitlab-omnibus-on-ec2/handlers/certify/package.yml b/examples/ansible/role.gitlab-omnibus-on-ec2/handlers/certify/package.yml index 3f4758e..87783f8 100644 --- a/examples/ansible/role.gitlab-omnibus-on-ec2/handlers/certify/package.yml +++ b/examples/ansible/role.gitlab-omnibus-on-ec2/handlers/certify/package.yml @@ -7,7 +7,7 @@ - route53 become: true amazon.aws.route53: - zone: apolloagriculture.com # FIXME + zone: exaample.com # FIXME record: "{{ dns_challenge.challenge_data[external_url_hostname]['dns-01'].record }}" type: TXT ttl: 60 @@ -53,7 +53,7 @@ - route53 become: true amazon.aws.route53: - zone: apolloagriculture.com # FIXME + zone: example.com # FIXME record: "{{ validation_record }}" type: TXT state: absent diff --git a/knowledge base/task.md b/knowledge base/task.md index dafce32..10e942e 100644 --- a/knowledge base/task.md +++ b/knowledge base/task.md @@ -25,7 +25,7 @@ This allows to write sh/bash commands and have them work even where `sh` or `bas Windows) as long as any called executable is available in `PATH`.
- Installation and configuration + Setup ```sh # Install the executable. @@ -35,7 +35,8 @@ sudo dnf install 'go-task' sudo snap install 'task' --classic # Setup the shell's completion. -curl -fsSLo "$HOME/.config/fish/completions/task.fish" 'https://raw.githubusercontent.com/go-task/task/main/completion/fish/task.fish' +curl -fsSL 'https://raw.githubusercontent.com/go-task/task/main/completion/fish/task.fish' \ + -o "$HOME/.config/fish/completions/task.fish" ```
@@ -63,7 +64,7 @@ curl -fsSLo "$HOME/.config/fish/completions/task.fish" 'https://raw.githubuserco 1. Run tasks by their name: ```sh - task assets build + task 'assets' 'build' ``` If task names are omitted, a task named `default` will be assumed.