Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

Installing Contrail with Mesos

date_range 28-Aug-23

The setup process is a 2-step process including DC/OS setup and Contrail setup.

Refer to Mesosphere DC/OS website to set up DC/OS.

Contrail Networking supports DC/OS version—1.11.0.

Contrail Setup

contrail-container-builder is added with two new containers: Mesos manager and mesos-node-init

  • mesos-node-init installs Mesos CNI.

  • mesos manager and mesos-node-init runs on the worker node.

Note:

Orchestration is set to Mesos but no Mesos components will be installed through contrail-ansible-deployer.

Run the following commands to set up Contrail.

  1. Install ansible and clone ansible deployer.
    content_copy zoom_out_map
    yum install -y ansible-2.4.2.0 git vim 
    git clone http://github.com/Juniper/contrail-ansible-deployer 
    cd contrail-ansible-deployer 
    ssh-copy-id <all-nodes>

    For more details, refer to contrail-ansible-deployer GitHub repository.

  2. Verify configure_instances.yml file.

    Sample configure_instances.yml file

    content_copy zoom_out_map
    provider_config:
      bms:
        ssh_pwd: <password>
        ssh_user: root
        ntpserver: <ntp_server>
        domainsuffix: local
    instances:
      bms1:
        provider: bms
        ip: <ip-address-master>
        roles:
            config_database:
            config:
            webui:
            control:
            analytics_database:
            analytics:
      bms2:
        provider: bms
        ip: <ip-address-agent>
        roles:
            mesos_master:
      bms3:
        provider: bms
        ip: <ip-address>
        roles:
            vrouter:
            mesosmanager:
            mesos_agent_private:
      bms4:
        provider: bms
        ip: <ip-address>
        roles:
            vrouter:
            mesosmanager:
            mesos_agent_public:
    global_configuration:
      CONTAINER_REGISTRY: <contrail-registry>
      REGISTRY_PRIVATE_INSECURE: true
    contrail_configuration:
      CLOUD_ORCHESTRATOR: mesos
      CONTRAIL_VERSION: queens-master-latest
      RABBITMQ_NODE_PORT: 5673
    

    For more details, refer to Contrail deployment on Mesosphere DC/OS orchestrator.

  3. Run Contrail Ansible playbooks.
    Note:

    You can specify orchestrator as Mesos in instance.yaml or run in ansible-playbook as -e orchestrator=mesos.

    content_copy zoom_out_map
    ansible-playbook -i inventory/ playbooks/configure_instances.yml 
    ansible-playbook -i inventory/ playbooks/install_contrail.yml

You can also import Mesos cluster in Contrail command. For details, refer to Importing Contrail Cluster Data using Contrail Command.

footer-navigation