Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Staging environment using "latest" image tag #227

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/build-images-locally.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export IMAGE_TAG="1.1.0"
export IMAGE_TAG="latest"
export total=12
cd ../
export currentFolder=`pwd`
Expand Down
2 changes: 1 addition & 1 deletion build/build-images.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
param ($version='1.0.0')
param ($version='latest')

$currentFolder = $PSScriptRoot
$slnFolder = Join-Path $currentFolder "../"
Expand Down
2 changes: 1 addition & 1 deletion build/build-images.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export IMAGE_TAG="1.0.0"
export IMAGE_TAG="latest"
export total=12
cd ../
export currentFolder=`pwd`
Expand Down
22 changes: 11 additions & 11 deletions etc/k8s/eshoponabp/values.st.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ web:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/app-web"
tag: 1.0.0
tag: "latest"

# public-web sub-chart override
public-web:
Expand All @@ -65,7 +65,7 @@ public-web:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/app-publicweb"
tag: 1.0.0
tag: "latest"

# identity-service sub-chart override
identity:
Expand Down Expand Up @@ -108,7 +108,7 @@ identity:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-identity"
tag: 1.0.0
tag: "latest"

# administration sub-chart override
administration:
Expand Down Expand Up @@ -137,7 +137,7 @@ administration:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-administration"
tag: 1.0.0
tag: "latest"

# gateway-web sub-chart override
gateway-web:
Expand All @@ -158,7 +158,7 @@ gateway-web:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/gateway-web"
tag: 1.0.0
tag: "latest"
reRoutes:
identityService:
url: http://eshop-st-identity:8080
Expand Down Expand Up @@ -194,7 +194,7 @@ gateway-web-public:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/gateway-web-public"
tag: 1.0.0
tag: "latest"
reRoutes:
identityService:
url: http://eshop-st-identity:8080
Expand Down Expand Up @@ -243,7 +243,7 @@ basket:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-basket"
tag: 1.0.0
tag: "latest"

# catalog-service sub-chart override
catalog:
Expand Down Expand Up @@ -273,7 +273,7 @@ catalog:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-catalog"
tag: 1.0.0
tag: "latest"

# ordering-service sub-chart override
ordering:
Expand All @@ -298,7 +298,7 @@ ordering:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-ordering"
tag: 1.0.0
tag: "latest"

# cmskit-service sub-chart override
cmskit:
Expand Down Expand Up @@ -327,7 +327,7 @@ cmskit:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-cmskit"
tag: 1.0.0
tag: "latest"

# payment-service sub-chart override
payment:
Expand All @@ -354,7 +354,7 @@ payment:
tlsSecret: eshop-wildcard-tls
image:
repository: "eshoponabp/service-payment"
tag: 1.0.0
tag: "latest"

# Default values for eshoponabp.
# This is a YAML-formatted file.
Expand Down
Loading