-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from georgep1ckers/combine-service-and-deploym…
…ent-yamls combining service and deployment yamls
- Loading branch information
Showing
6 changed files
with
32 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Create tracey stock-controller deployment | ||
kubectl apply -f stock-controller-deployment.yaml | ||
# Create tracey stock-controller deployment & service combined yaml | ||
kubectl apply -f stock-controller.yaml | ||
|
||
# Create tracey stock-controller service | ||
kubectl apply -f stock-controller-service.yaml | ||
# Create tracey processor deployment & service combined yaml | ||
kubectl apply -f order-processor.yaml | ||
|
||
# Create tracey processor deployment | ||
kubectl apply -f order-processor-deployment.yaml | ||
|
||
# Create tracey processor service | ||
kubectl apply -f order-processor-service.yaml | ||
|
||
# Create tracey interface deployment | ||
kubectl apply -f warehouse-interface-deployment.yaml | ||
# Create tracey interface deployment yaml | ||
kubectl apply -f warehouse-interface.yaml |
File renamed without changes.