-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version 1.7 -> 1.8 for CKF release 1.8 (#115)
- Bump for CKF 1.8 - Update manifests/templates - Introduce fileviewer image in config.yaml. - Introduce viewer-spec.yaml configMap. - Update integration tests to: - Test configMap gets created - Set raise_on_blocked=False to avoid flakiness due to kubeflow-dashboard going to Blocked early on. Closes #112
- Loading branch information
Showing
11 changed files
with
169 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ build/ | |
.tox/ | ||
__pycache__ | ||
*.charm | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
ops | ||
oci-image | ||
serialized-data-interface | ||
jinja2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Source: manifests/apps/volumes-web-app/upstream/base/viewer-spec.yaml | ||
# Note: the volumes-web-app allows expanding strings using ${VAR_NAME} | ||
# You may use any environment variable. This lets us e.g. specify images that can be modified using kustomize's image transformer. | ||
# Additionally, 'PVC_NAME', 'NAME' and 'NAMESPACE' are defined | ||
# Name of the pvc is set by the volumes web app | ||
pvc: $NAME | ||
podTemplate: | ||
containers: | ||
- name: main | ||
image: $VOLUME_VIEWER_IMAGE | ||
env: | ||
- name: FB_ADDRESS | ||
value: "0.0.0.0" | ||
- name: FB_PORT | ||
value: "8080" | ||
- name: FB_DATABASE | ||
value: /tmp/filebrowser.db | ||
- name: FB_NOAUTH | ||
value: "true" | ||
- name: FB_BASEURL | ||
value: /pvcviewers/$NAMESPACE/$NAME/ | ||
readinessProbe: | ||
tcpSocket: | ||
port: 8080 | ||
initialDelaySeconds: 2 | ||
periodSeconds: 10 | ||
# viewer-volume is provided automatically by the volumes web app | ||
volumeMounts: | ||
- name: viewer-volume | ||
mountPath: /data | ||
workingDir: /data | ||
serviceAccountName: default-editor | ||
networking: | ||
targetPort: 8080 | ||
basePrefix: "/pvcviewers" | ||
rewrite: "/" | ||
timeout: 30s | ||
rwoScheduling: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
viewer-spec.yaml: |- | ||
# Source: manifests/apps/volumes-web-app/upstream/base/viewer-spec.yaml | ||
# Note: the volumes-web-app allows expanding strings using ${VAR_NAME} | ||
# You may use any environment variable. This lets us e.g. specify images that can be modified using kustomize's image transformer. | ||
# Additionally, 'PVC_NAME', 'NAME' and 'NAMESPACE' are defined | ||
# Name of the pvc is set by the volumes web app | ||
pvc: $NAME | ||
podTemplate: | ||
containers: | ||
- name: main | ||
image: $VOLUME_VIEWER_IMAGE | ||
env: | ||
- name: FB_ADDRESS | ||
value: "0.0.0.0" | ||
- name: FB_PORT | ||
value: "8080" | ||
- name: FB_DATABASE | ||
value: /tmp/filebrowser.db | ||
- name: FB_NOAUTH | ||
value: "true" | ||
- name: FB_BASEURL | ||
value: /pvcviewers/$NAMESPACE/$NAME/ | ||
readinessProbe: | ||
tcpSocket: | ||
port: 8080 | ||
initialDelaySeconds: 2 | ||
periodSeconds: 10 | ||
# viewer-volume is provided automatically by the volumes web app | ||
volumeMounts: | ||
- name: viewer-volume | ||
mountPath: /data | ||
workingDir: /data | ||
serviceAccountName: default-editor | ||
networking: | ||
targetPort: 8080 | ||
basePrefix: "/pvcviewers" | ||
rewrite: "/" | ||
timeout: 30s | ||
rwoScheduling: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters