This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
public static class TypeExtensions | |
{ | |
/// <summary> | |
/// Determine whether a type is simple (String, Decimal, DateTime, etc) | |
/// or complex (i.e. custom class with public properties and methods). | |
/// </summary> | |
/// <see cref="http://stackoverflow.com/questions/2442534/how-to-test-if-type-is-primitive"/> | |
public static bool IsSimpleType( | |
this Type type) | |
{ |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
# Cache maven dependencies as an intermediate docker image | |
# (This only happens when pom.xml changes or you clear your docker image cache) | |
FROM maven:3-adoptopenjdk-15 as dependencies | |
COPY pom.xml /build/ | |
WORKDIR /build/ | |
RUN mvn --batch-mode dependency:go-offline dependency:resolve-plugins | |
# Build the app using Maven and the cached dependencies | |
# (This only happens when your source code changes or you clear your docker image cache) | |
# Should work offline, but https://issues.apache.org/jira/browse/MDEP-82 |
Actual repo is here: https://github.com/kubernetes/dashboard
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.4.0/aio/deploy/recommended.yaml
kubectl apply -f https://gist.githubusercontent.com/dahlsailrunner/bbd453f3bb6259b66c08a70d0908283f/raw/5727723217e2df4b65d8933adf04d009cfb0fe3f/local-dashboard-account.yml