diff --git a/_docs/administration/single-sign-on/sso-setup-saml2.md b/_docs/administration/single-sign-on/sso-setup-saml2.md index ef4b5dd5e..d0c7ec897 100644 --- a/_docs/administration/single-sign-on/sso-setup-saml2.md +++ b/_docs/administration/single-sign-on/sso-setup-saml2.md @@ -96,6 +96,13 @@ The mandatory fields needed for SAML assertions are: 1. lastName - user last name 1. email - user email +To configure users sync for SAML IDP you need to do the following: + +1. Select GSuite provider +1. Enable auto Sync users and teams to Codefresh +1. Set JSON Keyfile, Admin Email and Sync interval +The instructions for getting the JSON Keyfile, and Admin Email are the same as for [Google SSO](https://codefresh.io/docs/docs/administration/single-sign-on/sso-google/#synchronize-teams-with-the-codefresh-cli) . + >Notice that these settings are for the SaaS version of Codefresh. For an on-premise Codefresh setup you need to use the URLs that match your installation. Once everything is finished, you [should test the integration]({{site.baseurl}}/docs/administration/single-sign-on/sso-setup-oauth2/#testing-your-identity-provider). Once it is working proceed to the next steps that are: diff --git a/_docs/yaml-examples/examples/sending-the-notification-to-slack.md b/_docs/yaml-examples/examples/sending-the-notification-to-slack.md index c6503945f..57e5707de 100644 --- a/_docs/yaml-examples/examples/sending-the-notification-to-slack.md +++ b/_docs/yaml-examples/examples/sending-the-notification-to-slack.md @@ -31,7 +31,7 @@ You can find how to integrate with slack here [https://api.slack.com/incoming-we `slack step` {% highlight yaml %} slack_notify: - image: tutum/curl + image: byrnedo/alpine-curl, curlimages/curl, or any other curl image commands: - curl -X POST --data-urlencode 'payload={"text":"Test slack integration via yaml"}' {% raw %}${{SLACK_WEB_URL}}{% endraw %} {% endhighlight %} @@ -39,7 +39,7 @@ slack_notify: ## What to read next -* [Global Slack integration]({{site.baseurl}}/docs/integrations/notifications/slack-integration/) -* [Advanced workflows]({{site.baseurl}}/docs/codefresh-yaml/advanced-workflows/) -* [Pipeline hooks]({{site.baseurl}}/docs/codefresh-yaml/hooks/) -* [Shared configuration]({{site.baseurl}}/docs/configure-ci-cd-pipeline/shared-configuration/) \ No newline at end of file +* [Global Slack Integration]({{site.baseurl}}/docs/integrations/notifications/slack-integration/) +* [Advanced Workflows]({{site.baseurl}}/docs/codefresh-yaml/advanced-workflows/) +* [Pipeline Hooks]({{site.baseurl}}/docs/codefresh-yaml/hooks/) +* [Shared Configuration]({{site.baseurl}}/docs/configure-ci-cd-pipeline/shared-configuration/) \ No newline at end of file