Commit Graph

311 Commits (54f94000065d186b05fe6363d090fb1923b9b3e5)

Author SHA1 Message Date
Niels de Vos 3c3b7368f0 Add storage-provisioner-gluster addon
With this addon dynamic provisioning based on Gluster can be enabled:

    $ minikube addons enable storage-provisioner-gluster

This will deploy several pods in a new 'storage-gluster' namespace:

 - glusterfs, storage service with a 10GB sparse /srv/fake-disk.img
 - heketi, a smart Gluster volume manager
 - glusterfile-provisioner, external-storage provisioner

In addition, the StorageClass 'glusterfile' will be created. It is
currently not configured as default StorageClass, so PVCs need to refer
to the new StorageClass.
2019-01-09 20:04:21 +01:00
Martynas Pumputis d982c4bf74 Do not include the default CNI config by default
Previously, minikube has been shipped with the default CNI config
(/etc/cni/net.d/k8s.conf) in its rootfs. This complicated a lot
when using a custom CNI plugin, as the default config was picked
by kubelet before the custom CNI plugin has installed its own CNI
config. So, the end result was that some Pods were attached to a
network defined in the default config, and some got managed by
the custom plugin.

This commit introduces the flag "--enable-default-cni" to
"minikube start" to trigger the provisioning of the default CNI
config.

Signed-off-by: Martynas Pumputis <m@lambda.lt>
2019-01-03 09:23:29 +01:00
Jason Cwik 9dd74f7cf0 Fix for Minikube #3495
Change the policy for the minikube-hostpath storage class addon from
Reconcile to EnsureExists. When it's set to reconcile, it's impossible
to change the default storage class in Minikube because it will keep
setting the minikube-hostpath storageclass to default.

