diff --git a/automation/deploy/helm/automation-web/values.yaml b/automation/deploy/helm/automation-web/values.yaml index e3f8fbc3078e7406a22882631125b7030738cee5..72cfa2d6ab0550c99e71569b3207ebd8de7fe2bb 100644 --- a/automation/deploy/helm/automation-web/values.yaml +++ b/automation/deploy/helm/automation-web/values.yaml @@ -7,11 +7,11 @@ replicaCount: 1 # This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ image: - repository: nginx + repository: ismp-automation-web # This sets the pull policy for images. pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "" + tag: "latest" # This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ imagePullSecrets: [] diff --git a/automation/makefile b/automation/makefile index 5ea67b5616ca8265b7e4435839ec761e7a7b893f..830b70e8da36326cd2e1337d081c84cc31d3fbe8 100644 --- a/automation/makefile +++ b/automation/makefile @@ -9,7 +9,9 @@ build-web: cd web yarn install yarn run build - +build-web-container: + @echo "Building web container..." + docker build -t ismp-automation-web:latest . --target ui build-server: @echo "Building server binary..." GOSUMDB=off CGO_ENABLED=0 GO111MODULE=on go build $(go_build_cflags) -o $(SERVER_BINARY_NAME) server/cmd/main.go