Commit dd65a5dc authored by Sergio Gimenez's avatar Sergio Gimenez
Browse files

Merge remote-tracking branch 'i2cat/sunrise-demo'

parents d60b8648 1a9b7814
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ oop_namespace: oop
# Service NodePort
srm_nodeport: 32415

# SRM image
# SRM image (ETSI registry)
srm_controller_image_repository: "labs.etsi.org:5050/oop/code/service-resource-manager"
srm_controller_image_tag: "1.1"

+28 −5
Original line number Diff line number Diff line
@@ -16,10 +16,29 @@ all:
      ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o ConnectTimeout=300 -o ServerAliveInterval=30 -o IdentitiesOnly=yes'
      ansible_python_interpreter: /usr/bin/python3
      deployment_mode: remote
      host_ip: 192.0.2.10
      # kubeconfig_output_dir: "/home/ubuntu/kind-cluster-config"
      # kubeconfig_filename: operator-platform-external-kubeconfig.yaml
      # cluster_name: example-all-in-one
      host_ip: 192.168.123.214
      cluster_name: sunrise-remote
      api_server_port: 16443
      kubeconfig_output_dir: "/home/ubuntu/.kube"
      kubeconfig_filename: "config"
      oop_deployment_profile: lite2edge

    openop_kul:
      ansible_host: 193.190.168.50
      ansible_connection: ssh
      ansible_user: i2cat
      ansible_ssh_private_key_file: "~/.ssh/keys/sn-keypair"
      ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o ConnectTimeout=300 -o ServerAliveInterval=30 -o IdentitiesOnly=yes'
      ansible_python_interpreter: /usr/bin/python3
      deployment_mode: remote
      host_ip: 193.190.168.50
      cluster_name: op2-remote
      api_server_port: 16443
      kubeconfig_output_dir: /home/i2cat/.kube
      kubeconfig_filename: "config"
      oop_deployment_profile: kubernetes
      deploy_prometheus: false
      skip_prerequisites: true

    example_op_1:
      ansible_host: 198.51.100.11
@@ -69,7 +88,11 @@ all:
  children:
    openop_dev:
      hosts:
        example_op_1:
        openop_1:
    existing_cluster_nodes:
      hosts:
        openop_sunrise:
        openop_kul:
    op1_nodes:
      hosts:
        example_op_3:
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
# Usage: ansible-playbook playbooks/infrastructure/prerequisites/setup-docker.yml

- name: Install Docker
  hosts: k8s_clusters
  hosts: "{{ target_hosts | default('k8s_clusters') }}"
  gather_facts: true
  become: true

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
# Usage: ansible-playbook playbooks/infrastructure/prerequisites/setup-kubectl.yml

- name: Install kubectl
  hosts: k8s_clusters
  hosts: "{{ target_hosts | default('k8s_clusters') }}"
  gather_facts: true
  become: true

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
# Usage: ansible-playbook playbooks/infrastructure/prerequisites/setup-python-libs.yml

- name: Install Python Libraries
  hosts: k8s_clusters
  hosts: "{{ target_hosts | default('k8s_clusters') }}"
  gather_facts: true
  become: true

Loading