-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into kubedocs
# Conflicts: # src/pages/docs/deployments/kubernetes/deploy-raw-yaml/index.md # src/pages/docs/deployments/kubernetes/helm-update/index.md # src/pages/docs/deployments/kubernetes/kustomize/index.mdx
- Loading branch information
Showing
494 changed files
with
22,237 additions
and
7,016 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
# build output | ||
dist/ | ||
.astro/ | ||
.cache/ | ||
.log/ | ||
|
||
# package lock | ||
package-lock.json | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Expose Astro dependencies for `pnpm` users | ||
shamefully-hoist=true | ||
shamefully-hoist=true | ||
package-manager-strict=false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = 6 | ||
version = 8 |
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,37 @@ | ||
variable "AWS.Website" { | ||
value "http://octopus-docs-production.s3-website-us-east-1.amazonaws.com/docs" { | ||
environment = ["live"] | ||
} | ||
|
||
value "http://octopus-docs-staging.s3-website-us-east-1.amazonaws.com/docs" { | ||
environment = ["test"] | ||
} | ||
} | ||
|
||
variable "AWS.Region" { | ||
value "us-east-1" {} | ||
} | ||
|
||
variable "AWS.Distribution" { | ||
value "E1M91AW6ZECI94" { | ||
environment = ["live"] | ||
} | ||
|
||
value "E2ABBGFOMEE5DL" { | ||
environment = ["test"] | ||
} | ||
} | ||
|
||
variable "AWS.BucketName" { | ||
value "octopus-docs-production" { | ||
environment = ["live"] | ||
} | ||
|
||
value "octopus-docs-staging" { | ||
environment = ["test"] | ||
} | ||
} | ||
|
||
variable "PackageId" { | ||
value "DocsMicrosite" {} | ||
} |
Oops, something went wrong.