K06 Kubernetes in Tamil - ConfigMaps, Creation CLI and Spec File, Usage & Mount as Volumes

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • K06 Kubernetes in Tamil -
    Learn about ConfigMaps
    ConfigMaps Creation from Files , Folders, Literals
    ConfigMap Creation from Command Line, Spec File
    Using ConfigMaps as ENV [Environment Variable]
    Mounting ConfigMaps as Volume

ความคิดเห็น • 19

  • @mumbaimuru
    @mumbaimuru 2 ปีที่แล้ว +2

    Excellent information. Short and great practice. Keep it up. Looking for more practice videos.

  • @balajiveerasingam3602
    @balajiveerasingam3602 2 ปีที่แล้ว +1

    thanks for this detailed tamil explanation Sir. It helps me lot

  • @vinothmanoharan5071
    @vinothmanoharan5071 ปีที่แล้ว +1

    Super Sir, Actually i was bit confused on this long time and it was slow and clear explanation helped me to understand this concept.

  • @jijendranp6051
    @jijendranp6051 หลายเดือนก่อน

    thanks

  • @jaykumaranbu7173
    @jaykumaranbu7173 2 ปีที่แล้ว +2

    Good Explanation

  • @computersindia
    @computersindia ปีที่แล้ว

    Thanks for the lecture and well explained

  • @vigneshj3676
    @vigneshj3676 3 ปีที่แล้ว

    Please don't stop it. Keep rock it

  • @KiranKumar-st9oc
    @KiranKumar-st9oc 3 ปีที่แล้ว

    Rocking.... Continue your great work

  • @senthilkumar5129
    @senthilkumar5129 3 ปีที่แล้ว

    Thanks for good explanation

  • @dineshm5813
    @dineshm5813 2 ปีที่แล้ว +1

  • @computersindia
    @computersindia ปีที่แล้ว

    spec-config.yml (May be useful to copy and paste)
    ---------------------------
    apiVersion: v1
    kind: ConfigMap
    metadata:
    name: spec-configmap
    data:
    game.properties: |
    enemies=aliens
    lives=3
    cheatcode=testing

  • @computersindia
    @computersindia ปีที่แล้ว

    pod-01.yaml (May be useful to copy and try)
    -------------------------
    apiVersion: v1
    kind: Pod
    metadata:
    name: my-configmap-pod-01
    spec:
    containers:
    - name: myctr
    image: busybox
    command: ['sh','-c','echo $(MY_VAL) && sleep 3600']
    volumeMounts:
    - name: config-volume
    mountPath: /etc/config
    volumes:
    - name: config-volume
    configMap:
    name: literal-config

  • @prawin_it
    @prawin_it 2 ปีที่แล้ว +1

    Superb

  • @sivarasana3641
    @sivarasana3641 3 ปีที่แล้ว

    Excellent Explanation sir, Expecting more video sir

  • @dinesht3913
    @dinesht3913 3 ปีที่แล้ว

    Can you explain how to overide the whole properties file from the docker image using configmap

  • @computersindia
    @computersindia ปีที่แล้ว

    pod.yaml (May be useful to copy and try)
    -------------------------
    apiVersion: v1
    kind: Pod
    metadata:
    name: my-configmap-pod
    spec:
    containers:
    - name: myctr
    image: busybox
    command: ['sh','-c','echo $(MY_VAL) && sleep 3600']
    env:
    - name: MY_VAL
    valueFrom:
    configMapKeyRef:
    name: literal-config
    key: myName

  • @தமிழ்க்கடவுள்_பக்திChannel

    Kubernet more viedos sir

  • @subramaniank3774
    @subramaniank3774 3 ปีที่แล้ว +1

    Good explanation