From 195154e1c20e9067abb5d99a09e5502c29f9edaa Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Thu, 15 Aug 2024 16:23:10 -0400 Subject: [PATCH] First pass at Dagster+ sidebar & pages --- docs/docs-next/docs/dagster-plus.md | 1 + .../access/authentication/azure-ad-sso.md | 6 + .../authentication/google-workspace-sso.md | 6 + .../access/authentication/okta-scim.md | 6 + .../access/authentication/okta-sso.md | 6 + .../access/authentication/onelogin-sso.md | 6 + .../access/authentication/pingone-sso.md | 6 + .../docs/dagster-plus/access/rbac.md | 6 + .../dagster-plus/access/rbac/audit-logs.md | 7 + .../docs/dagster-plus/access/rbac/teams.md | 7 + .../access/rbac/user-roles-permissions.md | 7 + .../docs/dagster-plus/access/rbac/users.md | 7 + .../docs/dagster-plus/data-catalog.md | 5 + .../docs/dagster-plus/deployment-types.md | 5 + .../docs/dagster-plus/deployment/alerts.md | 5 + .../dagster-plus/deployment/alerts/cli.md | 5 + .../dagster-plus/deployment/alerts/email.md | 5 + .../deployment/alerts/microsoft-teams.md | 5 + .../deployment/alerts/pagerduty.md | 5 + .../dagster-plus/deployment/alerts/slack.md | 5 + .../docs/dagster-plus/deployment/alerts/ui.md | 5 + .../deployment/branch-deployments.md | 7 + .../branch-deployments/change-tracking.md | 8 + .../branch-deployments/dagster-cloud-cli.md | 8 + .../deployment/branch-deployments/github.md | 8 + .../deployment/branch-deployments/gitlab.md | 8 + .../dagster-plus/deployment/code-locations.md | 6 + .../deployment/environment-variables.md | 6 + .../environment-variables/agent-config.md | 8 + .../environment-variables/built-in.md | 8 + .../environment-variables/dagster-ui.md | 8 + .../docs/dagster-plus/deployment/hybrid.md | 7 + .../deployment/hybrid/agents/amazon-ecs.md | 8 + .../deployment/hybrid/agents/docker.md | 8 + .../deployment/hybrid/agents/kubernetes.md | 8 + .../deployment/hybrid/agents/local.md | 8 + .../deployment/hybrid/agents/multiple.md | 7 + .../deployment/hybrid/agents/settings.md | 8 + .../deployment/hybrid/architecture.md | 7 + .../dagster-plus/deployment/hybrid/tokens.md | 7 + .../dagster-plus/deployment/serverless.md | 7 + .../deployment/serverless/run-isolation.md | 7 + .../docs/dagster-plus/deployment/settings.md | 7 + .../docs/dagster-plus/getting-started.md | 6 + .../getting-started/code-requirements.md | 6 + .../dagster-plus/getting-started/features.md | 6 + .../getting-started/whats-dagster-plus.md | 7 + docs/docs-next/docs/dagster-plus/insights.md | 5 + .../dagster-plus/insights/asset-metadata.md | 7 + .../dagster-plus/insights/export-metrics.md | 7 + .../insights/google-bigquery-dbt.md | 7 + .../dagster-plus/insights/google-bigquery.md | 7 + .../dagster-plus/insights/snowflake-dbt.md | 7 + .../docs/dagster-plus/insights/snowflake.md | 7 + .../docs/dagster-plus/multi-tenancy.md | 5 + docs/docs-next/docs/dagster-plus/settings.md | 5 + docs/docs-next/sidebars.ts | 221 ++++++++++++++++++ 57 files changed, 583 insertions(+) create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/azure-ad-sso.md create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/google-workspace-sso.md create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/okta-scim.md create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/okta-sso.md create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/onelogin-sso.md create mode 100644 docs/docs-next/docs/dagster-plus/access/authentication/pingone-sso.md create mode 100644 docs/docs-next/docs/dagster-plus/access/rbac.md create mode 100644 docs/docs-next/docs/dagster-plus/access/rbac/audit-logs.md create mode 100644 docs/docs-next/docs/dagster-plus/access/rbac/teams.md create mode 100644 docs/docs-next/docs/dagster-plus/access/rbac/user-roles-permissions.md create mode 100644 docs/docs-next/docs/dagster-plus/access/rbac/users.md create mode 100644 docs/docs-next/docs/dagster-plus/data-catalog.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment-types.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/cli.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/email.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/microsoft-teams.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/pagerduty.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/slack.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/alerts/ui.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/branch-deployments.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/branch-deployments/change-tracking.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/branch-deployments/dagster-cloud-cli.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/branch-deployments/github.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/branch-deployments/gitlab.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/code-locations.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/environment-variables.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/environment-variables/agent-config.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/environment-variables/built-in.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/environment-variables/dagster-ui.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/amazon-ecs.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/docker.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/kubernetes.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/local.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/multiple.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/settings.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/architecture.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/hybrid/tokens.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/serverless.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/serverless/run-isolation.md create mode 100644 docs/docs-next/docs/dagster-plus/deployment/settings.md create mode 100644 docs/docs-next/docs/dagster-plus/getting-started.md create mode 100644 docs/docs-next/docs/dagster-plus/getting-started/code-requirements.md create mode 100644 docs/docs-next/docs/dagster-plus/getting-started/features.md create mode 100644 docs/docs-next/docs/dagster-plus/getting-started/whats-dagster-plus.md create mode 100644 docs/docs-next/docs/dagster-plus/insights.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/asset-metadata.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/export-metrics.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/google-bigquery-dbt.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/google-bigquery.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/snowflake-dbt.md create mode 100644 docs/docs-next/docs/dagster-plus/insights/snowflake.md create mode 100644 docs/docs-next/docs/dagster-plus/multi-tenancy.md create mode 100644 docs/docs-next/docs/dagster-plus/settings.md diff --git a/docs/docs-next/docs/dagster-plus.md b/docs/docs-next/docs/dagster-plus.md index 9fc9e67f7ed28..ec6b77e5e3bb3 100644 --- a/docs/docs-next/docs/dagster-plus.md +++ b/docs/docs-next/docs/dagster-plus.md @@ -1,5 +1,6 @@ --- title: "Dagster+" +displayed_sidebar: "dagsterPlus" --- # Dagster+ \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/azure-ad-sso.md b/docs/docs-next/docs/dagster-plus/access/authentication/azure-ad-sso.md new file mode 100644 index 0000000000000..8e91c27be3523 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/azure-ad-sso.md @@ -0,0 +1,6 @@ +--- +title: "Azure Active Directory SSO" +displayed_sidebar: "dagsterPlus" +--- + +# Azure Active Directory SSO \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/google-workspace-sso.md b/docs/docs-next/docs/dagster-plus/access/authentication/google-workspace-sso.md new file mode 100644 index 0000000000000..42fd05b761dc7 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/google-workspace-sso.md @@ -0,0 +1,6 @@ +--- +title: "Google Workspace SSO" +displayed_sidebar: "dagsterPlus" +--- + +# Google Workspace SSO \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/okta-scim.md b/docs/docs-next/docs/dagster-plus/access/authentication/okta-scim.md new file mode 100644 index 0000000000000..ce021d760f1e3 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/okta-scim.md @@ -0,0 +1,6 @@ +--- +title: "Okta SCIM provisioning" +displayed_sidebar: "dagsterPlus" +--- + +# Okta SCIM provisioning \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/okta-sso.md b/docs/docs-next/docs/dagster-plus/access/authentication/okta-sso.md new file mode 100644 index 0000000000000..59ca7e70feef2 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/okta-sso.md @@ -0,0 +1,6 @@ +--- +title: "Okta SSO" +displayed_sidebar: "dagsterPlus" +--- + +# Okta SSO \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/onelogin-sso.md b/docs/docs-next/docs/dagster-plus/access/authentication/onelogin-sso.md new file mode 100644 index 0000000000000..5f9f0caaadec6 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/onelogin-sso.md @@ -0,0 +1,6 @@ +--- +title: "OneLogin SSO" +displayed_sidebar: "dagsterPlus" +--- + +# OneLogin SSO \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/authentication/pingone-sso.md b/docs/docs-next/docs/dagster-plus/access/authentication/pingone-sso.md new file mode 100644 index 0000000000000..9dcc85ffb5693 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/authentication/pingone-sso.md @@ -0,0 +1,6 @@ +--- +title: "PingOne SSO" +displayed_sidebar: "dagsterPlus" +--- + +# PingOne SSO \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/rbac.md b/docs/docs-next/docs/dagster-plus/access/rbac.md new file mode 100644 index 0000000000000..97e716acd3d95 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/rbac.md @@ -0,0 +1,6 @@ +--- +title: "Role-based Access Control" +displayed_sidebar: "dagsterPlus" +--- + +# Role-based Access Control \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/rbac/audit-logs.md b/docs/docs-next/docs/dagster-plus/access/rbac/audit-logs.md new file mode 100644 index 0000000000000..2f10e24d3ab2d --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/rbac/audit-logs.md @@ -0,0 +1,7 @@ +--- +title: "Audit logs" +displayed_sidebar: "dagsterPlus" +sidebar_position: 4 +--- + +# Audit logs \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/rbac/teams.md b/docs/docs-next/docs/dagster-plus/access/rbac/teams.md new file mode 100644 index 0000000000000..f7c2f71fa2736 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/rbac/teams.md @@ -0,0 +1,7 @@ +--- +title: "Managing teams" +displayed_sidebar: "dagsterPlus" +sidebar_position: 2 +--- + +# Managing teams \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/rbac/user-roles-permissions.md b/docs/docs-next/docs/dagster-plus/access/rbac/user-roles-permissions.md new file mode 100644 index 0000000000000..9b3767e36220f --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/rbac/user-roles-permissions.md @@ -0,0 +1,7 @@ +--- +title: "User roles & permissions" +displayed_sidebar: "dagsterPlus" +sidebar_position: 3 +--- + +# User roles & permissions \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/access/rbac/users.md b/docs/docs-next/docs/dagster-plus/access/rbac/users.md new file mode 100644 index 0000000000000..c69d0f66373d6 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/access/rbac/users.md @@ -0,0 +1,7 @@ +--- +title: "Managing users" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# Managing users \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/data-catalog.md b/docs/docs-next/docs/dagster-plus/data-catalog.md new file mode 100644 index 0000000000000..8566d3d954040 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/data-catalog.md @@ -0,0 +1,5 @@ +--- +title: "Data catalog" +--- + +# Dagster+ data catalog \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment-types.md b/docs/docs-next/docs/dagster-plus/deployment-types.md new file mode 100644 index 0000000000000..19c36fa96c9c4 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment-types.md @@ -0,0 +1,5 @@ +--- +title: "Deployment types" +--- + +# Dagster+ deployment types \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts.md b/docs/docs-next/docs/dagster-plus/deployment/alerts.md new file mode 100644 index 0000000000000..ebe1f36235ad7 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ alerts" +--- + +# DAgster+ alerts \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/cli.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/cli.md new file mode 100644 index 0000000000000..57fb20ea330a7 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/cli.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ alerts with the CLI" +--- + +# Alerts with the CLI \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/email.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/email.md new file mode 100644 index 0000000000000..0f2612f2f847d --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/email.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ email alerts" +--- + +# Dagster+ email alerts \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/microsoft-teams.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/microsoft-teams.md new file mode 100644 index 0000000000000..6d0271e47f320 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/microsoft-teams.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ Microsoft Teams alerts" +--- + +# Dagster+ Microsoft Teams alerts \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/pagerduty.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/pagerduty.md new file mode 100644 index 0000000000000..d885677bc0e92 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/pagerduty.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ PagerDuty alerts" +--- + +# Dagster+ PagerDuty alerts \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/slack.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/slack.md new file mode 100644 index 0000000000000..2ee9e3a407967 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/slack.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ Slack alerts" +--- + +# Dagster+ Slack alerts \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/alerts/ui.md b/docs/docs-next/docs/dagster-plus/deployment/alerts/ui.md new file mode 100644 index 0000000000000..af8dd34b3c8e3 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/alerts/ui.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ alerts in the UI" +--- + +# Alerts in the UI \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/branch-deployments.md b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments.md new file mode 100644 index 0000000000000..f716c5c960187 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments.md @@ -0,0 +1,7 @@ +--- +title: "Branch Deployments (CI)" +displayed_sidebar: "dagsterPlus" +sidebar_position: 3 +--- + +# Branch Deployments (CI) \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/change-tracking.md b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/change-tracking.md new file mode 100644 index 0000000000000..0472fa9e30b0c --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/change-tracking.md @@ -0,0 +1,8 @@ +--- +title: "Branch Deployment Change Tracking" +displayed_sidebar: "dagsterPlus" +sidebar_position: 4 +sidebar_label: "Change Tracking" +--- + +# Using Change Tracking \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/dagster-cloud-cli.md b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/dagster-cloud-cli.md new file mode 100644 index 0000000000000..d14796d769c8a --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/dagster-cloud-cli.md @@ -0,0 +1,8 @@ +--- +title: "Branch Deployments & the dagster-cloud CLI" +displayed_sidebar: "dagsterPlus" +sidebar_position: 3 +sidebar_label: "dagster-cloud CLI" +--- + +# Using Branch Deployments with the dagster-cloud CLI \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/github.md b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/github.md new file mode 100644 index 0000000000000..fbada01974b3e --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/github.md @@ -0,0 +1,8 @@ +--- +title: "Branch Deployments & GitHub" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +sidebar_label: "GitHub" +--- + +# Using Branch Deployments with GitHub \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/gitlab.md b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/gitlab.md new file mode 100644 index 0000000000000..ced65eba94d24 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/branch-deployments/gitlab.md @@ -0,0 +1,8 @@ +--- +title: "Branch Deployments & Gitlab" +displayed_sidebar: "dagsterPlus" +sidebar_position: 2 +sidebar_label: "Gitlab" +--- + +# Using Branch Deployments with Gitlab \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/code-locations.md b/docs/docs-next/docs/dagster-plus/deployment/code-locations.md new file mode 100644 index 0000000000000..98a98b8a94b84 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/code-locations.md @@ -0,0 +1,6 @@ +--- +title: "Code locations" +displayed_sidebar: "dagsterPlus" +--- + +# Code locations \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/environment-variables.md b/docs/docs-next/docs/dagster-plus/deployment/environment-variables.md new file mode 100644 index 0000000000000..e7f5f53ca4f51 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/environment-variables.md @@ -0,0 +1,6 @@ +--- +title: "Environment variables" +displayed_sidebar: "dagsterPlus" +--- + +# Environment variables \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/environment-variables/agent-config.md b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/agent-config.md new file mode 100644 index 0000000000000..3ba090eb148db --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/agent-config.md @@ -0,0 +1,8 @@ +--- +title: "Setting environment variables using agent config" +displayed_sidebar: "dagsterPlus" +sidebar_position: 2 +sidebar_label: "Set with agent config" +--- + +# Setting environment variables using agent config \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/environment-variables/built-in.md b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/built-in.md new file mode 100644 index 0000000000000..2261984f7afce --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/built-in.md @@ -0,0 +1,8 @@ +--- +title: "Built-in environment variables" +displayed_sidebar: "dagsterPlus" +sidebar_position: 3 +sidebar_label: "Built-in variables" +--- + +# Built-in environment variables \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/environment-variables/dagster-ui.md b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/dagster-ui.md new file mode 100644 index 0000000000000..06bc772bd3795 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/environment-variables/dagster-ui.md @@ -0,0 +1,8 @@ +--- +title: "Setting environment variables with the Dagster+ UI" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +sidebar_label: "Set with Dagster+ UI" +--- + +# Setting environment variables with the Dagster+ UI \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid.md new file mode 100644 index 0000000000000..27e6bed1c146b --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid.md @@ -0,0 +1,7 @@ +--- +title: "Hybrid deployment" +displayed_sidebar: "dagsterPlus" +sidebar_position: 2 +--- + +# Hybrid deployment \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/amazon-ecs.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/amazon-ecs.md new file mode 100644 index 0000000000000..83e54f1fe01ef --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/amazon-ecs.md @@ -0,0 +1,8 @@ +--- +title: "Amazon ECS agents" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +sidebar_label: "Amazon ECS" +--- + +# Amazon ECS agents \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/docker.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/docker.md new file mode 100644 index 0000000000000..877b65d6cebd2 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/docker.md @@ -0,0 +1,8 @@ +--- +title: "Docker agents" +displayed_sidebar: "dagsterPlus" +sidebar_position: 2 +sidebar_label: "Docker" +--- + +# Docker agents \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/kubernetes.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/kubernetes.md new file mode 100644 index 0000000000000..eb4bfa34c7a3c --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/kubernetes.md @@ -0,0 +1,8 @@ +--- +title: "Kubernetes agents" +displayed_sidebar: "dagsterPlus" +sidebar_position: 3 +sidebar_label: "Kubernetes" +--- + +# Kubernetes agents \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/local.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/local.md new file mode 100644 index 0000000000000..9f2851be65362 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/local.md @@ -0,0 +1,8 @@ +--- +title: "Local agents" +displayed_sidebar: "dagsterPlus" +sidebar_position: 4 +sidebar_label: "Local" +--- + +# Local agents \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/multiple.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/multiple.md new file mode 100644 index 0000000000000..9846dcc87ba32 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/multiple.md @@ -0,0 +1,7 @@ +--- +title: "Using multiple agents" +displayed_sidebar: "dagsterPlus" +sidebar_position: 5 +--- + +# Using multiple agents \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/settings.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/settings.md new file mode 100644 index 0000000000000..ffec3b088fe14 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/agents/settings.md @@ -0,0 +1,8 @@ +--- +title: "Hybrid agent settings" +displayed_sidebar: "dagsterPlus" +sidebar_position: 6 +sidebar_label: "Settings" +--- + +# Hybrid agent settings \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/architecture.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/architecture.md new file mode 100644 index 0000000000000..671273e15d1f4 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/architecture.md @@ -0,0 +1,7 @@ +--- +title: "Dagster+ Hybrid architecture" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# Dagster+ Hybrid architecture \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/hybrid/tokens.md b/docs/docs-next/docs/dagster-plus/deployment/hybrid/tokens.md new file mode 100644 index 0000000000000..ba909ad3cbbe2 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/hybrid/tokens.md @@ -0,0 +1,7 @@ +--- +title: "Hybrid agent tokens" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# Hybrid agent tokens \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/serverless.md b/docs/docs-next/docs/dagster-plus/deployment/serverless.md new file mode 100644 index 0000000000000..41f6fbfaa928d --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/serverless.md @@ -0,0 +1,7 @@ +--- +title: "Serverless deployment" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# Serverless deployment \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/serverless/run-isolation.md b/docs/docs-next/docs/dagster-plus/deployment/serverless/run-isolation.md new file mode 100644 index 0000000000000..8fa06f853e579 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/serverless/run-isolation.md @@ -0,0 +1,7 @@ +--- +title: "Serverless run isolation" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# Serverless run isolation \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/deployment/settings.md b/docs/docs-next/docs/dagster-plus/deployment/settings.md new file mode 100644 index 0000000000000..b8363be363097 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/deployment/settings.md @@ -0,0 +1,7 @@ +--- +title: "Deployment settings" +displayed_sidebar: "dagsterPlus" +sidebar_label: "Settings" +--- + +# Deployment settings \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/getting-started.md b/docs/docs-next/docs/dagster-plus/getting-started.md new file mode 100644 index 0000000000000..19d122fbab7e6 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/getting-started.md @@ -0,0 +1,6 @@ +--- +title: "Getting started with Dagster+" +displayed_sidebar: "dagsterPlus" +--- + +# Getting started with Dagster+ \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/getting-started/code-requirements.md b/docs/docs-next/docs/dagster-plus/getting-started/code-requirements.md new file mode 100644 index 0000000000000..e72b705edfcb2 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/getting-started/code-requirements.md @@ -0,0 +1,6 @@ +--- +title: "Code requirements" +displayed_sidebar: "dagsterPlus" +--- + +# Code requirements \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/getting-started/features.md b/docs/docs-next/docs/dagster-plus/getting-started/features.md new file mode 100644 index 0000000000000..d7db781bf214b --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/getting-started/features.md @@ -0,0 +1,6 @@ +--- +title: "Dagster+ features" +displayed_sidebar: "dagsterPlus" +--- + +# Dagster+ features \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/getting-started/whats-dagster-plus.md b/docs/docs-next/docs/dagster-plus/getting-started/whats-dagster-plus.md new file mode 100644 index 0000000000000..59dca9df0d61a --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/getting-started/whats-dagster-plus.md @@ -0,0 +1,7 @@ +--- +title: "What's Dagster+?" +displayed_sidebar: "dagsterPlus" +sidebar_position: 1 +--- + +# What's Dagster+? \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights.md b/docs/docs-next/docs/dagster-plus/insights.md new file mode 100644 index 0000000000000..905f7bb501163 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights.md @@ -0,0 +1,5 @@ +--- +title: "Insights" +--- + +# Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/asset-metadata.md b/docs/docs-next/docs/dagster-plus/insights/asset-metadata.md new file mode 100644 index 0000000000000..8a9095a38d6a7 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/asset-metadata.md @@ -0,0 +1,7 @@ +--- +title: "Integrating asset metadata into Dagster+ Insights" +sidebar_label: "Integrate asset metadata" +sidebar_position: 1 +--- + +# Integrating asset metadata into Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/export-metrics.md b/docs/docs-next/docs/dagster-plus/insights/export-metrics.md new file mode 100644 index 0000000000000..f3a435f2e63c1 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/export-metrics.md @@ -0,0 +1,7 @@ +--- +title: "Exporting metrics from Dagster+ Insights" +sidebar_label: "Export metrics" +sidebar_position: 6 +--- + +# xporting metrics from Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/google-bigquery-dbt.md b/docs/docs-next/docs/dagster-plus/insights/google-bigquery-dbt.md new file mode 100644 index 0000000000000..fada3c48f4cf9 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/google-bigquery-dbt.md @@ -0,0 +1,7 @@ +--- +title: "Integrate Google BigQuery & dbt with Dagster+ Insights" +sidebar_label: "Integrate Google BigQuery & dbt" +sidebar_position: 3 +--- + +# Integrate Google BigQuery & dbt with Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/google-bigquery.md b/docs/docs-next/docs/dagster-plus/insights/google-bigquery.md new file mode 100644 index 0000000000000..be54b1f57ceb6 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/google-bigquery.md @@ -0,0 +1,7 @@ +--- +title: "Integrate Google BigQuery usage with Dagster+ Insights" +sidebar_label: "Integrate Google BigQuery" +sidebar_position: 2 +--- + +# Integrate Google BigQuery usage with Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/snowflake-dbt.md b/docs/docs-next/docs/dagster-plus/insights/snowflake-dbt.md new file mode 100644 index 0000000000000..89224466e8dfb --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/snowflake-dbt.md @@ -0,0 +1,7 @@ +--- +title: "Integrate Snowflake & dbt with Dagster+ Insights" +sidebar_label: "Integrate Snowflake & dbt" +sidebar_position: 5 +--- + +# Integrate Snowflake & dbt with Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/insights/snowflake.md b/docs/docs-next/docs/dagster-plus/insights/snowflake.md new file mode 100644 index 0000000000000..1cb11c1a01805 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/insights/snowflake.md @@ -0,0 +1,7 @@ +--- +title: "Integrate Snowflake usage with Dagster+ Insights" +sidebar_label: "Integrate Snowflake" +sidebar_position: 4 +--- + +# Integrate Snowflake usage with Dagster+ Insights \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/multi-tenancy.md b/docs/docs-next/docs/dagster-plus/multi-tenancy.md new file mode 100644 index 0000000000000..33903efd1086f --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/multi-tenancy.md @@ -0,0 +1,5 @@ +--- +title: "Multi-tenancy" +--- + +# Dagster+ multi-tenancy \ No newline at end of file diff --git a/docs/docs-next/docs/dagster-plus/settings.md b/docs/docs-next/docs/dagster-plus/settings.md new file mode 100644 index 0000000000000..6f269783f6480 --- /dev/null +++ b/docs/docs-next/docs/dagster-plus/settings.md @@ -0,0 +1,5 @@ +--- +title: "Dagster+ settings" +--- + +# Dagster+ settings \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 4e48637f87494..92eefb179ffdf 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -206,6 +206,227 @@ const sidebars: SidebarsConfig = { ], }, ], + dagsterPlus: [ + { + type: "category", + label: "Getting started", + collapsible: false, + className: "category-non-collapsible", + items: [ + { + type: "doc", + id: "dagster-plus/getting-started/whats-dagster-plus" + }, + { + type: "doc", + id: "dagster-plus/getting-started/code-requirements" + } + ] + }, + { + type: "category", + label: "Features", + collapsible: false, + items: [ + { + type: "doc", + label: "Deployment types", + id: "dagster-plus/deployment-types" + }, + { + type: "category", + label: "Insights", + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/insights" + } + ] + }, + { + type: "doc", + label: "Branch Deployments (CI)", + id: "dagster-plus/deployment/branch-deployments" + }, + { + type: "category", + label: "Alerts", + link: { + type: "doc", + id: "dagster-plus/deployment/alerts" + }, + items: [ + { + type: "doc", + label: "Manage alerts in the UI", + id: "dagster-plus/deployment/alerts/ui" + }, + { + type: "doc", + label: "Manage alerts with the CLI", + id: "dagster-plus/deployment/alerts/cli" + }, + { + type: "doc", + label: "Email", + id: "dagster-plus/deployment/alerts/email" + }, + { + type: "doc", + label: "Microsoft Teams", + id: "dagster-plus/deployment/alerts/microsoft-teams" + }, + { + type: "doc", + label: "PagerDuty", + id: "dagster-plus/deployment/alerts/pagerduty" + }, + { + type: "doc", + label: "Slack", + id: "dagster-plus/deployment/alerts/slack" + }, + ] + }, + { + type: "doc", + id: "dagster-plus/multi-tenancy" + }, + { + type: "category", + label: "Authentication & access control", + items: [ + { + type: "category", + label: "Role-based Access Control", + link: { + type: "doc", + id: "dagster-plus/access/rbac" + }, + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/access/rbac" + } + ] + }, + { + type: "category", + label: "Single Sign-on (SSO)", + items: [ + "dagster-plus/access/authentication/azure-ad-sso", + "dagster-plus/access/authentication/google-workspace-sso", + "dagster-plus/access/authentication/okta-sso", + "dagster-plus/access/authentication/onelogin-sso", + "dagster-plus/access/authentication/pingone-sso" + ] + }, + { + type: "category", + label: "SCIM provisioning", + items: [ + { + type: "link", + label: "Azure Active Directory", + href: "https://learn.microsoft.com/en-us/azure/active-directory/saas-apps/dagster-cloud-provisioning-tutorial" + }, + { + type: "doc", + label: "Okta", + id: "dagster-plus/access/authentication/okta-scim" + } + ] + } + ] + } + ] + }, + { + type: "category", + label: "Deployment", + collapsible: false, + items: [ + { + type: "category", + label: "Serverless", + link: { + type: "doc", + id: "dagster-plus/deployment/serverless" + }, + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/deployment/serverless" + } + ] + }, + { + type: "category", + label: "Hybrid", + link: { + type: "doc", + id: "dagster-plus/deployment/hybrid" + }, + items: [ + { + type: "doc", + label: "Architecture", + id: "dagster-plus/deployment/hybrid/architecture" + }, + { + type: "doc", + label: "Tokens", + id: "dagster-plus/deployment/hybrid/tokens" + }, + { + type: "category", + label: "Agents", + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/deployment/hybrid/agents" + } + ] + } + ] + }, + { + type: "category", + label: "CI/CD", + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/deployment/branch-deployments" + } + ] + }, + { + type: "doc", + label: "Code locations", + id: "dagster-plus/deployment/code-locations" + }, + { + type: "category", + label: "Environment variables", + link: { + type: "doc", + id: "dagster-plus/deployment/environment-variables" + }, + items: [ + { + type: "autogenerated", + dirName: "dagster-plus/deployment/environment-variables" + } + ] + }, + { + type: "doc", + label: "Settings", + id: "dagster-plus/settings" + } + ] + } + ] }; export default sidebars;