1
0
mirror of https://github.com/rancher/os.git synced 2025-08-29 11:34:42 +00:00
Commit Graph

2541 Commits

Author SHA1 Message Date
niusmallnan
3b92e04065
Support URL when using ros install -c (#2202) 2018-01-02 17:17:43 +08:00
niusmallnan
b08d29cc2c
Rebuild all-volumes service always (#2201) 2018-01-02 16:07:48 +08:00
niusmallnan
8385ce5b00
Remove dnspatch we have not used it anymore (#2198) 2017-12-29 15:20:43 +08:00
niusmallnan
c89a1f01b6 Bump up golang to v1.8.5 2017-12-29 13:43:23 +08:00
niusmallnan
f458e0408d
Add more logs for preload-images action and elegant close some files (#2196) 2017-12-29 13:24:51 +08:00
niusmallnan
0a26e696ee Update README for v1.1.2 2017-12-28 15:52:43 +08:00
niusmallnan
ec9f6b3031 Delete all the documents to ensure that they are maintained on github.rancher.io 2017-12-28 09:29:56 +08:00
niusmallnan
285a82dc96 Fix a typo path for publish script 2017-12-27 16:27:22 +08:00
niusmallnan
c9173bbda1 Remove rancher.debug flag for digitalocean image 2017-12-27 14:48:09 +08:00
niusmallnan
87091ba83d Update README 2017-12-27 11:52:39 +08:00
niusmallnan
55368a3897
Auto resize root disk on AWS (#2191) 2017-12-26 17:59:08 +08:00
Robert Neumann
dab1c4ffb3 Fix user-data for ec2 metadata source (#2189) 2017-12-25 18:11:24 +08:00
niusmallnan
a5af88224a Update doc about running Rancher on RancherOS
https://github.com/rancher/os/issues/1962
2017-12-22 15:20:35 +08:00
niusmallnan
868a4b01ce Update doc
https://github.com/rancher/os/issues/1936
2017-12-22 15:16:07 +08:00
niusmallnan
4de1396a46 Update README 2017-12-21 17:57:13 +08:00
niusmallnan
0e586b7996 Optimize the release script 2017-12-21 17:47:51 +08:00
niusmallnan
b9fea2e8d3 Update build file for raspberry-pi-hypriot64 2017-12-21 15:16:11 +08:00
niusmallnan
c3838be166 Update doc for security 2017-12-20 14:24:35 +08:00
niusmallnan
958bbef1f1 Vendor changes for vishvananda/netlink
https://github.com/rancher/os/issues/1863
2017-12-19 17:49:56 +08:00
niusmallnan
bd845cca31 Code updates for packethost/packngo v0.1.0 2017-12-19 17:08:15 +08:00
niusmallnan
543f106689 Vendor changes, github.com/packethost/packngo v0.1.0 2017-12-19 17:08:15 +08:00
niusmallnan
60909e435f
Add aliyun datasource (#2169) 2017-12-19 14:33:44 +08:00
Sebastiaan van Steenis
7e912e12e8 Add docs on setting MTU when running on GCE 2017-12-18 18:26:46 +08:00
niusmallnan
2dda87e2c4 Fix the container name
https://github.com/rancher/os/issues/2176
2017-12-15 17:28:28 +08:00
niusmallnan
f87dc8078a Use docker-17.06.2-ce as default user docker 2017-12-15 11:07:07 +08:00
niusmallnan
47195af80a Update kernel 4.9.69-rancher 2017-12-15 11:07:00 +08:00
niusmallnan
bbe86be115
Merge pull request #2175 from niusmallnan/issues-2168
Only enable open-vm-tools serivce for vmware
2017-12-13 10:46:51 +08:00
niusmallnan
c47e8c5bf7 Only enable open-vm-tools serivce for vmware
https://github.com/rancher/os/issues/2168
2017-12-13 10:10:52 +08:00
niusmallnan
d79e5e8753 Update doc for v1.1.1 release 2017-12-12 15:24:57 +08:00
niusmallnan
c5748f31d5 Add publish_gs script 2017-12-12 15:03:02 +08:00
niusmallnan
75c4b3e020 Update version numbers and AMIs for v1.1.1 2017-12-12 11:42:24 +08:00
niusmallnan
65df13e0be User kernel v4.9.67-rancher 2017-12-08 09:00:00 +08:00
Julien Kassar
349203b058 Fix error typo in loadConsoleService func (#2112) 2017-12-07 15:55:40 +08:00
Max Schmitt
5ec984177d Fix not rendered markdown (#2147) 2017-12-07 15:49:16 +08:00
niusmallnan
6889096ff4
Merge pull request #2167 from niusmallnan/issues-2166
Fix golint check error
2017-12-07 10:03:52 +08:00
niusmallnan
7b474cd905 Fix golint check error
https://github.com/rancher/os/issues/2166
2017-12-06 13:45:49 +08:00
Chris Marchesi
2f8eaa3314
cmd/power: Set correct container name and ensure full command executed
This fixes a few issues that are preventing shutdown and friends from
behaving correctly:

* The command name, which is being used to determine via what command it
was being called (ie: shutdown, reboot, or halt) was not being parsed
for absolute paths. This was preventing certain logic from being handled
(example: enforcing a static time value of "now" for shutdown), but more
problematically was the fact that it was being used as the container
name being passed to runDocker, the function that launches the
independent shutdown container. This was causing the shutdown container
to fail as something like "/sbin/shutdown" is not a valid name for a
container. The logic to parse out the base command being run is actually
present in runDocker, but does not run if a name is supplied to the
function.

* Further, the command line was not being parsed in the shutdown
container if the name supplied to runDocker was non-empty. Rather, the
full command to run just became the name of the container. Hence,
something like "/sbin/shutdown -h now" became just "shutdown", executing
the default power off behaviour for all actions (including reboots).

* Further to this, open-vm-tools expects "/sbin/shutdown -h now" to be a
valid command to halt the system, which was not being recognized as the
only recognized short-form halt flag in shutdown was its capital version
(-H).

This fixes these three issues by parsing out the base of the called
command before sending it to reboot, using all of os.Argv as the command
line to run regardless of if a name was set for the container or not,
and finally adding the lowercase -h switch to the "shutdown" form of
this command ("halt" is still uppercase only).

Fixes rancher/os#2121.
Fixes rancher/os#2074.
2017-10-20 17:09:13 -07:00
Sven Dowideit
d8bba34a87 Merge pull request #2108 from SvenDowideit/update-the-kernel-module-docs
We don't use the Ubuntu kernels and DKMS anymore
2017-09-18 15:44:16 +10:00
Sven Dowideit
fda647eec3 Merge pull request #2106 from SvenDowideit/rpi64-4.9.50
rpi64 linux kernel 4.9.50
2017-09-18 15:43:51 +10:00
Sven Dowideit
f7327d764f Merge pull request #2104 from SvenDowideit/http-proxy-fix
Refactor a little so 'ros os list' also uses the configured proxy info
2017-09-18 15:43:38 +10:00
Sven Dowideit
d1971fbd0e Merge pull request #2099 from SvenDowideit/kubelet-volume-for-cadvisor
Quick fix to allow CAdvisor and kubelet to work
2017-09-18 15:43:23 +10:00
Sven Dowideit
5d82fcb029 we don't use DKMS anymore
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-18 13:35:48 +10:00
Sven Dowideit
0b8b0dc1e1 We don't use the Ubuntu kernels and DKMS anymore
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-18 13:33:22 +10:00
Sven Dowideit
2751745a59 rpi64 linux kernel 4.9.50
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-16 12:42:37 +00:00
Sven Dowideit
4769f143cf set the http_proxy env vars for the consoles
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-15 23:38:15 +10:00
Sven Dowideit
baee5d18ea Refactor a little so 'ros os list' also uses the configured proxy info
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-15 13:47:21 +10:00
Sven Dowideit
28a487018e Quick fix to allow CAdvisor and kubelet to work
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-09-14 10:55:17 +10:00
Sven Dowideit
1b3395523c Merge pull request #2094 from rancher/revert-2070-master
Revert "Only add SSH configuration lines that are not set"
2017-09-13 22:08:34 +10:00
Sven Dowideit
a608098c39 Revert "Only add SSH configuration lines that are not set" 2017-09-13 22:07:52 +10:00
Sven Dowideit
4b6ffe752e Merge pull request #2089 from SvenDowideit/add-dhcp-debug-hook
add a debug dump of the dhcp server
2017-09-13 16:21:31 +10:00