Openshift Tutorial - ConfigMap & Secret

Поделиться
HTML-код
  • Опубликовано: 4 ноя 2024

Комментарии • 17

  • @PianoNumberOne
    @PianoNumberOne Год назад

    Very Good Content, I learned and Tried today, was helpful for a novice like me...

  • @mrunalinichavan2793
    @mrunalinichavan2793 3 года назад +2

    Good information..keep it up...

  • @shomer2009
    @shomer2009 2 года назад

    very interesting video, Thank you!

  • @aiogamerz775
    @aiogamerz775 3 года назад +1

    Nice Content👍👍👍

    • @devopsdean7830
      @devopsdean7830  3 года назад

      Thank you for watching. I hope you enjoyed it.

  • @martinantonioortegayepez3097
    @martinantonioortegayepez3097 Год назад

    Hello, can I use a key value from a secret in a config map?

  • @manishchawhan6758
    @manishchawhan6758 3 года назад +1

    Sir.. I got detail information in simple words..

  • @Talhakhhaan
    @Talhakhhaan 2 года назад +1

    Can you show how you called the Environment variables in .env? In this case?

    • @devopsdean7830
      @devopsdean7830  2 года назад

      Thank you for watching, in the deployment yaml file you can use envFrom tag inside that you can give secret reference, I hope it is helpful

  • @donschenck2466
    @donschenck2466 8 месяцев назад

    Well done.

  • @kaseybuchanan3269
    @kaseybuchanan3269 2 года назад +1

    Thanks brother

  • @Sauline1231
    @Sauline1231 2 года назад

    Please upload full tutorial about OpenShift.

    • @devopsdean7830
      @devopsdean7830  2 года назад

      Thanks for watching, sure I will bring more videos on openshift

  • @UjjwalVishwakarma-vl9pc
    @UjjwalVishwakarma-vl9pc Год назад

    how to write this yaml file can you please let me know.

  • @chinmayamahapatra6797
    @chinmayamahapatra6797 2 года назад

    Hi can you please let me know how do you encoded the data

    • @donschenck2466
      @donschenck2466 8 месяцев назад

      Are you using Linux, macOS or Windows?
      You encode the data at the command line.
      bash: echo -n 'value_you_wish_to_encode_goes_here' | base64
      PowerShell:
      [Convert]::ToBase64String([char[]]'value_you_wish_to_encode_goes_here')