Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Merge branch 'aiven:main' into feature/fusionauth-aiven-sso
Browse files Browse the repository at this point in the history
  • Loading branch information
vcampitelli authored Jul 10, 2023
2 parents 3ca84e7 + 564a5b8 commit 126fdfe
Show file tree
Hide file tree
Showing 88 changed files with 1,444 additions and 388 deletions.
4 changes: 4 additions & 0 deletions .github/vale/dicts/aiven.dic
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ boolean
boot
Bucardo
business
BYOC
Cassandra
Centrify
checkpointing
Expand Down Expand Up @@ -107,6 +108,7 @@ Instana
IdP
IdPs
io
iops
IPsec
iptables
Java
Expand Down Expand Up @@ -170,6 +172,7 @@ PgBouncer
PGHoard
pglookout
pgoutput
pgvector
plaintext
plc
PNG/S
Expand Down Expand Up @@ -251,6 +254,7 @@ untrusted
unaggregated
UpCloud
upsert
vectorizing
VM
VMs
VPC/MS
Expand Down
4 changes: 3 additions & 1 deletion .github/vale/styles/Aiven/capitalization_headings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ exceptions:
- Aiven Console
- Apache
- AWS Transit Gateway
- AWS Marketplace
- Auth0
- Azure
- Azure Marketplace
- Boot
- Business
- BYOA
- BYOC
- Cassandra
- ClickHouse
- CloudWatch
Expand Down Expand Up @@ -94,6 +95,7 @@ exceptions:
- Pagila
- pgAdmin
- PgBouncer
- pgvector
- PostgreSQL
- Postman
- Premium
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ help:
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

# This will overwrite the generated sitemap bu sphinx_sitemap to
# exclude index.html or .html extension in the <url>. This is to prevent
# redirect loop (issue for search engine) since Cloudflare Pages redirect all .html to it's parent
html:
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
python "$(SOURCEDIR)/scripts/postprocess_sitemap.py"

livehtml:
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

Expand Down
1 change: 1 addition & 0 deletions _redirects
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
/docs/products/postgresql/reference/high-cpu-load-of-pgbouncer.html /docs/products/postgresql/troubleshooting/troubleshooting-connection-pooling.html
/docs/products/clickhouse/concepts/databases-and-tables.html /docs/products/clickhouse/howto/manage-databases-tables.html
/docs/products/clickhouse/howto/integrate-pg.html /docs/products/clickhouse/howto/integrate-postgresql.html
/docs/platform/concepts/byoa.html /docs/platform/concepts/byoc.html

# Redirect from .index.html to specific page names for landing

Expand Down
102 changes: 59 additions & 43 deletions _static/css/aiven.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,35 @@
src: url(../fonts/Inter-Medium.ttf);
}

