Skip to content

Commit 8a900d4

Browse files
committed
Revert "F OpenNebula/one#6496: New SAML documentation (#236)"
This reverts commit 08b7418.
1 parent 08b7418 commit 8a900d4

File tree

8 files changed

+10
-194
lines changed

8 files changed

+10
-194
lines changed

content/product/cloud_system_administration/authentication_configuration/overview.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: "1"
1212

1313
<!--# Overview -->
1414

15-
OpenNebula comes with a default internal user authentication system based on username/password, where information and secrets are stored in the OpenNebula (see the [Users & Groups Subsystem guide]({{% relref "../multitenancy/auth_overview#auth-overview" %}})). Dedicated external user authentication drivers can be used to leverage additional authentication mechanisms or sources of information about the users (e.g., LDAP, SAML). This chapter describes the available user authentication and management options.
15+
OpenNebula comes with a default internal user authentication system based on username/password, where information and secrets are stored in the OpenNebula (see the [Users & Groups Subsystem guide]({{% relref "../multitenancy/auth_overview#auth-overview" %}})). Dedicated external user authentication drivers can be used to leverage additional authentication mechanisms or sources of information about the users (e.g., LDAP). This chapter describes the available user authentication and management options.
1616

1717
## Authentication
1818

@@ -22,13 +22,12 @@ In this figure you can see three authentication configurations you can customize
2222

2323
**a) CLI/API Authentication**
2424

25-
You can choose from the following authentication drivers to access OpenNebula:
25+
You can choose from the following authentication drivers to access OpenNebula from the command line:
2626

2727
- [Built-in User/Password and token authentication]({{% relref "../multitenancy/manage_users#manage-users" %}})
2828
- [SSH Authentication]({{% relref "ssh#ssh-auth" %}})
2929
- [X.509 Authentication]({{% relref "x509#x509-auth" %}})
3030
- [LDAP Authentication]({{% relref "ldap#ldap" %}})
31-
- [SAML Authentication]({{% relref "saml#saml" %}})
3231

3332
**b) Sunstone Authentication**
3433

@@ -58,7 +57,7 @@ Usable only with API and CLI:
5857
* [SSH Authentication]({{% relref "ssh#ssh-auth" %}})
5958

6059
Usable only with Sunstone:
61-
* [SAML Authentication]({{% relref "saml#saml" %}})
60+
6261
* [Sunstone Authentication]({{% relref "sunstone_auth#sunstone-auth" %}})
6362

6463
## Hypervisor Compatibility

content/product/cloud_system_administration/authentication_configuration/saml.md

Lines changed: 0 additions & 182 deletions
This file was deleted.

content/product/cloud_system_administration/authentication_configuration/sunstone_auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description:
55
categories:
66
pageintoc: "126"
77
tags:
8-
weight: "6"
8+
weight: "5"
99
---
1010

1111
<a id="sunstone-auth"></a>

content/product/cloud_system_administration/multitenancy/manage_users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ username = [" ", ":", "\t", "\n", "\v", "\f", "\r"]
5555
password = [" ", "\t", "\n", "\v", "\f", "\r"]{{< /alert >}}
5656
```
5757

58-
Some auth drivers do not require passwords (ldap, saml); in this case a user can be created without it:
58+
Some auth drivers do not require passwords (ldap); in this case a user can be created without it:
5959

6060
```default
6161
$ oneuser create --driver ldap <user_name>

content/product/integration_references/infrastructure_drivers_development/devel-auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ To be able to use the new driver we need to add its name to the list of enabled
8888
```default
8989
AUTH_MAD = [
9090
executable = "one_auth_mad",
91-
authn = "ssh,x509,ldap,server_cipher,server_x509,saml,length"
91+
authn = "ssh,x509,ldap,server_cipher,server_x509,length"
9292
]
9393
```
9494

9595
## Managed Groups
9696

97-
The authentication driver may also assign users to groups, this requires the `DRIVER_MANAGED_GROUPS` option to be set to `YES`, e.g., like for the `ldap` or `saml` drivers
97+
The authentication driver may also assign users to groups, this requires the `DRIVER_MANAGED_GROUPS` option to be set to `YES`, e.g., like for the `ldap` driver
9898

