Skip to content
Snippets Groups Projects
Verified Commit fa6ad135 authored by Martin Weise's avatar Martin Weise
Browse files
parent 3116b670
No related branches found
No related tags found
1 merge request!411WIP
......@@ -3,7 +3,7 @@
Daemon Off
Log_Level debug
Parsers_File parsers.conf
Parsers_File fluentbit_parser.conf
Parsers_File dbrepo_parser.conf
[INPUT]
Name forward
......
......@@ -11,7 +11,6 @@ import java.util.UUID;
@Repository
public interface IdentifierRepository extends JpaRepository<Identifier, UUID> {
@NotNull
List<Identifier> findAll();
/**
......
......@@ -16,11 +16,7 @@
</template>
<script>
<<<<<<< Updated upstream
import { useCacheStore } from '~/stores/cache.js';
=======
import { useCacheStore } from '@/stores/cache.js'
>>>>>>> Stashed changes
export default {
props: {
......@@ -69,11 +65,7 @@ export default {
return this.cacheStore.getUser
},
hasIdentifier () {
<<<<<<< Updated upstream
if (!this.resource.identifiers) {
=======
if (!this.resource.identifiers || this.resource.identifiers.length === 0) {
>>>>>>> Stashed changes
return false
}
if (!this.cacheUser) {
......
......@@ -81,10 +81,9 @@ The command removes all the Kubernetes components associated with the chart and
| `metadatadb.galera.mariabackup.user` | The database backup username. | `backup` |
| `metadatadb.galera.mariabackup.password` | The database backup user password | `backup` |
| `metadatadb.jdbcExtraArgs` | The extra arguments for JDBC connections in the microservices. | `""` |
| `metadatadb.configurationConfigMap` | The database configuration files. | `metadata-db-config` |
| `metadatadb.extraInitDbScripts` | Additional init.db scripts that are executed on the first start. | `{}` |
| `metadatadb.replicaCount` | The number of cluster nodes, should be uneven i.e. 2n+1 | `3` |
| `metadatadb.resourcesPreset` | The container resource preset | `nano-hm` |
| `metadatadb.replicaCount` | The number of cluster nodes, should be uneven i.e. 2n+1 | `1` |
| `metadatadb.resourcesPreset` | The container resource preset | `xlarge` |
| `metadatadb.persistence.enabled` | Enable persistent storage. | `true` |
### Auth Service
......@@ -116,8 +115,8 @@ The command removes all the Kubernetes components associated with the chart and
| `datadb.galera.mariabackup.user` | The database backup username. | `backup` |
| `datadb.galera.mariabackup.password` | The database backup user password | `backup` |
| `datadb.jdbcExtraArgs` | The extra arguments for JDBC connections in the microservices. | `""` |
| `datadb.replicaCount` | The number of cluster nodes, should be uneven i.e. 2n+1 | `3` |
| `datadb.resourcesPreset` | The container resource preset | `nano-hm` |
| `datadb.replicaCount` | The number of cluster nodes, should be uneven i.e. 2n+1 | `1` |
| `datadb.resourcesPreset` | The container resource preset | `xlarge` |
| `datadb.initdbScriptsConfigMap` | The setup data to load into the database on first start. | `data-db-setup` |
| `datadb.persistence.enabled` | Enable persistent storage. | `true` |
......@@ -427,11 +426,11 @@ mqtt.prefetch = 10
### Gateway Service
| Name | Description | Value |
| --------------------------------------------- | --------------------------------------------- | ----------------------- |
| --------------------------------------------- | --------------------------------------------- | ------------------------ |
| `gatewayservice.enabled` | Enable the Gateway Service. | `true` |
| `gatewayservice.service.type` | The service type. | `ClusterIP` |
| `gatewayservice.metrics.enabled` | Enable the Prometheus metrics sidecar. | `false` |
| `gatewayservice.existingServerBlockConfigmap` | The extra configuration for the reverse proxy | `gateway-service-setup` |
| `gatewayservice.existingServerBlockConfigmap` | The extra configuration for the reverse proxy | `gateway-service-config` |
| `gatewayservice.replicaCount` | The number of replicas. | `3` |
### Analytics Service
......@@ -440,6 +439,29 @@ mqtt.prefetch = 10
| ------------------------- | ------------------------------------------------------ | ---------- |
| `computeservice.endpoint` | Configure the number of parallel workers with local[n] | `local[2]` |
### Logging Service
| Name | Description | Value |
| ------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------- | ---------------- |
| `loggingservice.enabled` | Enable the Logging Service. | `false` |
| `loggingservice.podSecurityContext.enabled` | Enable pods' Security Context | `true` |
| `loggingservice.podSecurityContext.fsGroupChangePolicy` | Set filesystem group change policy | `Always` |
| `loggingservice.podSecurityContext.sysctls` | Set kernel settings using the sysctl interface | `[]` |
| `loggingservice.podSecurityContext.supplementalGroups` | Set filesystem extra groups | `[]` |
| `loggingservice.podSecurityContext.fsGroup` | Set RabbitMQ pod's Security Context fsGroup | `0` |
| `loggingservice.containerSecurityContext.enabled` | Enable containers' Security Context | `true` |
| `loggingservice.containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `{}` |
| `loggingservice.containerSecurityContext.runAsUser` | Set RabbitMQ containers' Security Context runAsUser | `1001` |
| `loggingservice.containerSecurityContext.runAsGroup` | Set RabbitMQ containers' Security Context runAsGroup | `1001` |
| `loggingservice.containerSecurityContext.runAsNonRoot` | Set RabbitMQ container's Security Context runAsNonRoot | `true` |
| `loggingservice.containerSecurityContext.allowPrivilegeEscalation` | Set container's privilege escalation | `false` |
| `loggingservice.containerSecurityContext.readOnlyRootFilesystem` | Set container's Security Context readOnlyRootFilesystem | `false` |
| `loggingservice.containerSecurityContext.capabilities.drop` | Set container's Security Context runAsNonRoot | `["ALL"]` |
| `loggingservice.containerSecurityContext.seccompProfile.type` | Set container's Security Context seccomp profile | `RuntimeDefault` |
| `loggingservice.resourcesPreset` | The container resource preset | `micro` |
| `loggingservice.resources` | Set container requests and limits for different resources like CPU or memory (essential for production workloads) | `{}` |
| `loggingservice.replicaCount` | The number of replicas. | `2` |
### Ingress
| Name | Description | Value |
......
No preview for this file type
No preview for this file type
......@@ -862,6 +862,42 @@
"existingServerBlockConfigmap": {
"type": "string"
},
"extraVolumeMounts": {
"items": {
"properties": {
"mountPath": {
"type": "string"
},
"name": {
"type": "string"
},
"subPath": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"extraVolumes": {
"items": {
"properties": {
"configMap": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"fullnameOverride": {
"type": "string"
},
......@@ -1074,11 +1110,100 @@
},
"type": "object"
},
"metadatadb": {
"loggingservice": {
"properties": {
"containerSecurityContext": {
"properties": {
"allowPrivilegeEscalation": {
"type": "boolean"
},
"capabilities": {
"properties": {
"configurationConfigMap": {
"drop": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"enabled": {
"type": "boolean"
},
"readOnlyRootFilesystem": {
"type": "boolean"
},
"runAsGroup": {
"type": "integer"
},
"runAsNonRoot": {
"type": "boolean"
},
"runAsUser": {
"type": "integer"
},
"seLinuxOptions": {
"properties": {},
"type": "object"
},
"seccompProfile": {
"properties": {
"type": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"enabled": {
"type": "boolean"
},
"image": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"podSecurityContext": {
"properties": {
"enabled": {
"type": "boolean"
},
"fsGroup": {
"type": "integer"
},
"fsGroupChangePolicy": {
"type": "string"
},
"supplementalGroups": {
"type": "array"
},
"sysctls": {
"type": "array"
}
},
"type": "object"
},
"replicaCount": {
"type": "integer"
},
"resources": {
"properties": {},
"type": "object"
},
"resourcesPreset": {
"type": "string"
}
},
"type": "object"
},
"metadatadb": {
"properties": {
"db": {
"properties": {
"name": {
......
......@@ -1051,10 +1051,12 @@ gatewayservice:
enabled: false
## @param gatewayservice.existingServerBlockConfigmap The extra configuration for the reverse proxy
existingServerBlockConfigmap: gateway-service-config
## @skip gatewayservice.extraVolumes
extraVolumes:
- name: config-map
configMap:
name: gateway-service-setup
## @skip gatewayservice.extraVolumeMounts
extraVolumeMounts:
- name: config-map
mountPath: /etc/nginx/conf.d/nginx.conf
......@@ -1071,6 +1073,7 @@ computeservice:
## @section Logging Service
loggingservice:
## @param loggingservice.enabled Enable the Logging Service.
enabled: false
image:
## @skip loggingservice.image.name
......
......@@ -4,9 +4,9 @@ dependencies:
version: 20.4.3
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.6.4
version: 16.6.5
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:cf895fd3bc8c6715f0fae22d9f9e276a087fd6f39704348b1b8e84954659c548
generated: "2025-04-24T11:15:12.075870224+02:00"
digest: sha256:caad17722be72729e47ffc699f4de69463e71fdc2cdd5812c60f5119754743a2
generated: "2025-04-25T09:10:19.697315063+02:00"
File deleted
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment