diff --git a/clusters/cl01tl/applications/outline/values.yaml b/clusters/cl01tl/applications/outline/values.yaml index 1ad170c29..c0b3aeb64 100644 --- a/clusters/cl01tl/applications/outline/values.yaml +++ b/clusters/cl01tl/applications/outline/values.yaml @@ -86,8 +86,6 @@ outline: key: BUCKET_NAME - name: AWS_S3_UPLOAD_BUCKET_URL value: https://objects.alexlebens.dev - - name: AWS_S3_ACCELERATE_URL - value: https://objects.alexlebens.dev - name: AWS_S3_FORCE_PATH_STYLE value: true - name: AWS_S3_ACL diff --git a/clusters/cl01tl/storage/rook-ceph/templates/http-route.yaml b/clusters/cl01tl/storage/rook-ceph/templates/http-route.yaml index f5e9c957c..c2a115ff7 100644 --- a/clusters/cl01tl/storage/rook-ceph/templates/http-route.yaml +++ b/clusters/cl01tl/storage/rook-ceph/templates/http-route.yaml @@ -26,3 +26,33 @@ spec: name: rook-ceph-mgr-dashboard port: 7000 weight: 100 + +--- +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: http-route-rook-ceph-rgw + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: http-route-rook-ceph-rgw + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/part-of: {{ .Release.Name }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: traefik-gateway + namespace: traefik + hostnames: + - objects.alexlebens.net + rules: + - matches: + - path: + type: PathPrefix + value: / + backendRefs: + - group: '' + kind: Service + name: rook-ceph-rgw-ceph-objectstore + port: 80 + weight: 100