Questions tagged [openshift-enterprise]

An on-premise, private Platform as a Service (PaaS) solution offering that allows you to deliver apps faster and meet your enterprise's growing application demands. With Red Hat's award-winning private Platform as a Service, OpenShift Enterprise, you can improve developer productivity, increase operational efficiency, and expand your hardware utilization.

An on-premise, private Platform as a Service (PaaS) solution offering that allows you to deliver apps faster and meet your enterprise's growing application demands. With Red Hat's award-winning private Platform as a Service, OpenShift Enterprise, you can improve developer productivity, increase operational efficiency, and expand your hardware utilization.

186 questions
0
votes
1 answer

Use Custom Domain for Openshift 3.9 Routes

I am completely new to Networking and setting up Domains. But recently I bought a domain (xyz-demos.com) and I want to use it as a domain to my Openshift App Routes. I did not find any proper guide on how to do it. In Openshift I have 3 apps running…
John Seen
  • 701
  • 4
  • 15
  • 31
0
votes
2 answers

Error when trying to install OpenShift 4 on Libvirt: qemu-kvm: -fw_cfg: invalid option

I'm trying to install OpenShift 4.2.8 on libvirt and I'm stuck with the following error when running ./bin/openshift-install create cluster --log-level=debug --dir=initial internal error: process exited while connecting to monitor: qemu-kvm:…
0
votes
1 answer

How to Install Pillow on Openshift

I'm trying to deploy my django web application on OpenShift. When I try to deploy it I get this error: I have no idea how I can access the terminal in the openshift to install pip.
0
votes
0 answers

In OpenShift, Deploy application from web console using image name

I can deploy a new app following command from OpenShift Container Platform Command Line Interface (oc CLI) //oc new-app --docker-image=:/ --name=customer --insecure-registry=true $ oc new-app…
fgul
  • 5,763
  • 2
  • 46
  • 32
0
votes
2 answers

Why rest api is not upgrade from 3.x to 4.x in openshift?

Why rest API is not upgrade from 3.11 version to 4.2 version in openshift?
0
votes
1 answer

deploy hashicorp vault without persistent storage in openshift

How to deploy the hashicorp vault in openshift with out using persistent volumes(PV)? In the openshift cluster as a normal user(not a cluster admin),need to deploy the vault server. I followed the URL but it has persistent volumes (/vault/file) in…
0
votes
1 answer

Cannot understand the difference between gluster and gluster-block volumes

I am having hard time getting the difference between GlusterFS and gluster-block volumes https://docs.openshift.com/container-platform/3.9/install_config/persistent_storage/persistent_storage_glusterfs.html As you see in openshift documentation it…
Learner
  • 1,686
  • 4
  • 19
  • 38
0
votes
1 answer

Openshift 4.1 installation on pre-existing virtual machines

Any pointers on how to install Openshift 4.1 on pre existing VMs ? Hi, I have pre-existing virtual machines that I need to use to install Openshift 4.1 and create a cluster. All the VMs can talk to each other and their IP addressed wont change. Can…
user1722908
  • 535
  • 2
  • 9
  • 21
0
votes
1 answer

openshift baremetal VS vm for production

Does it make sense to run open shift 3 / okd on bare metal or on virtual machines What would be the pros and cons of each? would it not affect overall performance if it runs on virtual machines?
0
votes
0 answers

OpenShift App deployment methods need some clarifications

So I’m having troubles understanding the Openshift app deployment methods as to where should I use the different options when doing Oc new-app —name=test Docker-image=registry.example.com/test:4.7 I know this should be used when you are trying to…
0
votes
1 answer

KubernetesClientException: ClusterRole or Role

Upon deploying a service with Spring Cloud Kubernetes Discovery Client, I get the KubernetesClientException stating that the user "default" is forbidden to access pods. I have already added a Role and a Rolebinding as specified here The guide states…
0
votes
0 answers

How to add Grafana dashboard for CPU usage from Hawkular Datasource?

I'm working on Hawkular and Grafana integration for our OpenShift Container Platform project. I succeeded in configuring Hawkular Datasource in a Grafana instance. As Hawkular Metrics keeps data of multiple pods, it became a tough task to get the…
GreyWorm
  • 183
  • 1
  • 1
  • 6
0
votes
1 answer

How do I implement Prometheus monitoring in Openshift projects?

We have an openshift container platform url that contains multiple projects like project1 project2 project3 Each project contains several pods that we are currently monitoring with NewRelic like pod1 pod2 pod3 We are trying to implement…
0
votes
2 answers

Hyphen and/or period in environment variable name is causing issue

This is working. oc new-app --docker-image=docker.mycompany.com/myusername/my-imagestuff:latest -e SPRING_DATASOURCE_URL="jdbc:sqlserver://blahblahblah;” -e SPRING_DATASOURCE_USERNAME=“myUserName1” -e SPRING_DATASOURCE_PASSWORD=“MyP#ssword” -e so I…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
0
votes
1 answer

How to execute a database script after deploying a Postgresql image to openshift with Jenkins?

I have a git repo with the Jenkins pipeline and the official template of postgresql: kind: "BuildConfig" apiVersion: "v1" metadata: name: "postgresql-pipeline" spec: strategy: jenkinsPipelineStrategy: jenkinsfile: |- pipeline…