Skip to content

Commit

Permalink
make crds // bump nginx-operator
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheu committed Jan 19, 2024
1 parent 828aa70 commit 60a5d23
Show file tree
Hide file tree
Showing 5 changed files with 106 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/nginx-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.5.2
version: 1.5.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.13.2
appVersion: 0.14.0
22 changes: 22 additions & 0 deletions charts/nginx-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ spec:
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- jsonPath: .status.ingresses[*].ips[*]
name: Ingress IPs
type: string
- jsonPath: .status.services[*].ips[*]
name: Service IPs
type: string
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -5679,6 +5685,14 @@ spec:
ingresses:
items:
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
name:
description: Name is the name of the Ingress created by nginx
type: string
Expand All @@ -5692,6 +5706,14 @@ spec:
services:
items:
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
name:
description: Name is the name of the Service created by nginx
type: string
Expand Down
22 changes: 22 additions & 0 deletions charts/nginx-operator/templates/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ spec:
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- jsonPath: .status.ingresses[*].ips[*]
name: Ingress IPs
type: string
- jsonPath: .status.services[*].ips[*]
name: Service IPs
type: string
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -5680,6 +5686,14 @@ spec:
ingresses:
items:
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
name:
description: Name is the name of the Ingress created by nginx
type: string
Expand All @@ -5693,6 +5707,14 @@ spec:
services:
items:
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
name:
description: Name is the name of the Service created by nginx
type: string
Expand Down
30 changes: 30 additions & 0 deletions charts/rpaas-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down Expand Up @@ -6536,6 +6540,12 @@ spec:
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- jsonPath: .status.externalAddresses.ips[*]
name: IPs
type: string
- jsonPath: .status.externalAddresses.hostnames[*]
name: Hostnames
type: string
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -7035,6 +7045,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down Expand Up @@ -12774,6 +12788,18 @@ spec:
description: CurrentReplicas is the last observed number of pods.
format: int32
type: integer
externalAddresses:
description: External IP addreses of Nginx
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
type: object
nginxUpdated:
description: NginxUpdated is true if the wanted nginx revision hash
equals the observed nginx revision hash.
Expand Down Expand Up @@ -12908,6 +12934,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down
30 changes: 30 additions & 0 deletions charts/rpaas-operator/templates/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down Expand Up @@ -6537,6 +6541,12 @@ spec:
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- jsonPath: .status.externalAddresses.ips[*]
name: IPs
type: string
- jsonPath: .status.externalAddresses.hostnames[*]
name: Hostnames
type: string
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -7036,6 +7046,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down Expand Up @@ -12775,6 +12789,18 @@ spec:
description: CurrentReplicas is the last observed number of pods.
format: int32
type: integer
externalAddresses:
description: External IP addreses of Nginx
properties:
hostnames:
items:
type: string
type: array
ips:
items:
type: string
type: array
type: object
nginxUpdated:
description: NginxUpdated is true if the wanted nginx revision hash
equals the observed nginx revision hash.
Expand Down Expand Up @@ -12909,6 +12935,10 @@ spec:
type: string
syslogTag:
type: string
templateExtraVars:
additionalProperties:
type: string
type: object
upstreamKeepalive:
type: integer
user:
Expand Down

0 comments on commit 60a5d23

Please sign in to comment.