Skip to content

Commit

Permalink
Update Core Library (#122)
Browse files Browse the repository at this point in the history
Nothing is affected by this, just switching to common libraries now to
set precedent.
  • Loading branch information
spjmurray authored Oct 3, 2024
1 parent 8666866 commit 688d239
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions charts/identity/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ description: A Helm chart for deploying Unikorn's IdP

type: application

version: v0.2.40-rc2
appVersion: v0.2.40-rc2
version: v0.2.40
appVersion: v0.2.40

icon: https://raw.githubusercontent.com/unikorn-cloud/assets/main/images/logos/dark-on-light/icon.png

dependencies:
- name: unikorn-common
version: v0.1.8
version: v0.1.13
repository: https://unikorn-cloud.github.io/helm-common
6 changes: 3 additions & 3 deletions charts/identity/templates/identity/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ spec:
- name: unikorn-identity
image: {{ include "unikorn.image" . }}
args:
- --namespace={{ .Release.Namespace }}
{{- include "unikorn.core.flags" . | nindent 8 }}
{{- include "unikorn.cors.flags" . | nindent 8 }}
{{- include "unikorn.otlp.flags" . | nindent 8 }}
- --host=https://{{ include "unikorn.identity.host" . }}
- --jose-tls-secret=unikorn-identity-jose-tls
- --refresh-token-duration={{ printf "%dh" (mul .Values.issuer.maxTokenDurationDays 24) }}
{{- include "unikorn.cors.flags" . | nindent 8 }}
{{- include "unikorn.otlp.flags" . | nindent 8 }}
ports:
- name: http
containerPort: 6080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ spec:
- name: unikorn-organization-controller
image: {{ include "unikorn.organizationControllerImage" . }}
args:
{{- include "unikorn.core.flags" . | nindent 8 }}
{{- include "unikorn.otlp.flags" . | nindent 8 }}
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ spec:
- name: unikorn-project-controller
image: {{ include "unikorn.projectControllerImage" . }}
args:
{{- include "unikorn.core.flags" . | nindent 8 }}
{{- include "unikorn.otlp.flags" . | nindent 8 }}
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.9.0
github.com/unikorn-cloud/core v0.1.71
github.com/unikorn-cloud/core v0.1.72
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/sdk v1.29.0
go.opentelemetry.io/otel/trace v1.29.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/ugorji/go/codec v1.2.12 h1:9LC83zGrHhuUA9l16C9AHXAqEV/2wBQ4nkvumAE65EE=
github.com/ugorji/go/codec v1.2.12/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg=
github.com/unikorn-cloud/core v0.1.71 h1:bWo7/kEv3X3oAvuxr3cUPDvFsm2gbfPyGGdIWyiXuyE=
github.com/unikorn-cloud/core v0.1.71/go.mod h1:7ilhT3GIRtBHl7/D+9wh4RB5gjC/5/ts/MT4WdpIT9M=
github.com/unikorn-cloud/core v0.1.72 h1:MvxIZOXeacolvVvS06stO+S4zxplxSz+LUL+8sz5dYc=
github.com/unikorn-cloud/core v0.1.72/go.mod h1:7ilhT3GIRtBHl7/D+9wh4RB5gjC/5/ts/MT4WdpIT9M=
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
github.com/xlab/treeprint v1.2.0 h1:HzHnuAF1plUN2zGlAFHbSQP2qJ0ZAD3XF5XD7OesXRQ=
Expand Down

0 comments on commit 688d239

Please sign in to comment.