diff --git a/cks-1.0.0.tgz b/cks-1.0.0.tgz new file mode 100644 index 0000000..f2fc0d8 Binary files /dev/null and b/cks-1.0.0.tgz differ diff --git a/cks/Chart.yaml b/cks/Chart.yaml index 66dd0a1..08bec0c 100644 --- a/cks/Chart.yaml +++ b/cks/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -name: cks +appVersion: v1.18.0 description: A service for Virtru customers who wish to manage their own keys +name: cks type: application -version: 0.8.8 -appVersion: v1.16.0 \ No newline at end of file +version: 1.0.0 \ No newline at end of file diff --git a/cks/README.md b/cks/README.md index efaac83..ad1dd47 100644 --- a/cks/README.md +++ b/cks/README.md @@ -69,3 +69,38 @@ Use a standard [helm install](https://helm.sh/docs/helm/helm_install/) command t ```sh helm install -n virtru -f ./values.yaml cks ./ --create-namespace ``` +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| affinity | object | `{}` | Optional: Controls scheduling rules to optimize workload distribution. | +| appConfig | object | `{"authTokenStoreageMemoryEncoding":"base64","authTokenStoreageType":"in-memory","hmacAuthEnabled":true,"jwtAuthEnabled":true,"jwtAuthIssuer":"https://api.virtru.com","jwtAuthJwksPath":"/acm/api/jwks","keyProviderType":"file","logRsyslogEnabled":false,"logStdoutEnabled":true,"noKeysRule":"importPEM","privateKeyPath":"/run/secrets/rsa001.pem","publicKeyPath":"/run/secrets/rsa001.pub","virtruOrgId":""}` | Application Configuration | +| appConfig.virtruOrgId | string | `""` | The orgId will be provided to you by your Virtru representative. | +| appSecrets | object | `{"virtruAuth":{"data":{"authTokenJson":""},"name":"hmac-auth"},"virtruKeys":{"data":{"rsa001.pem":"\n","rsa001.pub":"\n"},"mountPath":"/app/keys","name":"cks-keys"}}` | Secrets Management | +| appSecrets.virtruAuth.data.authTokenJson | string | `""` | This base64-encoded value for authTokenJson can be generated by running these steps here: https://support.virtru.com/hc/en-us/articles/17797745877655-Virtru-Private-Keystore-for-Virtru-Solutions-Install-First-Instance-Linux-Server | +| appSecrets.virtruKeys.data."rsa001.pub" | string | `"\n"` | The values for rsa001.pub and rsa001.pem can be generated by running these steps here: https://support.virtru.com/hc/en-us/articles/17797745877655-Virtru-Private-Keystore-for-Virtru-Solutions-Install-First-Instance-Linux-Server | +| autoscaling | object | `{"enabled":false,"maxReplicas":100,"minReplicas":1,"targetCPUUtilizationPercentage":80}` | Autoscaling is disabled by default. | +| autoscaling.maxReplicas | int | `100` | Maximum number of pods | +| autoscaling.minReplicas | int | `1` | Minimum number of pods | +| autoscaling.targetCPUUtilizationPercentage | int | `80` | CPU threshold for scaling. Default is 80% | +| deployment | object | `{"port":9000}` | Internal application port used for the deployment. | +| deployment.port | int | `9000` | The CKS will use the default internal port 9000. | +| fullnameOverride | string | `""` | Optional override for the full resource name. | +| image | object | `{"pullPolicy":"IfNotPresent","repository":"containers.virtru.com/cks","tag":""}` | For version, see https://support.virtru.com/hc/en-us/articles/360034039233-Release-Notes-Virtru-Private-Keystore-for-Virtru-Solutions-Formerly-Virtru-Customer-Key-Server-CKS. | +| ingress | object | `{"annotations":null,"enabled":true,"hosts":[{"host":"fqdn.yourdomain.com","paths":[{"backend":{"serviceName":"cks","servicePort":443},"path":"/*","pathType":"ImplementationSpecific"}]}],"tls":[]}` | This is enabled by default. | +| ingress.hosts[0] | object | `{"host":"fqdn.yourdomain.com","paths":[{"backend":{"serviceName":"cks","servicePort":443},"path":"/*","pathType":"ImplementationSpecific"}]}` | Change fqdn.yourdomain.com to match the FQDN of your CKS. | +| nameOverride | string | `""` | Optional name override for the CKS release. | +| nodeSelector | object | `{}` | Optional: Specifies node labels for pod placement. | +| podAnnotations | object | `{}` | Optional annotations for pods, useful for monitoring or automation. | +| podSecurityContext | object | `{}` | Defines security settings at the pod level (e.g., group permissions). Defaults to empty, can be customized to better fit your organization's needs. | +| replicaCount | int | `3` | Number of instances (pods) to run for the application. Default is 3 but can be customized to fit your org's needs. | +| resources | object | `{}` | Allows defining CPU/memory limits and requests for the application. Defaults to empty for flexibility. | +| revisionHistoryLimit | int | `10` | Number of old deployments retained for rollback purposes. Default is 10. | +| securityContext | object | `{}` | Defines security settings at the container level, such as running as a non-root user. Defaults to empty for flexibility. | +| service | object | `{"annotations":{},"port":443,"protocol":"TCP","type":"ClusterIP"}` | Service Configuration | +| service.type | string | `"ClusterIP"` | Service type is ClusterIP by default. | +| serviceAccount.annotations | object | `{}` | Metadata annotations to add to the service account. Defaults to empty. | +| serviceAccount.create | bool | `true` | Specifies whether a service account should be created. A service account is created by default. | +| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is set to true, a name is generated using the fullname template. | +| testerPod | object | `{"annotations":{"helm.sh/hook":"test"},"enabled":true}` | Test pod is created by default. | +| tolerations | list | `[]` | Optional: Defines tolerations to allow pods to be scheduled on tainted nodes. | \ No newline at end of file diff --git a/cks/values.yaml b/cks/values.yaml index 40302fd..6d23a44 100644 --- a/cks/values.yaml +++ b/cks/values.yaml @@ -1,40 +1,49 @@ -# Default values for cks. +# Default values for the Virtru Private Keystore (CKS). # This is a YAML-formatted file. # Declare variables to be passed into your templates. +# -- Number of instances (pods) to run for the application. Default is 3 but can be customized to fit your org's needs. replicaCount: 3 +# -- Number of old deployments retained for rollback purposes. Default is 10. revisionHistoryLimit: 10 +# -- Location of container image. +# -- For the latest version, see https://support.virtru.com/hc/en-us/articles/360034039233-Release-Notes-Virtru-Private-Keystore-for-Virtru-Solutions-Formerly-Virtru-Customer-Key-Server-CKS. image: repository: containers.virtru.com/cks pullPolicy: IfNotPresent - # Overrides the image tag whose default is the chart appVersion. + # Overrides the image tag whose default is the Chart.yaml's appVersion. tag: "" +# -- Optional name override for the CKS release. nameOverride: "" +# -- Optional override for the full resource name. fullnameOverride: "" serviceAccount: - # Specifies whether a service account should be created + # -- Specifies whether a service account should be created. A service account is created by default. create: true - # Annotations to add to the service account + # -- Metadata annotations to add to the service account. Defaults to empty. annotations: {} - # The name of the service account to use. - # If not set and create is true, a name is generated using the fullname template + # -- The name of the service account to use. If not set and create is set to true, a name is generated using the fullname template. name: "" +# -- Optional annotations for pods, useful for monitoring or automation. podAnnotations: {} +# -- Test pod is created by default. testerPod: enabled: true annotations: helm.sh/hook: test +# -- Defines security settings at the pod level (e.g., group permissions). Defaults to empty, can be customized to better fit your organization's needs. podSecurityContext: {} # fsGroup: 2000 +# -- Defines security settings at the container level, such as running as a non-root user. Defaults to empty for flexibility. securityContext: {} # capabilities: @@ -44,22 +53,29 @@ securityContext: # runAsNonRoot: true # runAsUser: 1000 +# -- Service Configuration service: annotations: {} + # -- Service type is ClusterIP by default. type: ClusterIP port: 443 protocol: TCP +# -- Internal application port used for the deployment. deployment: + # -- The CKS will use the default internal port 9000. port: 9000 +# -- Ingress Configuration. To serve traffic appropriately, you must have an ingress controller for your CKS service +# -- This is enabled by default. ingress: enabled: true annotations: # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" hosts: - - host: chart-example.local + # -- Change fqdn.yourdomain.com to match the FQDN of your CKS. + - host: fqdn.yourdomain.com paths: - path: /* pathType: ImplementationSpecific @@ -71,10 +87,11 @@ ingress: # hosts: # - chart-example.local +# -- Allows defining CPU/memory limits and requests for the application. Defaults to empty for flexibility. resources: {} # We usually recommend not to specify default resources and to leave this as a conscious - # choice for the user. This also increases chances charts run on environments with little + # choice for the customer. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following # lines, adjust them as necessary, and remove the curly braces after 'resources:'. # limits: @@ -84,20 +101,29 @@ resources: # cpu: 100m # memory: 128Mi +# -- Autoscaling is disabled by default. autoscaling: enabled: false + # -- Minimum number of pods minReplicas: 1 + # -- Maximum number of pods maxReplicas: 100 + # -- CPU threshold for scaling. Default is 80% targetCPUUtilizationPercentage: 80 # targetMemoryUtilizationPercentage: 80 +# -- Optional: Specifies node labels for pod placement. nodeSelector: {} +# -- Optional: Defines tolerations to allow pods to be scheduled on tainted nodes. tolerations: [] +# -- Optional: Controls scheduling rules to optimize workload distribution. affinity: {} +# -- Application Configuration appConfig: + # -- The orgId will be provided to you by your Virtru representative. virtruOrgId: "" authTokenStoreageType: in-memory authTokenStoreageMemoryEncoding: base64 @@ -117,21 +143,25 @@ appConfig: # While a simpler approach with fewer variables, it is recommended you use # a third party secret storage option. +# -- Secrets Management appSecrets: virtruAuth: name: hmac-auth data: - authTokenJson: + # -- This base64-encoded value for authTokenJson can be generated by running these steps here: https://support.virtru.com/hc/en-us/articles/17797745877655-Virtru-Private-Keystore-for-Virtru-Solutions-Install-First-Instance-Linux-Server + authTokenJson: virtruKeys: name: cks-keys mountPath: /app/keys data: + # -- The values for rsa001.pub and rsa001.pem can be generated by running these steps here: https://support.virtru.com/hc/en-us/articles/17797745877655-Virtru-Private-Keystore-for-Virtru-Solutions-Install-First-Instance-Linux-Server rsa001.pub: | rsa001.pem: | +# -- Configuration for integrating with external secret management solutions. #https://external-secrets.io/v0.8.2/introduction/overview/ #externalAppSecrets: #- name: #secret object will be named the same. @@ -140,4 +170,3 @@ appSecrets: # kind: # name: # refreshInterval: -# diff --git a/index.yaml b/index.yaml index 0af10fe..4f65297 100644 --- a/index.yaml +++ b/index.yaml @@ -1,9 +1,19 @@ apiVersion: v1 entries: cks: + - apiVersion: v2 + appVersion: v1.18.0 + created: "2025-02-19T08:50:59.92951-05:00" + description: A service for Virtru customers who wish to manage their own keys + digest: 1e9986ab1c04b32bdce2093304106d27de1e03b34bf812ad1f15533e8d498810 + name: cks + type: application + urls: + - cks-1.0.0.tgz + version: 1.0.0 - apiVersion: v2 appVersion: v1.16.0 - created: "2024-12-12T10:23:40.4212-06:00" + created: "2025-02-19T08:50:59.928999-05:00" description: A service for Virtru customers who wish to manage their own keys digest: 2cfa861c1903236112a12aadac665ff721c77096b356aff1df5511af1cdba89d name: cks @@ -13,7 +23,7 @@ entries: version: 0.8.8 - apiVersion: v2 appVersion: v1.15.0 - created: "2024-12-12T10:23:40.420666-06:00" + created: "2025-02-19T08:50:59.928518-05:00" description: A service for Virtru customers who wish to manage their own keys digest: bd3eea02a8b07b522957082972d2ae3e51d35c7073cd2da60d9db55d6da7563d name: cks @@ -23,7 +33,7 @@ entries: version: 0.8.7 - apiVersion: v2 appVersion: v1.13.0 - created: "2024-12-12T10:23:40.420183-06:00" + created: "2025-02-19T08:50:59.927961-05:00" description: A service for Virtru customers who wish to manage their own keys digest: 7425699c8784e4181f007be7be906380bf7b0078a2df14901c3af7d2a87170ae name: cks @@ -33,7 +43,7 @@ entries: version: 0.8.6 - apiVersion: v2 appVersion: v1.12.0 - created: "2024-12-12T10:23:40.419504-06:00" + created: "2025-02-19T08:50:59.926185-05:00" description: A service for Virtru customers who wish to manage their own keys digest: f9628f527bdbda0475f49ecac2b035f4b7c2eaf99c242f0c7772f38cbf4be47b name: cks @@ -43,7 +53,7 @@ entries: version: 0.8.5 - apiVersion: v2 appVersion: v1.10.0 - created: "2024-12-12T10:23:40.418925-06:00" + created: "2025-02-19T08:50:59.925545-05:00" description: A service for Virtru customers who wish to manage their own keys digest: 366716a9b69c570ed8a74b418a9e869951634a342ec6925c07311f5fc90b0785 name: cks @@ -54,7 +64,7 @@ entries: common-lib: - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.421404-06:00" + created: "2025-02-19T08:50:59.929766-05:00" description: Common helper library digest: 66c249a5ad2b9fc12404f69d75638773d500513d628b7a9e0e45798021b77d9f name: common-lib @@ -65,7 +75,7 @@ entries: cse: - apiVersion: v2 appVersion: v5.9.1 - created: "2024-12-12T10:23:40.425759-06:00" + created: "2025-02-19T08:50:59.934705-05:00" description: A Helm chart for Kubernetes digest: a5bad8ee163fde35407d3aed8b1d4c90819293b71574f82e734ba99e624f4c97 name: cse @@ -75,7 +85,7 @@ entries: version: 0.8.2 - apiVersion: v2 appVersion: v5.9.1 - created: "2024-12-12T10:23:40.42538-06:00" + created: "2025-02-19T08:50:59.933088-05:00" description: A Helm chart for Kubernetes digest: ac668f68f470467b0cf7510b4a49ff366a100c87c950e7054ff94e478d717229 name: cse @@ -85,7 +95,7 @@ entries: version: 0.8.1 - apiVersion: v2 appVersion: v5.8.0 - created: "2024-12-12T10:23:40.423762-06:00" + created: "2025-02-19T08:50:59.932568-05:00" description: A Helm chart for Kubernetes digest: 3b8dfd52b42b32c54303f3a7c5c024ab85fdb1e2cf2b9b3acd913ee6f3b7bb38 name: cse @@ -95,7 +105,7 @@ entries: version: 0.8.0 - apiVersion: v2 appVersion: v5.7.3 - created: "2024-12-12T10:23:40.423198-06:00" + created: "2025-02-19T08:50:59.932045-05:00" description: A Helm chart for Kubernetes digest: 3db368ed7efc3f21e7d9f310981a16022f50dbe251f0de27e749741ca7ee405c name: cse @@ -105,7 +115,7 @@ entries: version: 0.7.13 - apiVersion: v2 appVersion: v5.7.3 - created: "2024-12-12T10:23:40.422683-06:00" + created: "2025-02-19T08:50:59.931519-05:00" description: A Helm chart for Kubernetes digest: 5ceeae9499d1d10675898a63d98cfecfa5699f6868bf7c76f0215196a6e15596 name: cse @@ -115,7 +125,7 @@ entries: version: 0.7.12 - apiVersion: v2 appVersion: v5.7.3 - created: "2024-12-12T10:23:40.422174-06:00" + created: "2025-02-19T08:50:59.931018-05:00" description: A Helm chart for Kubernetes digest: cfb101c7db9a19a416e376396e0c68b2767adfb163b044179cc3f520dee8a038 name: cse @@ -125,7 +135,7 @@ entries: version: 0.7.11 - apiVersion: v2 appVersion: v5.7.1 - created: "2024-12-12T10:23:40.421784-06:00" + created: "2025-02-19T08:50:59.93039-05:00" description: A Helm chart for Kubernetes digest: 6ed78a229dd39fe38948a34aa103af20ed086c53ca09d373c60cc88bcfd9eb4f name: cse @@ -136,7 +146,7 @@ entries: gateway: - apiVersion: v2 appVersion: v2.54.0 - created: "2024-12-12T10:23:40.43176-06:00" + created: "2025-02-19T08:50:59.940053-05:00" description: A Helm chart for Kubernetes digest: 88d907263a2b71bb57615a28587b522fde50b3aeb5afdb641fa2546a3da10936 name: gateway @@ -146,7 +156,7 @@ entries: version: 2.3.0 - apiVersion: v2 appVersion: v2.53.0 - created: "2024-12-12T10:23:40.430692-06:00" + created: "2025-02-19T08:50:59.938875-05:00" description: A Helm chart for Kubernetes digest: ab3ce67d9f250dea99d4bbe6dfbf61c508590bf0a8f0dc47cc523a202910eea4 name: gateway @@ -156,7 +166,7 @@ entries: version: 2.2.2 - apiVersion: v2 appVersion: v2.52.1 - created: "2024-12-12T10:23:40.429305-06:00" + created: "2025-02-19T08:50:59.938196-05:00" description: A Helm chart for Kubernetes digest: d52a853f608ce066f90d24e91940472c6b8af81748fb95be7550912f3a284aec name: gateway @@ -166,7 +176,7 @@ entries: version: 2.2.1 - apiVersion: v2 appVersion: v2.52.0 - created: "2024-12-12T10:23:40.428587-06:00" + created: "2025-02-19T08:50:59.937541-05:00" description: A Helm chart for Kubernetes digest: ce40f6ef50faf2d42c4f9e3999b58bf83765030ac349b5a1d778efbd0bb09e82 name: gateway @@ -176,7 +186,7 @@ entries: version: 2.2.0 - apiVersion: v2 appVersion: v2.51.0 - created: "2024-12-12T10:23:40.427904-06:00" + created: "2025-02-19T08:50:59.936903-05:00" description: A Helm chart for Kubernetes digest: da64a6563a86ab2ce467565f32d82b2ca31d4cd167b4f492c976bdbc3ce40374 name: gateway @@ -186,7 +196,7 @@ entries: version: 2.1.6 - apiVersion: v2 appVersion: v2.50.0 - created: "2024-12-12T10:23:40.427103-06:00" + created: "2025-02-19T08:50:59.936271-05:00" description: A Helm chart for Kubernetes digest: 3a81c4ea628605286d30969297b1b6ef40121fa3e39a2068a6b044a135ad462d name: gateway @@ -196,7 +206,7 @@ entries: version: 2.1.5 - apiVersion: v2 appVersion: v2.48.0 - created: "2024-12-12T10:23:40.426414-06:00" + created: "2025-02-19T08:50:59.935496-05:00" description: A Helm chart for Kubernetes digest: c2bb5f4c97adbdc8f5e1ca7c303e631d633456c35395467ddb20d6ecf6dce210 name: gateway @@ -207,7 +217,7 @@ entries: o365-abac: - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.432947-06:00" + created: "2025-02-19T08:50:59.941241-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -221,7 +231,7 @@ entries: version: 0.2.0 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.432391-06:00" + created: "2025-02-19T08:50:59.940671-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -236,7 +246,7 @@ entries: platform: - apiVersion: v2 appVersion: 0.1.6 - created: "2024-12-12T10:23:40.505884-06:00" + created: "2025-02-19T08:51:00.024258-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -308,7 +318,7 @@ entries: version: 0.4.1 - apiVersion: v2 appVersion: 0.1.5 - created: "2024-12-12T10:23:40.501059-06:00" + created: "2025-02-19T08:51:00.018731-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -380,7 +390,7 @@ entries: version: 0.4.0 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.496467-06:00" + created: "2025-02-19T08:51:00.013173-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -452,7 +462,7 @@ entries: version: 0.3.9 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.491585-06:00" + created: "2025-02-19T08:51:00.007934-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -524,7 +534,7 @@ entries: version: 0.3.7 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.486428-06:00" + created: "2025-02-19T08:51:00.002556-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -596,7 +606,7 @@ entries: version: 0.3.6 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.481054-06:00" + created: "2025-02-19T08:50:59.996992-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -668,7 +678,7 @@ entries: version: 0.3.5 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.476396-06:00" + created: "2025-02-19T08:50:59.991511-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -740,7 +750,7 @@ entries: version: 0.3.4 - apiVersion: v2 appVersion: 0.1.4 - created: "2024-12-12T10:23:40.471795-06:00" + created: "2025-02-19T08:50:59.986088-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -812,7 +822,7 @@ entries: version: 0.3.3 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.466517-06:00" + created: "2025-02-19T08:50:59.980271-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -884,7 +894,7 @@ entries: version: 0.3.2 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.461153-06:00" + created: "2025-02-19T08:50:59.974756-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -956,7 +966,7 @@ entries: version: 0.3.1 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.456603-06:00" + created: "2025-02-19T08:50:59.969624-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -1028,7 +1038,7 @@ entries: version: 0.3.0 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.451871-06:00" + created: "2025-02-19T08:50:59.963796-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -1093,7 +1103,7 @@ entries: version: 0.2.2 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.446981-06:00" + created: "2025-02-19T08:50:59.958165-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -1158,7 +1168,7 @@ entries: version: 0.2.1 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.442733-06:00" + created: "2025-02-19T08:50:59.952578-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -1223,7 +1233,7 @@ entries: version: 0.2.0 - apiVersion: v2 appVersion: 0.1.3 - created: "2024-12-12T10:23:40.438106-06:00" + created: "2025-02-19T08:50:59.947164-05:00" dependencies: - condition: abacus.enabled name: abacus @@ -1289,7 +1299,7 @@ entries: platform-embedded-keycloak: - apiVersion: v2 appVersion: 0.1.2 - created: "2024-12-12T10:23:40.513723-06:00" + created: "2025-02-19T08:51:00.033704-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1307,7 +1317,7 @@ entries: version: 0.1.9 - apiVersion: v2 appVersion: 0.1.1 - created: "2024-12-12T10:23:40.512357-06:00" + created: "2025-02-19T08:51:00.032154-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1325,7 +1335,7 @@ entries: version: 0.1.8 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.510921-06:00" + created: "2025-02-19T08:51:00.030761-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1343,7 +1353,7 @@ entries: version: 0.1.7 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.509644-06:00" + created: "2025-02-19T08:51:00.028871-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1361,7 +1371,7 @@ entries: version: 0.1.6 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.508439-06:00" + created: "2025-02-19T08:51:00.027286-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1379,7 +1389,7 @@ entries: version: 0.1.5 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.507286-06:00" + created: "2025-02-19T08:51:00.025918-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1398,7 +1408,7 @@ entries: platform-embedded-postgresql: - apiVersion: v2 appVersion: 0.3.0 - created: "2024-12-12T10:23:40.519159-06:00" + created: "2025-02-19T08:51:00.039865-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1416,7 +1426,7 @@ entries: version: 0.3.0 - apiVersion: v2 appVersion: 0.2.0 - created: "2024-12-12T10:23:40.516513-06:00" + created: "2025-02-19T08:51:00.037021-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1435,7 +1445,7 @@ entries: platform-keycloak-bootstrapper: - apiVersion: v2 appVersion: 0.1.2 - created: "2024-12-12T10:23:40.522637-06:00" + created: "2025-02-19T08:51:00.043382-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1455,7 +1465,7 @@ entries: version: 0.1.9 - apiVersion: v2 appVersion: 0.1.1 - created: "2024-12-12T10:23:40.521804-06:00" + created: "2025-02-19T08:51:00.042639-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1475,7 +1485,7 @@ entries: version: 0.1.8 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.521224-06:00" + created: "2025-02-19T08:51:00.04213-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1495,7 +1505,7 @@ entries: version: 0.1.7 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.520684-06:00" + created: "2025-02-19T08:51:00.041616-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1515,7 +1525,7 @@ entries: version: 0.1.6 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.520245-06:00" + created: "2025-02-19T08:51:00.041126-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1535,7 +1545,7 @@ entries: version: 0.1.5 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.519714-06:00" + created: "2025-02-19T08:51:00.040479-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1556,7 +1566,7 @@ entries: sharepoint: - apiVersion: v2 appVersion: 0.6.0 - created: "2024-12-12T10:23:40.526435-06:00" + created: "2025-02-19T08:51:00.047138-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1570,7 +1580,7 @@ entries: version: 0.6.0 - apiVersion: v2 appVersion: 0.5.0 - created: "2024-12-12T10:23:40.525798-06:00" + created: "2025-02-19T08:51:00.046503-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1584,7 +1594,7 @@ entries: version: 0.5.0 - apiVersion: v2 appVersion: 0.4.0 - created: "2024-12-12T10:23:40.525202-06:00" + created: "2025-02-19T08:51:00.045971-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1598,7 +1608,7 @@ entries: version: 0.4.0 - apiVersion: v2 appVersion: 0.3.0 - created: "2024-12-12T10:23:40.524527-06:00" + created: "2025-02-19T08:51:00.045421-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1612,7 +1622,7 @@ entries: version: 0.3.0 - apiVersion: v2 appVersion: 0.2.0 - created: "2024-12-12T10:23:40.523947-06:00" + created: "2025-02-19T08:51:00.044843-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1626,7 +1636,7 @@ entries: version: 0.2.0 - apiVersion: v2 appVersion: 0.1.0 - created: "2024-12-12T10:23:40.523343-06:00" + created: "2025-02-19T08:51:00.044162-05:00" dependencies: - name: common-lib repository: file://../common-lib @@ -1638,4 +1648,4 @@ entries: urls: - sharepoint-0.1.0.tgz version: 0.1.0 -generated: "2024-12-12T10:23:40.418169-06:00" +generated: "2025-02-19T08:50:59.924743-05:00"