HashiCorp Nomad. A Kubernetes alternative?

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

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

  •  Год назад +1

    Hey, great video, very detailed but also very easy to follow. Thank you very much!

  • @SaiSampathKarthikSaladi
    @SaiSampathKarthikSaladi 2 месяца назад

    Simple and super. Thanks for the Demo.

  • @DavidAlsh
    @DavidAlsh 2 года назад +2

    can you make the nomad master also be a client?

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

      Yes, in my /etc/nomad/nomad.hcl on OpenBSD for ex:
      server {
      enabled = true
      bootstrap_expect = 1
      }
      client {
      enabled = true
      node_class = "ClientServer" # arbitrary string
      ...
      }
      ...

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

    Nice content
    Thank you so much

  • @chris.dillon
    @chris.dillon Год назад +1

    ctrl-L is clear terminal, you don't need an alias or anything in your history
    here's a mnemonic: ctrl-c is break (as you know), the next letter in clear is L so it's ctrl-L (lowercase L, using uppercase here if your font is sans serif like mine is here) 😆

  • @ДжигурдаДжигурдаевовичч

    Very good explanation. Thank you.

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

    Nice video about HashiCorp Nomad. I was wondering, when you run Nomad binary as a server or client in the cloud services (AWS or whatever) they didn't run in the background. How do you achieve that? Nomad binary can run as a daemon? Thanks in advance.

    • @m.g.1371
      @m.g.1371 2 года назад

      run the nomad job with "-detach" flag :)