Skip to content

Commit 526d0ae

Browse files
committed
AV-209475 : Code and documentation changes for AKO operator 1.12.3
1 parent 4b9411f commit 526d0ae

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Dockerfile.ako-operator

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM ${ubi_src_repo}
2020

2121
LABEL name="ako-operator"
2222
LABEL summary="An AKO operator to deploy AKO controller"
23-
LABEL version="v1.12.2"
23+
LABEL version="v1.12.3"
2424
LABEL release="1"
2525
LABEL description="Manage configmap, statefulset and other artifacts for deploying AKO controller"
2626
LABEL vendor="VMware"

ako-operator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AKO operator takes care of deploying, managing and removing AKO from OpenShift c
1212

1313
<i>**Step 3**</i>: Find `AKO Operator` provided by VMware.
1414

15-
<i>**Step 4**</i>: Click `install` and select the 1.12.2 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
15+
<i>**Step 4**</i>: Click `install` and select the 1.12.3 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
1616

1717
<i>**Step 5**</i>: Verify installation by checking the pods in `avi-system` namespace.
1818

@@ -99,4 +99,4 @@ If this happens edit akoconfig using `kubectl edit akoconfig -n avi-system ako-c
9999
| **Operator version** | **Supported AKO Version** |
100100
| --------- | ----------- |
101101
| 1.11.1 | 1.11.1 |
102-
| 1.12.2 | 1.12.2 |
102+
| 1.12.3 | 1.12.3 |

docs/ako_operator.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The markers in the drawing are described below:
4040

4141
<i>**Step 3**</i>: Find `AKO Operator` provided by VMware.
4242

43-
<i>**Step 4**</i>: Click `install` and select the 1.12.2 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
43+
<i>**Step 4**</i>: Click `install` and select the 1.12.3 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
4444

4545
<i>**Step 5**</i>: Verify installation by checking the pods in `avi-system` namespace.
4646

@@ -85,7 +85,7 @@ The following table also lists the configurable fields in the `AKOConfig` object
8585
| **Parameter** | **Description** | **Default** |
8686
| --- | --- | --- |
8787
| `replicaCount` | Specify the number of replicas for AKO StatefulSet | 1 |
88-
| `imageRepository` | Specify docker-registry that has the ako image | projects.packages.broadcom.com/ako/ako:1.12.2 |
88+
| `imageRepository` | Specify docker-registry that has the ako image | projects.packages.broadcom.com/ako/ako:1.12.3 |
8989
| `imagePullPolicy` | Specify when and how to pull the ako image | IfNotPresent |
9090
| `imagePullSecrets` | ImagePullSecrets will add pull secrets to the statefulset for AKO. Required if using secure private container image registry for images. | `Empty List` |
9191
| `AKOSettings.clusterName` | Unique identifier for the running AKO instance. AKO identifies objects it created on Avi Controller using this param. | **required** |
@@ -128,7 +128,7 @@ The following table also lists the configurable fields in the `AKOConfig` object
128128
| `NetworkSettings.nsxtT1LR` | Specify the T1 router for data backend network, applicable only for NSX-T based deployments| `Empty string` |
129129
| `FeatureGates.gatewayAPI` | FeatureGates is to enable or disable experimental features. GatewayAPI feature gate enables/disables processing of Kubernetes Gateway API CRDs. | false |
130130
| `FeatureGates.enablePrometheus` | FeatureGates is to enable or disable experimental features. EnablePrometheus enables/disables prometheus scraping for AKO container | false |
131-
| `GatewayAPI.Image.repository` | Specify docker-registry that has the ako-gateway-api image | projects.packages.broadcom.com/ako/ako-gateway-api:1.12.2 |
131+
| `GatewayAPI.Image.repository` | Specify docker-registry that has the ako-gateway-api image | projects.packages.broadcom.com/ako/ako-gateway-api:1.12.3 |
132132
| `GatewayAPI.Image.pullPolicy` | Specify when and how to pull the ako-gateway-api image | IfNotPresent |
133133
| `logFile` | LogFile is the name of the file where ako container will dump its logs | avi.log |
134134
| `akoGatewayLogFile` | AKOGatewayLogFile is the name of the file where ako-gateway-api container will dump its logs | avi-gw.log |

docs/akoconfig.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
namespace: avi-system
1212
spec:
1313
replicaCount: 1
14-
imageRepository: projects.packages.broadcom.com/ako/ako:1.12.2
14+
imageRepository: projects.packages.broadcom.com/ako/ako:1.12.3
1515
imagePullPolicy: "IfNotPresent"
1616
imagePullSecrets:
1717
- name: regcred
@@ -89,7 +89,7 @@ spec:
8989
enablePrometheus: false
9090
gatewayAPI:
9191
image:
92-
repository: "projects.packages.broadcom.com/ako/ako-gateway-api:1.12.2"
92+
repository: "projects.packages.broadcom.com/ako/ako-gateway-api:1.12.3"
9393
pullPolicy: "IfNotPresent"
9494
akoGatewayLogFile: "avi-gw.log"
9595
```

