Merge pull request #13522 from jasonsalas/patch-1

Fixed references to old Bulletin Board demo
This commit is contained in:
Usha Mandya 2021-09-21 13:52:36 +01:00 committed by GitHub
commit e5463a5045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ All containers in Kubernetes are scheduled as _pods_, which are groups of co-loc
spec: spec:
containers: containers:
- name: bb-site - name: bb-site
image: bulletinboard:1.0 image: getting-started
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
@ -56,8 +56,8 @@ All containers in Kubernetes are scheduled as _pods_, which are groups of co-loc
selector: selector:
bb: web bb: web
ports: ports:
- port: 8080 - port: 3000
targetPort: 8080 targetPort: 3000
nodePort: 30001 nodePort: 30001
``` ```