Skip to content

Add Knative Serving 1.15.2 #415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 1, 2024
Merged
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
304 changes: 304 additions & 0 deletions repo/packages/knative-serving.packages.kadras.io/1.15.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,304 @@
apiVersion: data.packaging.carvel.dev/v1alpha1
kind: Package
metadata:
creationTimestamp: null
name: knative-serving.packages.kadras.io.1.15.2
spec:
capacityRequirementsDescription: For prototyping purposes, one-node cluster that
has at least 3 CPUs and 4 GB of memory. For production purposes, if you have only
one node, at least 6 CPUs, 6 GB of memory, and 30 GB of disk storage. If you have
multiple nodes, for each node at least 2 CPUs, 4 GB of memory, and 20 GB of disk
storage.
licenses:
- Apache 2.0
refName: knative-serving.packages.kadras.io
releaseNotes: https://github.com/kadras-io/package-for-knative-serving/releases
releasedAt: "2024-09-01T11:44:31Z"
template:
spec:
deploy:
- kapp:
rawOptions:
- --wait-timeout=5m
fetch:
- imgpkgBundle:
image: ghcr.io/kadras-io/package-for-knative-serving@sha256:99656f4f21f3d8d1b26ea4189345aff40383cc253654812f964524c8aa300f25
template:
- ytt:
paths:
- config
- kbld:
paths:
- '-'
- .imgpkg/images.yml
valuesSchema:
openAPIv3:
additionalProperties: false
properties:
ca_cert_data:
default: ""
description: PEM-encoded certificate data to trust TLS connections with
a custom CA.
type: string
config:
additionalProperties: false
description: Settings for the Knative Serving ConfigMaps.
properties:
deployment:
additionalProperties: false
description: Deployment configuration stored in the `config-deployment`
ConfigMap.
properties:
progress-deadline:
default: 600s
description: The duration to wait for the deployment to be ready
before considering it failed.
type: string
queue-sidecar-cpu-limit:
default: 1000m
description: The queue proxy's CPU limit. If omitted, a default
value (currently `1000m`), is used when `queueproxy.resource-defaults`
is set to `Enabled`.
type: string
queue-sidecar-cpu-request:
default: 25m
description: The queue proxy's CPU request. If omitted, a default
value (currently '25m'), is used.
type: string
queue-sidecar-memory-limit:
default: 200Mi
description: The queue proxy's memory limit. If omitted, a default
value (currently `800Mi`), is used when `queueproxy.resource-defaults`
is set to `Enabled`.
type: string
queue-sidecar-memory-request:
default: 50Mi
description: The queue proxy's memory request. If omitted, a default
value (currently `400Mi`), is used when `queueproxy.resource-defaults`
is set to `Enabled`.
type: string
type: object
network:
additionalProperties: false
description: Network configuration stored in the `config-network` ConfigMap.
properties:
default-external-scheme:
default: http
description: Defines the scheme used for external URLs if autoTLS
is not enabled. This can be used for making Knative report all
URLs as `https`, for example, if you're fronting Knative with
an external loadbalancer that deals with TLS termination and Knative
doesn't know about that otherwise.
enum:
- http
- https
type: string
domain-template:
default: '{{.Name}}.{{.Namespace}}.{{.Domain}}'
description: The golang text template string to use when constructing
the Knative Service's DNS name.
type: string
http-protocol:
default: Redirected
description: 'Controls the behavior of the HTTP endpoint for the
Knative ingress. `Enabled`: The Knative ingress will be able to
serve HTTP connection. `Redirected`: The Knative ingress will
send a 301 redirect for all http connections, asking the clients
to use HTTPS.'
enum:
- Enabled
- Redirected
type: string
namespace-wildcard-cert-selector:
default: ""
description: A LabelSelector which determines which namespaces should
have a wildcard certificate provisioned.
type: string
rollout-duration:
default: 0
description: The minimal duration in seconds over which the Configuration
traffic targets are rolled out to the newest revision.
minimum: 0
type: integer
type: object
tracing:
additionalProperties: false
description: Network configuration stored in the `config-tracing` ConfigMap.
properties:
backend:
default: none
description: The type of distributed tracing backend.
enum:
- zipkin
- none
type: string
debug:
default: "false"
description: Enable the Zipkin debug mode. This allows all spans
to be sent to the server bypassing sampling.
enum:
- "true"
- "false"
type: string
sample-rate:
default: "0.1"
description: The percentage (0-1) of requests to trace.
maxLength: 3
minLength: 1
type: string
zipkin-endpoint:
default: http://tempo.observability-system.svc.cluster.local:9411/api/v2/spans
description: The Zipkin collector endpoint where traces are sent.
type: string
type: object
type: object
domain_name:
default: ""
description: Domain name for Knative Services. It must be a valid DNS name.
Stored in the `config-domain` ConfigMap.
minLength: 4
type: string
ingress:
additionalProperties: false
description: Settings for the Ingress controller.
properties:
contour:
additionalProperties: false
description: Ingress configuration stored in the `config-contour` ConfigMap.
properties:
default-tls-secret:
default: ""
description: If auto-TLS is disabled, fallback to this certificate.
An operator is required to setup a TLSCertificateDelegation for
this Secret to be used.
type: string
external:
additionalProperties: false
description: Configuration for the external Ingress controller
properties:
namespace:
default: projectcontour
description: The namespace where the external Ingress controller
is installed.
minLength: 1
type: string
type: object
internal:
additionalProperties: false
description: Configuration for the internal Ingress controller
properties:
namespace:
default: projectcontour
description: The namespace where the internal Ingress controller
is installed.
minLength: 1
type: string
type: object
type: object
type: object
ingress_issuer:
default: ""
description: A reference to the ClusterIssuer to use if you want to enable
autoTLS. Stored in the `config-certmanager` ConfigMap.
example: kadras-ca-issuer
type: string
x-example-description: Kadras private CA
policies:
additionalProperties: false
description: Settings for the Kyverno policies.
properties:
include:
default: false
description: Whether to include the out-of-the-box Kyverno policies
to validate and secure the package installation.
type: boolean
type: object
proxy:
additionalProperties: false
description: Settings for the corporate proxy.
properties:
http_proxy:
default: ""
description: The HTTP proxy to use for network traffic.
type: string
https_proxy:
default: ""
description: The HTTPS proxy to use for network traffic.
type: string
no_proxy:
default: ""
description: A comma-separated list of hostnames, IP addresses, or IP
ranges in CIDR format that should not use a proxy.
type: string
type: object
workloads:
additionalProperties: false
description: Settings for the Knative Serving workloads.
properties:
activator:
additionalProperties: false
properties:
minReplicas:
default: 1
description: The minimum number of replicas as controlled by a HorizontalPodAutoscaler.
In order to enable high availability, it should be greater than
1.
maximum: 20
minimum: 1
type: integer
type: object
autoscaler:
additionalProperties: false
properties:
replicas:
default: 1
description: The number of replicas for this Deployment. In order
to enable high availability, it should be greater than 1.
minimum: 1
type: integer
type: object
controller:
additionalProperties: false
properties:
replicas:
default: 1
description: The number of replicas for this Deployment. In order
to enable high availability, it should be greater than 1.
minimum: 1
type: integer
type: object
domain_mapping:
additionalProperties: false
properties:
replicas:
default: 1
description: The number of replicas for this Deployment. In order
to enable high availability, it should be greater than 1.
minimum: 1
type: integer
type: object
domain_mapping_webhook:
additionalProperties: false
properties:
replicas:
default: 1
description: The number of replicas for this Deployment. In order
to enable high availability, it should be greater than 1.
minimum: 1
type: integer
type: object
webhook:
additionalProperties: false
properties:
minReplicas:
default: 1
description: The minimum number of replicas as controlled by a HorizontalPodAutoscaler.
In order to enable high availability, it should be greater than
1.
maximum: 5
minimum: 1
type: integer
type: object
type: object
type: object
version: 1.15.2
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy