Skip to content

Commit

Permalink
Merge pull request kubernetes#271 from ldx/fix-javaweb-examples
Browse files Browse the repository at this point in the history
Fix javaweb examples
  • Loading branch information
k8s-ci-robot authored Sep 19, 2018
2 parents b171bae + 1f595fb commit 3a2f276
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions staging/javaweb-tomcat-sidecar/javaweb-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ spec:
initContainers:
- image: resouer/sample:v2
name: war
command:
- "cp"
- "/sample.war"
- "/app"
command: ["cp", "/sample.war", "/app"]
volumeMounts:
- mountPath: /app
name: app-volume
Expand Down
1 change: 1 addition & 0 deletions staging/javaweb-tomcat-sidecar/javaweb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ spec:
initContainers:
- image: resouer/sample:v1
name: war
command: ["cp", "/sample.war", "/app"]
volumeMounts:
- mountPath: /app
name: app-volume
Expand Down

0 comments on commit 3a2f276

Please sign in to comment.