Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit 71d7b92

Browse files
committed
BikeSharing post-move updates
1 parent 3d92bda commit 71d7b92

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

samples/BikeSharingApp/BikeSharingWeb/charts/bikesharingweb/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fullnameOverride: bikesharingweb
88
replicaCount: 1
99
image:
1010
repository: azdspublic/bikesharing-bikesharingweb
11-
tag: build.20190418.2
11+
tag: build.20190424.1
1212
pullPolicy: IfNotPresent
1313
imagePullSecrets: []
1414
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/BikeSharingWeb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
},
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/ContosoBikeRental/BikeSharingSampleApp.git"
27+
"url": "git+https://github.com/Azure/dev-spaces.git"
2828
},
2929
"author": "",
3030
"license": "ISC",
3131
"bugs": {
32-
"url": "https://github.com/ContosoBikeRental/BikeSharingSampleApp/issues"
32+
"url": "https://github.com/Azure/dev-spaces/issues"
3333
},
34-
"homepage": "https://github.com/ContosoBikeRental/BikeSharingSampleApp#readme"
34+
"homepage": "https://github.com/Azure/dev-spaces#readme"
3535
}

samples/BikeSharingApp/Bikes/charts/bikes/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: bikes
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-bikes
8-
tag: build.20190418.1
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/Billing/charts/billing/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: billing
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-billing
8-
tag: build.20190418.1
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/Gateway/charts/gateway/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: gateway
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-gateway
8-
tag: build.20190418.2
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/PopulateDatabase/charts/populatedatabase/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: populatedatabase
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-populatedatabase
8-
tag: build.20190418.2
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/Reservation/charts/reservation/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: reservation
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-reservation
8-
tag: build.20190418.1
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/ReservationEngine/charts/reservationengine/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: reservationengine
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-reservationengine
8-
tag: build.20190418.2
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/Users/charts/users/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: users
55
replicaCount: 1
66
image:
77
repository: azdspublic/bikesharing-users
8-
tag: build.20190418.1
8+
tag: build.20190424.1
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
# Optionally specify an array of imagePullSecrets.

samples/BikeSharingApp/Users/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/ContosoBikeRental/BikeSharingSampleApp.git"
12+
"url": "git+https://github.com/Azure/dev-spaces.git"
1313
},
1414
"author": "",
1515
"license": "ISC",
@@ -27,7 +27,7 @@
2727
"nodemon": "^1.18.10"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/ContosoBikeRental/BikeSharingSampleApp/issues"
30+
"url": "https://github.com/Azure/dev-spaces/issues"
3131
},
32-
"homepage": "https://github.com/ContosoBikeRental/BikeSharingSampleApp#readme"
32+
"homepage": "https://github.com/Azure/dev-spaces#readme"
3333
}

0 commit comments

Comments
 (0)