From 7c8feecf25bf13ecce42f7e0e6f91191fe16e589 Mon Sep 17 00:00:00 2001
From: Sebastian Rieger <sebastian.rieger@informatik.hs-fulda.de>
Date: Fri, 12 Apr 2024 14:34:41 +0200
Subject: [PATCH] added cloud.yaml example and renamed openrc example

---
 CloudComp-openrc => CloudComp-example-openrc |  0
 clouds-example.yaml                          | 22 ++++++++++++++++++++
 2 files changed, 22 insertions(+)
 rename CloudComp-openrc => CloudComp-example-openrc (100%)
 create mode 100644 clouds-example.yaml

diff --git a/CloudComp-openrc b/CloudComp-example-openrc
similarity index 100%
rename from CloudComp-openrc
rename to CloudComp-example-openrc
diff --git a/clouds-example.yaml b/clouds-example.yaml
new file mode 100644
index 0000000..6e940b9
--- /dev/null
+++ b/clouds-example.yaml
@@ -0,0 +1,22 @@
+# This is a clouds.yaml file, which can be used by OpenStack tools as a source
+# of configuration on how to connect to a cloud. If this is your only cloud,
+# just put this file in ~/.config/openstack/clouds.yaml and tools like
+# python-openstackclient will just work with no further config. (You will need
+# to add your password to the auth section)
+# If you have more than one cloud account, add the cloud entry to the clouds
+# section of your existing file and you can refer to them by name with
+# OS_CLOUD=openstack or --os-cloud=openstack
+clouds:
+  openstack:
+    auth:
+      # auth_url: https://private-cloud.example.com:5000/v3
+      # auth_url: https://private-cloud2.example.com:5000/v3
+      auth_url: https://10.32.4.182:5000/v3
+      username: "CloudComp0"
+      password: "demo"
+      # project_id: bba62cf6bf0b447491829d207e1b05f9
+      project_name: "CloudComp0"
+      user_domain_name: "Default"
+    region_name: "RegionOne"
+    interface: "public"
+    identity_api_version: 3
\ No newline at end of file
-- 
GitLab