Last active
May 17, 2023 21:19
-
-
Save lamw/c9387e2e635f6e2831990e7540f3c434 to your computer and use it in GitHub Desktop.
Deploy vSAN Object Viewer Fling into K8s Cluster OR as vSphere Pod
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: vsan-object-viewer-fling | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: vsan-object-viewer-fling | |
template: | |
metadata: | |
labels: | |
app: vsan-object-viewer-fling | |
spec: | |
containers: | |
- name: vsan-object-viewer-fling | |
image: projects.registry.vmware.com/fling_vsan_objects_viewer/fling_vcmd:v1.5.7 | |
ports: | |
- containerPort: 80 | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: vsan-object-viewer-fling | |
spec: | |
type: LoadBalancer | |
ports: | |
- port: 3000 | |
targetPort: 80 | |
selector: | |
app: vsan-object-viewer-fling |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment