Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
_APP_ENV=production | |
_APP_LOCALE=en | |
_APP_OPTIONS_ABUSE=enabled | |
_APP_OPTIONS_FORCE_HTTPS=disabled | |
_APP_OPENSSL_KEY_V1=your-secret-key | |
_APP_DOMAIN=localhost | |
_APP_DOMAIN_TARGET=localhost | |
_APP_CONSOLE_WHITELIST_ROOT=enabled | |
_APP_CONSOLE_WHITELIST_EMAILS= | |
_APP_CONSOLE_WHITELIST_IPS= |
# eksctl version | |
eksctl version | |
0.20.0 | |
# kubectl/Kubernetes version | |
Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.3", GitCommit:"2e7996e3e2712684bc73f0dec0200d64eec7fe40", GitTreeState:"clean", BuildDate:"2020-05-21T14:51:23Z", GoVersion:"go1.14.3", Compiler:"gc", Platform:"darwin/amd64"} | |
Server Version: version.Info{Major:"1", Minor:"16+", GitVersion:"v1.16.8-eks-e16311", GitCommit:"e163110a04dcb2f39c3325af96d019b4925419eb", GitTreeState:"clean", BuildDate:"2020-03-27T22:37:12Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"} | |
CLUSTER_NAME=lukaszbudniktest1 | |
AWS_REGION=us-east-2 |
# don't forget to update below variables to point to your Keycloak instance, main realm, and admin user | |
export KEYCLOAK_URL="http://localhost:8080" | |
export KEYCLOAK_MAIN_REALM=master | |
export KEYCLOAK_USER=lb | |
export KEYCLOAK_PASSWORD=*** | |
# get the access token | |
access_token=$(curl --silent \ | |
-d "client_id=admin-cli" \ | |
-d "username=$KEYCLOAK_USER" \ |
# eksctl version | |
eksctl version | |
0.20.0 | |
# kubectl/Kubernetes version | |
Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.3", GitCommit:"2e7996e3e2712684bc73f0dec0200d64eec7fe40", GitTreeState:"clean", BuildDate:"2020-05-21T14:51:23Z", GoVersion:"go1.14.3", Compiler:"gc", Platform:"darwin/amd64"} | |
Server Version: version.Info{Major:"1", Minor:"16+", GitVersion:"v1.16.8-eks-e16311", GitCommit:"e163110a04dcb2f39c3325af96d019b4925419eb", GitTreeState:"clean", BuildDate:"2020-03-27T22:37:12Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"} | |
AWS_REGION=us-east-2 | |
CLUSTER_NAME=lukaszbudniktest1 |
# Molecule managed | |
FROM microsoft/windowsservercore:latest | |
RUN powershell.exe -Command \ | |
wget https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 -Proxy <proxy> -Outfile c:\remoting.ps1; \ | |
powershell.exe -ExecutionPolicy ByPass -File c:\remoting.ps1 -EnableCredSSP; \ | |
$password = ConvertTo-SecureString "<password>" -AsPlainText -Force; \ | |
Set-LocalUser -Name administrator -Password $password; \ | |
Enable-LocalUser -Name "Administrator"; \ | |
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase | |
EXPOSE 5986 |