Translate Connecting Applications with Services in Bahasa Indonesia (#14079)

* Menerjemahkan connect-applicaitons-service kedalam bahasa Indonesia

* add examples files

* change title

* fix email

* fix minor typos and formatting

* fix minor & typo
This commit is contained in:
Zufar Dhiyaulhaq
2019-05-02 06:36:20 +07:00
committed by Kubernetes Prow Robot
parent b191b55588
commit 950513d5fa
5 changed files with 472 additions and 0 deletions
@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: curl-deployment
spec:
selector:
matchLabels:
app: curlpod
replicas: 1
template:
metadata:
labels:
app: curlpod
spec:
volumes:
- name: secret-volume
secret:
secretName: nginxsecret
containers:
- name: curlpod
command:
- sh
- -c
- while true; do sleep 1; done
image: radial/busyboxplus:curl
volumeMounts:
- mountPath: /etc/nginx/ssl
name: secret-volume