Ported from kubernetes/kubernetes#66235
2018-12-28 20:36:24 -06:00
Balint Pato ed7031cbb3
Merge branch 'master' into logviewer-addon-pr7 2018-12-19 17:14:09 -08:00
Jeffrey Sica 8f1b4d2882 bump dashboard version to v1.10.1 (#3466) 2018-12-19 16:38:52 -08:00
priyawadhwa 1514511b7a Change restart policy on gvisor pod (#3445)
* Change restart policy on gvisor pod

Change the restart policy on the gvisor pod to Always. This way, if a
user runs

minikube addons enable gvisor
minikube stop
minikube start

when the addon manager tries to restart the gvisor pod, it will be
restarted and gvisor will start running automatically. This PR also adds an
integration test for this functionality.

* Test stop and start

* Revert test to delete

Revert test to delete for now, for some reason "stop" and then "start"
is failing both locally and in Jenkins for VirtualBox with a "panic test
timed out after 30 min" error
2018-12-11 18:39:57 -08:00
priyawadhwa 8f128a7d10 Enable gvisor addon in minikube (#3399)
This PR adds the code for enabling gvisor in minikube. It adds the pod
that will run when the addon is enabled, and the code for the image
which will run when this happens.

When gvisor is enabled, the pod will download runsc and the
gvisor-containerd-shim. It will replace the containerd config.toml and
restart containerd.

When gvisor is disabled, the pod will be deleted by the addon manager.
This will trigger a pre-stop hook which will revert the config.toml to
it's original state and restart containerd.
2018-12-07 15:27:22 -08:00
Thomas Strömberg bc67a32a7b
Merge pull request #3332 from dlorenc/rmaddons
Remove both the CoreDNS and KubeDNS addons. Let Kubeadm install the c…
2018-12-03 17:15:06 -08:00
ivans3 b43b8ccd9d Initial commit of logviewer addon 2018-12-02 12:58:06 -08:00
Fernando Diaz 49f038a902 Update Ingress-Nginx to 0.21 (#3365)
Updates the Ingress-Nginx Addon to version 0.21.
2018-11-26 14:59:53 -08:00
dlorenc 2091f8c27a
Remove both the CoreDNS and KubeDNS addons. Let Kubeadm install the correct DNS addon. 2018-11-16 14:54:44 -08:00
Thomas Stromberg dc6d1bab8d Merge branch 'master' into dashboard_on_demand 2018-10-04 13:38:49 -07:00
Fernando Diaz 2ebdf5e1eb Enhance the Ingress Controller Addon (#3099)
- Updates Ingress-Controller Version to 0.19.0
- Adds Service Account for Ingress-Controller
- Adds Support for Prometheus
- Fixes bug with TCP/UDP ConfigMaps not Loading
- Adds more resource limits to default-backend
- Use new ingress class name
- Use app.kubernetes.io/xxxxxxxxxxx labels
2018-10-04 16:13:53 -04:00
Thomas Stromberg ca9ca6f29b Switch the label back to k8s-app instead of app for minikube compatibility. 2018-10-03 12:57:55 -07:00
Thomas Stromberg 21776a09b5 Fix service port indentation. 2018-10-02 22:31:26 -07:00
Thomas Stromberg df54c6a5b4 Use "kubectl proxy" instead of a NodePort to expose the dashboard.
This provides an additional level of security, by enforcing host checking, applying port randomization, and requiring explicit user intent to expose the service to the host.
2018-10-02 22:25:45 -07:00
Thomas Strömberg 8e99e283c2
Merge pull request #3123 from oilbeater/update-ingress
update nginx ingress controller version to 0.19.0
2018-10-01 16:45:33 -07:00
Jeffrey Sica 9e586a215f update dashboard version 2018-09-24 12:24:08 -07:00
oilbeater 7120bdac36 update nginx ingress controller version to 0.19.0 2018-09-10 14:43:19 +08:00
Sandeep Rajan 82e991456e update 2018-09-04 05:50:48 -05:00
Bennett Ellis e13ed7a1ae Add env variable for default ES_JAVA_OPTS
The default configuration here for ES_JAVA_OPTS will pretty much always fail as is, making this addon useless and broken unless modified. Since this is deployed automatically when addon is enabled, it seems like providing a value that works is the best option here, otherwise in a minikube the pod(s) deployed will continually fail to start.
2018-09-04 05:48:38 -05:00
Sandeep Rajan bda086d34c update deployment 2018-08-16 09:29:52 -07:00
Aaron Prindle a4606583e4 remove all localkube references from code, change /var/lib/localkube to /var/lib/minikube 2018-07-24 12:36:42 -07:00
Rohit Agarwal 05f86aacfc Bump minikube-nvidia-driver-installer version to make it work again.
This incorporates the fix from GoogleCloudPlatform/container-engine-accelerators#85.

That bug got exposed when we switched the kernel version from 4.16.14 to 4.15.
2018-07-20 07:56:29 -07:00
Rohit Agarwal 96079478a7 Add nvidia-driver-installer and nvidia-gpu-device-plugin addons. 2018-07-08 22:25:48 -07:00
Manuel de Brito Fontes 3e267fd567 Update nginx ingress controller to 0.16.2 2018-06-26 09:46:14 -07:00
Sandeep Rajan 6cc9a85f68 coredns in gcr.io 2018-06-05 08:13:18 -07:00
ruicao 4e63f34e26 Typo fix: permissable -> permissible 2018-06-01 09:11:42 -07:00
Sandeep Rajan 4bab1946d9 update manifest 2018-05-30 08:42:09 -07:00
kairen 902e49688f Bump the heapster to v1.5.3 2018-05-21 08:06:01 -07:00
maiksensi 3e0faef9a5 Use correct link for available configmap options
Trivial change to point to the correct URL.
2018-05-17 13:28:03 -07:00
Manuel de Brito Fontes a12479fc89 Switch ingress replication controller to deployment 2018-05-07 14:02:39 +02:00
Manuel de Brito Fontes 6eef6a31e2 Update nginx ingress controller to 0.14.0 2018-05-03 12:07:20 +02:00
Rohit Agarwal 34bb9bb6b8 Fix inconsistent version.
This was causing errors.

https://groups.google.com/d/msg/kubernetes-users/gLGXC6EfxzQ/zwgBITNPCQAJ
2018-04-12 09:02:14 -07:00
Tim Hockin b27a989c86 Pass 2: k8s GCR vanity URL 2018-04-09 08:36:59 -07:00
Matt Rickard 3932663f3b
Merge pull request #2657 from dlorenc/1.10
Update to Kubernetes 1.10
2018-03-28 13:11:24 -07:00
dlorenc dcb5c2cc50 Manual changes for 1.10.
localkube now has to be non-statically compiled :(
2018-03-27 23:13:34 -07:00
oilbeater fe881662de Update nginx-ingress version to 0.12.0
The new version resolve some rewrite, session-affinity and templates bugs and will fix https://github.com/kubernetes/minikube/issues/2206
2018-03-26 19:37:26 -07:00
Lena Brüder d8d4f613e4
note about where to find more docs 2018-03-08 10:20:33 +01:00
Lena Brüder cbb97958eb
deactivated hsts by default
HSTS has been deactivated explicitly by default for the ingress controller in minikube, because it causes trouble for local development. Minikube is intended for local development, so this feature should not be turned on by default.
2018-03-07 10:02:44 +01:00
Sandeep Rajan a5afebdc40 update manifest 2018-03-06 07:42:45 -08:00
David Muckle adb30393d1 Add metrics-server as an addon 2018-02-21 15:33:27 -05:00
Matt Rickard 4bab147ca0 ingress: ensure cm exists, do not reconcile 2018-02-12 09:05:26 -08:00
Steve Sloka 4d060d3bdb Bump registry-creds version 2018-02-07 20:09:20 -08:00
Colin Hoglund 479ca10c75 allow storage-provisioner to be disabled 2018-01-29 14:46:27 -05:00
Colin Hoglund 249839378b create ServiceAccount and ClusterRoleBinding for storage-provisioner 2018-01-29 14:04:16 -05:00
Joe Heck 9047262565 adding memory request and limit to efk addon
- running efk with minikube default memory (2048Mi) was running the set
   out of resources. Seemed like it should at least be aware it didn't
   have sufficient resources for the elasticSearch portion, so adding a
   request and limit based on cAdvisor observation of a running system.
2018-01-29 05:59:41 -08:00
kairen 53d6e9d7a2 Change freshpod from Deployment to RC 2018-01-13 02:14:26 +08:00
kairen 250d602085 Add freshpod as a new addon 2018-01-12 22:57:32 +08:00
kairen 08f4677511 Change kubernetes-dashboard from RC to Deployment 2018-01-10 02:15:07 +08:00
kairen b1091853cc Bump kube-addon-manager to v6.5 2018-01-08 14:06:29 -08:00
Sandeep Rajan 36fe30865e manifest update 2018-01-03 16:17:41 +05:30
Tim Hockin 51ee9a1423 Convert registry to k8s.gcr.io 2017-12-22 09:55:16 -08:00
dlorenc 7550fcd6e0 Make the provisioner use a hostPath. 2017-12-20 14:41:56 -08:00
kairen 4d2840278f Bump heapster to v1.5.0 2017-12-19 08:14:31 -08:00
Marcin Maciaszczyk 8b1eeedfed Update dashboard-rc.yaml 2017-12-19 08:14:11 -08:00
ijl 25c7629ceb crio-bin v1.8.4 2017-12-14 08:54:36 -08:00
kairen 797925f183 Update ingress controller, and fix integration test 2017-12-12 21:43:39 -08:00
Jimmy Leger e784db9ccd Added kube-system/(tcp|udp)-services configmaps for nginx ingress controller 2017-12-11 08:25:29 -08:00
kairen 874b47b10f Bump Heapster version to v1.5.0-beta.2 2017-11-30 14:49:01 -08:00
Marcin Maciaszczyk 653196dbff Update Dashboard addon to v1.8.0 2017-11-27 19:42:45 -08:00
Matt Rickard f7f77e3d85
Merge pull request #2179 from rajansandeep/manifestupdate
Update CoreDNS manifest
2017-11-16 08:52:51 -08:00
Matt Rickard 43d8424c87
Merge pull request #2182 from kairen/update-addon-2
[addon] Update heapster to v1.5.0
2017-11-16 08:52:28 -08:00
Manuel de Brito Fontes 3521efb610 Update nginx-ingress-controller to 0.9-beta.17 2017-11-12 10:47:49 -03:00
kairen 7066946a59 [addon] Update heapster to v1.5.0 2017-11-10 17:02:49 +08:00
Matt Rickard 65d11b13d7
Merge pull request #2168 from dlorenc/storfix
More storage provisioner fixes.
2017-11-09 10:55:27 -08:00
Sandeep Rajan 10d2b02b74 Update coredns manifest 2017-11-09 12:43:07 -05:00
dlorenc 6e0710b425
Add a separate tag and bump the version. 2017-11-08 11:26:32 -08:00
Matt Rickard 6f2c75a04b
Merge pull request #2172 from maciaszczykm/kd-v1.7.1
Update Dashboard version to 1.7.1
2017-11-08 10:22:21 -08:00
Marcin Maciaszczyk b1ab7553e3 Update Dashboard version to 1.7.1 2017-11-08 09:38:56 +01:00
kairen 38d108446a Bump ingress to 0.9.0-beta.16, and add minikube-addons endpoint 2017-11-07 09:51:32 +08:00
Matt Rickard e73844c303
Merge pull request #2147 from kairen/add-efk
[addons] Add addon support for EFK logging
2017-11-02 10:33:05 -07:00
kairen 8bcd313d55 Update all yaml license info 2017-11-02 17:04:03 +08:00
kairen c91e308a9a Update efk kibana yaml file 2017-11-02 17:02:31 +08:00
Matt Rickard f368ac4999
Merge pull request #2137 from priyawadhwa/storage-provisioner-as-pod
Run storage provisioner as pod
2017-11-01 14:00:57 -07:00
Priya Wadhwa c342ed4d57 Added storage prov deps to Makefile and rewrote main file 2017-11-01 10:54:17 -07:00
kairen c549bc61bf Add addon support for EFK logging 2017-11-02 01:00:38 +08:00
Fabian Deutsch fb4c312f7d
ingress: Add support for tcp and udp services 2017-11-01 16:38:18 +01:00
Matt Rickard fc105d3328 Update kube-dns service to use 10.96.0.0/24 2017-10-31 10:40:06 -07:00
Priya Wadhwa 7098431c6a Small changes 2017-10-30 13:52:45 -07:00
Priya Wadhwa 71b38d1e4e Tests passing with storage-provisioner in addons 2017-10-30 13:45:31 -07:00
zouyee a34e91d54c [addon/coreos] bump rbac and deployment version 2017-10-25 08:13:52 -07:00
Matt Rickard 3acb2a18a9 Merge pull request #2011 from zouyee/dashboard
update kubernetes-dashboard image version to v1.7.0
2017-10-09 15:00:40 -07:00
Matt Rickard b4de04fac8 Merge pull request #1995 from rajansandeep/coredns
Adding CoreDNS as an addon
2017-10-09 14:59:34 -07:00
Matt Rickard e4fa2f31e5 Merge pull request #2035 from kairen/update-addon
[addons] Update heapster monitoring image version and resource
2017-10-09 14:58:50 -07:00
kairen a1d69920fd [addons] Update ingress rc image version to latest release 2017-10-07 21:54:55 +08:00
kairen 6753da85f1 [heapster addons] Update image version to latest version 2017-10-06 15:35:35 +08:00
Manuel de Brito Fontes 3921adbdd7 Update nginx ingress controller version to 0.9-beta.14 2017-10-03 08:29:25 -03:00
dlorenc 18de99b793 Update dnsmasq to 1.14.5. 2017-10-02 10:32:36 -07:00
zouyee bac58c4434 update kubernetes-dashboard image version to v1.7.0 2017-09-27 15:39:24 +08:00
Sandeep Rajan 98b7ec62ba minor fixes and added service CIDR 2017-09-21 11:19:39 -04:00
Sandeep Rajan eba63d86cd adding coredns as an addon 2017-09-21 10:28:45 -04:00
Matt Rickard f5e95e9223 Merge pull request #1911 from corlettb/master
Adding optional aws_session_token to configuration options for registry-creds
2017-09-08 11:06:29 -07:00
Matt Rickard 0e6e930a7d Merge pull request #1881 from r2d4/cache-images-4-minikube
Cache images in minikube
2017-09-06 15:43:04 -07:00
Ben Corlett a2d8b1b434 - Passthrough aws region to registry-creds plugin
- Add optional aws_session_token to configuration options for registry-creds for aws sts credentials
2017-09-06 11:01:46 +01:00
Matt Rickard e7aa059b6a Set imagePullPolicy:IfNotPresent on kube-dns 2017-08-30 22:36:21 -07:00
Manuel de Brito Fontes e7cd5aba54 Update nginx ingress controller version to 0.9-beta.12 2017-08-30 18:24:48 -03:00
Ryuzo Yamamoto 6daef73f8d Recover "awsregion" parameter for registry-cred addon
It seems the "awsregion" parameter was removed in 8ba6f47876 (#1711) unexpectedly.
It caused making incorrect awsecr-cred with unexpected aws region.
2017-08-25 09:39:58 -04:00
Aaron Prindle db45c6e0da Fix mount syntax for insecure serving w/ none driver 2017-08-21 15:47:50 -07:00
dlorenc 2bd9f94220 Fix the none driver with insecure serving.
There's a race condition where the kubelet starts up before this directory
gets created. If you create a HostPath volume without a trailing / on a path
that doesn't exist, it looks like something treats it as a file instead of a
directory.
2017-08-14 09:42:09 -07:00
Arthur 88b68eabd7 Update dashboard-rc.yaml
Update labels to v1.6.3
2017-08-06 08:32:55 -07:00
zouyee f62161ec2d update dashboard image version 2017-07-31 17:50:17 -07:00
dlorenc 8837045970 Stop using insecure serving. 2017-07-26 14:38:57 -07:00
Aaron Prindle 29a7d7119a Merge pull request #1436 from Teddy-Schmitz/registry-creds-gcrurl
Add gcrurl env var to registry-creds addon deployment and configuration
2017-07-24 10:16:13 -07:00
Steve Sloka 8ba6f47876 Add additional config options for registry-creds addon / Bump version 2017-07-18 11:10:24 -04:00
Manuel de Brito Fontes 47b3ceedd6 Update nginx ingress controller version to 0.9-beta.10 2017-07-16 19:15:09 -04:00
Matt Rickard d94da6b644 Update kube-dns to 1.14.4 2017-07-13 09:19:46 -07:00
Matt Rickard 16c488d244 Update addon-manager to v6.4-beta.2 2017-07-13 09:19:46 -07:00
Manuel de Brito Fontes e7c9f3c6b7 Update nginx ingress controller version to 0.9-beta.10 2017-07-07 12:04:21 -04:00
Matthew Fisher 51cf8cf9a8 fix registry addon labels
In a last-minute fix, I accidentally changed the pod labels all to
the minikube add-on reconciliation mode label instead of the add-on
name. This is causing the registry service to be unable to forward
requests over to the pods due to mismatched label selectors.
2017-06-19 11:39:18 -07:00
Matthew Fisher 5e1db75db5 add registry addon
This addon installs a docker registry into the cluster.
2017-06-16 10:36:10 -07:00
Manuel de Brito Fontes cd81fbbbe1 Bump ingress to v0.9.0-beta.8 2017-06-14 14:42:25 -04:00
Matt Rickard bbef7353c6 Specifcy domains in dnsmasq configuration 2017-06-12 11:26:33 -07:00
Matt Rickard 94cb85f8cb Merge pull request #1513 from tdemaret/master
Fix Selector to use heapster, influxdb and grafana on Minikube
2017-06-08 10:36:19 -07:00
Thibaut Demaret c94f41fbf1 the last reconcile 2017-05-26 21:23:28 +02:00
dlorenc 99be45d40c Update kubedns to 1.14.2. (#1526)
* Update kubedns to 1.14.2.

* Also change integration test to cover the naked "kubernetes" domain.
2017-05-26 10:15:38 -07:00
Thibaut Démaret 209cf8d419 Add correction 2017-05-26 11:57:34 +02:00
Thibaut Demaret 55e1d432ba Fix Selector to use heapster, influxdb and grafana on Minikube 2017-05-20 06:48:30 +02:00
Marcin Maciaszczyk d16359de1e Update dashboard-rc.yaml (#1502) 2017-05-17 09:27:59 -07:00
Teddy Schmitz 5f6511c73c Add gcrurl env var to addon deployment and configuration 2017-05-02 12:14:17 +08:00
William Chang 6aa7acb51e Modify the heapster_influxdb images source 2017-04-25 13:40:14 +08:00
dlorenc c23dfba5d2 Update the addon manager. (#1301)
This gets us closer to being able to disable the storage provisioner.
2017-04-24 10:36:02 -07:00
Matt Rickard 2455da4b88 Merge pull request #1357 from r2d4/dns-1.14
Upgrade kube-dns to 1.14.1
2017-04-14 13:02:41 -07:00
Matt Rickard ae931c00ad Bump ingress to v0.9.0-beta.4
ref https://github.com/kubernetes/ingress/issues/602
2017-04-13 09:59:52 -07:00
Matt Rickard a765d57d53 Upgrade kube-dns to 1.14.1 2017-04-12 10:01:04 -07:00
Marcin Maciaszczyk 8d30aee3e0 Use Dashboard 1.6.0 release
https://github.com/kubernetes/dashboard/releases/tag/v1.6.0
2017-03-31 13:24:04 -07:00
Matt Rickard b279d733ad Minikube changes for v1.6.0-beta.2 2017-03-31 13:24:03 -07:00
Matt Rickard 3b46c27b16 Minikube changes for v1.6.0-alpha.1 2017-03-31 13:23:59 -07:00
Steve Sloka ad770c7a3d Add support for private docker registry in registry-creds 2017-03-23 09:36:21 -04:00
Matt Rickard 0194b34344 Update heapster addon to v1.3.0 2017-03-17 15:44:15 -07:00
Matt Rickard c48a1eb330 Upgrade nginx ingress to v0.9-beta.3 2017-03-16 13:22:10 -07:00
dlorenc 8810fead64 Switch to our bundled provisioner by default. 2017-03-01 11:50:15 -08:00
Steve Sloka 60d9d1e142 Refactor registry addon 2017-02-27 11:09:09 -05:00
Steve Sloka c3d962b58c Allow for addons to prompt for data input 2017-02-27 11:09:09 -05:00
Dan Lorenc b7a5ebed1b Add a default storage class/provisioner. 2017-02-25 14:48:04 -08:00
Aaron Prindle f5e692a6f6 Fix GCR in registry-creds addon 2017-02-08 16:16:07 -08:00
Martin Etmajer 4fdac2bd98 Make heapster service available via NodePort. 2017-02-03 10:50:31 +01:00
Steve Sloka b6c5e69cdd Bumped registry-creds version to 1.5 2017-01-31 12:56:39 -05:00
Steve Sloka ae2ae8f23c Rename awsecr-creds to registry-creds & update version which now supports Google Registry 2017-01-13 10:54:30 -05:00
Rob Franken 37941005d9 update to dashboard 1.5.1 release 2017-01-10 11:51:38 +01:00
Aaron Prindle dd20812222 Upgrade kube-dns to version 1.9 2017-01-05 15:57:20 -08:00
Matt Rickard cdef9690ff Update addons for k8s v1.5 2016-12-13 11:21:49 -08:00
Steve Sloka 7e989d1ce2 Enable awsecr-creds addon which will setup credentials to AWS ECR for downloading docker images 2016-12-09 08:46:05 -05:00
Matt Rickard f1fb26adc6 Add ingress controller to addons
This uses a custom version of the ingress controller.  We should move
it over to the official one when it is released.
2016-12-08 12:01:31 -08:00
Matt Rickard f6e3e12655 Group addon yamls into folders 2016-12-07 11:28:22 -08:00
Matt Rickard a0175c03d9 Downgrade dashboard back to v1.4.2
PetSets aren't supported at all in dashboard v1.5, however they are
still valid in minikube since minikube runs k8s v1.4.6 at the moment.

We can upgrade to dashboard v1.5 once we merge the k8s-v1.5 branch and
upgrade minikube to k8s v1.5

Fixes #884
2016-12-02 14:16:14 -08:00
Rob Franken 9cc7c7ae61 Update Dashboard version to v1.5.0 2016-11-30 12:52:11 +01:00
Aaron Prindle 3fe4ef3e83 Added heapster to set of addons. Need to add test and repackage things to remove duplicated code. 2016-11-18 17:36:54 -08:00
Rob Franken 03d15d0dfe Update used dashboard version to 1.4.2
Dashboard 1.4.2 contains a fix for an XSS security bug, so I think it would be prudent to update the Dashboard version 'shipped' with minikube to this version
2016-10-31 13:14:26 +01:00
Matt Rickard 7560384fc8 Remove vendored kube2sky, Add DNS as cluster addon
Removes the vendored in kube2sky built into the minikube binary and
replaces the dns solution with kube-dns cluster addon.  This will allow
users to swap out DNS implementations by simply turning off the
kube-dns addon.
2016-10-25 14:00:51 -07:00
Matt Rickard 19f6fc018d ImagePullyPolicy IfNotPresent for addon-manager 2016-10-24 13:27:30 -07:00
Matt Rickard 0e7ff379d4 Move addon-manager to deploy/addons, upgrade v5.1 2016-10-18 12:09:03 -07:00
bryk 047a8e9b05
Set Dashboard UI to final 1.4 version
Release info:
https://github.com/kubernetes/dashboard/releases/tag/v1.4.0
2016-09-14 15:28:37 +02:00
Piotr Bryk 1394e2e595 Update Dashboard UI to version v1.1.1
Release tag: https://github.com/kubernetes/dashboard/releases/tag/v1.1.1

Release issue: kubernetes/dashboard#1078
2016-08-09 15:37:38 +02:00
Matt Rickard fe10da65c6 Don't pull dashboard container image if present
One step in supporting an offline setup, see #391
2016-07-29 14:52:24 -07:00
Dan Lorenc f74e51ba0d Update the dashboard to v1.1.0. 2016-06-26 21:00:36 -07:00
Subhas Dandapani a0d610df79 Fixed nodePort for dashboard #185 2016-06-21 19:20:33 +02:00
dlorenc ae60398cd4 Make the dashboard service listen on a NodePort.
This makes it easier to access the dashboard.
2016-06-02 11:17:34 -07:00
Dan Lorenc 4cd9e5610d Fix hostPort bug in dashboard-svc.yaml. hostPort is invalid in a service. 2016-05-29 11:13:05 -07:00
Dan Lorenc 7fb536ec38 Add the addon manager and dashboard to the iso. 2016-05-28 11:33:01 -07:00
Lucas Käldström 4d1fe87e7e Add the dashboard and the kube-addon-manager manifests 2016-05-28 00:42:09 +03:00