Skip to content

Commit

Permalink
Create Kubeflow cluster in kubeflow-releasing project; cluster named …
Browse files Browse the repository at this point in the history
…kf-releasing. (kubeflow#367)

* Create Kubeflow cluster in project: kf-releasing.

* This will be used for running cron jobs to periodically release our images.

Related to: kubeflow#366 create a v0.5 cluster for releasing.
Fix: kubeflow#43 setup IAP in release cluster.

* exclude release-infra from lint
  • Loading branch information
jlewi authored and k8s-ci-robot committed Apr 29, 2019
1 parent ef8696e commit 80fae57
Show file tree
Hide file tree
Showing 1,252 changed files with 1,696,424 additions and 0 deletions.
4 changes: 4 additions & 0 deletions release-infra/kf-releasing/.cache/master/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[flake8]
ignore = E111, E114
exclude = .git
max-complexity = 10
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# for https://mlbot.net
label-alias:
bug: 'kind/bug'
feature_request: 'improvement/enhancement'
question: 'community/question'
52 changes: 52 additions & 0 deletions release-infra/kf-releasing/.cache/master/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# pkg and bin directories currently contain build artifacts
# only so we exclude them.
bin/
vendor/

.vscode/

# Compiled python files.
*.pyc

# Emacs temporary files
*~

# Other temporary files
.DS_Store

# temporary files from emacs flymd-mode
flymd.*

# vim .swp files
*~
*.swp
*.swo

# Files created by Gogland IDE
.idea/

# Exclude wheel files for now.
# The only wheel file is the TF wheel one which is quite large.
# We don't want to check that into source control because it could be
# quite large.
*.whl

# Bazel files
**/bazel-*
# Examples egg
examples/tf_sample/tf_sample.egg-info/
examples/.ipynb_checkpoints/

**/.ipynb_checkpoints

# env.sh generated by kfctl.sh
**/env.sh

!testing/test-infra/vendor

# This is required for testing but we don't
# want to check it in right now.
components/gcp-click-to-deploy/src/user_config/**

# This is generated by bootstrap
**/reg_tmp
Loading

0 comments on commit 80fae57

Please sign in to comment.