3 |
4 |
Not found
5 |
Oops! This page doesn't exist. Try going back to our home page.
6 |
7 |
You can learn how to make a 404 page like this in Custom 404 Pages.
8 |
9 |
10 | {{ end }}
11 |
--------------------------------------------------------------------------------
/website/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tech-doc-hugo",
3 | "version": "0.0.1",
4 | "description": "Hugo theme for technical documentation.",
5 | "main": "none.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "git+https://github.com/google/docsy-example.git"
12 | },
13 | "author": "",
14 | "license": "ISC",
15 | "bugs": {
16 | "url": "https://github.com/google/docsy-example/issues"
17 | },
18 | "homepage": "https://github.com/google/docsy-example#readme",
19 | "dependencies": {},
20 | "devDependencies": {
21 | "autoprefixer": "^9.8.8",
22 | "postcss-cli": "^7.1.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/windows.Dockerfile:
--------------------------------------------------------------------------------
1 | ARG OSVERSION
2 | FROM --platform=linux/amd64 gcr.io/k8s-staging-e2e-test-images/windows-servercore-cache:1.0-linux-amd64-${OSVERSION} as core
3 |
4 | FROM mcr.microsoft.com/windows/nanoserver:${OSVERSION}
5 | LABEL maintainers="aramase"
6 | LABEL description="Secrets Store CSI Driver Provider Azure"
7 |
8 | ARG TARGETARCH
9 |
10 | COPY ./_output/${TARGETARCH}/secrets-store-csi-driver-provider-azure.exe /secrets-store-csi-driver-provider-azure.exe
11 | COPY --from=core /Windows/System32/netapi32.dll /Windows/System32/netapi32.dll
12 | USER ContainerAdministrator
13 |
14 | ENTRYPOINT ["/secrets-store-csi-driver-provider-azure.exe"]
15 |
--------------------------------------------------------------------------------