Skip to content

Commit 382b9ef

Browse files
authored
Merge pull request #305 from stackql/feature/provider-docs
moved homebrew and k8s to microsites
2 parents ca2cf59 + c7a6f44 commit 382b9ef

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.github/workflows/build-docs.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ jobs:
8787
github
8888
openai
8989
anthropic
90-
k8s
91-
homebrew
9290
)
9391
for i in "${array[@]}"
9492
do

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ This repository contains documentation for StackQL providers, which is published
99
| GitHub Actions Build | [![GitHub Actions](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml/badge.svg?branch=main)](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml) | [stackql-registry-docs/actions](https://github.com/stackql/stackql-registry-docs/actions) |
1010
| Netlify Deploy Base | [![Netlify Status](https://api.netlify.com/api/v1/badges/75f838a9-79ea-41dc-96f9-a40dff50cfca/deploy-status)](https://app.netlify.com/sites/stackql-registry-docs/deploys) | [registry.stackql.io](https://registry.stackql.io) |
1111
| Netlify Deploy GitHub | [![Netlify Status](https://api.netlify.com/api/v1/badges/625d7d38-37a9-4224-a9c8-6ee58141b109/deploy-status)](https://app.netlify.com/sites/stackql-github-docs/deploys) | [github-docs.stackql.io](https://github-docs.stackql.io)<br/>[github.stackql.io](https://github.stackql.io) |
12-
| Netlify Deploy K8S | [![Netlify Status](https://api.netlify.com/api/v1/badges/d11ea6c5-7a43-42d5-ac76-555112295b9b/deploy-status)](https://app.netlify.com/sites/stackql-k8s-docs/deploys) | [k8s-docs.stackql.io](https://k8s-docs.stackql.io)<br/>[k8s.stackql.io](https://k8s.stackql.io) |
13-
| Netlify Deploy Homebrew | [![Netlify Status](https://api.netlify.com/api/v1/badges/2343d34d-5061-4d83-98e6-475fb2150c94/deploy-status)](https://app.netlify.com/sites/stackql-homebrew-docs/deploys) | [homebrew-docs.stackql.io](https://homebrew-docs.stackql.io)<br/>[homebrew.stackql.io](https://homebrew.stackql.io) |
1412
| Netlify Deploy OpenAI | [![Netlify Status](https://api.netlify.com/api/v1/badges/6df5743b-8c5d-4949-866e-eda4ca3f74d0/deploy-status)](https://app.netlify.com/sites/stackql-openai-docs/deploys) | [openai-docs.stackql.io](https://openai-docs.stackql.io)<br/>[openai.stackql.io](https://openai.stackql.io) |
1513
| Netlify Deploy Anthropic | [![Netlify Status](https://api.netlify.com/api/v1/badges/114c5a2a-9b76-4941-a0e8-3669ee7d2016/deploy-status)](https://app.netlify.com/sites/stackql-anthropic-docs/deploys) | [anthropic-docs.stackql.io](https://anthropic-docs.stackql.io)<br/>[anthropic.stackql.io](https://anthropic.stackql.io) |
1614
| Netlify Deploy Confluent | [![Netlify Status](https://api.netlify.com/api/v1/badges/63149c2f-6c3d-43f1-be38-80c55c223ac0/deploy-status)](https://app.netlify.com/sites/stackql-confluent-docs/deploys) | [confluent-docs.stackql.io](https://confluent-docs.stackql.io)<br/>[confluent.stackql.io](https://confluent.stackql.io) |

ci-scripts/get-providers-to-deploy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const allProviders = [
2222
'anthropic',
2323
// 'google',
2424
// 'googleadmin',
25-
'k8s',
25+
// 'k8s',
2626
// 'linode',
2727
// 'netlify',
2828
// 'okta',
@@ -31,7 +31,7 @@ const allProviders = [
3131
// 'godaddy',
3232
// 'pagerduty',
3333
// 'datadog',
34-
'homebrew',
34+
// 'homebrew',
3535
// 'snowflake',
3636
rootName];
3737

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,11 @@
99
"start:confluent": "export REGISTRY=confluent && docusaurus start",
1010
"start:openai": "export REGISTRY=openai && docusaurus start",
1111
"start:anthropic": "export REGISTRY=anthropic && docusaurus start",
12-
"start:k8s": "export REGISTRY=k8s && docusaurus start",
13-
"start:homebrew": "export REGISTRY=homebrew && docusaurus start",
1412
"build:root": "docusaurus build",
1513
"build:github": "export REGISTRY=github && docusaurus build",
1614
"build:confluent": "export REGISTRY=confluent && docusaurus build",
1715
"build:openai": "export REGISTRY=openai && docusaurus build",
1816
"build:anthropic": "export REGISTRY=anthropic && docusaurus build",
19-
"build:k8s": "export REGISTRY=k8s && docusaurus build",
20-
"build:homebrew": "export REGISTRY=homebrew && docusaurus build",
2117
"swizzle": "docusaurus swizzle",
2218
"deploy": "docusaurus deploy",
2319
"clear": "docusaurus clear",

sidebars.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ const getProviderSiteUrl = (name) =>{
6666
'aws',
6767
'sumologic',
6868
'vercel',
69+
'k8s',
70+
'homebrew',
6971
].includes(name)) {
7072
return `https://${name.replace('_', '-')}-provider.stackql.io/`
7173
} else {

src/configs/providers.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ export const getProviderSiteUrl = (name: string) =>{
5555
'azure_stack',
5656
'aws',
5757
'sumologic',
58-
'vercel',
58+
'vercel',
59+
'k8s',
60+
'homebrew',
5961
].includes(name)) {
6062
return `https://${name.replace('_', '-')}-provider.stackql.io/`
6163
} else {

0 commit comments

Comments
 (0)