-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
weave-gitops-bot
committed
Aug 16, 2022
1 parent
210a051
commit 82edd9e
Showing
109 changed files
with
8,741 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
website/versioned_docs/version-0.9.3/_components/CurlCodeBlock.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from "react"; | ||
|
||
import CodeBlock from "@theme/CodeBlock"; | ||
import BrowserOnly from "@docusaurus/BrowserOnly"; | ||
|
||
export default function CurlCodeBlock({ localPath, hostedPath, content }) { | ||
return ( | ||
<> | ||
<BrowserOnly> | ||
{() => ( | ||
<CodeBlock className="language-bash"> | ||
curl -o {localPath} {window.location.protocol} | ||
//{window.location.host} | ||
{hostedPath} | ||
</CodeBlock> | ||
)} | ||
</BrowserOnly> | ||
|
||
<CodeBlock title={localPath} className="language-yaml"> | ||
{content} | ||
</CodeBlock> | ||
</> | ||
); | ||
} |
32 changes: 32 additions & 0 deletions
32
website/versioned_docs/version-0.9.3/_components/TierLabel.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from "react"; | ||
import Link from "@docusaurus/Link"; | ||
import useGlobalData from "@docusaurus/useGlobalData"; | ||
|
||
const containerStyle = { | ||
fontSize: 16, | ||
marginLeft: 4, | ||
fontVariant: "all-small-caps", | ||
}; | ||
|
||
// This determines the current version of the docs you're looking at | ||
// E.g. /docs/next or /docs/0.2.5 | ||
const getCurrentVersionPath = () => { | ||
const { "docusaurus-plugin-content-docs": data } = useGlobalData(); | ||
const currentVersion = data?.default?.versions?.find( | ||
(v) => v.name === "current" | ||
); | ||
// Fallback to /docs just in case. Not sure if this is async etc. | ||
return currentVersion?.path || "/docs"; | ||
}; | ||
|
||
export default function TierLabel({ tiers }) { | ||
return ( | ||
<Link | ||
to={`${getCurrentVersionPath()}/enterprise/intro`} | ||
title={`This feature is a available on ${tiers}`} | ||
style={containerStyle} | ||
> | ||
{tiers} | ||
</Link> | ||
); | ||
} |
48 changes: 48 additions & 0 deletions
48
website/versioned_docs/version-0.9.3/assets/example-enterprise-helm.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
apiVersion: source.toolkit.fluxcd.io/v1beta2 | ||
kind: HelmRepository | ||
metadata: | ||
name: weave-gitops-enterprise-charts | ||
namespace: flux-system | ||
spec: | ||
interval: 60m | ||
secretRef: | ||
name: weave-gitops-enterprise-credentials | ||
url: https://charts.dev.wkp.weave.works/releases/charts-v3 | ||
--- | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta1 | ||
kind: HelmRelease | ||
metadata: | ||
name: weave-gitops-enterprise | ||
namespace: flux-system | ||
spec: | ||
chart: | ||
spec: | ||
interval: 65m | ||
chart: mccp | ||
sourceRef: | ||
kind: HelmRepository | ||
name: weave-gitops-enterprise-charts | ||
namespace: flux-system | ||
version: 0.9.1 | ||
install: | ||
crds: CreateReplace | ||
upgrade: | ||
crds: CreateReplace | ||
interval: 50m | ||
values: | ||
# -- Configure TLS settings if needed | ||
# tls: | ||
# -- Can be disabled if TLS is handled by a user-provided ingress controller | ||
# enabled: true | ||
# -- optionally specify a TLS secret | ||
# secretName: null | ||
config: | ||
capi: | ||
repositoryURL: https://github.com/$GITHUB_USER/fleet-infra | ||
# -- Can be changed depending on your git repo structure | ||
# repositoryPath: ./clusters/management/clusters | ||
# repositoryClustersPath: ./cluster | ||
git: | ||
type: github | ||
# -- Change if using on-prem github/gitlab | ||
# hostname: https://github.com |
4 changes: 4 additions & 0 deletions
4
website/versioned_docs/version-0.9.3/cluster-management/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"label": "Cluster management", | ||
"position": 5 | ||
} |
Oops, something went wrong.