Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2a231bc
Automated entando-releases update
pietrangelo Aug 28, 2023
bff51b0
Automated entando-releases update
pietrangelo Aug 30, 2023
374d95f
Automated entando-releases update
BrenoQVDS Aug 31, 2023
ef0df02
Updated some images within namespace-resources.yaml
firegloves Sep 4, 2023
101790a
Update namespace-resources.yaml
firegloves Sep 4, 2023
77cb526
Automated entando-releases update
BrenoQVDS Sep 4, 2023
f85b8ec
Automated entando-releases update
firegloves Sep 5, 2023
69c5e24
Automated entando-releases update
firegloves Sep 6, 2023
d3092be
Automated entando-releases update
firegloves Sep 6, 2023
f0e406c
Automated entando-releases update
BrenoQVDS Sep 12, 2023
7c1ee48
Automated entando-releases update
firegloves Sep 12, 2023
1ddfc4d
Automated entando-releases update
firegloves Sep 13, 2023
b464825
Automated entando-releases update
firegloves Sep 20, 2023
8c2af67
Automated entando-releases update
pietrangelo Sep 27, 2023
78880ae
Automated entando-releases update
pietrangelo Sep 27, 2023
2ed53fc
Automated entando-releases update
pietrangelo Sep 27, 2023
fb50833
Automated entando-releases update
pietrangelo Sep 27, 2023
45be316
Automated entando-releases update
pietrangelo Sep 28, 2023
98e4f7a
Automated entando-releases update
pietrangelo Sep 28, 2023
105ccbd
Automated entando-releases update
BrenoQVDS Oct 16, 2023
ce1c3c1
Automated entando-releases update
pietrangelo Nov 10, 2023
735595c
Automated entando-releases update
pietrangelo Nov 16, 2023
a659797
Automated entando-releases update
pietrangelo Nov 16, 2023
b43d080
Automated entando-releases update
BrenoQVDS Nov 21, 2023
e314466
Automated entando-releases update
BrenoQVDS Nov 21, 2023
a71c7a6
Automated entando-releases update
BrenoQVDS Nov 21, 2023
cacc6da
Automated entando-releases update
firegloves Nov 24, 2023
c9650a3
Automated entando-releases update
firegloves Nov 24, 2023
4308d11
Automated entando-releases update
BrenoQVDS Nov 24, 2023
eab3ca2
Automated entando-releases update
BrenoQVDS Jun 13, 2024
bf91668
bump image versions to release 7.5
ffalqui Mar 20, 2026
529fac0
bump image and configuration versions to release 7.5
ffalqui May 6, 2026
b2f4b7f
Merge pull request #63 from entando/ESB-844
ffalqui May 7, 2026
ffbfa65
Bump images and configuration versions for 7.5.1 release
ffalqui Jul 15, 2026
86b905b
Merge pull request #65 from entando/ESB-1053
ffalqui Jul 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
200 changes: 177 additions & 23 deletions dist/ge-1-1-6/cluster-scoped-deployment/all-in-one.yaml

Large diffs are not rendered by default.

158 changes: 155 additions & 3 deletions dist/ge-1-1-6/namespace-scoped-deployment/cluster-resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ spec:
The database management system (DBMS) to use for persistence of this EntandoApp.
Can be any of mysql, oracle postgresql, embedded or none. Only 1 replica of the container is supported if embedded is selected. If Oracle is selected it must be created manually, the operator does not deploy Oracle instances.

