Skip to content

Instantly share code, notes, and snippets.

@dominikholler
Created January 28, 2019 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dominikholler/be7286931c0ea26b14965a5f91783cd4 to your computer and use it in GitHub Desktop.
Save dominikholler/be7286931c0ea26b14965a5f91783cd4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import logging
import ovirtsdk4 as sdk
import ovirtsdk4.types as types
logging.basicConfig(level=logging.DEBUG, filename='example.log')
# This example will connect to the server and create new logical network.
# Create the connection to the server:
connection = sdk.Connection(
url='https://engine40.example.com/ovirt-engine/api',
username='admin@internal',
password='redhat123',
ca_file='ca.pem',
debug=True,
log=logging.getLogger(),
)
# The name of the external network provider:
provider_name = 'ovirt-provider-ovn'
# Get the root of the services tree:
system_service = connection.system_service()
# Get the list of external network providers
# that match the name that we want to use:
providers_service = system_service.openstack_network_providers_service()
provider = next((
provider for provider in providers_service.list()
if provider.name == provider_name),
None)
# Get the reference to the networks service:
networks_service = connection.system_service().networks_service()
# Use the "add" method to create new VM logical network in data center
network = networks_service.add(
network=types.Network(
name='ext_net',
description='Testing network',
data_center=types.DataCenter(
name='Default'
),
usages=[types.NetworkUsage.VM],
external_provider=types.OpenStackNetworkProvider(
id=provider.id
)
),
)
# Close the connection to the server:
connection.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment