Skip to content

Commit

Permalink
update plugin to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
waveywaves committed Aug 16, 2023
1 parent 80747e9 commit 549b316
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 47 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include tests/e2e/Makefile

VERSION ?= 0.3.0
VERSION ?= 0.3.1

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: docker.io/uffizzi/uffizzi-cluster-operator
tag: v0.3.0
tag: v0.3.1

# `flux` dependency values
flux:
Expand Down
2 changes: 1 addition & 1 deletion controllers/uffizzicluster_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ func (r *UffizziClusterReconciler) upsertVClusterHelmRelease(update bool, ctx co
},
Plugin: VClusterPlugins{
VClusterPlugin{
Image: "uffizzi/ucluster-sync-plugin:v0.2.2",
Image: "uffizzi/ucluster-sync-plugin:v0.2.3",
ImagePullPolicy: "IfNotPresent",
Rbac: VClusterRbac{
Role: VClusterRbacRole{
Expand Down
17 changes: 0 additions & 17 deletions examples/ingress.yml

This file was deleted.

57 changes: 30 additions & 27 deletions examples/manifest-basic-ingress.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,51 @@
kind: UffizziCluster
apiVersion: uffizzi.com/v1alpha1
metadata:
name: i27
name: i32
spec:
resourceQuota:
enabled: false
limitRange:
enabled: false
ingress:
host: app.qa-gke.uffizzi.com
host: uclusters.app.qa-gke.uffizzi.com
manifests: |
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-1
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
name: result
spec:
rules:
- http:
paths:
- path: /testpath
pathType: Prefix
backend:
service:
name: test
port:
number: 80
- host: result.example.com
http:
paths:
- backend:
service:
name: result
port:
number: 5001
path: /
pathType: Prefix
tls:
- hosts:
- result.example.com
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-2
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
name: vote
spec:
rules:
- host: whathostmost
http:
paths:
- path: /testpath
pathType: Prefix
backend:
service:
name: test
port:
number: 80
- host: vote.example.com
http:
paths:
- backend:
service:
name: vote
port:
number: 5001
path: /
pathType: Prefix
tls:
- hosts:
- vote.example.com

0 comments on commit 549b316

Please sign in to comment.