See [here] (https://developer.entando.com/next/docs/consume/operator-intro.html#database-deployment) for how the operator will create and configure the DBMS.
See [here] (https://developer.entando.com/v7.3/docs/consume/operator-intro.html#database-deployment) for how the operator will create and configure the DBMS.
type: string
pattern: '^(mysql|oracle|postgresql|embedded|none)$'
storageClass:
Expand All @@ -223,7 +223,7 @@ spec:
path specified in 'EntandoApp.spec.ingressPath' on
this host. If omitted, the Entando Operator will automatically generate a hostname.

See [here] (https://developer.entando.com/next/docs/consume/operator-intro.html#ingress-path-generation) for how the operator will create and configure the Ingress.
See [here] (https://developer.entando.com/v7.3/docs/consume/operator-intro.html#ingress-path-generation) for how the operator will create and configure the Ingress.
type: string
pattern: '^([A-Za-z0-9-]{1,63}\.)*[[A-Za-z0-9-]{1,63}$'
ingressPath:
Expand All @@ -237,7 +237,7 @@ spec:
tlsSecretName:
description: >
The name of a standard Kubernetes TLS Secret, assumed to be in the same Namespace as the EntandoApp being created.
See [here](https://developer.entando.com/next/docs/consume/operator-intro.html#tls-secret-creation) for details and instructions on
See [here](https://developer.entando.com/v7.3/docs/consume/operator-intro.html#tls-secret-creation) for details and instructions on
creating a secret for your Entando applications.
type: string
pattern: '^([a-z])+([a-z0-9-\.])*[a-z0-9]$'
Expand All @@ -248,6 +248,107 @@ spec:
type: string
pattern: '^([a-z])+([a-z0-9-\.])*[a-z0-9]$'
environmentVariables:
description: >
A list of environment variables that are propagated to the app-engine and component-manager sub-modules.
The format follows the standard structure of Kubernetes Environment Variables
type: array
items:
type: object
properties:
name:
type: string
value:
type: string
valueFrom:
type: object
properties:
configMapKeyRef:
type: object
properties:
name:
description: Name of a ConfigMap in the same namespace as the EntandoApp
type: string
key:
description: Key of the ConfigMap entry in that holds the value to be used for the EnvironmentVariable
type: string
fieldRef:
type: object
properties:
apiVersion:
description: Version of the API to used for the field expression
type: string
fieldPath:
description: Full expression starting from the Pod resource
type: string
resourceFieldRef:
type: object
properties:
containerName:
description: Name of the container to use
type: string
resource:
description: Name of the resource to use
type: string
secretKeyRef:
type: object
properties:
name:
description: Name of a Secret in the same namespace as the EntandoApp
type: string
key:
description: Key of the Secret entry in that holds the value to be used for the EnvironmentVariable
type: string
environmentVariablesAppEngine:
description: >
A list of environment variables for the app-engine sub-module
type: array
items:
type: object
properties:
name:
type: string
value:
type: string
valueFrom:
type: object
properties:
configMapKeyRef:
type: object
properties:
name:
description: Name of a ConfigMap in the same namespace as the EntandoApp
type: string
key:
description: Key of the ConfigMap entry in that holds the value to be used for the EnvironmentVariable
type: string
fieldRef:
type: object
properties:
apiVersion:
description: Version of the API to used for the field expression
type: string
fieldPath:
description: Full expression starting from the Pod resource
type: string
resourceFieldRef:
type: object
properties:
containerName:
description: Name of the container to use
type: string
resource:
description: Name of the resource to use
type: string
secretKeyRef:
type: object
properties:
name:
description: Name of a Secret in the same namespace as the EntandoApp
type: string
key:
description: Key of the Secret entry in that holds the value to be used for the EnvironmentVariable
type: string
environmentVariablesComponentManager:
description: >
A list of environment variable following the standard structure of Kubernetes Environment Variables
type: array
Expand Down Expand Up @@ -297,6 +398,57 @@ spec:
key:
description: Key of the Secret entry in that holds the value to be used for the EnvironmentVariable
type: string
environmentVariablesAppBuilder:
description: >
A list of environment variables for the app-builder sub-module
type: array
items:
type: object
properties:
name:
type: string
value:
type: string
valueFrom:
type: object
properties:
configMapKeyRef:
type: object
properties:
name:
description: Name of a ConfigMap in the same namespace as the EntandoApp
type: string
key:
description: Key of the ConfigMap entry in that holds the value to be used for the EnvironmentVariable
type: string
fieldRef:
type: object
properties:
apiVersion:
description: Version of the API to used for the field expression
type: string
fieldPath:
description: Full expression starting from the Pod resource
type: string
resourceFieldRef:
type: object
properties:
containerName:
description: Name of the container to use
type: string
resource:
description: Name of the resource to use
type: string
secretKeyRef:
type: object
properties:
name:
description: Name of a Secret in the same namespace as the EntandoApp
type: string
key:
description: Key of the Secret entry in that holds the value to be used for the EnvironmentVariable
type: string

resourceRequirements:
description: >
The projected resource requirements of the given EntandoApp deployment. Specifies the limits that the
Expand Down
41 changes: 21 additions & 20 deletions dist/ge-1-1-6/namespace-scoped-deployment/namespace-resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,53 +36,53 @@ data:
app-builder-6-3: >-
{"version":"6.3.93-hotfix.1","executable-type":"n/a","registry":"registry.hub.docker.com","organization":"entando","repository":"app-builder"}
app-builder-6-4: >-
{"version":"7.3.0-IT-403-PR-1521","executable-type":"n/a","registry":"registry.hub.docker.com","organization":"entando","repository":"app-builder"}
{"version":"7.5.0","executable-type":"n/a","registry":"registry.hub.docker.com","organization":"entando","repository":"app-builder"}
busybox: >-
{"version":"latest","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-avatar-plugin: >-
{"version":"6.0.5","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-component-manager-6-3: >-
{"version":"6.3.26-fix.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-component-manager"}
entando-component-manager-6-4: >-
{"version":"7.3.0-IT-442-PR-352","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-component-manager"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-component-manager"}
entando-de-app-eap-6-3: >-
{"version":"6.3.68-fix.3-ENG-3332-PR-335","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-eap"}
entando-de-app-eap-6-4: >-
{"version":"7.2.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-eap"}
{"version":"7.3.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-eap"}
entando-de-app-wildfly-6-3: >-
{"version":"6.3.68-fix.3-ENG-3332-PR-335","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-wildfly"}
entando-de-app-wildfly-6-4: >-
{"version":"7.2.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-wildfly"}
{"version":"7.3.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-wildfly"}
entando-de-app-tomcat-6-4: >-
{"version":"7.3.0-IT-410-PR-189","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-tomcat"}
{"version":"7.5.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-de-app-tomcat"}
entando-k8s-app-controller: >-
{"version":"7.2.0-IT-442-PR-90","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-app-plugin-link-controller: >-
{"version":"7.3.0-IT-442-PR-54","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-database-service-controller: >-
{"version":"7.2.0-IT-442-PR-48","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-dbjob: >-
{"version":"7.2.0-IT-442-PR-46","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-keycloak-controller: >-
{"version":"7.2.0-IT-442-PR-72","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-plugin-controller: >-
{"version":"7.3.0-IT-442-PR-83","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-k8s-service: >-
{"version":"7.3.0-ENG-5087-PR-80","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-keycloak: >-
{"version":"7.2.0-IT-406-PR-39","executable-type":"","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"","registry":"registry.hub.docker.com","organization":"entando"}
entando-process-driven-plugin: >-
{"version":"6.0.50-fix.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando"}
entando-redhat-sso: >-
{"version":"7.2.0","executable-type":"","registry":"registry.hub.docker.com","organization":"entando"}
{"version":"7.5.0","executable-type":"","registry":"registry.hub.docker.com","organization":"entando"}
mysql-80-centos7: >-
{"version":"v8.0.33-IT-409-PR-8-KB-release-2F-8.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-mysql-rocky"}
{"version":"8.0.33","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-mysql-rocky"}
postgresql-12-centos7: >-
{"version":"14.1.0-IT-408-PR-10","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-postgres-rocky"}
{"version":"18.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-postgres-rocky"}
rhel8-mysql-80: >-
{"version":"v8.0.33-IT-409-PR-8-KB-release-2F-8.0","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando",,"repository":"entando-mysql-ubi"}
{"version":"8.0.33","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando",,"repository":"entando-mysql-ubi"}
rhel8-postgresql-12: >-
{"version":"14.1.0-IT-408-PR-10","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-postgres-ubi"}
{"version":"18.1","executable-type":"jvm","registry":"registry.hub.docker.com","organization":"entando","repository":"entando-postgres-ubi"}
---
# Source: entando-k8s-operator-bundle/charts/operator/templates/operator-role.yaml
apiVersion: rbac.authorization.k8s.io/v1
Expand Down Expand Up @@ -123,6 +123,7 @@ rules:
- extensions
resources:
- deployments
- deployments/scale
verbs:
- "*"
- apiGroups:
Expand Down Expand Up @@ -285,7 +286,7 @@ spec:
volumes:
containers:
- name: operator
image: "entando/entando-k8s-controller-coordinator:7.2.0-IT-442-PR-131"
image: "entando/entando-k8s-controller-coordinator:7.5.0"
imagePullPolicy: Always
volumeMounts:
env:
Expand Down Expand Up @@ -415,5 +416,5 @@ spec:
failureThreshold: 1
timeoutSeconds: 1
image: >-
docker.io/entando/entando-k8s-service:7.3.0-ENG-5087-PR-80
docker.io/entando/entando-k8s-service:7.5.0
serviceAccount: entando-operator
Loading