curl -Lo concourse https://github.com/concourse/concourse/releases/download/v2.5.0/concourse_darwin_amd64 && chmod +x concourse && mv concourse /usr/local/bin
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
runc run: exit status 1: container_linux.go:348: starting container process caused "unknown capability \"CAP_AUDIT_READ\"" |
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
FROM alpine:latest | |
RUN apk add --update curl python python-dev py-cffi py-pip openssl-dev build-base && rm -rf /var/cache/apk/* | |
RUN pip install -U pip setuptools && \ | |
pip install ansible==2.4.3 requests termcolor packaging ansible-modules-hashivault hvac | |
ADD ansible.cfg /etc/ansible/ansible.cfg | |
ENV ANSIBLE_LOCAL_TEMP=/tmp | |
ENV ANSIBLE_FORCE_COLOR=true |
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
##################### Grafana Configuration Example ##################### | |
# | |
# Everything has defaults so you only need to uncomment things you want to | |
# change | |
# possible values : production, development | |
;app_mode = production | |
# instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty | |
instance_name = {{ keyOrDefault "grafana/hostname" "${HOSTNAME}" }} |
OlderNewer