Skip to content
Closed
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 config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ variable "tectonic_container_images" {
tectonic_channel_operator = "quay.io/coreos/tectonic-channel-operator-dev:df42b97af403702013f4739fc82cd005cfd0c766"
kube_addon_operator = "quay.io/coreos/kube-addon-operator-dev:df42b97af403702013f4739fc82cd005cfd0c766"
tectonic_alm_operator = "quay.io/coreos/tectonic-alm-operator:v0.3.1"
tectonic_ingress_controller_operator = "quay.io/coreos/tectonic-ingress-controller-operator-dev:df42b97af403702013f4739fc82cd005cfd0c766"
tectonic_ingress_controller_operator = "registry.svc.ci.openshift.org/clayton-dev/tectonic-ingress-controller-operator-dev:cc7977c70a011c3e08dc4d7c4a1cfa1518da82b4-dirty"
tectonic_utility_operator = "quay.io/coreos/tectonic-utility-operator-dev:df42b97af403702013f4739fc82cd005cfd0c766"
tectonic_network_operator = "quay.io/coreos/tectonic-network-operator-dev:df42b97af403702013f4739fc82cd005cfd0c766"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ apiVersion: v1
kind: Namespace
metadata:
# This is the namespace used to hold the tectonic ingress controllers
name: tectonic-ingress
name: openshift-ingress
# Give the namespace a label, so we can select for it in networkpolicy
labels:
kubernetes.io/ingress.class: tectonic
name: tectonic-ingress
name: openshift-ingress
openshift.io/run-level: "1"
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: ConfigMap
metadata:
name: cluster-config-v1
namespace: tectonic-ingress
namespace: openshift-ingress
data:
ingress-config: |
apiVersion: v1
Expand Down
2 changes: 1 addition & 1 deletion modules/tectonic/resources/manifests/ingress/pull.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"kind": "Secret",
"type": "kubernetes.io/dockerconfigjson",
"metadata": {
"namespace": "tectonic-ingress",
"namespace": "openshift-ingress",
"name": "coreos-pull-secret"
},
"data": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: tectonic-ingress-controller-operator
namespace: tectonic-ingress
namespace: openshift-ingress
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ subjects:
namespace: tectonic-system
name: default
- kind: ServiceAccount
namespace: tectonic-ingress
namespace: openshift-ingress
name: tectonic-ingress-controller-operator
roleRef:
kind: ClusterRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: tectonic-ingress-tls
namespace: tectonic-ingress
namespace: openshift-ingress
type: Opaque
data:
tls.crt: ${ingress_tls_cert}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fsGroup:
type: RunAsAny
groups:
- system:serviceaccounts:tectonic-system
- system:serviceaccounts:tectonic-ingress
- system:serviceaccounts:openshift-ingress
readOnlyRootFilesystem: false
runAsUser:
type: RunAsAny
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: tectonic-ingress-controller-operator
namespace: tectonic-ingress
namespace: openshift-ingress
labels:
k8s-app: tectonic-ingress-controller-operator
managed-by-channel-operator: "true"
Expand Down