Last active
January 13, 2021 01:23
-
-
Save mrjamiebowman/102f9962d3deeacff79d0e51c411682c to your computer and use it in GitHub Desktop.
Kubernetes Tutorial: ConfigMap
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: appsettings | |
namespace: mrjamiebowman | |
data: | |
appsettings.json: |- | |
{ | |
"Logging": { | |
"LogLevel": { | |
"Default": "Information", | |
"Microsoft": "Warning", | |
"Microsoft.Hosting.Lifetime": "Information" | |
} | |
}, | |
"AllowedHosts": "*", | |
"ValuesConfiguration": { | |
"Message": "The configuration is working!" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated