Skip to content

Commit

Permalink
Build Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BojanZelic committed Mar 7, 2023
1 parent 47b5336 commit b2e61ea
Show file tree
Hide file tree
Showing 6 changed files with 180 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Expect breaking changes
Cloudflare Zero-Trust operator allow you to manage your zero-trust configuration directly from kubernetes

<!-- Version_Placeholder -->
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square)
[![CRD - reference](https://img.shields.io/badge/CRD-reference-2ea44f)](https://doc.crds.dev/github.com/BojanZelic/cloudflare-zero-trust-operator)
![Unit Tests](https://github.com/BojanZelic/cloudflare-zero-trust-operator/actions/workflows/unit.yaml/badge.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/bojanzelic/cloudflare-zero-trust-operator)](https://goreportcard.com/report/github.com/bojanzelic/cloudflare-zero-trust-operator)
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ resources:
images:
- name: controller
newName: ghcr.io/bojanzelic/cloudflare-zero-trust-operator
newTag: 0.2.1
newTag: 0.3.0
4 changes: 2 additions & 2 deletions helm/cloudflare-zero-trust-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ home: https://github.com/bojanzelic/cloudflare-zero-trust-operator
# 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: "0.2.1"
version: "0.3.0"
# 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.
# It is recommended to use it with quotes.
appVersion: "0.2.1"
appVersion: "0.3.0"
2 changes: 1 addition & 1 deletion helm/cloudflare-zero-trust-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cloudflare-zero-trust-operator

![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.1](https://img.shields.io/badge/AppVersion-0.2.1-informational?style=flat-square)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square)

Operator for managing Cloudflare Zero Trust settings

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
description: Displays the application in the App Launcher.
type: boolean
autoRedirectToIdentity:
default: true
default: false
description: When set to true, users skip the identity provider selection
step during login. You must specify only one identity provider in
allowed_idps.
Expand Down Expand Up @@ -113,6 +113,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -123,6 +133,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -154,6 +180,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
include:
Expand Down Expand Up @@ -190,6 +219,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -200,6 +239,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -231,6 +286,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
name:
Expand Down Expand Up @@ -270,6 +328,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -280,6 +348,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -311,6 +395,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
required:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -80,6 +90,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -111,6 +137,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
include:
Expand Down Expand Up @@ -147,6 +176,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -157,6 +196,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -188,6 +243,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
name:
Expand Down Expand Up @@ -227,6 +285,16 @@ spec:
anyAccessServiceToken:
description: Matches any valid service token
type: boolean
commonName:
description: Certificate CN
items:
type: string
type: array
country:
description: Country
items:
type: string
type: array
emailDomains:
description: Matches a specific email Domain
items:
Expand All @@ -237,6 +305,22 @@ spec:
items:
type: string
type: array
everyone:
description: Allow Everyone
type: boolean
googleGroups:
description: Matches Google Group
items:
properties:
email:
type: string
identityProviderId:
type: string
required:
- email
- identityProviderId
type: object
type: array
ipRanges:
description: Matches an IP CIDR block
items:
Expand Down Expand Up @@ -268,6 +352,9 @@ spec:
type: object
type: object
type: array
validCertificate:
description: Any valid certificate will be matched
type: boolean
type: object
type: array
required:
Expand Down

0 comments on commit b2e61ea

Please sign in to comment.