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

Commit

Permalink
Merge pull request #1529 from rancher/revert-1511-use-1.12.6-everywhere
Browse files Browse the repository at this point in the history
Revert "I've build 1.12.6 for arm&arm64 - should try it out"
  • Loading branch information
SvenDowideit committed Jan 18, 2017
2 parents ac761a3 + 1be5c6c commit a9f19b7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions os-config.tpl.yml
Expand Up @@ -6,8 +6,13 @@ rancher:
SUFFIX: {{.SUFFIX}}
defaults:
hostname: {{.HOSTNAME_DEFAULT}}
{{if eq "amd64" .ARCH -}}
docker:
engine: docker-1.12.6
{{else -}}
docker:
engine: docker-1.11.2
{{end -}}
network:
dns:
nameservers: [8.8.8.8, 8.8.4.4]
Expand Down Expand Up @@ -276,7 +281,11 @@ rancher:
- /home:/home
- /opt:/opt
docker:
{{if eq "amd64" .ARCH -}}
image: {{.OS_REPO}}/os-docker:1.12.6{{.SUFFIX}}
{{else -}}
image: {{.OS_REPO}}/os-docker:1.11.2{{.SUFFIX}}
{{end -}}
command: ros user-docker
environment:
- HTTP_PROXY
Expand Down Expand Up @@ -314,7 +323,11 @@ rancher:
url: {{.OS_RELEASES_YML}}/releases{{.SUFFIX}}.yml
image: {{.OS_REPO}}/os
docker:
{{if eq "amd64" .ARCH -}}
engine: docker-1.12.6
{{else -}}
engine: docker-1.11.2
{{end -}}
storage_driver: overlay
group: docker
host: ["unix:///var/run/docker.sock"]
Expand Down

2 comments on commit a9f19b7

@pwFoo
Copy link

@pwFoo pwFoo commented on a9f19b7 Jan 18, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SvenDowideit
Install worked fine with Dell V131 notebook, but there isn't an local tty auto login anymore?
How could I login to the local console?

@pwFoo
Copy link

@pwFoo pwFoo commented on a9f19b7 Jan 18, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SvenDowideit
Message at the beginning of a (re-)install to disk:

INFO[0004] start !isoinstallerloaded
ERRO[0004] Failed to get RancherOSboot device: exit status 2
INFO[0004] starting installer container for rancher/os:v0.8.0-rc4 (new)

Installation seems to be successful, password is set by

ros install -d /dev/sda --append "rancher.password=mySecret"
```
Should be added to documentation ;)

Please sign in to comment.