9999
```default
100100
AUTH_MAD_CONF = [

content/product/operation_references/opennebula_services_configuration/oned.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ Sample configuration:
558558
```default
559559
AUTH_MAD = [
560560
executable = "one_auth_mad",
561-
authn = "ssh,x509,ldap,server_cipher,server_x509,saml"
561+
authn = "ssh,x509,ldap,server_cipher,server_x509"
562562
]
563563
564564
SESSION_EXPIRATION_TIME = 900
@@ -568,7 +568,7 @@ SESSION_EXPIRATION_TIME = 900
568568
DEFAULT_UMASK = 177
569569
```
570570

571-
The `DEFAULT_AUTH` can be used to point to the desired default authentication driver, for example `ldap` or `saml`:
571+
The `DEFAULT_AUTH` can be used to point to the desired default authentication driver, for example `ldap`:
572572

573573
```default
574574
DEFAULT_AUTH = "ldap"

content/quick_start/understand_opennebula/cloud_architecture_and_design/cloud_architecture_design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Now you should have an OpenNebula cloud up and running with at least one virtual
6868
- **Networking setup** with [802.1Q VLANs]({{% relref "../../../product/cluster_configuration/networking_system/vlan#hm-vlan" %}}), [Open vSwitch]({{% relref "../../../product/cluster_configuration/networking_system/openvswitch#openvswitch" %}}) or [VXLAN]({{% relref "../../../product/cluster_configuration/networking_system/vxlan#vxlan" %}}).
6969
- **Storage setup** with [NFS/NAS datastore]({{% relref "../../../product/cluster_configuration/storage_system/nas_ds#nas-ds" %}}), [Local Storage datastore]({{% relref "../../../product/cluster_configuration/storage_system/local_ds#local-ds" %}}), [SAN datastore]({{% relref "../../../product/cluster_configuration/storage_system/lvm_drivers#lvm-drivers" %}}), [Ceph]({{% relref "../../../product/cluster_configuration/storage_system/ceph_ds#ceph-ds" %}}), [Dev]({{% relref "../../../product/cluster_configuration/storage_system/dev_ds#dev-ds" %}}), or [iSCSI]({{% relref "../../../product/cluster_configuration/storage_system/iscsi_ds#iscsi-ds" %}}) datastore.
7070
- **Host setup** with the configuration options for the [KVM hosts]({{% relref "../../../product/operation_references/hypervisor_configuration/kvm_driver#kvmg" %}}), [LXC hosts]({{% relref "../../../product/operation_references/hypervisor_configuration/lxc_driver#lxdmg" %}}), [Monitoring subsystem]({{% relref "../../../product/cloud_system_administration/resource_monitoring" %}}), [Virtual Machine HA]({{% relref "../../../product/control_plane_configuration/high_availability/vm_ha#ftguide" %}}) or [PCI Passthrough]({{% relref "../../../product/cluster_configuration/hosts_and_clusters/pci_passthrough#kvm-pci-passthrough" %}}).
71-
- **Authentication setup**, OpenNebula includes by default an internal **user/password authentication system**, but it can also use an external authentication driver such as [SSH]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ssh#ssh-auth" %}}), [x509]({{% relref "../../../product/cloud_system_administration/authentication_configuration/x509#x509-auth" %}}), [LDAP]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ldap#ldap" %}}), [SAML]({{% relref "../../../product/cloud_system_administration/authentication_configuration/saml#saml" %}}) or [Active Directory]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ldap#ldap" %}}).
71+
- **Authentication setup**, OpenNebula includes by default an internal **user/password authentication system**, but it can also use an external authentication driver such as [SSH]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ssh#ssh-auth" %}}), [x509]({{% relref "../../../product/cloud_system_administration/authentication_configuration/x509#x509-auth" %}}), [LDAP]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ldap#ldap" %}}) or [Active Directory]({{% relref "../../../product/cloud_system_administration/authentication_configuration/ldap#ldap" %}}).
7272

7373
### 3.4. Configure Cloud Services
7474

content/software/upgrade_process/configuration_management_ee/appendix.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ managed by the `onecfg` tool:
2323
| ---------------------------------------------------------------- | ---------------------- |
2424
| `/etc/one/alertmanager/alertmanager.yml` | YAML |
2525
| `/etc/one/auth/ldap_auth.conf` | YAML w/ ordered arrays |
26-
| `/etc/one/auth/saml_auth.conf` | YAML |
2726
| `/etc/one/auth/server_x509_auth.conf` | YAML |
2827
| `/etc/one/auth/x509_auth.conf` | YAML |
2928
| `/etc/one/az_driver.conf` | YAML |

0 commit comments

Comments
 (0)