docs/install/operator.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The markers in the drawing are described below:
4040

4141
<i>**Step 3**</i>: Find `AKO Operator` provided by VMware.
4242

43-
<i>**Step 4**</i>: Click `install` and select the 1.12.2 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
43+
<i>**Step 4**</i>: Click `install` and select the 1.12.3 version. The operator will be installed in `avi-system` namespace. The namespace will be created if it doesn't exist.
4444

4545
<i>**Step 5**</i>: Verify installation by checking the pods in `avi-system` namespace.
4646

@@ -53,7 +53,7 @@ The following table lists the configurable fields in the `AKOConfig` object and
5353
| **Parameter** | **Description** | **Default** |
5454
| --- | --- | --- |
5555
| `replicaCount` | Specify the number of replicas for AKO StatefulSet | 1 |
56-
| `imageRepository` | Specify docker-registry that has the ako image | projects.packages.broadcom.com/ako/ako:1.12.2 |
56+
| `imageRepository` | Specify docker-registry that has the ako image | projects.packages.broadcom.com/ako/ako:1.12.3 |
5757
| `imagePullPolicy` | Specify when and how to pull the ako image | IfNotPresent |
5858
| `imagePullSecrets` | ImagePullSecrets will add pull secrets to the statefulset for AKO. Required if using secure private container image registry for images. | `Empty List` |
5959
| `AKOSettings.clusterName` | Unique identifier for the running AKO instance. AKO identifies objects it created on Avi Controller using this param. | **required** |
@@ -96,7 +96,7 @@ The following table lists the configurable fields in the `AKOConfig` object and
9696
| `NetworkSettings.nsxtT1LR` | Specify the T1 router for data backend network, applicable only for NSX-T based deployments| `Empty string` |
9797
| `FeatureGates.gatewayAPI` | FeatureGates is to enable or disable experimental features. GatewayAPI feature gate enables/disables processing of Kubernetes Gateway API CRDs. | false |
9898
| `FeatureGates.enablePrometheus` | FeatureGates is to enable or disable experimental features. EnablePrometheus enables/disables prometheus scraping for AKO container | false |
99-
| `GatewayAPI.Image.repository` | Specify docker-registry that has the ako-gateway-api image | projects.packages.broadcom.com/ako/ako-gateway-api:1.12.2 |
99+
| `GatewayAPI.Image.repository` | Specify docker-registry that has the ako-gateway-api image | projects.packages.broadcom.com/ako/ako-gateway-api:1.12.3 |
100100
| `GatewayAPI.Image.pullPolicy` | Specify when and how to pull the ako-gateway-api image | IfNotPresent |
101101
| `logFile` | LogFile is the name of the file where ako container will dump its logs | avi.log |
102102
| `akoGatewayLogFile` | AKOGatewayLogFile is the name of the file where ako-gateway-api container will dump its logs | avi-gw.log |

0 commit comments

Comments
 (0)