.sidebar-drawer {
border-right: none;
@font-face {
font-family: Poppins;
src: url(../fonts/Poppins-SemiBold.ttf);
}

h1,
h2,
h3 {
color: var(--color-foreground-primary);
font-family: InterBold;
font-family: "Poppins",sans-serif;
}

p {
color: var(--color-content-foreground);
font-family: Inter;
font-family: "Inter",sans-serif;
}

a {
color: var(--color-link);
text-decoration-color: var(--color-link);
font-family: Inter;
font-family: "Inter",sans-serif;
text-decoration-color: var(--color-link--hover);
}

a:hover {
color: var(--color-link--hover);
}

a.muted-link {
text-decoration: underline;
}

.page {
Expand Down Expand Up @@ -107,16 +116,6 @@ a {
width: 140px;
}

.topnavbar-button-primary {
color: var(--color-topnav-button-primary);
background: var(--color-topnav-button-primary-background);
}

.topnavbar-button-primary:hover {
color: var(--color-topnav-button-primary-hover);
background: var(--color-topnav-button-primary-hover-background);
}

.topnavbar-button-secondary {
color: var(--color-topnav-button-secondary);
border-color: var(--color-topnav-button-secondary-border);
Expand All @@ -133,22 +132,50 @@ a {
width: 100%;
max-width: max-content;
padding: 8px 24px;
border: 1px solid;
border: 1px solid var(--color-topnav-button-secondary-border);
border-radius: 2px;
cursor: pointer;
text-decoration: none !important;
font-weight: 600;
}

.topnavbar-button-large:hover {
text-decoration: none !important;
}

.sd-btn.sd-btn-primary,
.sd-btn.sd-btn-outline-primary {
border-radius: 2px;
border-color: var(--color-topnav-button-secondary-border) !important;
}

.sd-btn.sd-btn-primary:hover,
.sd-btn.sd-btn-outline-primary:hover,
.sd-btn.sd-btn-outline-primary:focus {
color: var(--color-topnav-button-secondary) !important;
border-color: var(--color-topnav-button-secondary-hover-border) !important;
background-color: transparent !important;
}

.topnavbar-button-primary {
color: var(--color-topnav-button-primary);
background: var(--color-topnav-button-primary-background);
border: 1px solid var(--color-topnav-button-primary-background);
}

.topnavbar-button-primary:hover {
color: var(--color-topnav-button-primary-hover);
background: var(--color-topnav-button-primary-hover-background);
border: 1px solid var(--color-topnav-button-primary-hover-background);
}

.topnavbar-link {
color: var(--color-topnav-link);
text-decoration: none;
}

.topnavbar-link:hover {
color: var(--color-topnav-link);
text-decoration: underline;
text-decoration-color: var(--color-topnav-link);
}
Expand Down Expand Up @@ -193,10 +220,6 @@ a {
top: var(--topnavbar-height);
}

.sidebar-tree .current-page > .reference {
font-weight: 400;
}

.sidebar-tree label:hover {
background: none;
}
Expand All @@ -213,25 +236,25 @@ a {
}

.sidebar-tree .reference:hover {
background: none;
border-left: 1px solid var(--color-link);
border-left: 1px solid var(--color-brand-primary);
font-family: Inter;
color: var(--color-link);
color: var(--color-sidebar-link-text);
font-weight: 600;
}

.sidebar-tree .current-page > .reference {
.sidebar-tree .current > .reference {
background: none !important;
border-left: 1px solid var(--color-link);
color: var(--color-link) !important;
font-weight: 400 !important;
}

.sidebar-tree .current > .reference {
background: none !important;
.sidebar-tree .current-page > .reference {
font-weight: 600;
background: var(--color-sidebar-background-hover) !important;
border-left: 1px solid var(--color-brand-primary);
color: var(--color-sidebar-link-text) !important;
}

.sidebar-tree .current-page > .reference:hover {
background: none !important;
background: var(--color-sidebar-background-hover);
}

.sidebar-tree > .reference,
Expand Down Expand Up @@ -271,7 +294,11 @@ a {
.sidebar-search:focus {
color: var(--color-search-focused);
border-color: var(--color-search-border-focused);
outline: 2px solid var(--color-search-container-outline-focused);
outline: none;
}

.sidebar-search::placeholder {
color: var(--color-search-focused);
}

.sidebar-search-container::before {
Expand Down Expand Up @@ -353,17 +380,6 @@ h3 > code > .pre {
top: var(--topnavbar-height) !important;
}

.toctree-wrapper .reference {
font-family: Inter;
color: var(--color-sidebar-link-text);
text-decoration-color: var(--color-sidebar-link-text);
}

.toctree-wrapper .reference:hover {
color: var(--color-link);
text-decoration-color: var(--color-link);
}

.toctree-wrapper > ul > li.toctree-l1 {
list-style: none !important;
margin: 12px;
Expand Down
Binary file added _static/fonts/Poppins-SemiBold.ttf
Binary file not shown.
Binary file added _static/images/logoDarkPride.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/images/logoLightPride.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 25 additions & 5 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ entries:
- file: docs/platform/concepts/list-billing
title: Billing
entries:
- file: docs/platform/concepts/hourly-billing-model
- file: docs/platform/concepts/tax-information
- file: docs/platform/concepts/billing-groups
- file: docs/platform/concepts/corporate-billing
- file: docs/platform/concepts/hourly-billing-model
- file: docs/platform/concepts/beta_services
- file: docs/platform/concepts/cloud-security
- file: docs/platform/concepts/logs-metrics-alerts
Expand All @@ -32,7 +32,7 @@ entries:
- file: docs/platform/concepts/out-of-memory-conditions
- file: docs/platform/concepts/static-ips
- file: docs/platform/concepts/tls-ssl-certificates
- file: docs/platform/concepts/byoa
- file: docs/platform/concepts/byoc
- file: docs/platform/concepts/dynamic-disk-sizing
- file: docs/platform/concepts/enhanced-compliance-env
- file: docs/platform/concepts/disaster-recovery-test-scenarios
Expand All @@ -44,12 +44,15 @@ entries:
- file: docs/platform/howto
title: HowTo
entries:
- file: docs/platform/howto/feature-preview
- file: docs/platform/howto/list-user
title: User and authentication management
title: User and access management
entries:
- file: docs/platform/howto/add-authentication-method
- file: docs/platform/howto/edit-user-profile
- file: docs/platform/howto/change-your-email-address
- file: docs/platform/howto/add-authentication-method
- file: docs/platform/howto/create_authentication_token
- file: docs/platform/howto/manage-org-users
- file: docs/platform/howto/create_new_service_user
- file: docs/tools/aiven-console/howto/create-manage-teams
- file: docs/platform/howto/user-2fa
Expand Down Expand Up @@ -78,6 +81,7 @@ entries:
- file: docs/platform/howto/search-services
title: Search for services
- file: docs/platform/howto/access-service-logs
- file: docs/platform/howto/service-metrics
- file: docs/platform/howto/prepare-for-high-load
- file: docs/platform/howto/create-service-integration
- file: docs/platform/howto/list-network
Expand Down Expand Up @@ -114,12 +118,18 @@ entries:
- file: docs/platform/howto/billing-assign-projects
- file: docs/platform/howto/payment-issues-plan-upgrades
- file: docs/platform/howto/custom-plans
- file: docs/platform/howto/billing-aws-marketplace-subscription
title: Set up AWS Marketplace
- file: docs/platform/howto/move-to-aws-marketplace-billing
title: Move to AWS Marketplace
- file: docs/platform/howto/billing-google-cloud-platform-marketplace-subscription
title: Set up Google Cloud Marketplace
- file: docs/platform/howto/move-to-gcp-marketplace-billing
title: Move to Google Cloud Marketplace
- file: docs/platform/howto/billing-azure-marketplace-subscription
title: Set up Azure Marketplace
- file: docs/platform/howto/move-to-azure-marketplace-billing
title: Move to Azure Marketplace
- file: docs/platform/howto/list-saml
title: SAML Authentication
entries:
Expand Down Expand Up @@ -221,13 +231,15 @@ entries:
title: Upgrade the Aiven Terraform Provider from v2 to v3
- file: docs/tools/terraform/howto/upgrade-provider-v3-v4
title: Upgrade the Aiven Terraform Provider from v3 to v4
- file: docs/tools/terraform/howto/update-deprecated-resources
- file: docs/tools/terraform/howto/config-postgresql-provider
title: Use PostgreSQL provider alongside Aiven Terraform Provider
- file: docs/tools/terraform/howto/promote-to-master-pg-rr
title: Promote PostgreSQL read-only replica to master
- file: docs/tools/terraform/howto/upgrade-to-opensearch
- file: docs/tools/terraform/howto/vnet-peering-azure
- file: docs/tools/terraform/howto/vpc-peering-gcp
- file: docs/tools/terraform/howto/vpc-peering-aws
- file: docs/tools/terraform/concepts
title: Concepts
entries:
Expand Down Expand Up @@ -297,6 +309,9 @@ entries:
- file: docs/products/kafka/concepts/auth-types
- file: docs/products/kafka/concepts/non-leader-for-partition
- file: docs/products/kafka/concepts/configuration-backup
- file: docs/products/kafka/concepts/monitor-consumer-group
- file: docs/products/kafka/concepts/kafka-quotas
title: Quotas
- file: docs/products/kafka/howto
title: HowTo
entries:
Expand Down Expand Up @@ -348,6 +363,7 @@ entries:
- file: docs/products/kafka/howto/prevent-full-disks
- file: docs/products/kafka/howto/use-zookeeper
- file: docs/products/kafka/howto/avoid-out-of-memory-error
- file: docs/products/kafka/howto/manage-quotas

- file: docs/products/kafka/howto/list-integration
title: Integrations
Expand Down Expand Up @@ -993,7 +1009,7 @@ entries:
- file: docs/products/opensearch/howto/opensearch-aggregations-and-nodejs
title: Aggregation with NodeJS
- file: docs/products/opensearch/howto/list-opensearch-security
title: Manage OpenSearch Security |beta|
title: Manage OpenSearch Security
entries:
- file: docs/products/opensearch/howto/enable-opensearch-security
title: Enable OpenSearch Security management
Expand Down Expand Up @@ -1070,6 +1086,8 @@ entries:
title: TimescaleDB
- file: docs/products/postgresql/concepts/upgrade-failover
title: Upgrade and failover procedures
- file: docs/products/postgresql/concepts/pgvector
title: AI-powered search with pgvector
- file: docs/products/postgresql/howto
title: HowTo
entries:
Expand Down Expand Up @@ -1110,6 +1128,8 @@ entries:
- file: docs/products/postgresql/howto/optimize-pg-slow-queries
- file: docs/products/postgresql/howto/check-avoid-transaction-id-wraparound
- file: docs/products/postgresql/howto/prevent-full-disk
- file: docs/products/postgresql/howto/use-pgvector
title: Enable and use pgvector
- file: docs/products/postgresql/howto/list-replication-migration
title: Migrate
entries:
Expand Down
Loading

0 comments on commit 126fdfe

Please sign in to comment.