Skip to content

Commit 821361b

Browse files
committed
fixed issues
1 parent f45d878 commit 821361b

File tree

16 files changed

+4790
-25
lines changed

16 files changed

+4790
-25
lines changed

docs/ei-quick-start.md

Lines changed: 56 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -584,31 +584,62 @@ Users in the US, Canada, Australia, and Singapore regions should use the US regi
584584

585585
??? abstract "Step 7. Creating a testing certificate resources"
586586

587-
Create a new Certificate
588-
589-
```sh
590-
kubectl apply -f - <<EOF
591-
kind: Certificate
592-
apiVersion: cert-manager.io/v1
593-
metadata:
594-
name: venafi-tpp-test-1
595-
namespace: venafi
596-
spec:
597-
secretName: venafi-tpp-test-1
598-
commonName: srvc2.acme.com
599-
issuerRef:
600-
name: venafi-tpp-cluster-issuer
601-
kind: "VenafiClusterIssuer"
602-
group: "jetstack.io"
603-
privateKey:
604-
rotationPolicy: Always
605-
size: 2048
606-
dnsNames:
607-
- srvc3.acme.com
608-
#uris:
609-
#- spiffe://cluster.local/ns/sandbox/sa/srvc1
610-
EOF
611-
```
587+
=== "Using venafi-saas-cluster-issuer"
588+
589+
Create a new Certificate
590+
591+
```sh
592+
kubectl apply -f - <<EOF
593+
kind: Certificate
594+
apiVersion: cert-manager.io/v1
595+
metadata:
596+
name: venafi-saas-test-1
597+
namespace: venafi
598+
spec:
599+
secretName: venafi-saas-test-1
600+
commonName: srvc2.acme.com
601+
issuerRef:
602+
name: venafi-saas-cluster-issuer
603+
kind: "VenafiClusterIssuer"
604+
group: "jetstack.io"
605+
privateKey:
606+
rotationPolicy: Always
607+
size: 2048
608+
dnsNames:
609+
- srvc3.acme.com
610+
#uris:
611+
#- spiffe://cluster.local/ns/sandbox/sa/srvc1
612+
EOF
613+
```
614+
615+
=== "Using venafi-tpp-cluster-issuer"
616+
617+
Create a new Certificate
618+
619+
```sh
620+
kubectl apply -f - <<EOF
621+
kind: Certificate
622+
apiVersion: cert-manager.io/v1
623+
metadata:
624+
name: venafi-tpp-test-1
625+
namespace: venafi
626+
spec:
627+
secretName: venafi-tpp-test-1
628+
commonName: srvc2.acme.com
629+
issuerRef:
630+
name: venafi-tpp-cluster-issuer
631+
kind: "VenafiClusterIssuer"
632+
group: "jetstack.io"
633+
privateKey:
634+
rotationPolicy: Always
635+
size: 2048
636+
dnsNames:
637+
- srvc3.acme.com
638+
#uris:
639+
#- spiffe://cluster.local/ns/sandbox/sa/srvc1
640+
EOF
641+
```
642+
612643

613644
??? abstract "Step 8. Securing an NGINX Ingress"
614645

proper-parallax/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

proper-parallax/README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Starlight Starter Kit: Basics
2+
3+
[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)
4+
5+
```
6+
pnpm create astro@latest -- --template starlight
7+
```
8+
9+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
10+
11+
## 🚀 Project Structure
12+
13+
Inside of your Astro + Starlight project, you'll see the following folders and files:
14+
15+
```
16+
.
17+
├── public/
18+
├── src/
19+
│ ├── assets/
20+
│ ├── content/
21+
│ │ └── docs/
22+
│ └── content.config.ts
23+
├── astro.config.mjs
24+
├── package.json
25+
└── tsconfig.json
26+
```
27+
28+
Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name.
29+
30+
Images can be added to `src/assets/` and embedded in Markdown with a relative link.
31+
32+
Static assets, like favicons, can be placed in the `public/` directory.
33+
34+
## 🧞 Commands
35+
36+
All commands are run from the root of the project, from a terminal:
37+
38+
| Command | Action |
39+
| :------------------------ | :----------------------------------------------- |
40+
| `pnpm install` | Installs dependencies |
41+
| `pnpm dev` | Starts local dev server at `localhost:4321` |
42+
| `pnpm build` | Build your production site to `./dist/` |
43+
| `pnpm preview` | Preview your build locally, before deploying |
44+
| `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` |
45+
| `pnpm astro -- --help` | Get help using the Astro CLI |
46+
47+
## 👀 Want to learn more?
48+
49+
Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).

proper-parallax/astro.config.mjs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// @ts-check
2+
import { defineConfig } from 'astro/config';
3+
import starlight from '@astrojs/starlight';
4+
5+
// https://astro.build/config
6+
export default defineConfig({
7+
integrations: [
8+
starlight({
9+
title: 'My Docs',
10+
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' }],
11+
sidebar: [
12+
{
13+
label: 'Guides',
14+
items: [
15+
// Each item here is one entry in the navigation menu.
16+
{ label: 'Example Guide', slug: 'guides/example' },
17+
],
18+
},
19+
{
20+
label: 'Reference',
21+
autogenerate: { directory: 'reference' },
22+
},
23+
],
24+
}),
25+
],
26+
});

proper-parallax/package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "proper-parallax",
3+
"type": "module",
4+
"version": "0.0.1",
5+
"scripts": {
6+
"dev": "astro dev",
7+
"start": "astro dev",
8+
"build": "astro build",
9+
"preview": "astro preview",
10+
"astro": "astro"
11+
},
12+
"dependencies": {
13+
"@astrojs/starlight": "^0.37.3",
14+
"astro": "^5.6.1",
15+
"sharp": "^0.34.2"
16+
}
17+
}

0 commit comments

Comments
 (0)