Skip to content
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

Update ghcr.io/appuio/appuio-cloud-agent Docker tag to v0.10.1 #176

Merged
Merged
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
2 changes: 1 addition & 1 deletion class/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parameters:
agent:
registry: ghcr.io
repository: appuio/appuio-cloud-agent
tag: v0.10.0
tag: v0.10.1

secrets: {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.14.0
name: zoneusageprofiles.cloudagent.appuio.io
spec:
group: cloudagent.appuio.io
Expand All @@ -20,15 +19,19 @@ spec:
description: ZoneUsageProfile is the Schema for the ZoneUsageProfiles API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: 'Kind is a string value representing the REST resource
this object represents. Servers may infer this from the endpoint the
client submits requests to. Cannot be updated. In CamelCase. More
info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
Expand All @@ -46,10 +49,9 @@ spec:
additionalProperties:
type: object
x-kubernetes-preserve-unknown-fields: true
description: Resources is the set of resources which are created
in each namespace for which the usage profile is applied.
The key is used as the name of the resource and the value
is the resource definition.
description: |-
Resources is the set of resources which are created in each namespace for which the usage profile is applied.
The key is used as the name of the resource and the value is the resource definition.
type: object
type: object
required:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: appuio-cloud-agent
namespace: appuio-cloud
rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
command:
- appuio-cloud-agent
env: []
image: ghcr.io/appuio/appuio-cloud-agent:v0.10.0
image: ghcr.io/appuio/appuio-cloud-agent:v0.10.1
livenessProbe:
httpGet:
path: /healthz
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: admissionregistration.k8s.io/v1
kind: MutatingWebhookConfiguration
metadata:
creationTimestamp: null
name: appuio-cloud-mutating-webhook-configuration
webhooks:
- admissionReviewVersions:
Expand Down Expand Up @@ -34,7 +33,6 @@ webhooks:
apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
metadata:
creationTimestamp: null
name: appuio-cloud-validating-webhook-configuration
webhooks:
- admissionReviewVersions:
Expand All @@ -47,20 +45,20 @@ webhooks:
path: /validate-namespace-quota
failurePolicy: Fail
matchPolicy: Equivalent
name: validate-namespace-quota.appuio.io
name: validate-namespace-quota-projectrequests.appuio.io
namespaceSelector:
matchExpressions:
- key: appuio.io/organization
operator: Exists
rules:
- apiGroups:
- ''
- project.openshift.io
apiVersions:
- v1
operations:
- CREATE
resources:
- namespaces
- projectrequests
sideEffects: None
- admissionReviewVersions:
- v1
Expand All @@ -72,20 +70,20 @@ webhooks:
path: /validate-namespace-quota
failurePolicy: Fail
matchPolicy: Equivalent
name: validate-namespace-quota-projectrequests.appuio.io
name: validate-namespace-quota.appuio.io
namespaceSelector:
matchExpressions:
- key: appuio.io/organization
operator: Exists
rules:
- apiGroups:
- project.openshift.io
- ''
apiVersions:
- v1
operations:
- CREATE
resources:
- projectrequests
- namespaces
sideEffects: None
- admissionReviewVersions:
- v1
Expand Down
Loading