Skip to content

Commit

Permalink
fixed some formatting in values.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Jäckle <thomas.jaeckle@beyonnex.io>
  • Loading branch information
thjaeckle committed Oct 6, 2023
1 parent 01f82e5 commit 1a8a8ae
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions deployment/helm/ditto/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -638,16 +638,16 @@ policies:
# An empty list would *not* allow any entity to be created.
# You must have at least one entry, even if it is without restrictions.
grants:
- # namespaces holds the list of namespaces this entry applies to. An empty list would match any.
- # namespaces holds the list of namespaces this entry applies to. An empty list would match any.

Check failure on line 641 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

641:11 [comments] too few spaces before comment
# Wildcards `*` (Matching any number of any character) and `?` (Matches any single character) are supported in entries of this list.
namespaces: []
# authSubjects holds list of authentication subjects this entry applies to. An empty list would match any.
# Wildcards `*` (Matching any number of any character) and `?` (Matches any single character) are supported in entries of this list.
authSubjects: []
namespaces: [ ]

Check failure on line 643 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

643:24 [brackets] too many spaces inside empty brackets
# authSubjects holds list of authentication subjects this entry applies to. An empty list would match any.
# Wildcards `*` (Matching any number of any character) and `?` (Matches any single character) are supported in entries of this list.
authSubjects: [ ]

Check failure on line 646 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

646:26 [brackets] too many spaces inside empty brackets
# revokes contains the list of creation config entries which would reject the creation of entities
revokes: []
# - namespaces: []
# authSubjects: []
revokes: [ ]

Check failure on line 648 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

648:17 [brackets] too many spaces inside empty brackets
# - namespaces: [ ]
# authSubjects: [ ]

## ----------------------------------------------------------------------------
## things configuration
Expand Down Expand Up @@ -841,16 +841,16 @@ things:
# An empty list would *not* allow any entity to be created.
# You must have at least one entry, even if it is without restrictions.
grants:
- # namespaces holds the list of namespaces this entry applies to. An empty list would match any.
- # namespaces holds the list of namespaces this entry applies to. An empty list would match any.

Check failure on line 844 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

844:11 [comments] too few spaces before comment
# Wildcards `*` (Matching any number of any character) and `?` (Matches any single character) are supported in entries of this list.
namespaces: []
namespaces: [ ]

Check failure on line 846 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

846:24 [brackets] too many spaces inside empty brackets
# authSubjects holds list of authentication subjects this entry applies to. An empty list would match any.
# Wildcards `*` (Matching any number of any character) and `?` (Matches any single character) are supported in entries of this list.
authSubjects: []
authSubjects: [ ]

Check failure on line 849 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

849:26 [brackets] too many spaces inside empty brackets
# revokes contains the list of creation config entries which would reject the creation of entities
revokes: []
# - namespaces: []
# authSubjects: []
revokes: [ ]

Check failure on line 851 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

851:17 [brackets] too many spaces inside empty brackets
# - namespaces: [ ]
# authSubjects: [ ]
# policiesEnforcer contains configuration for Ditto "Policy Enforcers", e.g. regarding caching
policiesEnforcer:
# cache holds the configuration of policy enforcer caching
Expand Down Expand Up @@ -1238,7 +1238,13 @@ connectivity:
timerThreshold: 100ms
# creditsPerBatch configures how many "cleanup credits" should be generated per "interval" as long as the
creditsPerBatch: 5
# persistence holds configuration regarding (pekko) persistence of connections (event journal and snapshots)
# deleteFinalDeletedSnapshot configures whether for a deleted entity, the final snapshot (containing the
# "deleted" information) should be deleted or not.
# If the final snapshot is not deleted, re-creating the entity will cause that the recreated entity starts with
# a revision number 1 higher than the previously deleted entity. If the final snapshot is deleted as well,
# recreation of an entity with the same ID will lead to revisionNumber=1 after its recreation.
deleteFinalDeletedSnapshot: true
# persistence holds configuration regarding (akka) persistence of connections (event journal and snapshots)
persistence:
# keep closed, inactive connections for that amount of time in memory when no other use did happen:
activityCheckInterval: 45m
Expand Down Expand Up @@ -1624,9 +1630,9 @@ dittoui:
maxSurge: 1
maxUnavailable: 0
# additionalLabels on Ditto UI pods
additionalLabels: {}
additionalLabels: { }

Check failure on line 1633 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

1633:22 [braces] too many spaces inside empty braces
# additionalAnnotations on Ditto UI pods
additionalAnnotations: {}
additionalAnnotations: { }

Check failure on line 1635 in deployment/helm/ditto/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

1635:27 [braces] too many spaces inside empty braces
image:
# repository for the Ditto UI docker image
repository: docker.io/eclipse/ditto-ui
Expand Down Expand Up @@ -1659,7 +1665,7 @@ dittoui:
# port of the Ditto UI service
port: 8080
# annotations to add arbitrary annotations to Ditto UI service
annotations: {}
annotations: { }

## ----------------------------------------------------------------------------
## swaggerui configuration
Expand Down

0 comments on commit 1a8a8ae

Please sign in to comment.