Openshift Baremetal - Installer's Bake-off - Agent vs Assisted vs IPI

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

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

  • @manunibal
    @manunibal 6 месяцев назад +1

    Thanks for this great video. In my case (i.e. installation over Bare Metal, with 3 controllers, several workers, and dedicated storage servers) I also need to have Bond interfaces for all the networks (even the OCP base network), as I have 2 routers. I see the web assisted installer does not support the Bond interface for the OCP base network. Do you know if the Agent installer supports this bond feature?

    • @TrustedAdvisor-tk8lj
      @TrustedAdvisor-tk8lj  5 месяцев назад +1

      Hi. Both Assisted and Agent Based would allow you to bond any interface you need - including the OCP base network. Just use the yaml editor. Example:
      interfaces:
      - name: bond0
      type: bond
      state: up
      ipv4:
      address:
      - ip: X.X.X.X
      prefix-length: 24
      dhcp: false
      enabled: true
      link-aggregation:
      mode: 802.3ad
      port:
      - ens1f0
      - ens1f1
      mtu: 9000

    • @manunibal
      @manunibal 5 месяцев назад

      @@TrustedAdvisor-tk8lj Thanks, this yaml option was not available in previous version. Looks good