Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dominikholler
Created February 19, 2018 10:27
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/ed372e368d734a00cfc71e19b6ef5463 to your computer and use it in GitHub Desktop.
Save dominikholler/ed372e368d734a00cfc71e19b6ef5463 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2018 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 add a Glance storage
# domain:
# Create the connection to the server:
connection = sdk.Connection(
url='https://engine40.example.com/ovirt-engine/api',
username='admin@internal',
password='redhat123',
ca_file='/etc/pki/ovirt-engine/ca.pem',
debug=True,
log=logging.getLogger(),
)
# The name of the external network 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()
providers = [
provider for provider in providers_service.list()
if provider.name == name
]
provider = providers[0]
provider_service = providers_service.provider_service(provider.id)
provider_service.update(
types.OpenStackNetworkProvider(
auto_sync=False
)
)
# 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