Skip to content
#

openshift

Here are 1,941 public repositories matching this topic...

jx
msvticket
msvticket commented Nov 2, 2018

Summary

When creating docker images for Java applications in the current setup in Jenkins-X the application and all dependencies are all placed in one jar file, meaning it will be in one layer in the docker image.

This means that when new versions of the application are created the unchanged dependencies can't be reused.

It would be a great enhancement if the application code where p

rohanKanojia
rohanKanojia commented Jul 27, 2021

Right now ErrorMessageTest.testCustomMessage is written in a strange way.

  • Instead of using assertThrows we're catching an exception.
  • There is a custom fail() method that does nothing.
  • We're not asserting anything, see sonar smell here[0]

https://github.com/fabric8io/kubernetes-client/blob/d1740ffeaa624bd63b6d929b25d764a477c1c17e/kubernetes-tests/src/test/java/io/fabric8/kubernete

nicolaferraro
nicolaferraro commented Jun 11, 2021

The operator prints periodically this info:

{"level":"info","ts":1623416979.434832,"logger":"camel-k","msg":"could not find any knative type in namespace camel, last error was: services.serving.knative.dev is forbidden: User \"system:serviceaccount:camel:camel-k-operator\" cannot list resource \"services\" in API group \"serving.knative.dev\" in the namespace \"camel\""}

It looks l

VladoPortos
VladoPortos commented May 7, 2021

I'm not sure right now how to specify NodePort with AWX operator. Its not mentioned in documentation.

spec:
tower_ingress_type: NodePort

Ok, but how to avoid random port assignment,

Usually I can do in service deployment something like:

spec:
  type: NodePort
  ports:
    - port: 80
      nodePort: 30080
      name: http
    - port: 443
      nodePort: 30443
      name

Improve this page

Add a description, image, and links to the openshift topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the openshift topic, visit your repo's landing page and select "manage topics."

Learn more