forked from openshift/release
-
Notifications
You must be signed in to change notification settings - Fork 0
rebase commits from #71414 onto main branch #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This client helps you develop, build, deploy, and run your applications on any
OpenShift or Kubernetes cluster. It also includes the administrative
commands for managing a cluster under the 'adm' subcommand.
To familiarize yourself with OpenShift, login to your cluster and try creating a sample application:
oc login mycluster.mycompany.com
oc new-project my-example
oc new-app django-psql-example
oc logs -f bc/django-psql-example
To see what has been created, run:
oc status
and get a command shell inside one of the created containers with:
oc rsh dc/postgresql
To see the list of available toolchains for building applications, run:
oc new-app -L
Since OpenShift runs on top of Kubernetes, your favorite kubectl commands are also present in oc,
allowing you to quickly switch between development and debugging. You can also run kubectl directly
against any OpenShift cluster using the kubeconfig file created by 'oc login'.
For more on OpenShift, see the documentation at https://docs.openshift.com.
To see the full list of commands supported, run 'oc --help'. commands to retrieve logs files from .
…rop-testing` path structure.
…tal-localnet-test-ref.yaml Parameterize default storage class. Co-authored-by: Michael Pruitt <[email protected]>
…tal-localnet-test-commands.sh Pass parameterized DEFAULT_STORAGE_CLASS value. Co-authored-by: Michael Pruitt <[email protected]>
Co-authored-by: Michael Pruitt <[email protected]>
Remove unnecessary backticks from script.
…tal-localnet-test-ref.yaml Fix indent. Co-authored-by: Edoardo Tirtarahardja <[email protected]>
dfrazzette
pushed a commit
that referenced
this pull request
Dec 9, 2025
* ci: use spike-420-issues images for CI rehearsal validation Updated OPCT workflow to use development images for testing fixes to CI failures in OCP 4.20+ clusters. Changes: - Updated OPCT_CLI_IMAGE to quay.io/mrbraga/opct:spike-420-issues - Added OPCT_DEV_EXTRA_CMD with --plugins-image flag pointing to quay.io/mrbraga/plugin-openshift-tests:spike-420-issues-buildx This allows testing custom images without modifying pkg/types.go, using the --plugins-image CLI argument instead of hardcoded defaults. Built images: - opct CLI: quay.io/mrbraga/opct:spike-420-issues - plugins: quay.io/mrbraga/plugin-openshift-tests:spike-420-issues-buildx Related fixes being tested: - Issue #1: Fixed map printing in status utils - Issue #2 & #3: Fixed HTML encoding and messages in printer - Issue openshift#4: Added failure propagation between plugins - Issue #5: Made log level configurable via LOG_LEVEL env var - Issue openshift#6: Fixed time calculation bug in archive metalog - Issue openshift#7: Added k8s conformance test extraction for OCP 4.20+ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> testing with latest opct version validate 0.6.1 * Removing changes in AI workflow as is not monitored by SPLAT
61a3cf3 to
2652437
Compare
a24133e to
4ea7d4c
Compare
70d008d to
a27eb64
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
rebase commits from openshift#71414 onto main branch