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
| --- | |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: rabbitmq-config | |
| data: | |
| enabled_plugins: | | |
| [rabbitmq_management]. | |
| rabbitmq.conf: | | |
| loopback_users.guest = false |
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
| #!/bin/bash | |
| set -e | |
| function cleanup { | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Must run as root to be able to update /etc/hosts" | |
| exit 1 | |
| fi | |
| rm -f ca1.crt ca1.key ca1.srl registry1.key registry1.crt registry1.csr |
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
| #!/bin/bash | |
| set -e | |
| function cleanup { | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Must run as root to be able to update /etc/hosts" | |
| exit 1 | |
| fi | |
| rm -f ca1.crt ca1.key ca1.srl registry1.key registry1.crt registry1.csr |
OlderNewer