Skip to content

Commit d165931

Browse files
committed
fix: known doom lint issues
1 parent cdcb322 commit d165931

11 files changed

Lines changed: 1755 additions & 1835 deletions

File tree

.yarn/releases/yarn-4.12.0.cjs

Lines changed: 0 additions & 942 deletions
This file was deleted.

.yarn/releases/yarn-4.14.1.cjs

Lines changed: 940 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ plugins:
99
path: .yarn/plugins/plugin-prepare-lifecycle.cjs
1010
spec: "https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js"
1111

12-
yarnPath: .yarn/releases/yarn-4.12.0.cjs
12+
yarnPath: .yarn/releases/yarn-4.14.1.cjs

docs/en/appservice/overview/architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Alauda Application Services platform is a robust, open-source service manage
1717

1818
- Container Infrastructure: The Alauda Application Services platform is built on Kubernetes and leverages the underlying infrastructure it provides to offer foundational capabilities such as data persistence and external access.
1919

20-
# Rich Services Support \{#compatible_sc}
20+
## Rich Services Support \{#compatible_sc}
2121

2222
The Alauda Application Services platform supports various types of services, including databases, caches, message queues, etc. The following are the main supported alauda application services versions and compatible storage class information:
2323

docs/en/developer/building_application/operation_maintaining/application_rollouts/bluegreen_deployment.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A Blue-Green Deployment is a deployment strategy where two identical environment
1414

1515
When a new version of the application is ready to be deployed, it is deployed to the green environment. Once the new version is deployed and tested, traffic is switched to the green environment, making it the new production environment. The blue environment then becomes the non-production environment, where future versions of the application can be deployed.
1616

17-
# Benefits of Blue Green Deployments
17+
## Benefits of Blue Green Deployments
1818

1919
- Zero Downtime: Blue-Green Deployments allow new versions of applications to be deployed with zero downtime, as traffic is switched from the blue environment to the green environment seamlessly.
2020

@@ -26,7 +26,7 @@ When a new version of the application is ready to be deployed, it is deployed to
2626

2727
- Flexibility: Blue-Green Deployments provide flexibility in the deployment process. Multiple versions of an application can be deployed side-by-side, allowing for easy testing and experimentation.
2828

29-
# Blue Green Deployment with Argo Rollouts
29+
## Blue Green Deployment with Argo Rollouts
3030

3131
Argo Rollouts is a Kubernetes controller and set of CRDs which provide advanced deployment capabilities such as blue-green, canary, canary analysis, experimentation, and progressive delivery features to Kubernetes.
3232

docs/en/developer/building_application/operation_maintaining/application_rollouts/canary_deployment.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ Canary Deployment is a progressive release strategy where a new application vers
1717
> - **Canary Steps**: A series of incremental traffic shifting actions, such as directing 25%, then 50% of traffic to the new version.
1818
> - **Pause Steps**: Introduce wait intervals for manual or automatic validation before progressing to the next canary step.
1919
20-
# Benefits of Canary Deployments
20+
## Benefits of Canary Deployments
2121

2222
- **Risk mitigation**: By deploying changes to a small subset of servers initially, you can find issues and address them before the full rollout, minimizing the impact on users.
2323
- **Incremental rollouts**: This approach allows gradual exposure to new features, which helps you effectively monitor performance and user feedback.
2424
- **Real-time feedback**: Canary deployments provide immediate insights into the performance and stability of new releases under real-world conditions.
2525
- **Flexibility**: You can adjust the deployment process based on performance metrics. This allows for a dynamic rollout that you can pause or roll back as needed.
2626
- **Cost-effectiveness**: Unlike blue/green deployments, canary deployments don't require a separate environment, making them more resource-efficient.
2727

28-
# Canary Deployments with Argo Rollouts
28+
## Canary Deployments with Argo Rollouts
2929

3030
Argo Rollouts supports canary deployment strategy to rollout a deployment, and control the traffic through Gateway API Plugin. In ACP, you could use ALB to act as a Gateway API Provider to implement the traffic control for Argo Rollouts.
3131

docs/en/developer/building_application/operation_maintaining/status.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The status of native applications and their corresponding meanings are as follow
1919

2020
**Note**: Similarly, the numbers in the computing component status indicate the number of container groups.
2121

22-
# Deployment
22+
## Deployment
2323

2424
- Running: All Pods are in normal operation.
2525

docs/en/developer/images/how_to/manging_images.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ i18n:
1010

1111
With Alauda Container Platform you can interact with images, depending on where the registries of the images are located, any authentication requirements around those registries, and how you want your builds and deployments to behave.
1212

13-
# Image pull policy
13+
## Image pull policy
1414

1515
Each container in a pod has a container image. After you have created an image and pushed it to a registry, you can then refer to it in the pod.
1616

17-
## Image pull policy overview
17+
### Image pull policy overview
1818

1919
When Alauda Container Platform creates containers, it uses the container `imagePullPolicy` to determine if the image should be pulled prior to starting the container. There are three possible values for `imagePullPolicy`:
2020

@@ -29,13 +29,13 @@ If a container imagePullPolicy parameter is not specified, Alauda Container Plat
2929
1. If the tag is latest, Alauda Container Platform defaults imagePullPolicy to Always.
3030
2. Otherwise, Alauda Container Platform defaults imagePullPolicy to IfNotPresent.
3131

32-
# Using image pull secrets
32+
## Using image pull secrets
3333

3434
If you are using the Alauda Container Platform image registry, then your pod service account should already have the correct permissions and no additional action should be required.
3535

3636
However, for other scenarios, such as referencing images across Alauda Container Platform projects or from secured registries, additional configuration steps are required.
3737

38-
## Allowing pods to reference images from other secured registries
38+
### Allowing pods to reference images from other secured registries
3939

4040
To pull a secured container from other private or secured registries, you must create a pull secret from your container client credentials, such as `Docker`, and add it to your service account.
4141

@@ -45,11 +45,11 @@ By default, Docker uses $HOME/.docker/config.json.
4545

4646
These files store your authentication information if you have previously logged in to a secured or insecure registry.
4747

48-
## Creating a pull secret
48+
### Creating a pull secret
4949

5050
You can obtain the image pull secret to pull an image from a private container image registry or repository. You can refer to [Pull an Image from a Private Registry](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/).
5151

52-
## Using a pull secret in a workload
52+
### Using a pull secret in a workload
5353

5454
You can use a pull secret to allow workloads to pull images from a private registry with one of the following methods:
5555

docs/en/developer/s2i/overview/lifecycle_policy.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ i18n:
77

88
# Lifecycle Policy
99

10-
# Version Lifecycle Timeline
10+
## Version Lifecycle Timeline
1111

1212
Below is the lifecycle schedule for released versions of the Alauda Container Platform Builds Operator:
1313

1414

1515
| **Version** | **Release Date** | **End of Life** |
1616
|:-----------:|:----------------:|:---------------:|
1717
| v1.1.0 | 2025-08-15 | 2027-08-15 |
18-
19-

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "acp-docs",
33
"type": "module",
44
"private": true,
5-
"packageManager": "yarn@4.12.0",
5+
"packageManager": "yarn@4.14.1",
66
"scripts": {
77
"build": "doom build",
88
"dev": "doom dev",
@@ -14,7 +14,7 @@
1414
"update-ac-manual": "node scripts/update-ac-manual.js release-1.0"
1515
},
1616
"dependencies": {
17-
"@alauda/doom": "^1.22.0"
17+
"@alauda/doom": "^2.2.0"
1818
},
1919
"devDependencies": {
2020
"prettier": "^3.7.4",

0 commit comments

Comments
 (0)