Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Update config file names (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardsliu committed Feb 14, 2020
1 parent 24b60e8 commit 94c35cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions cmd/kfctl/cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ var err error

// KFDef example configs to be printed out from apply --help
const (
arritkoConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v0.7-branch/kfdef/kfctl_existing_arrikto.0.7.0.yaml"
awsConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v0.7-branch/kfdef/kfctl_aws.0.7.0.yaml"
gcpConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v0.7-branch/kfdef/kfctl_gcp_iap.0.7.0.yaml"
k8sConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v0.7-branch/kfdef/kfctl_k8s_istio.0.7.0.yaml"
awsConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_aws.v1.0.0.yaml"
gcpConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_gcp_iap.v1.0.0.yaml"
istioDexConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_istio_dex.v1.0.0.yaml"
k8sConfig = "https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_k8s_istio.v1.0.0.yaml"
)

// applyCmd represents the apply command
Expand Down Expand Up @@ -100,7 +100,7 @@ func init() {
export CONFIG=./kfctl_gcp_iap.yaml
or a URL:
export CONFIG=`+gcpConfig+`
export CONFIG=`+arritkoConfig+`
export CONFIG=`+istioDexConfig+`
export CONFIG=`+awsConfig+`
export CONFIG=`+k8sConfig+`
kfctl apply -V --file=${CONFIG}`)
Expand Down
2 changes: 1 addition & 1 deletion cmd/kfctl/cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func init() {
export CONFIG=./kfctl_gcp_iap.yaml
or a URL:
export CONFIG=`+gcpConfig+`
export CONFIG=`+arritkoConfig+`
export CONFIG=`+istioDexConfig+`
export CONFIG=`+awsConfig+`
export CONFIG=`+k8sConfig+`
kfctl build -V --file=${CONFIG}`)
Expand Down
2 changes: 1 addition & 1 deletion pkg/kfapp/kustomize/kustomize.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (kustomize *kustomize) Apply(resources kftypesv3.ResourceEnum) error {
Message: fmt.Sprintf("can not encode component %v as yaml Error %v", app.Name, err),
}
}

// TODO(https://github.com/kubeflow/manifests/issues/806): Bump the timeout because cert-manager takes
// a long time to start. Any application that needs to create a certificate will fail because it won't
// be able to create certificates if cert-manager is unavailable. We should try to identify Permanent Errors
Expand Down

0 comments on commit 94c35cf

Please sign in to comment.