Skip to content

Commit f6f5504

Browse files
committed
add
1 parent 076c8ef commit f6f5504

File tree

123 files changed

+18
-369
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+18
-369
lines changed

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[module]
22
[module.hugoVersion]
33
extended = true
4-
min = "0.120.0"
4+
min = "0.140.0"
55
[[module.imports]]
66
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
77
disable = false

layouts/_default/baseof.html

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
{{ $.Scratch.Delete "social_list" }}
33
<!-- social_list -->
4-
{{ $social_params := slice "github" "twitter" "instagram" "rss" }}
4+
{{ $social_params := slice "github" "twitter" "bluesky" "instagram" "rss" }}
55
{{ range $social_params }}
66
{{ if isset site.Params.social . }}
77
{{ $.Scratch.Add "social_list" (slice .) }}
@@ -45,7 +45,7 @@
4545
<script type="text/javascript" src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}"></script>
4646
{{- else }}
4747
{{- $js := (slice $app) | resources.Concat "/js/bundle.js" }}
48-
<script type="text/javascript" src="{{ $js.Permalink }}"></script>
48+
<script type="text/javascript" src="{{ $js.Permalink }}" {{ if hugo.IsProduction }}integrity="{{ $js.Data.Integrity }}"{{ end }}></script>
4949
{{- end }}
5050

5151
<!-- Image Compare Viewer Config -->
@@ -56,18 +56,10 @@
5656
{{ (delimit ($ic.Get `config`) `,`) | safeJS }}
5757
];
5858
viewers.forEach((element, i) => {
59-
if (configs[i]) {
60-
try {
61-
let view = new ImageCompare(element, configs[i]).mount();
62-
} catch (error) {
63-
console.error(`Error mounting ImageCompare for element ${i}:`, error);
64-
}
65-
} else {
66-
console.warn(`No configuration found for ImageCompare element at index ${i}.`);
67-
}
59+
let view = new ImageCompare(element, configs[i]).mount();
6860
});
6961
</script>
7062
{{ end }}
7163

7264
</body>
73-
</html>
65+
</html>

