4aed0f11ae
* initial commit * promote AWS-NLB Support from alpha to beta (#14451) (#16459) (#16484) * 1. Sync release-1.15 into master 2. Sync with en version * 1. Add the lost yaml file. * Update he cluster administration folder of concepts 1. Sync with 1.14 branch 2. Sync with en version * Add yaml files which are used
11 lines
211 B
YAML
11 lines
211 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: counter
|
|
spec:
|
|
containers:
|
|
- name: count
|
|
image: busybox
|
|
args: [/bin/sh, -c,
|
|
'i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done']
|