Skip to content

Commit

Permalink
Add alpine, red hat, ubuntu compatibility pages (#1391)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamonation authored Feb 26, 2024
1 parent 75c7b08 commit 840a2b2
Show file tree
Hide file tree
Showing 7 changed files with 1,367 additions and 380 deletions.

This file was deleted.

11 changes: 11 additions & 0 deletions content/chainguard/migration-guides/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "Migration Guides"
lead: ""
description: "Documentation about how to migrate to Chainguard Images from third-party images"
type: "article"
date: 2024-02-26T08:48:45+00:00
lastmod: 2024-02-26T08:48:45+00:00
draft: false
images: []
weight: 50
---
358 changes: 358 additions & 0 deletions content/chainguard/migration-guides/alpine-compatibility.md

Large diffs are not rendered by default.

368 changes: 368 additions & 0 deletions content/chainguard/migration-guides/debian-compatibility.md

Large diffs are not rendered by default.

265 changes: 265 additions & 0 deletions content/chainguard/migration-guides/red-hat-compatibility.md

Large diffs are not rendered by default.

359 changes: 359 additions & 0 deletions content/chainguard/migration-guides/ubuntu-compatibility.md

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions tools/compatibility-pages/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def print(self):
{self.distro.name.capitalize()} busybox | \
Wolfi coreutils | \
{self.distro.name.capitalize()} coreutils |\
\n|:-:|:-:|:-:|:-:|:-:|\
\n|-|:-:|:-:|:-:|:-:|\
'''
print(header)
for util in sorted(self.utils):
Expand All @@ -51,11 +51,11 @@ def print(self):
in_set2 = util in self.distro.busybox
in_set3 = util in self.wolfi.coreutils
in_set4 = util in self.distro.coreutils
row = f'''| `{util}` | \
{'✅' if in_set1 else ''} | \
{'✅' if in_set2 else ''} | \
{'✅' if in_set3 else ''} | \
{'✅' if in_set4 else '' } |\
row = f'''| `{util}` |\
{'✅' if in_set1 else ''}|\
{'✅' if in_set2 else ''}|\
{'✅' if in_set3 else ''}|\
{'✅' if in_set4 else ''}|\
'''
print(row)

Expand Down

0 comments on commit 840a2b2

Please sign in to comment.