Skip to content

Commit

Permalink
tensorboard-controller: fix binding issue (kubeflow/kubeflow#5925)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidspek authored and Adembc committed Jun 22, 2024
1 parent 7c45926 commit 46a89fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.2.5
creationTimestamp: null
name: tensorboards.tensorboard.kubeflow.org
spec:
Expand All @@ -12,7 +14,7 @@ spec:
listKind: TensorboardList
plural: tensorboards
singular: tensorboard
scope: ""
scope: Namespaced
subresources:
status: {}
validation:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ func generateDeployment(tb *tensorboardv1alpha1.Tensorboard, log logr.Logger, r
WorkingDir: "/",
Args: []string{
"--logdir=" + mountpath,
"--bind_all",
},
Ports: []corev1.ContainerPort{
{
Expand Down

0 comments on commit 46a89fe

Please sign in to comment.