layouts/partials/docs/footer/feedback.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
result.classList.add("is-visible");
7878
}
7979
try {
80-
{{ if .Site.GoogleAnalytics -}}
80+
{{ if .Site.Config.Services.GoogleAnalytics.ID -}}
8181
{{ if not .Site.Params.feedback.eventDest | or (in .Site.Params.feedback.eventDest "google") -}}
8282
gtag('event', '{{ replaceRE `( {1,})` "_" (.Site.Params.feedback.emoticonEventName | default "feedback" | lower) }}',
8383
{
@@ -253,7 +253,7 @@
253253
}
254254
try {
255255
if (formType == "positive") {
256-
{{ if .Site.GoogleAnalytics -}}
256+
{{ if .Site.Config.Services.GoogleAnalytics.ID -}}
257257
{{ if not .Site.Params.feedback.eventDest | or (in .Site.Params.feedback.eventDest "google") -}}
258258
gtag('event', '{{ replaceRE `( {1,})` "_" (.Site.Params.feedback.positiveEventName | default "Positive Feedback" | lower) }}',
259259
{
@@ -279,7 +279,7 @@
279279
{{ end -}}
280280
{{ end -}}
281281
} else if (formType == "negative") {
282-
{{ if .Site.GoogleAnalytics -}}
282+
{{ if .Site.Config.Services.GoogleAnalytics.ID -}}
283283
{{ if not .Site.Params.feedback.eventDest | or (in .Site.Params.feedback.eventDest "google") -}}
284284
gtag('event', '{{ replaceRE `( {1,})` "_" (.Site.Params.feedback.negativeEventName | default "Positive Feedback" | lower) }}',
285285
{

layouts/partials/docs/footer/footer-scripts.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,4 @@
5454
<script type="text/javascript" src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}" crossorigin="anonymous" defer></script>
5555
{{- else }}
5656
<script type="text/javascript" src="{{ $js.Permalink }}" defer></script>
57-
<script data-goatcounter="https://sangam.goatcounter.com/count"
58-
async src="//gc.zgo.at/count.js"></script>
5957
{{- end }}

layouts/partials/docs/head/opengraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@
4242
{{- end }}
4343

4444
{{- /* Facebook Page Admin ID for Domain Insights */}}
45-
{{- with .Site.Params.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}
45+
{{- with .Site.Params.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}

layouts/partials/docs/head/twitter_cards.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
{{- end }}
1919
<meta name="twitter:title" content="{{ .Title }}"/>
2020
<meta name="twitter:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end -}}"/>
21-
{{ with .Site.Params.Social.twitter -}}
21+
{{ with .Site.Params.twitter -}}
2222
<meta name="twitter:site" content="@{{ . }}"/>
2323
{{ end -}}

public/404.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515

1616

17+
18+
1719

1820

1921

@@ -1063,10 +1065,10 @@ <h6> Subscribe to CloudNativeFolks Community Newsletter
10631065
</footer>
10641066

10651067

1066-
<script type="text/javascript" src="//localhost:1313/js/bundle.js"></script>
1068+
<script type="text/javascript" src="//localhost:1313/js/bundle.js" ></script>
10671069

10681070

10691071

10701072

10711073
</body>
1072-
</html>
1074+
</html>

public/docs/containerd/architecture-of-containerd/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686

8787

8888
Platforms: Cloud platforms and container orchestration systems that use containerd as their runtime, such as Google Cloud Platform, Docker, IBM Cloud, Microsoft Azure, Alibaba Cloud, AWS, and others."/>
89-
<meta name="twitter:site" content="@kubedaily"/>
9089

9190

9291
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3731,8 +3730,6 @@ <h1 class="content-title mb-0">
37313730

37323731

37333732
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3734-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3735-
async src="//gc.zgo.at/count.js"></script>
37363733

37373734

37383735

public/docs/containerd/containerd-ctr/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,6 @@
11641164

11651165
Plugins link
11661166
This section is extensive and contains configurations for various ContainerD plugins. Only key plugins and configurations are listed here."/>
1167-
<meta name="twitter:site" content="@kubedaily"/>
11681167

11691168

11701169
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -6191,8 +6190,6 @@ <h3 id="read-image-config-and-image-layers">read image config and image layers <
61916190

61926191

61936192
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
6194-
<script data-goatcounter="https://sangam.goatcounter.com/count"
6195-
async src="//gc.zgo.at/count.js"></script>
61966193

61976194

61986195

public/docs/containerd/crun/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,6 @@
376376
https://hub.docker.com/
377377

378378
"/>
379-
<meta name="twitter:site" content="@kubedaily"/>
380379

381380

382381
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4119,8 +4118,6 @@ <h3 id="install-crun-via-binary">install crun via binary <a href="#install-crun-
41194118

41204119

41214120
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4122-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4123-
async src="//gc.zgo.at/count.js"></script>
41244121

41254122

41264123

public/docs/containerd/firecracker/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
cd firecracker
5353
tools/devtool build
5454
toolchain=&quot;$(uname -m)-unknown-linux-musl&quot;"/>
55-
<meta name="twitter:site" content="@kubedaily"/>
5655

5756

5857
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3631,8 +3630,6 @@ <h3 id="build-firecracker">build firecracker <a href="#build-firecracker" class=
36313630

36323631

36333632
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3634-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3635-
async src="//gc.zgo.at/count.js"></script>
36363633

36373634

36383635

public/docs/containerd/history-of-containerd/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
<meta name="twitter:description" content="History of ContainerD linkOrigin from Docker: The origins of containerd can be traced back to Docker, the popular container platform. Docker initially included all components required to run a container in a single monolithic binary, which included the container runtime. As Docker grew, there was a need to break down this monolithic structure into more manageable, modular components.
4949
Announcement and Spin-Off (2016): Docker announced containerd in December 2016 as a core component split off from the Docker Engine. This move was part of Docker&rsquo;s effort to modularize its platform. containerd was designed to manage the entire container lifecycle, including image transfer and storage, container execution and supervision, low-level storage, and network attachments.
5050
Donation to CNCF (2017): In March 2017, Docker donated containerd to the Cloud Native Computing Foundation (CNCF), the same foundation that hosts Kubernetes. This move was aimed at fostering an open, neutral, and community-driven base for container operations."/>
51-
<meta name="twitter:site" content="@kubedaily"/>
5251

5352

5453
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3623,8 +3622,6 @@ <h3 id="history-of-containerd">History of ContainerD <a href="#history-of-contai
36233622

36243623

36253624
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3626-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3627-
async src="//gc.zgo.at/count.js"></script>
36283625

36293626

36303627

public/docs/containerd/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<meta name="twitter:image" content="//localhost:1313/opengraph/card-base-2_hu_7d1c940c4b61b038.png"/>
4444
<meta name="twitter:title" content="Learn ContainerD"/>
4545
<meta name="twitter:description" content="Guides to getting start ContainerD"/>
46-
<meta name="twitter:site" content="@kubedaily"/>
4746

4847

4948
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3668,8 +3667,6 @@ <h1 class="content-title mb-0">
36683667

36693668

36703669
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3671-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3672-
async src="//gc.zgo.at/count.js"></script>
36733670

36743671

36753672

public/docs/containerd/introduction-to-runc/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,6 @@
268268

269269

270270
once installed, you can start using runc:"/>
271-
<meta name="twitter:site" content="@kubedaily"/>
272271

273272

274273
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4745,8 +4744,6 @@ <h4 id="cheatsheet---runc-commands-for-managing-containers">Cheatsheet - Runc Co
47454744

47464745

47474746
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4748-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4749-
async src="//gc.zgo.at/count.js"></script>
47504747

47514748

47524749

public/docs/containerd/kata-container/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,6 @@
778778
421ac9fbcf95ed8360f4b76fe230effd619ce993c64d9f3d7e5dfd248f655689
779779

780780
"/>
781-
<meta name="twitter:site" content="@kubedaily"/>
782781

783782

784783
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4720,8 +4719,6 @@ <h3 id="configure-with-docker">Configure with Docker <a href="#configure-with-do
47204719

47214720

47224721
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4723-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4724-
async src="//gc.zgo.at/count.js"></script>
47254722

47264723

47274724

public/docs/containerd/nerdctl/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,6 @@
580580

581581

582582
nerdctl Command Cheatsheet linknerdctl is a Docker-compatible CLI for containerd. This cheatsheet provides a quick overview of commonly used commands."/>
583-
<meta name="twitter:site" content="@kubedaily"/>
584583

585584

586585
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4542,8 +4541,6 @@ <h2 id="advanced-features">Advanced Features <a href="#advanced-features" class=
45424541

45434542

45444543
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4545-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4546-
async src="//gc.zgo.at/count.js"></script>
45474544

45484545

45494546

public/docs/containerd/runwasi/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@
200200
sudo ctr run --rm --runtime=io.containerd.wasmedge.v1 ghcr.io/containerd/runwasi/wasi-demo-app:latest testwasm /wasi-demo-app.wasm echo &#39;hello&#39;
201201

202202
"/>
203-
<meta name="twitter:site" content="@kubedaily"/>
204203

205204

206205
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3853,8 +3852,6 @@ <h3 id="run-wasm-using-ctr-cli">run wasm using ctr cli <a href="#run-wasm-using-
38533852

38543853

38553854
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3856-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3857-
async src="//gc.zgo.at/count.js"></script>
38583855

38593856

38603857

public/docs/containerd/wasm-containerd-crun/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@
150150

151151

152152
the response would be something:-"/>
153-
<meta name="twitter:site" content="@kubedaily"/>
154153

155154

156155
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4006,8 +4005,6 @@ <h3 id="a-webassembly-based-http-service">A WebAssembly-based HTTP service <a hr
40064005

40074006

40084007
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4009-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4010-
async src="//gc.zgo.at/count.js"></script>
40114008

40124009

40134010

public/docs/containersecurity/attack-surface-of-the-container-ecosystem/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@
106106

107107

108108
"/>
109-
<meta name="twitter:site" content="@kubedaily"/>
110109

111110

112111
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3711,8 +3710,6 @@ <h2 id="attack-surface-of-the-container-ecosystem">Attack surface of the contain
37113710

37123711

37133712
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3714-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3715-
async src="//gc.zgo.at/count.js"></script>
37163713

37173714

37183715

public/docs/containersecurity/auditing-docker-security/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
<meta name="twitter:description" content="Auditing Docker Security linkDOCKER BENCH FOR SECURITY
4949
Docker Bench for Security is an open source Bash script that checks for various common security best practices of deploying Docker in production environments. The tests are all automated and are based on the CIS Docker Benchmark. More information about Docker Bench for Security can be found
5050
on GitHub: https://github.com/docker/docker-bench-security"/>
51-
<meta name="twitter:site" content="@kubedaily"/>
5251

5352

5453
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4457,8 +4456,6 @@ <h2 id="enable-content-trust-1">Enable Content Trust <a href="#enable-content-tr
44574456

44584457

44594458
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4460-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4461-
async src="//gc.zgo.at/count.js"></script>
44624459

44634460

44644461

public/docs/containersecurity/container-image-security/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
<meta name="twitter:image" content="//localhost:1313/opengraph/card-base-2_hu_45d78d33836f68bd.png"/>
4646
<meta name="twitter:title" content="Container Image Security "/>
4747
<meta name="twitter:description" content="Container Image Security "/>
48-
<meta name="twitter:site" content="@kubedaily"/>
4948

5049

5150
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -4046,8 +4045,6 @@ <h2 id="scratch-image-and-lowest-privilege-user">Scratch Image and Lowest Privil
40464045

40474046

40484047
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
4049-
<script data-goatcounter="https://sangam.goatcounter.com/count"
4050-
async src="//gc.zgo.at/count.js"></script>
40514048

40524049

40534050

public/docs/containersecurity/content-trust-and-integrity-checks/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@
264264
No valid trust data for unsigned
265265

266266
"/>
267-
<meta name="twitter:site" content="@kubedaily"/>
268267

269268

270269
<script>(()=>{var t=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,e=localStorage.getItem("theme");t&&e===null&&(localStorage.setItem("theme","dark"),document.documentElement.setAttribute("data-dark-mode","")),t&&e==="dark"&&document.documentElement.setAttribute("data-dark-mode",""),e==="dark"&&document.documentElement.setAttribute("data-dark-mode","")})()</script>
@@ -3931,8 +3930,6 @@ <h1 id="verify-the-image">verify the image <a href="#verify-the-image" class="an
39313930

39323931

39333932
<script type="text/javascript" src="//localhost:1313/docs/js/bundle.js" defer></script>
3934-
<script data-goatcounter="https://sangam.goatcounter.com/count"
3935-
async src="//gc.zgo.at/count.js"></script>
39363933

39373934

39383935

0 commit comments

Comments
 (0)