From zero to Kubernetes with OpenStack Ironic

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

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

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

    At 7:16 you do "$ ironic node-list
    " However, this command does not exist.
    bash: ironic: command not found...
    Our assumption is that the command was deprecated and replaced by
    $ openstack baremetal node list
    However, we get the following error
    Missing value auth-url required for auth plugin password
    Any ideas of what we are missing in our setup?

    • @dedsmontirovkoi
      @dedsmontirovkoi 4 ปีที่แล้ว

      You need to get to know OpenStack better

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

      @@dedsmontirovkoi Wow such help, such collab lol

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

      It maybe your PATH doesn't include the 'ironic' binary. That might be a place to start

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

      @@Waitwhat469 sure, it was sarcasm 😅

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

      You need to apply your credentials file admin-openrc.sh (OS_AUTH_URL, OS_USERNAME, OS_PASSWORD and e.t.c.)

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

    Hmm, not yet with Kolla I see...?

  • @cocytusdrone
    @cocytusdrone 7 ปีที่แล้ว

    When using vim, you can hit "ciw" to "change inner word", instead of deleting every character with "x" ... :D

    • @olealgoritme6774
      @olealgoritme6774 2 ปีที่แล้ว

      if deletion is the goal, just 'dw' - delete word, or replacing the word - 'ciw' - as you said :D

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

    This would be nice, but disabling firewall and selinux? 'sudo pip install'?? 'curl | bash'??? You should have warned that this instruction is *absolutely* not suitable for production. Would love to see a production-ready video (+ kolla, as already mentioned).

    • @harkat16
      @harkat16 7 ปีที่แล้ว

      Can you explain the reasoning behind these? I only understand why sudo pip install and disable firewall are bad. The rest seem fine?

    • @DmitryTantsur
      @DmitryTantsur 7 ปีที่แล้ว +5

      Each of these points is bad enough to declare the whole procedure completely not suitable for production.
      Disabling selinux removes an important protection layer. This says "I'm doing something selinux thinks I should not be doing, so I'll just kill it completely". This is not how security works ;)
      curl | bash executes random staff from internet, and apparently assumes that the source site never gets hacked, and that their programmers can never make a mistake in bash code. Also, why? CentOS seems to have docker already.
      Finally, the Kolla project also provides container support for OpenStack projects. It was not clear from this video why a new solution (living on a personal github, huh?) is required, it is just provided as the only way to do it.