io.hyscale.controller.directive.impl.DockerfileJsonHandler Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2019 Pramati Prism, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.hyscale.controller.directive.impl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import io.hyscale.commons.utils.WindowsUtil;
import io.hyscale.controller.directive.ServiceSpecDirectiveUpdateHandler;
import io.hyscale.servicespec.commons.fields.HyscaleSpecFields;
import io.hyscale.servicespec.commons.model.service.Dockerfile;
/**
* Updates the "dockerfile" directive from the service spec before processing the
* service spec for deployment. Update operation is like a pre-processor and
* does not change the state of the service spec
*
* @author tushart
*
*/
@Component
public class DockerfileJsonHandler extends ServiceSpecDirectiveUpdateHandler {
private static final Logger logger = LoggerFactory.getLogger(DockerfileJsonHandler.class);
public Dockerfile updateObject(Dockerfile dockerfile) {
dockerfile.setPath(WindowsUtil.updateToUnixFileSeparator(dockerfile.getPath()));
dockerfile.setDockerfilePath(WindowsUtil.updateToUnixFileSeparator(dockerfile.getDockerfilePath()));
return dockerfile;
}
@Override
public String[] getPath() {
return new String[] { HyscaleSpecFields.image, HyscaleSpecFields.dockerfile };
}
@Override
protected Class getType() {
return Dockerfile.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy