Skip to content

Commit f65956c

Browse files
committed
added 1.6.1, 1.5.6 and 1.4.12 release notes
made review changes made review changes made review changes fixed indentation and issue link fixed issue link fixed allignment
1 parent 217f66d commit f65956c

File tree

4 files changed

+165
-0
lines changed

4 files changed

+165
-0
lines changed

cicd/gitops/gitops-release-notes.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ include::modules/go-compatibility-and-support-matrix.adoc[leveloffset=+1]
2323
include::modules/making-open-source-more-inclusive.adoc[leveloffset=+1]
2424

2525
// Modules included, most to least recent
26+
include::modules/gitops-release-notes-1-6-1.adoc[leveloffset=+1]
27+
2628
include::modules/gitops-release-notes-1-6-0.adoc[leveloffset=+1]
2729

30+
include::modules/gitops-release-notes-1-5-6.adoc[leveloffset=+1]
31+
2832
include::modules/gitops-release-notes-1-5-5.adoc[leveloffset=+1]
2933

3034
include::modules/gitops-release-notes-1-5-4.adoc[leveloffset=+1]
@@ -37,6 +41,8 @@ include::modules/gitops-release-notes-1-5-1.adoc[leveloffset=+1]
3741

3842
include::modules/gitops-release-notes-1-5-0.adoc[leveloffset=+1]
3943

44+
include::modules/gitops-release-notes-1-4-12.adoc[leveloffset=+1]
45+
4046
include::modules/gitops-release-notes-1-4-11.adoc[leveloffset=+1]
4147

4248
include::modules/gitops-release-notes-1-4-6.adoc[leveloffset=+1]
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Module included in the following assembly:
2+
//
3+
// * gitops/gitops-release-notes.adoc
4+
5+
:_content-type: REFERENCE
6+
7+
[id="gitops-release-notes-1-4-12_{context}"]
8+
= Release notes for {gitops-title} 1.4.12
9+
10+
{gitops-title} 1.4.12 is now available on {product-title} 4.8, 4.9, and 4.10.
11+
12+
[id="fixed-issues-1-4-12_{context}"]
13+
== Fixed issues
14+
15+
The following issues have been resolved in the current release:
16+
17+
* Before this update, in a large set of applications the application controllers were restarted multiple times due to the unresponsiveness of liveness probes. This update fixes the issue by removing the liveness probe in the application controller `StatefulSet` object. link:https://issues.redhat.com/browse/GITOPS-2153[GITOPS-2153]
18+
19+
* Before this update, the RHSSO certificate cannot be validated when it is set up with a certificate which is not signed by certificate authorities. This update fixes the issue and now you can provide a custom certificate which will be used in verifying the Keycloak's TLS certificate when communicating with it. You can add the `rootCA` to the Argo CD custom resource `.spec.keycloak.rootCA` field. The Operator reconciles this change and updates the `oidc.config` field in the `argocd-cm` `ConfigMap` with the PEM-encoded root certificate. link:https://issues.redhat.com/browse/GITOPS-2214[GITOPS-2214]
20+
+
21+
[NOTE]
22+
====
23+
Restart the Argo CD server pod after updating the `.spec.keycloak.rootCA` field.
24+
====
25+
+
26+
For example:
27+
+
28+
[source,yaml]
29+
----
30+
apiVersion: argoproj.io/v1alpha1
31+
kind: ArgoCD
32+
metadata:
33+
name: example-argocd
34+
labels:
35+
example: basic
36+
spec:
37+
sso:
38+
provider: keycloak
39+
keycloak:
40+
rootCA: |
41+
---- BEGIN CERTIFICATE ----
42+
This is a dummy certificate
43+
Please place this section with appropriate rootCA
44+
---- END CERTIFICATE ----
45+
server:
46+
route:
47+
enabled: true
48+
----
49+
50+
* Before this update, a terminating namespace that was managed by Argo CD would block the creation of roles and other configuration of other managed namespaces. This update fixes this issue. link:https://issues.redhat.com/browse/GITOPS-2277[GITOPS-2277]
51+
52+
* Before this update, the Dex pods failed to start with `CreateContainerConfigError` when an SCC of `anyuid` was assigned to the Dex `ServiceAccount` resource. This update fixes this issue by assigning a default user id to the Dex container. link:https://issues.redhat.com/browse/GITOPS-2235[GITOPS-2235]
53+
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Module included in the following assembly:
2+
//
3+
// * gitops/gitops-release-notes.adoc
4+
5+
:_content-type: REFERENCE
6+
7+
[id="gitops-release-notes-1-5-6_{context}"]
8+
= Release notes for {gitops-title} 1.5.6
9+
10+
{gitops-title} 1.5.6 is now available on {product-title} 4.8, 4.9, and 4.10.
11+
12+
[id="fixed-issues-1-5-6_{context}"]
13+
== Fixed issues
14+
15+
The following issues have been resolved in the current release:
16+
17+
* Before this update, in a large set of applications the application controllers were restarted multiple times due to the unresponsiveness of liveness probes. This update fixes the issue by removing the liveness probe in the application controller `StatefulSet` object. link:https://issues.redhat.com/browse/GITOPS-2153[GITOPS-2153]
18+
19+
* Before this update, the RHSSO certificate cannot be validated when it is set up with a certificate which is not signed by certificate authorities. This update fixes the issue and now you can provide a custom certificate which will be used in verifying the Keycloak's TLS certificate when communicating with it. You can add the `rootCA` to the Argo CD custom resource `.spec.keycloak.rootCA` field. The Operator reconciles this change and updates the `oidc.config` field in the `argocd-cm` `ConfigMap` with the PEM-encoded root certificate. link:https://issues.redhat.com/browse/GITOPS-2214[GITOPS-2214]
20+
+
21+
[NOTE]
22+
====
23+
Restart the Argo CD server pod after updating the `.spec.keycloak.rootCA` field.
24+
====
25+
+
26+
For example:
27+
+
28+
[source,yaml]
29+
----
30+
apiVersion: argoproj.io/v1alpha1
31+
kind: ArgoCD
32+
metadata:
33+
name: example-argocd
34+
labels:
35+
example: basic
36+
spec:
37+
sso:
38+
provider: keycloak
39+
keycloak:
40+
rootCA: |
41+
---- BEGIN CERTIFICATE ----
42+
This is a dummy certificate
43+
Please place this section with appropriate rootCA
44+
---- END CERTIFICATE ----
45+
server:
46+
route:
47+
enabled: true
48+
----
49+
50+
* Before this update, a terminating namespace that was managed by Argo CD would block the creation of roles and other configuration of other managed namespaces. This update fixes this issue. link:https://issues.redhat.com/browse/GITOPS-2277[GITOPS-2277]
51+
52+
* Before this update, the Dex pods failed to start with `CreateContainerConfigError` when an SCC of `anyuid` was assigned to the Dex `ServiceAccount` resource. This update fixes this issue by assigning a default user id to the Dex container. link:https://issues.redhat.com/browse/GITOPS-2235[GITOPS-2235]
53+
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Module included in the following assembly:
2+
//
3+
// * gitops/gitops-release-notes.adoc
4+
5+
:_content-type: REFERENCE
6+
7+
[id="gitops-release-notes-1-6-1_{context}"]
8+
= Release notes for {gitops-title} 1.6.1
9+
10+
{gitops-title} 1.6.1 is now available on {product-title} 4.8, 4.9, and 4.10.
11+
12+
[id="fixed-issues-1-6-1_{context}"]
13+
== Fixed issues
14+
15+
The following issues have been resolved in the current release:
16+
17+
* Before this update, in a large set of applications the application controllers were restarted multiple times due to the unresponsiveness of liveness probes. This update fixes the issue by removing the liveness probe in the application controller `StatefulSet` object. link:https://issues.redhat.com/browse/GITOPS-2153[GITOPS-2153]
18+
19+
* Before this update, the RHSSO certificate cannot be validated when it is set up with a certificate which is not signed by certificate authorities. This update fixes the issue and now you can provide a custom certificate which will be used in verifying the Keycloak's TLS certificate when communicating with it. You can add the `rootCA` to the Argo CD custom resource `.spec.keycloak.rootCA` field. The Operator reconciles this change and updates the `oidc.config` field in the `argocd-cm` `ConfigMap` with the PEM-encoded root certificate. link:https://issues.redhat.com/browse/GITOPS-2214[GITOPS-2214]
20+
+
21+
[NOTE]
22+
====
23+
Restart the Argo CD server pod after updating the `.spec.keycloak.rootCA` field.
24+
====
25+
+
26+
For example:
27+
+
28+
[source,yaml]
29+
----
30+
apiVersion: argoproj.io/v1alpha1
31+
kind: ArgoCD
32+
metadata:
33+
name: example-argocd
34+
labels:
35+
example: basic
36+
spec:
37+
sso:
38+
provider: keycloak
39+
keycloak:
40+
rootCA: |
41+
---- BEGIN CERTIFICATE ----
42+
This is a dummy certificate
43+
Please place this section with appropriate rootCA
44+
---- END CERTIFICATE ----
45+
server:
46+
route:
47+
enabled: true
48+
----
49+
50+
* Before this update, a terminating namespace that was managed by Argo CD would block the creation of roles and other configuration of other managed namespaces. This update fixes this issue. link:https://issues.redhat.com/browse/GITOPS-2277[GITOPS-2277]
51+
52+
* Before this update, the Dex pods failed to start with `CreateContainerConfigError` when an SCC of `anyuid` was assigned to the Dex `ServiceAccount` resource. This update fixes this issue by assigning a default user id to the Dex container. link:https://issues.redhat.com/browse/GITOPS-2235[GITOPS-2235]
53+

0 commit comments

Comments
 (0)