-
Notifications
You must be signed in to change notification settings - Fork 429
Can't import machine-config-operator #848
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
Comments
we're not using go mod just yet and code isn't ready to move to it right now. Guess we need to fix this anyway once kube switches to that maybe. |
@runcom is there an upstream issue in kube for the move? |
I need to check on it |
FYI, current master doesn't have this issue since we got rid of that file specifically (test_data...) |
Still same issue. I tried @master, latest commit and tag
|
The compliance operator would benefit from having this issue fixed or possible to work around. In the operator, we'd like to create MachineConfig objects as remediations for compliance issues in the cluster. I'm still hitting the issue as of today:
|
Even though we have openshift/machine-config-operator#848 I have been able to make this work.
@runcom I am writing an operator where I want to write file on a worker node using MCO, but because of this bug I am not able to import |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I'm facing this too, is this API not consumable atm? |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I'm facing the same issue, but used this workaround in my |
run ``` go mod tidy go mod vendor ``` Use replace directive in go.mod to fix a known issue [1] in MCO. [1] openshift/machine-config-operator#848 Signed-off-by: Mohammad Heib <[email protected]>
run ``` go mod tidy go mod vendor ``` Use replace directive in go.mod to fix a known issue [1] in MCO. [1] openshift/machine-config-operator#848 Signed-off-by: Mohammad Heib <[email protected]>
I'm trying to import github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1
Go get fails with:
Digging around it looks like the colon is reserved on Windows so go doesn't consider it valid.
Steps to reproduce the issue:
Describe the results you expected:
It should be possible to go get and import
Additional information you deem important (e.g. issue happens only occasionally):
golang/go#28001
Output of
oc adm release info --commits | grep machine-config-operator
:N/A
Additional environment details (platform, options, etc.):
N/A
The text was updated successfully, but these errors were encountered: