Skip to content

Commit

Permalink
Merge pull request #100 from stakater/vale-update
Browse files Browse the repository at this point in the history
Vale 3 update
  • Loading branch information
rasheedamir authored Jan 21, 2024
2 parents 5993dd3 + 2af8510 commit cbc9b2f
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/closed_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
push:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/delete_branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
delete:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}

6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:

jobs:
doc_qa:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
with:
MD_CONFIG: .github/md_config.json
DOC_SRC: content
MD_LINT_CONFIG: .markdownlint.yaml
build_container:
if: ${{ github.base_ref == 'main' }}
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
with:
DOCKER_BUILD_CONTEXTS: content=https://github.com/stakater/mto-docs.git#pull-request-deployments
DOCKER_FILE_PATH: Dockerfile
Expand All @@ -27,6 +27,6 @@ jobs:
DOCKER_SECRETS: GIT_AUTH_TOKEN=${{ secrets.STAKATER_GITHUB_TOKEN }}

deploy_doc:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ on:

jobs:
push:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:

jobs:
create_release:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.STAKATER_DELIVERY_SLACK_WEBHOOK }}
build_container:
uses: stakater/.github/.github/workflows/[email protected].62
uses: stakater/.github/.github/workflows/[email protected].64
with:
DOCKER_BUILD_CONTEXTS: content=https://github.com/stakater/mto-docs.git#gh-pages
DOCKER_FILE_PATH: Dockerfile
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ node_modules

# Build files
site/

mkdocs.yml

.idea

mkdocs.yml
styles
5 changes: 3 additions & 2 deletions .vale.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
StylesPath = "theme_common/vocabulary/styles"
StylesPath = styles
MinAlertLevel = warning

Vocab = "Stakater"
Packages = https://github.com/stakater/vale-package/releases/download/v0.0.4/Stakater.zip
Vocab = Stakater

# Only check MarkDown files
[*.md]
Expand Down
2 changes: 1 addition & 1 deletion content/explanation/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ MTO integrates a dedicated database to streamline resource management. Now, all

The implementation of this feature is facilitated by the Bootstrap controller, streamlining the deployment process. This controller creates the PostgreSQL Database, establishes a service for inter-pod communication, and generates a secret to ensure secure connectivity to the database.

Furthermore, the introduction of a dedicated cache layer ensures that there is no added burden on the kube API server when responding to MTO Console requests. This enhancement not only improves response times but also contributes to a more efficient and responsive resource management system.
Furthermore, the introduction of a dedicated cache layer ensures that there is no added burden on the Kube API server when responding to MTO Console requests. This enhancement not only improves response times but also contributes to a more efficient and responsive resource management system.

## Authentication and Authorization

Expand Down
2 changes: 1 addition & 1 deletion content/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Cannot CREATE namespace testing without label stakater.com/tenant. User: system:

The fix is to try the same operation on the namespace manifest instead.

### Q. Error received while doing "kubectl apply -f namespace.yaml"
### Q. Error received while doing `kubectl apply -f namespace.yaml`

```terminal
Error from server (Forbidden): error when retrieving current configuration of:
Expand Down
2 changes: 1 addition & 1 deletion content/reference-guides/deploying-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ NAME STATE AGE
docker-secret Active 2m
```

`TemplateGroupInstance` can also target specific tenants or all tenant namespaces under a single yaml definition.
`TemplateGroupInstance` can also target specific tenants or all tenant namespaces under a single YAML definition.

### TemplateGroupInstance for multiple Tenants

Expand Down
17 changes: 16 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"labels": [
"dependencies"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
".vale.ini"
],
"matchStrings": [
"https:\/\/github.com\/(?<depName>.*)\/releases\/download\/(?<currentValue>.*)\/.*.tar.gz"
],
"datasourceTemplate": "github-release-attachments"
}
]
}
2 changes: 1 addition & 1 deletion theme_common

0 comments on commit cbc9b2f

Please sign in to comment.