Skip to content

Commit

Permalink
Fix package installation by switching ntp to chrony and directly inst…
Browse files Browse the repository at this point in the history
…alling container-selinux
  • Loading branch information
Cassandra Comar committed May 31, 2019
1 parent 592d7cd commit 05c5af4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion nodeup/pkg/model/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ var dockerVersions = []dockerVersion{
{
DockerVersion: "18.06.3",
Name: "docker-ce",
Distros: []distros.Distribution{distros.DistributionRhel7, distros.DistributionCentos7, distros.DistributionRhel8, distros.DistributionCentos8},
Distros: []distros.Distribution{distros.DistributionRhel7, distros.DistributionCentos7},
Architectures: []Architecture{ArchitectureAmd64},
Version: "18.06.3.ce",
Source: "https://download.docker.com/linux/centos/7/x86_64/stable/Packages/docker-ce-18.06.3.ce-3.el7.x86_64.rpm",
Expand All @@ -753,6 +753,17 @@ var dockerVersions = []dockerVersion{
},
Dependencies: []string{"libtool-ltdl", "libseccomp", "libcgroup", "policycoreutils-python"},
},
// 18.06.3 - CentOS / Rhel8 (two packages)
{
DockerVersion: "18.06.3",
Name: "docker-ce",
Distros: []distros.Distribution{distros.DistributionRhel8, distros.DistributionCentos8},
Architectures: []Architecture{ArchitectureAmd64},
Version: "18.06.3.ce",
Source: "https://download.docker.com/linux/centos/7/x86_64/stable/Packages/docker-ce-18.06.3.ce-3.el7.x86_64.rpm",
Hash: "5369602f88406d4fb9159dc1d3fd44e76fb4cab8",
Dependencies: []string{"container-selinux", "libtool-ltdl", "libseccomp", "libcgroup", "policycoreutils-python-utils", "python3-policycoreutils"},
},

// TIP: When adding the next version, copy the previous
// version, string replace the version, run `VERIFY_HASHES=1
Expand Down

0 comments on commit 05c5af4

Please sign in to comment.