Skip to content

Commit efc5b9b

Browse files
authored
Merge pull request #11 from pulumi/adding-metadata-to-schema
2 parents 7eb3db5 + 536d0c0 commit efc5b9b

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ package-lock.json
1111
**/version.txt
1212
**/dist
1313
nuget/
14+
.DS_Store
1415

1516
ci-scripts/
1617
*.tar.gz

schema.json

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"name": "kubernetes-ingress-nginx",
3+
"displayName": "NGINX Ingress Controller",
4+
"keywords": [
5+
"pulumi",
6+
"kubernetes",
7+
"nginx",
8+
"kind/component",
9+
"category/infrastructure"
10+
],
11+
"publisher": "Pulumi",
312
"resources": {
413
"kubernetes-ingress-nginx:index:IngressController": {
514
"description": "Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer",

sdk/dotnet/Pulumi.KubernetesIngressNginx.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<PropertyGroup>
44
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
5-
<Authors>Pulumi Corp.</Authors>
6-
<Company>Pulumi Corp.</Company>
5+
<Authors>Pulumi</Authors>
6+
<Company>Pulumi</Company>
77
<Description></Description>
88
<PackageLicenseExpression></PackageLicenseExpression>
99
<PackageProjectUrl></PackageProjectUrl>

sdk/nodejs/package.json

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
22
"name": "@pulumi/kubernetes-ingress-nginx",
33
"version": "${VERSION}",
4+
"keywords": [
5+
"pulumi",
6+
"kubernetes",
7+
"nginx",
8+
"kind/component",
9+
"category/infrastructure"
10+
],
411
"scripts": {
512
"build": "tsc",
613
"install": "node scripts/install-pulumi-plugin.js resource kubernetes-ingress-nginx ${VERSION}"

sdk/python/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def readme():
4444
cmdclass={
4545
'install': InstallPluginCommand,
4646
},
47+
keywords='pulumi kubernetes nginx kind/component category/infrastructure',
4748
packages=find_packages(),
4849
package_data={
4950
'pulumi_kubernetes_ingress_nginx': [

0 commit comments

Comments
 (0)