Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
PYTHON_VERSION: 3.13
POSTGRES_PASSWORD: postgres
UV_VERSION: 0.5.3
TOPAZ_VERSION: 0.32.36
TOPAZ_VERSION: 0.32.59

jobs:
lint:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

# python
**/__pycache__/
**/.dmypy.json
.venv-path

# env
Expand Down
2 changes: 1 addition & 1 deletion charts/aserto-lib/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: library
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
10 changes: 8 additions & 2 deletions charts/aserto-lib/templates/_client.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
{{- if .noVerify | and .noTLS -}}
{{- fail "'noVerify' and 'noTLS' are mutually exclusive." }}
{{- end }}
{{- if .skipTLSVerification | and .noTLS -}}
{{- fail "'skipTLSVerification' and 'noTLS' are mutually exclusive." }}
{{- end }}
{{- if .noTLS }}
no_tls: true
{{- else if .skipVerify }}
{{- else if .noVerify | or .skipTLSVerification }}
insecure : true
{{- else if .caCertSecret }}
{{- else if .caCertSecret | or .caCert }}
ca_cert_path: /{{ .certVolume }}/ca.crt
{{- end }}
{{- if .noProxy }}
no_proxy: true
{{- end }}
{{- end }}

{{- define "aserto-lib.controllerClient" -}}
Expand Down
22 changes: 11 additions & 11 deletions charts/aserto/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
version: 0.2.1
- name: authorizer
repository: file://../authorizer
version: 0.2.0
version: 0.2.1
- name: controller
repository: file://../controller
version: 0.0.1
version: 0.0.2
- name: console
repository: file://../console
version: 0.1.7
version: 0.1.8
- name: directory
repository: file://../directory
version: 0.2.0
version: 0.2.1
- name: discovery
repository: file://../discovery
version: 0.2.0
version: 0.2.1
- name: multi-tenant-scim
repository: file://../multi-tenant-scim
version: 0.0.1
version: 0.0.2
- name: registry-proxy
repository: file://../registry-proxy
version: 0.1.0
version: 0.1.1
- name: scim
repository: file://../scim
version: 0.2.0
digest: sha256:e933b20c19dda16e7ef644de07eed18b2e214f1f89a8dbfe9fdeac2262b5ca64
generated: "2025-03-28T12:23:20.763001-04:00"
version: 0.2.1
digest: sha256:f57ef96b77dd43cd56145479dc82fe7f151d4e0c55168d955d4a5e83bb667031
generated: "2025-04-16T14:09:33.544401-04:00"
20 changes: 10 additions & 10 deletions charts/aserto/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,35 +31,35 @@ appVersion: "0.1.0"

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
- name: authorizer
version: 0.2.0
version: 0.2.1
repository: file://../authorizer
condition: authorizer.enabled
- name: controller
version: 0.0.1
version: 0.0.2
repository: file://../controller
- name: console
version: 0.1.7
version: 0.1.8
repository: file://../console
condition: console.enabled
- name: directory
version: 0.2.0
version: 0.2.1
repository: file://../directory
- name: discovery
version: 0.2.0
version: 0.2.1
repository: file://../discovery
condition: discovery.enabled
- name: multi-tenant-scim
version: 0.0.1
version: 0.0.2
repository: file://../multi-tenant-scim
condition: multi-tenant-scim.enabled
- name: registry-proxy
version: 0.1.0
version: 0.1.1
repository: file://../registry-proxy
condition: registry-proxy.enabled
- name: scim
version: 0.2.0
version: 0.2.1
repository: file://../scim
condition: scim.enabled
6 changes: 3 additions & 3 deletions charts/authorizer/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:27:37.668307-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.019477-04:00"
4 changes: 2 additions & 2 deletions charts/authorizer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.16.1

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/console/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:27:43.142209-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.201231-04:00"
4 changes: 2 additions & 2 deletions charts/console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.7
version: 0.1.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.2.8

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/controller/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:27:47.329975-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.384657-04:00"
4 changes: 2 additions & 2 deletions charts/controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1
version: 0.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.34.5

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/directory/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:27:51.069954-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.568517-04:00"
4 changes: 2 additions & 2 deletions charts/directory/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.34.5

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/discovery/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:27:54.42612-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.750253-04:00"
4 changes: 2 additions & 2 deletions charts/discovery/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.2.0

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/multi-tenant-scim/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:28:02.278561-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:47.934847-04:00"
4 changes: 2 additions & 2 deletions charts/multi-tenant-scim/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1
version: 0.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: "0.0.1"

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/registry-proxy/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:28:09.295919-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:48.115397-04:00"
4 changes: 2 additions & 2 deletions charts/registry-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: "0.0.4"

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/scim/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:28:15.15139-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T14:07:48.296161-04:00"
4 changes: 2 additions & 2 deletions charts/scim/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -31,5 +31,5 @@ appVersion: 0.1.0

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
6 changes: 3 additions & 3 deletions charts/topaz/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: aserto-lib
repository: file://../aserto-lib
version: 0.2.0
digest: sha256:e847ea16d4c0c170655af988461152ab61eed5372f1639769dd7d198346da272
generated: "2025-03-28T11:17:23.844098-04:00"
version: 0.2.1
digest: sha256:83c950a4ee60c07dbc8e045f6645365ca35eced4f1aa329f51c8e2de1de28f93
generated: "2025-04-16T13:19:21.494833-04:00"
6 changes: 3 additions & 3 deletions charts/topaz/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.4
version: 0.2.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.32.56
appVersion: 0.32.59

dependencies:
- name: aserto-lib
version: 0.2.0
version: 0.2.1
repository: file://../aserto-lib
Loading