mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Devenv: Remove abandoned environment (#60882)
chore: remove abandoned environment
This commit is contained in:
parent
7fd1d5cef0
commit
e1ea5490b3
@ -1,16 +0,0 @@
|
||||
saml:
|
||||
container_name: saml
|
||||
image: kristophjunge/test-saml-idp
|
||||
environment:
|
||||
SIMPLESAMLPHP_SP_ENTITY_ID: http://grafana.com
|
||||
SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE: http://localhost/simplesaml/module.php/saml/sp/saml2-acs.php/test-sp
|
||||
SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE: http://localhost/simplesaml/module.php/saml/sp/saml2-logout.php/test-sp
|
||||
SIMPLESAMLPHP_ADMIN_PASSWORD: grafana
|
||||
SIMPLESAMLPHP_SECRET_SALT: salt
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "8443:8443"
|
||||
volumes:
|
||||
- ./docker/blocks/auth/saml/users.php:/var/www/simplesamlphp/config/authsources.php
|
||||
|
||||
|
@ -1,16 +0,0 @@
|
||||
# Notes on Saml Docker Block
|
||||
|
||||
Uses https://github.com/kristophjunge/docker-test-saml-idp as a docker container for saml example.
|
||||
|
||||
## Use
|
||||
|
||||
See docker container docs on how to use this service - https://github.com/kristophjunge/docker-test-saml-idp#test-the-identity-provider-idp
|
||||
|
||||
## Groups & Users
|
||||
|
||||
admins
|
||||
saml-admin (saml-admin@grafana.com)
|
||||
editors
|
||||
saml-editor (saml-editor@grafana.com)
|
||||
no groups
|
||||
saml-viewer (saml-viewer@grafana.com)
|
@ -1,21 +0,0 @@
|
||||
<?php
|
||||
$config = array(
|
||||
'admin' => array(
|
||||
'core:AdminPassword',
|
||||
),
|
||||
'example-userpass' => array(
|
||||
'exampleauth:UserPass',
|
||||
'saml-admin:grafana' => array(
|
||||
'groups' => array('admins'),
|
||||
'email' => 'saml-admin@grafana.com',
|
||||
),
|
||||
'saml-editor:grafana' => array(
|
||||
'groups' => array('editors'),
|
||||
'email' => 'saml-editor@grafana.com',
|
||||
),
|
||||
'saml-viewer:grafana' => array(
|
||||
'groups' => array(),
|
||||
'email' => 'saml-viewer@grafana.com',
|
||||
),
|
||||
),
|
||||
);
|
Loading…
Reference in New Issue
Block a user